/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

.font-thai {
    font-family: 'Sarabun', sans-serif;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav {
    padding: 0 1rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #f97316, #ec4899);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0.75rem;
}

.nav-link:hover {
    color: #f97316;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    color: #4b5563;
    cursor: pointer;
    transition: color 0.3s;
}

.lang-toggle:hover {
    color: #f97316;
}

.cta-button {
    background: linear-gradient(135deg, #f97316, #ec4899);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #4b5563;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fff7ed, #fdf2f8);
    padding: 5rem 0 7rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(236, 72, 153, 0.05));
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fed7aa, #fbcfe8);
    color: #ea580c;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.1;
    color: #1f2937;
}

.gradient-text {
    background: linear-gradient(135deg, #f97316, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.6;
}

.hero-subtitle-thai {
    font-size: 1.125rem;
    color: #6b7280;
    font-family: 'Sarabun', sans-serif;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.primary-button {
    background: linear-gradient(135deg, #f97316, #ec4899);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.primary-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

.primary-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.secondary-button {
    border: 2px solid #f97316;
    color: #f97316;
    background: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.secondary-button:hover {
    background: #f97316;
    color: white;
}

.trust-indicators {
    display: flex;
    gap: 1.5rem;
    padding-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-icon {
    width: 2rem;
    height: 2rem;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
}

.trust-item span {
    font-size: 0.875rem;
    color: #4b5563;
}

.hero-visual {
    position: relative;
}

.booking-card {
    background: linear-gradient(135deg, #f97316, #ec4899);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.booking-card > div {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.booking-header h3 {
    font-size: 1.125rem;
    font-weight: bold;
    color: #1f2937;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #10b981;
    border-radius: 50%;
}

.verified-badge span {
    font-size: 0.875rem;
    color: #10b981;
}

.booking-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-row span:first-child {
    color: #6b7280;
}

.detail-row span:last-child {
    font-weight: 500;
    color: #1f2937;
}

.book-button {
    width: 100%;
    background: linear-gradient(135deg, #f97316, #ec4899);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.book-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.floating-token {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 4rem;
    height: 4rem;
    background: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
    animation: bounce 2s infinite;
}

.floating-check {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    width: 3rem;
    height: 3rem;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    animation: bounce 2s infinite 0.5s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
}

.section-subtitle-thai {
    font-size: 1.125rem;
    color: #6b7280;
    margin-top: 0.5rem;
    font-family: 'Sarabun', sans-serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.feature-card {
    background: linear-gradient(135deg, #fff7ed, #fdf2f8);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s;
    border: 1px solid rgba(249, 115, 22, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #f97316, #ec4899);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-header h3 {
    font-size: 1.125rem;
    font-weight: bold;
    color: #1f2937;
}

.feature-subtitle {
    font-size: 0.875rem;
    color: #ea580c;
    font-weight: 500;
}

.feature-description {
    color: #4b5563;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.feature-thai {
    font-size: 0.875rem;
    color: #6b7280;
    font-family: 'Sarabun', sans-serif;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-number.orange { color: #f97316; }
.stat-number.pink { color: #ec4899; }
.stat-number.green { color: #10b981; }
.stat-number.blue { color: #3b82f6; }

.stat-label {
    color: #4b5563;
    font-weight: 500;
}

.stat-thai {
    font-size: 0.875rem;
    color: #6b7280;
    font-family: 'Sarabun', sans-serif;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9fafb, #fff7ed);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.step.reverse {
    direction: rtl;
}

.step.reverse > * {
    direction: ltr;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #f97316, #ec4899);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.step-number {
    font-size: 0.875rem;
    color: #ea580c;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.step-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
}

.step-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
}

.step-description {
    color: #4b5563;
    font-size: 1.125rem;
    line-height: 1.6;
}

.step-thai {
    color: #6b7280;
    font-family: 'Sarabun', sans-serif;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4b5563;
}

.feature-point::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: linear-gradient(135deg, #f97316, #ec4899);
    border-radius: 50%;
}

.step-visual {
    position: relative;
}

.visual-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-header h4 {
    font-weight: bold;
    color: #1f2937;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
}

.status-indicator.green {
    color: #10b981;
}

.status-indicator.orange {
    color: #f97316;
}

.spa-list {
    background: #f3f4f6;
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spa-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.spa-marker {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.spa-marker.orange { background: #f97316; }
.spa-marker.pink { background: #ec4899; }
.spa-marker.blue { background: #3b82f6; }

.contract-details,
.token-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.detail-row .orange { color: #f97316; }
.detail-row .green { color: #10b981; }
.detail-row .blue { color: #3b82f6; }
.detail-row .purple { color: #8b5cf6; }

.step-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #f97316, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fed7aa, #fbcfe8);
    color: #ea580c;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
}

.about-mission {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.6;
}

.about-description {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.6;
}

.cultural-hook {
    background: linear-gradient(135deg, #fff7ed, #fdf2f8);
    border-radius: 1rem;
    padding: 1.5rem;
}

.cultural-hook h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.cultural-hook p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.thai-text {
    color: #6b7280;
    font-family: 'Sarabun', sans-serif;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.value-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-item:nth-child(1) .value-icon { background: #fed7aa; color: #ea580c; }
.value-item:nth-child(2) .value-icon { background: #fbcfe8; color: #db2777; }
.value-item:nth-child(3) .value-icon { background: #dcfce7; color: #16a34a; }
.value-item:nth-child(4) .value-icon { background: #dbeafe; color: #2563eb; }

.value-item h4 {
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.value-item p {
    font-size: 0.875rem;
    color: #4b5563;
}

.about-visual {
    position: relative;
}

.impact-card {
    background: linear-gradient(135deg, #f97316, #ec4899);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.impact-card > div {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
}

.impact-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.impact-header h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.impact-header p {
    color: #4b5563;
    font-family: 'Sarabun', sans-serif;
}

.impact-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.impact-stat {
    text-align: center;
    background: linear-gradient(135deg, #fff7ed, #fdf2f8);
    border-radius: 0.75rem;
    padding: 1rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.stat-value.orange { color: #ea580c; }
.stat-value.pink { color: #db2777; }

.impact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.floating-badge {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.floating-badge.thai-flag {
    top: -1rem;
    left: -1rem;
    width: 4rem;
    height: 4rem;
    background: #10b981;
    font-size: 1.5rem;
}

.floating-badge.blockchain {
    bottom: -1rem;
    right: -1rem;
    width: 3rem;
    height: 3rem;
    background: #3b82f6;
    font-size: 1.125rem;
}

.partners-section {
    margin-top: 5rem;
    text-align: center;
}

.partners-section h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.partner-card {
    background: linear-gradient(135deg, #fff7ed, #fdf2f8);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
}

.partner-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.partner-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.partner-thai {
    font-size: 0.75rem;
    color: #6b7280;
    font-family: 'Sarabun', sans-serif;
}

/* For Spas Section */
.for-spas {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff7ed, #fdf2f8);
}

.spa-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #f97316, #ec4899);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: #4b5563;
    margin-bottom: 0.75rem;
}

.benefit-thai {
    font-size: 0.875rem;
    color: #6b7280;
    font-family: 'Sarabun', sans-serif;
}

.spa-cta {
    margin-top: 3rem;
}

.cta-card {
    background: linear-gradient(135deg, #f97316, #ec4899);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    color: white;
}

.cta-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
}

.cta-thai {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-family: 'Sarabun', sans-serif;
}

.cta-button-white {
    background: white;
    color: #f97316;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.6;
}

.footer-description-thai {
    color: #9ca3af;
    font-family: 'Sarabun', sans-serif;
}

.footer-links h3,
.footer-support h3,
.footer-contact h3 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-support ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a,
.footer-support a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-support a:hover {
    color: #f97316;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d1d5db;
}

.contact-item i {
    color: #f97316;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2rem;
    height: 2rem;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: #f97316;
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-status span {
    color: #9ca3af;
    font-size: 0.875rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator span {
    color: #10b981;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .spa-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero {
        padding: 3rem 0 5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
}