/* Reset & Base Styles - OPTIMIZED */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Your Design Tokens */
    --primary: #3E7AF2;
    --primary-hover: #215DD5;
    --text-primary: #0D1D3F;
    --text-secondary: rgba(13, 29, 63, 0.8);
    --bg-primary: #F9FBFF;
    --bg-secondary: #E8EFFF;
    --white: #FFFFFF;
    --shadow-light: 0px 0px 36px -12px rgba(3.65, 12.60, 31.63, 0.10);
    --shadow-medium: 0px 8px 48px -12px rgba(62, 122, 242, 0.2);
    --border-radius: 48px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    overflow-x: hidden;
    color: var(--text-primary);
    line-height: 1.5;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus visible for accessibility */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Typography System - Following Elements.pdf - UNCHANGED */
h1, .header-1 {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 62px;
    line-height: 100%;
    letter-spacing: -0.04em;
}

h2, .header-2 {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 52px;
    line-height: 120%;
    letter-spacing: -0.04em;
}

h3, .header-3 {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 120%;
    letter-spacing: -0.04em;
}

.subheader-1 {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 110%;
    letter-spacing: -0.02em;
}

.subheader-2 {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: -0.04em;
}

.subheader-3 {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: -0.02em;
}

.subheader-4 {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: -0.02em;
}

.text-1 {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -0.02em;
}

.text-2, p {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -0.02em;
}

.text-3 {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: -0.02em;
}

.btn-big {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: -0.02em;
}

.btn-normal {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: -0.02em;
}

.btn-small {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -0.02em;
}

/* Links - IMPROVED */
a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
    opacity: 0.9;
}

/* Container - OPTIMIZED */
.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section - OPTIMIZED */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--bg-primary);
    overflow: visible;
    display: flex;
    flex-direction: column;
    padding: 0 0 0;
    margin-bottom: 0;
}

.mandala-bg {
    position: absolute;
    width: 1368px;
    height: 1368px;
    left: 50%;
    top: 80px;
    transform: translateX(-50%);
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

.hero-bg-text {
    position: absolute;
    left: 50%;
    top: 120px;
    transform: translateX(-50%);
    color: #AEC9FF;
    font-size: 284px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 284px;
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
    word-wrap: break-word;
}

/* Navigation - OPTIMIZED */
.nav {
    position: relative;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 12px 40px;
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.nav-left,
.nav-right {
    display: flex;
    gap: 42px;
    align-items: center;
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}

.nav-logo {
    display: flex;
    justify-content: center;
}

.nav-logo img {
    height: 60px;
    width: auto;
    display: block;
}

.nav a {
    padding: 8px 0;
    color: var(--text-primary);
    opacity: 0.7;
    font-size: 18px;
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    line-height: 18px;
    text-decoration: none;
    transition: var(--transition);
    word-wrap: break-word;
}

.nav a:hover,
.nav a.active,
.nav a:focus-visible {
    opacity: 1;
    color: var(--primary);
}

/* Hero Content - UNCHANGED */
.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 380px 1fr 380px;
    align-items: center;
    gap: 60px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    margin-top: 180px;
}

.hero-left h2 {
    color: var(--text-primary);
    font-family: 'Onest', sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.02em;
}

.hero-center {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding-bottom: 60px;
}

/* Phone container - OPTIMIZED */
.phone-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 800px;
    overflow: visible;
}

.phone-mockup {
    position: relative;
    width: 360px;
    height: 763px;
    z-index: 5;
}

.phone-main {
    width: 360px;
    height: 763px;
    position: relative;
    z-index: 5;
    display: block;
    object-fit: cover;
    object-position: top;
}

/* Button below phone - IMPROVED */
.btn-primary-large {
    position: absolute;
    z-index: 5;
    margin-top: 0;
}

.btn-primary-large img {
    width: 460px;
    height: auto;
    display: block;
    margin-top: 450px;
    transition: var(--transition);
    filter: drop-shadow(0 4px 16px rgba(62, 122, 242, 0.15));
}

.btn-primary-large:hover img {
    transform: translateY(-2px);
    filter: drop-shadow(0 8px 24px rgba(69, 118, 218, 0.4));
}

/* Notification cards - OPTIMIZED */
.notification-card {
    position: absolute;
    top: 30%;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
    will-change: transform;
}

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

.card-1 {
    left: -60px;
    top: 3%;
}

.card-1 img {
    width: 320px;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(62, 122, 242, 0.15));
}

.card-2 {
    right: -40px;
    top: 45%;
    animation-delay: 1.5s;
}

.card-2 img {
    width: 320px;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(62, 122, 242, 0.15));
}

.hero-right p {
    color: var(--text-primary);
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.02em;
}

/* Mission Section - UNCHANGED */
.mission {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    min-height: 400px;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/anadidesigner_3d_model_of_Buddha_made_of_white_marble_professio_c559a20c-8978-4ae9-8822-e53c45afdc8d 1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.mission::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.07) 30%, rgba(0, 0, 0, 0.11) 100%);
    z-index: 1;
}

.mission .container {
    position: relative;
    z-index: 2;
}

.mission-label {
    position: absolute;
    top: 80px;
    left: 40px;
    color: white;
    font-family: 'Onest', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.mission h2 {
    position: absolute;
    top: 80px;
    right: 40px;
    max-width: 580px;
    margin: 0;
    text-align: left;
    color: white;
    font-family: 'Onest', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.04em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.mission-text {
    position: absolute;
    max-width: 360px;
    color: white;
    font-family: 'Onest', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.mission-text p {
    margin: 0;
    color: white;
}

.mission-text-middle {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 440px;
}

.mission-text-bottom {
    bottom: 80px;
    right: 40px;
    text-align: right;
    max-width: 340px;
}

/* For Sections - UNCHANGED */
.for-section {
    position: relative;
    padding: 40px 0;
    margin-top: 40px;
    z-index: 2;
}

.for-section.wellness {
    margin-top: -250px;
    padding-top: 40px;
}

.for-background {
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    bottom: 0;
    z-index: 0;
    border-radius: 48px;
    overflow: hidden;
}

.for-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.for-section .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 560px;
    gap: 80px;
    align-items: center;
}

.for-content {
    padding: 40px 0;
}

.for-content h2 {
    color: var(--text-primary);
    font-family: 'Onest', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

.for-content h3 {
    color: var(--text-primary);
    font-family: 'Onest', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.for-content p {
    color: var(--text-primary);
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.02em;
}

.for-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
}

/* CTA Pill - IMPROVED */
.cta-pill {
    padding: 40px 0;
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 14px 14px 48px;
    background: var(--primary);
    border-radius: 84px;
    width: 100%;
    max-width: 1360px;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-hover);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.btn-pill:hover::before,
.btn-pill:focus-visible::before {
    opacity: 1;
}

.btn-pill span {
    color: var(--white);
    font-family: 'Onest', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.btn-pill svg circle {
    fill: var(--white);
}

/* Section Titles - UNCHANGED */
.section-title {
    color: var(--text-primary);
    font-family: 'Onest', sans-serif;
    font-size: 62px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.04em;
    margin-bottom: 60px;
}

/* Why AyuMedica - OPTIMIZED */
.why-ayumedica {
    padding: 60px 0;
    background: var(--white);
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    box-shadow: var(--shadow-light);
    border-radius: var(--border-radius);
    padding: 24px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

/* All Feature Visuals - UNCHANGED (keeping your exact specs) */
.feature-visual.india-map-visual {
    width: 100%;
    height: 160px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: visible;
}

.feature-visual.india-map-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: -170px;
}

/* [ALL OTHER FEATURE VISUALS - EXACTLY UNCHANGED - keeping your 9 card specs] */
.feature-visual.personalized-care-visual {
    width: 100%;
    height: 160px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: visible;
}

.feature-visual.personalized-care-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: -170px;
}

.feature-visual.safe-sessions-visual {
    width: 100%;
    height: 140px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: visible;
}

.feature-visual.safe-sessions-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: -130px;
}

.feature-visual.holistic-wellness-visual {
    width: 100%;
    height: 160px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: visible;
}

.feature-visual.holistic-wellness-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: -130px;
}

.feature-visual.verified-healers-visual {
    width: 100%;
    height: 240px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.feature-visual.verified-healers-visual img {
    width: 60%;
    height: auto;
    object-fit: contain;
    transform: scale(1.5);
    margin-bottom: 50px;
}

.feature-visual.availability-visual {
    width: 100%;
    height: 180px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: visible;
}

.feature-visual.availability-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: -130px;
}

.feature-visual.affordability-visual {
    width: 100%;
    height: 160px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: visible;
}

.feature-visual.affordability-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: -170px;
}

.feature-visual.wisdom-visual {
    width: 100%;
    height: 160px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: visible;
}

.feature-visual.wisdom-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: -150px;
}

.feature-visual.booking-visual {
    width: 100%;
    height: 160px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: visible;
}

.feature-visual.booking-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: -130px;
}

/* Feature Card Text - OPTIMIZED */
.feature-text h3 {
    color: var(--text-primary);
    font-family: 'Onest', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.feature-text p {
    color: var(--text-secondary);
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.02em;
}

/* Steps - UNCHANGED */
.steps {
    position: relative;
    padding: 50px 0;
    background: var(--bg-primary);
    overflow: hidden;
}

.steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    background-image: url('../assets/images/Mandala main.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.steps-step2 {
    position: relative;
    background: var(--bg-secondary);
    padding: 30px 0;
    overflow: hidden;
}

.steps-step2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    background-image: url('../assets/images/Mandala main.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.steps-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.steps-indicators {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0.4;
    transition: var(--transition);
}

.step-indicator.active {
    opacity: 1;
}

.step-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    padding: 14px;
    background: #DBE7FF;
    border-radius: 183.67px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.step-indicator.active .step-icon {
    background: var(--primary);
}

.step-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--text-primary);
}

.step-indicator.active .step-icon svg {
    fill: var(--white);
}

.step-label {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.step-number-text {
    color: var(--text-primary);
    opacity: 0.5;
    font-size: 16px;
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.02em;
}

.step-indicator.active .step-number-text {
    opacity: 0.5;
}

.step-label h3 {
    color: var(--text-primary);
    font-size: 26px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.02em;
    margin: 0;
    white-space: nowrap;
}

.btn-join-waitlist {
    display: inline-block;
    align-self: flex-start;
    margin-top: 16px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-join-waitlist img {
    width: 230px;
    height: auto;
    display: block;
    transition: var(--transition);
    filter: drop-shadow(0 4px 16px rgba(62, 122, 242, 0.15));
}

.btn-join-waitlist:hover img {
    filter: drop-shadow(0 4px 16px rgba(69, 118, 218, 0.4));
}

.steps-phone-mockup {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-phone-image {
    width: 203px;
    height: 432px;
    object-fit: contain;
    filter: drop-shadow(0 8px 32px rgba(13, 29, 63, 0.15));
}

/* What Waiting - UNCHANGED */
.what-waiting {
    padding: 60px 0;
    background: var(--bg-primary);
}

.waiting-section-1 {
    width: 100%;
    padding: 39px;
    background: var(--white);
    box-shadow: var(--shadow-light);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    gap: 121px;
    margin-bottom: 60px;
}

.waiting-blue-header {
    padding: 10px 20px;
    background: #4576DA;
    border-radius: 61px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    align-self: flex-start;
}

.waiting-header-text {
    color: var(--white);
    font-size: 20px;
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -0.02em;
    word-wrap: break-word;
}

.waiting-cards-row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
}

.waiting-card-item {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.waiting-icon-circle {
    padding: 20.87px;
    background: #AEC9FF;
    border-radius: 187.83px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    align-self: flex-start;
}

.waiting-card-text {
    opacity: 0.80;
    color: var(--text-primary);
    font-size: 18px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    margin: 0;
}

.category-section {
    width: 100%;
    margin-bottom: 60px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.category-section:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 40px;
    background: var(--primary);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    margin-bottom: 0;
}

.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
}

.category-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--primary);
}

.category-header h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    margin: 0;
    word-wrap: break-word;
}

.waiting-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 32px 20px;
    background: var(--white);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: 0px 4px 24px rgba(13, 29, 63, 0.08);
}

.waiting-card {
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid rgba(62, 122, 242, 0.15);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
}

.waiting-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 32px rgba(62, 122, 242, 0.15);
    border-color: var(--primary);
}

.waiting-card .check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.waiting-card p {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 500;
    line-height: 23.40px;
    margin: 0;
    word-wrap: break-word;
}

/* Waitlist Form Section - IMPROVED FORM ACCESSIBILITY */
.waitlist-form-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.waitlist-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/rectangle-13.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.waitlist-form-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 30%);
    z-index: 1;
}

.waitlist-form-section .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: center;
}

.waitlist-form-section h2 {
    max-width: 774px;
    color: var(--white);
    font-size: 52px;
    font-weight: 500;
    line-height: 62.40px;
    margin-bottom: 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.waitlist-form {
    max-width: 440px;
    padding: 24px;
    background: var(--bg-primary);
    box-shadow: 0px 0px 62px rgba(93, 73, 53, 0.08);
    border-radius: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.form-top-section {
    display: flex;
    flex-direction: column;
    gap: 29px;
}

.form-intro {
    color: var(--text-primary);
    font-size: 20px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 25.80px;
    margin: 0;
}

.form-inputs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.waitlist-form input[type="text"],
.waitlist-form input[type="email"],
.waitlist-form input[type="tel"] {
    width: 100%;
    padding: 15px;
    border: none;
    border-bottom: 1px solid rgba(13, 29, 63, 0.20);
    background: transparent;
    font-family: 'Onest', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    color: var(--text-primary);
    transition: var(--transition);
}

.waitlist-form input:focus {
    outline: none;
    border-bottom-color: var(--primary);
}

.waitlist-form input::placeholder {
    opacity: 0.50;
    color: var(--text-primary);
    font-size: 14px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    line-height: 14px;
}

.form-group {
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-question {
    color: var(--text-primary);
    font-size: 16px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    line-height: 16px;
}

.radio-group {
    display: flex;
    gap: 15px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.radio-label:hover {
    color: var(--primary);
}

.radio-input {
    display: none;
}

.radio-custom {
    position: relative;
    width: 14px;
    height: 14px;
    border-radius: 9999px;
    border: 1px solid var(--text-primary);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.radio-filled {
    display: none;
    width: 8px;
    height: 8px;
    background: var(--text-primary);
    border-radius: 9999px;
}

.radio-input:checked ~ .radio-custom .radio-filled {
    display: block;
}

.radio-input:checked ~ .radio-custom {
    border-color: var(--primary);
}

.radio-text {
    opacity: 0.80;
    color: var(--text-primary);
    font-size: 14px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    line-height: 14px;
}

.form-bottom-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-label {
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.checkbox-label:hover {
    color: var(--primary);
}

.checkbox-input {
    display: none;
}

.checkbox-custom {
    width: 19px;
    height: 19px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--text-primary);
    border-radius: 4px;
    transition: var(--transition);
}

.checkbox-input:checked ~ .checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-input:checked ~ .checkbox-custom::after {
    content: '✓';
    position: absolute;
    color: var(--white);
    font-size: 10px;
    font-weight: bold;
    z-index: 1;
}

.checkbox-text {
    flex: 1;
    opacity: 0.80;
    color: var(--text-primary);
    font-size: 14px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    line-height: 14px;
}

/* Submit Button - ENHANCED */
.btn-submit {
    padding: 24px 144px;
    background: var(--primary);
    border-radius: 168px;
    border: none;
    color: var(--white);
    font-family: 'Onest', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover:not(:disabled) {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(62, 122, 242, 0.4);
}

.btn-submit:focus-visible {
    box-shadow: 0 0 0 3px rgba(62, 122, 242, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Loading State - IMPROVED */
.btn-submit.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

/* Team Section - UNCHANGED */
.team {
    padding: 60px 0;
    background: var(--bg-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    position: relative;
    padding: 10px;
    background: var(--white);
    box-shadow: var(--shadow-light);
    border-radius: 39px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: var(--transition);
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(62, 122, 242, 0.08) 0%, rgba(174, 201, 255, 0.03) 50%, transparent 70%);
    border-radius: 50%;
    top: -40px;
    right: -40px;
    z-index: 0;
    transition: var(--transition);
}

.team-card::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(174, 201, 255, 0.1) 0%, rgba(62, 122, 242, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    bottom: 60px;
    left: -30px;
    z-index: 0;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 12px 48px -12px rgba(62, 122, 242, 0.25);
}

.team-card:hover::before {
    transform: scale(1.2);
    opacity: 0.8;
}

.team-card:hover::after {
    transform: scale(1.2);
    opacity: 0.8;
}

.team-card img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 318px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 33px;
}

.team-card h3 {
    position: relative;
    z-index: 1;
    color: var(--text-primary);
    font-size: 26px;
    font-weight: 500;
    line-height: 26px;
    padding: 0 15px;
}

.team-card .position {
    position: relative;
    z-index: 1;
    opacity: 0.50;
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    padding: 0 15px;
}

.team-card .quote {
    position: relative;
    z-index: 1;
    opacity: 0.80;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 22.40px;
    padding: 0 15px 15px;
}

/* FAQ - IMPROVED INTERACTIVITY */
.faq {
    padding: 60px 0;
    background: var(--white);
}

.faq .subtitle {
    opacity: 0.80;
    color: var(--text-primary);
    font-size: 28px;
    font-weight: 500;
    line-height: 30.80px;
    margin-bottom: 40px;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 100%;
}

.faq-item {
    padding: 24px 28px;
    background: #C0D3FF;
    border-radius: 32px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.faq-item:hover {
    background: #AEC9FF;
    transform: translateY(-2px);
}

.faq-item[open] {
    background: var(--primary);
}

.faq-question-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.faq-question-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.faq-question-text p {
    color: var(--text-primary);
    font-size: 18px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    margin: 0;
}

.faq-item[open] .faq-question-text p {
    color: var(--white);
}

.faq-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-icon svg {
    transition: transform 0.3s ease;
}

.faq-item:hover .faq-icon svg {
    transform: rotate(45deg);
}

.faq-item[open] .faq-icon svg {
    transform: rotate(180deg);
}

/* Footer - OPTIMIZED */
.footer {
    position: relative;
    padding: 50px 0;
    background: var(--primary);
    overflow: hidden;
}

.footer-mandala {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.footer-mandala img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-content {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-logo {
    color: var(--white);
    font-size: 284px;
    font-weight: 500;
    line-height: 284px;
    margin-bottom: 40px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-col a {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 22.40px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover,
.footer-col a:focus-visible {
    opacity: 0.8;
    color: var(--white);
}

.footer-cta-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.btn-footer {
    display: inline-block;
    padding: 24px 168px;
    background: var(--white);
    border-radius: 84px;
    color: var(--primary);
    font-family: 'Onest', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.02em;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
}

.btn-footer:hover,
.btn-footer:focus-visible {
    background: #DBE7FF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icon:hover,
.social-icon:focus-visible {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-icon:hover svg path,
.social-icon:focus-visible svg path {
    fill: var(--primary);
}

/* Modern Spinner - OPTIMIZED */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
    flex-shrink: 0;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Notification Toast - ENHANCED */
.notification-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    background: var(--white);
    color: var(--text-primary);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 15px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 420px;
    border-left: 4px solid #28a745;
}

.notification-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-toast.success {
    border-left-color: #28a745;
}

.notification-toast.error {
    border-left-color: #EF4444;
}

.notification-toast.success .notification-icon {
    color: #28a745;
}

.notification-toast.error .notification-icon {
    color: #EF4444;
}

.notification-icon {
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
    line-height: 1.3;
}

.notification-message {
    font-weight: 400;
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.4;
}

/* RESPONSIVE STYLES - OPTIMIZED (YOUR EXACT BREAKPOINTS) */

/* Tablet: 768px */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 16px;
    }

    .nav {
        grid-template-columns: 1fr auto 1fr;
        padding: 12px 16px;
        gap: 16px;
        background: var(--white);
    }

    .nav-logo img {
        height: 48px;
    }

    .nav-left,
    .nav-right {
        gap: 16px;
    }

    .nav a {
        font-size: 14px;
        line-height: 14px;
        white-space: nowrap;
    }

    .hero-bg-text {
        font-size: 180px;
        line-height: 180px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 100px;
        padding: 0 16px;
    }

    .hero-left,
    .hero-right {
        display: none;
    }

    .hero-center {
        gap: 40px;
        padding-bottom: 60px;
    }

    .phone-mockup {
        width: 250px;
        height: 530px;
    }

    .phone-main {
        width: 250px;
        height: 530px;
    }

    .card-1 {
        top: 40px;
        left: -280px;
    }

    .card-1 img {
        width: 280px;
    }

    .card-2 {
        bottom: 160px;
        right: -280px;
    }

    .card-2 img {
        width: 280px;
    }

    .btn-primary-large img {
        width: 320px;
    }

    .mission {
        min-height: 300px;
        padding: 40px 0;
    }

    .mission-label {
        top: 40px;
        left: 16px;
        font-size: 18px;
    }

    .mission h2 {
        top: 40px;
        right: 16px;
        font-size: 28px;
        line-height: 110%;
        max-width: 400px;
    }

    .mission-text {
        font-size: 13px;
    }

    .mission-text-middle {
        max-width: 320px;
    }

    .mission-text-bottom {
        bottom: 40px;
        right: 16px;
        max-width: 280px;
    }

    .for-section {
        padding: 40px 0;
    }

    .for-section.wellness {
        margin-top: -200px;
        padding-top: 80px;
    }

    .for-background {
        left: 16px;
        right: 16px;
        border-radius: 32px;
    }

    .for-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .for-content h2 {
        font-size: 32px;
    }

    .for-content h3 {
        font-size: 18px;
    }

    .for-content p {
        font-size: 15px;
    }

    .btn-pill {
        padding: 12px 12px 12px 32px;
    }

    .btn-pill span {
        font-size: 28px;
    }

    .section-title {
        font-size: 42px;
        margin-bottom: 40px;
    }

    .why-ayumedica {
        padding: 40px 0;
    }

    .feature-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 20px 16px 16px 16px;
    }

    .feature-text h3 {
        font-size: 20px;
    }

    .feature-text p {
        font-size: 14px;
        line-height: 140%;
    }

    .steps,
    .steps-step2 {
        padding: 40px 0;
    }

    .steps-content {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }

    .steps-indicators {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }

    .step-indicator {
        flex-direction: column;
        gap: 8px;
    }

    .step-icon {
        width: 48px;
        height: 48px;
    }

    .step-label {
        text-align: center;
    }

    .step-label h3 {
        font-size: 18px;
    }

    .step-phone-image {
        width: 180px;
        height: 384px;
    }

    .what-waiting {
        padding: 40px 0;
    }

    .waiting-section-1 {
        padding: 24px;
        gap: 60px;
        margin-bottom: 40px;
    }

    .waiting-cards-row {
        flex-direction: column;
        gap: 20px;
    }

    .category-section {
        margin-bottom: 40px;
    }

    .waiting-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 24px 16px;
    }

    .waiting-card {
        padding: 20px 16px;
    }

    .waiting-card p {
        font-size: 16px;
    }

    .waitlist-form-section {
        padding: 40px 0;
    }

    .waitlist-form-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .waitlist-form-section h2 {
        font-size: 36px;
        line-height: 120%;
        text-align: center;
    }

    .waitlist-form {
        max-width: 100%;
        margin: 0 auto;
    }

    .team {
        padding: 40px 0;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .team-card {
        padding: 8px;
    }

    .team-card img {
        height: 260px;
    }

    .team-card h3 {
        font-size: 22px;
        padding: 0 12px;
    }

    .team-card .position {
        font-size: 18px;
        padding: 0 12px;
    }

    .team-card .quote {
        font-size: 14px;
        padding: 0 12px 12px;
    }

    .faq {
        padding: 40px 0;
    }

    .faq .subtitle {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .faq-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .faq-item {
        padding: 20px 24px;
    }

    .faq-question-text p {
        font-size: 16px;
    }

    .footer {
        padding: 40px 0;
    }

    .footer-content {
        padding: 0 16px;
    }

    .footer-logo {
        font-size: 120px;
        line-height: 120px;
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 40px;
    }

    .footer-col a {
        font-size: 14px;
    }

    .btn-footer {
        padding: 18px 80px;
        font-size: 16px;
    }

    .footer-social {
        gap: 20px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }
}

/* iPhone XR / 11 / XS Max (414px)  */
@media (min-width: 414px) and (max-width: 430px) {
    .container {
        padding: 0 20px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .waitlist-form-section {
        padding: 40px 0;
        overflow: hidden;
    }

    .waitlist-form-section .container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 0 20px;
    }

    .waitlist-form-section h2 {
        font-size: 32px;
        line-height: 120%;
        text-align: center;
        max-width: 100%;
    }

    .waitlist-form {
        max-width: 100%;
        padding: 22px;
        border-radius: 28px;
    }

    .form-intro {
        font-size: 19px;
        line-height: 140%;
    }

    .waitlist-form input[type="text"],
    .waitlist-form input[type="email"],
    .waitlist-form input[type="tel"] {
        padding: 14px;
        font-size: 14px;
    }

    .btn-submit {
        padding: 20px 80px;
        font-size: 19px;
    }
}

/* iPhone 14 Pro Max & Larger (391px - 430px) */
@media (min-width: 391px) and (max-width: 430px) {
    .container {
        padding: 0 16px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .nav {
        grid-template-columns: auto 1fr auto;
        padding: 10px 14px;
        gap: 10px;
        background: var(--white);
    }

    .nav-logo img {
        height: 40px;
    }

    .nav-left {
        display: none;
    }

    .nav-right {
        gap: 12px;
    }

    .nav a {
        font-size: 12px;
        line-height: 12px;
        padding: 6px 8px;
        white-space: nowrap;
    }

    .mission {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 0 0 30px;
        overflow: hidden;
    }

    .mandala-bg {
        width: 600px;
        height: 600px;
        top: 50px;
    }

    .hero-bg-text {
        font-size: 70px;
        line-height: 70px;
        top: 100px;
        max-width: 100vw;
        overflow: hidden;
        text-overflow: clip;
        white-space: nowrap;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 80px;
        padding: 0 16px;
    }

    .hero-left,
    .hero-right {
        display: none;
    }

    .hero-center {
        gap: 30px;
        padding-bottom: 30px;
    }

    .phone-container {
        height: 600px;
    }

    .phone-mockup {
        width: 220px;
        height: 467px;
    }

    .phone-main {
        width: 220px;
        height: 467px;
    }

    .card-1 {
        left: -80px;
        top: 5%;
    }

    .card-1 img {
        width: 180px;
    }

    .card-2 {
        right: -80px;
        top: 50%;
    }

    .card-2 img {
        width: 180px;
    }

    .btn-primary-large img {
        width: 300px;
        margin-top: 360px;
    }

    .steps,
    .steps-step2 {
        padding: 30px 0;
        overflow: hidden;
    }

    .steps-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 0 12px;
        max-width: 100%;
    }

    .steps-indicators {
        flex-direction: column;
        gap: 14px;
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
    }

    .step-indicator {
        flex-direction: row;
        gap: 12px;
        padding: 0 8px;
        align-items: center;
    }

    .step-icon {
        width: 44px;
        height: 44px;
        padding: 11px;
        flex-shrink: 0;
    }

    .step-icon svg {
        width: 20px;
        height: 20px;
    }

    .step-label {
        text-align: left;
        flex: 1;
    }

    .step-number-text {
        font-size: 12px;
    }

    .step-label h3 {
        font-size: 15px;
        white-space: normal;
        word-wrap: break-word;
        line-height: 120%;
    }

    .steps-phone-mockup {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .step-phone-image {
        width: 160px;
        height: 340px;
        display: block;
        margin: 0 auto;
    }

    .footer-logo {
        font-size: 52px;
        line-height: 56px;
        padding: 0 16px;
        text-align: center;
    }
}

/* iPhone 12 Pro / 13 Pro (376px - 390px) */
@media (min-width: 376px) and (max-width: 390px) {
    .container {
        padding: 0 12px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .nav {
        grid-template-columns: auto 1fr auto;
        padding: 10px 12px;
        gap: 8px;
        background: var(--white);
    }

    .nav-logo img {
        height: 38px;
    }

    .nav-left {
        display: none;
    }

    .nav-right {
        gap: 10px;
    }

    .nav a {
        font-size: 11px;
        line-height: 11px;
        padding: 5px 7px;
        white-space: nowrap;
    }

    .mission {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 0 0 30px;
        overflow: hidden;
    }

    .mandala-bg {
        width: 600px;
        height: 600px;
        top: 50px;
    }

    .hero-bg-text {
        font-size: 65px;
        line-height: 65px;
        top: 100px;
        max-width: 100vw;
        overflow: hidden;
        text-overflow: clip;
        white-space: nowrap;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 80px;
        padding: 0 12px;
    }

    .hero-left,
    .hero-right {
        display: none;
    }

    .hero-center {
        gap: 30px;
        padding-bottom: 30px;
    }

    .phone-container {
        height: 600px;
    }

    .phone-mockup {
        width: 210px;
        height: 445px;
    }

    .phone-main {
        width: 210px;
        height: 445px;
    }

    .card-1 {
        left: -75px;
        top: 5%;
    }

    .card-1 img {
        width: 170px;
    }

    .card-2 {
        right: -75px;
        top: 50%;
    }

    .card-2 img {
        width: 170px;
    }

    .btn-primary-large img {
        width: 290px;
        margin-top: 350px;
    }

    .steps,
    .steps-step2 {
        padding: 30px 0;
        overflow: hidden;
    }

    .steps-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 0 8px;
    }

    .steps-indicators {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    .step-indicator {
        flex-direction: row;
        gap: 10px;
        padding: 0 8px;
        align-items: center;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        padding: 10px;
        flex-shrink: 0;
    }

    .step-icon svg {
        width: 18px;
        height: 18px;
    }

    .step-label {
        text-align: left;
        flex: 1;
    }

    .step-number-text {
        font-size: 11px;
    }

    .step-label h3 {
        font-size: 13px;
        white-space: normal;
        word-wrap: break-word;
        line-height: 120%;
    }

    .steps-phone-mockup {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .step-phone-image {
        width: 150px;
        height: 320px;
        display: block;
        margin: 0 auto;
    }

    .waitlist-form-section {
        padding: 30px 0;
        overflow: hidden;
    }

    .waitlist-form-section .container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 12px;
    }

    .waitlist-form-section h2 {
        font-size: 30px;
        line-height: 120%;
        text-align: center;
        max-width: 100%;
    }

    .waitlist-form {
        max-width: 100%;
        padding: 20px;
        border-radius: 24px;
    }

    .form-intro {
        font-size: 18px;
        line-height: 140%;
    }

    .btn-submit {
        padding: 18px 60px;
        font-size: 18px;
    }

    .footer-logo {
        font-size: 46px;
        line-height: 50px;
        padding: 0 12px;
        text-align: center;
    }
}

/* Mobile: 375px - YOUR EXACT SPECS */
@media (max-width: 375px) {
    /* YOUR EXACT MOBILE OPTIMIZATIONS - UNCHANGED */
    html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        touch-action: pan-y;
    }

    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        touch-action: pan-y;
        position: relative;
        margin: 0;
        padding: 0;
    }

    * {
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }

    img {
        max-width: 100% !important;
        height: auto;
    }

    svg {
        max-width: 100% !important;
    }

    .hero-bg-text {
        max-width: 100vw !important;
        white-space: nowrap;
        overflow: hidden;
    }

    .mandala-bg {
        max-width: 100vw !important;
    }

    .container {
        padding: 0 16px;
        max-width: 100% !important;
        width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }

    .nav {
        grid-template-columns: auto 1fr auto;
        padding: 8px 12px;
        gap: 8px;
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        background: var(--white);
    }

    .nav-logo img {
        height: 36px;
    }

    .nav-left {
        display: none;
    }

    .nav-right {
        gap: 10px;
    }

    .nav a {
        font-size: 12px;
        line-height: 12px;
        padding: 4px 6px;
        white-space: nowrap;
    }

    .hero {
        min-height: auto;
        padding: 0 0 20px;
        margin-bottom: 20px;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }

    .mandala-bg {
        width: 800px;
        height: 800px;
        top: 40px;
    }

    .hero-bg-text {
        font-size: 72px;
        line-height: 72px;
        top: 80px;
        max-width: 100vw !important;
        overflow: hidden;
        text-overflow: clip;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 60px;
        padding: 0 16px;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }

    .hero-center {
        gap: 30px;
        padding-bottom: 40px;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }

    .phone-container {
        overflow: hidden;
        width: 100%;
        max-width: 100%;
        height: 550px;
    }

    .phone-mockup {
        width: 200px;
        height: 424px;
    }

    .phone-main {
        width: 200px;
        height: 424px;
    }

    .card-1,
    .card-2 {
        display: none;
    }

    .btn-primary-large img {
        width: 280px;
        margin-top: 330px;
    }

    .mission {
        display: none;
    }

    .for-section {
        padding: 30px 0;
        margin-top: 20px;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }

    .for-background {
        left: 16px;
        right: 16px;
        border-radius: 24px;
    }

    .for-section .container {
        gap: 30px;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }

    .for-content {
        padding: 20px 0;
    }

    .for-content h2 {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .for-content h3 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .for-content p {
        font-size: 14px;
    }

    .for-image img {
        border-radius: 16px;
    }

    .cta-pill {
        padding: 30px 0;
    }

    .btn-pill {
        padding: 10px 10px 10px 24px;
    }

    .btn-pill span {
        font-size: 20px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .why-ayumedica {
        padding: 30px 0;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }

    .feature-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 16px 14px 14px 14px;
        border-radius: 24px;
    }

    .feature-text h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .feature-text p {
        font-size: 13px;
        line-height: 140%;
    }

    /* Mobile Feature Visuals - YOUR EXACT SPECS */
    .feature-visual.india-map-visual,
    .feature-visual.personalized-care-visual,
    .feature-visual.holistic-wellness-visual,
    .feature-visual.affordability-visual,
    .feature-visual.wisdom-visual,
    .feature-visual.booking-visual {
        height: 120px;
    }

    .feature-visual.india-map-visual img,
    .feature-visual.personalized-care-visual img,
    .feature-visual.affordability-visual img {
        margin-top: -120px;
    }

    .feature-visual.holistic-wellness-visual img,
    .feature-visual.booking-visual img {
        margin-top: -100px;
    }

    .feature-visual.wisdom-visual img {
        margin-top: -110px;
    }

    .feature-visual.safe-sessions-visual {
        height: 100px;
    }

    .feature-visual.safe-sessions-visual img {
        margin-top: -100px;
    }

    .feature-visual.verified-healers-visual {
        height: 180px;
    }

    .feature-visual.verified-healers-visual img {
        margin-bottom: 30px;
    }

    .feature-visual.availability-visual {
        height: 140px;
    }

    .feature-visual.availability-visual img {
        margin-top: -100px;
    }

    .steps,
    .steps-step2 {
        padding: 30px 0;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }

    .steps::before,
    .steps-step2::before {
        width: 800px;
        height: 800px;
    }

    .steps-content {
        grid-template-columns: 1fr;
        gap: 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .steps-indicators {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .step-indicator {
        flex-direction: row;
        gap: 12px;
    }

    .step-icon {
        width: 42px;
        height: 42px;
        padding: 12px;
    }

    .step-icon svg {
        width: 20px;
        height: 20px;
    }

    .step-label {
        text-align: left;
    }

    .step-number-text {
        font-size: 12px;
    }

    .step-label h3 {
        font-size: 14px;
        white-space: normal;
        word-wrap: break-word;
    }

    .btn-join-waitlist {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .btn-join-waitlist img {
        width: 100%;
        max-width: 200px;
    }

    .steps-phone-mockup {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .step-phone-image {
        width: 140px;
        height: 298px;
        display: block;
    }

    .what-waiting {
        padding: 30px 0;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }

    .waiting-section-1 {
        padding: 20px;
        gap: 40px;
        margin-bottom: 30px;
        border-radius: 24px;
    }

    .waiting-blue-header {
        padding: 8px 16px;
        border-radius: 48px;
    }

    .waiting-header-text {
        font-size: 18px;
    }

    .waiting-icon-circle {
        padding: 16px;
    }

    .waiting-card-text {
        font-size: 16px;
    }

    .category-section {
        margin-bottom: 30px;
    }

    .category-header {
        padding: 16px 24px;
        border-radius: 16px 16px 0 0;
    }

    .category-icon {
        width: 40px;
        height: 40px;
    }

    .category-icon svg {
        width: 24px;
        height: 24px;
    }

    .category-header h3 {
        font-size: 18px;
    }

    .waiting-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px 12px;
        border-radius: 0 0 16px 16px;
    }

    .waiting-card {
        padding: 16px;
        border-radius: 16px;
    }

    .waiting-card .check-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .waiting-card p {
        font-size: 15px;
        line-height: 140%;
    }

    .waitlist-form-section {
        padding: 30px 0;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }

    .waitlist-form-section .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .waitlist-form-section h2 {
        font-size: 28px;
        line-height: 120%;
        max-width: 100%;
    }

    .waitlist-form {
        padding: 20px;
        border-radius: 24px;
    }

    .form-top-section {
        gap: 20px;
    }

    .form-intro {
        font-size: 18px;
    }

    .waitlist-form input[type="text"],
    .waitlist-form input[type="email"],
    .waitlist-form input[type="tel"] {
        padding: 12px;
        font-size: 13px;
    }

    .waitlist-form input::placeholder {
        font-size: 13px;
    }

    .form-group {
        padding-top: 12px;
    }

    .form-question {
        font-size: 14px;
    }

    .radio-text {
        font-size: 13px;
    }

    .checkbox-text {
        font-size: 13px;
    }

    .btn-submit {
        padding: 18px 80px;
        font-size: 18px;
        border-radius: 100px;
    }

    .team {
        padding: 30px 0;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .team-card {
        padding: 8px;
        border-radius: 24px;
    }

    .team-card img {
        height: 320px;
        border-radius: 20px;
    }

    .team-card h3 {
        font-size: 20px;
        line-height: 120%;
        padding: 0 10px;
    }

    .team-card .position {
        font-size: 16px;
        line-height: 140%;
        padding: 0 10px;
    }

    .team-card .quote {
        font-size: 13px;
        line-height: 140%;
        padding: 0 10px 10px;
    }

    .faq {
        padding: 30px 0;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }

    .faq .subtitle {
        font-size: 20px;
        line-height: 130%;
        margin-bottom: 24px;
    }

    .faq-list {
        gap: 10px;
    }

    .faq-item {
        padding: 16px 20px;
        border-radius: 20px;
    }

    .faq-question-wrapper {
        gap: 16px;
    }

    .faq-question-text p {
        font-size: 14px;
    }

    .faq-icon {
        width: 32px;
        height: 32px;
    }

    .footer {
        padding: 30px 0;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }

    .footer-mandala {
        width: 800px;
        height: 800px;
        left: 0;
        top: -200px;
    }

    .footer-content {
        padding: 0 16px;
    }

    .footer-logo {
        font-size: 42px;
        line-height: 46px;
        margin-bottom: 24px;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        padding: 0 8px;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 30px;
        text-align: left;
    }

    .footer-col {
        gap: 12px;
    }

    .footer-col a {
        font-size: 13px;
        line-height: 140%;
    }

    .footer-cta-wrapper {
        margin-bottom: 30px;
    }

    .btn-footer {
        padding: 14px 40px;
        font-size: 14px;
        border-radius: 60px;
        display: inline-block;
        width: auto;
    }

    .footer-social {
        gap: 12px;
        padding-top: 24px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }
}
