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

body {
    font-family: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #F9FBFF;
    overflow-x: hidden;
    color: #0D1D3F;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: #F9FBFF;
    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;
}

.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 */
.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%;
}

.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;
}

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

.nav a:hover,
.nav a.active {
    opacity: 1;
}

/* Hero Content */
.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: #0D1D3F;
    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 to hold phone + cards */
.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 */
.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: transform 0.3s ease, filter 0.3s ease;
}

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

.notification-card {
    position: absolute;
    top: 30%;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

@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: #0D1D3F;
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.02em;
}

/* Mission Section */
.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 */
.for-section {
    position: relative;
    padding: 40px 0;
    margin-top: 40px;
    z-index: 2;
}

/* First section (wellness) should overlap phone bottom */
.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: #0D1D3F;
    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: #0D1D3F;
    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: #0D1D3F;
    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 */
.cta-pill {
    padding: 40px 0;
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 14px 14px 48px;
    background: #3E7AF2;
    border-radius: 84px;
    width: 100%;
    max-width: 1360px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-pill:hover {
    background: #215DD5;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(62, 122, 242, 0.3);
}

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

.btn-pill svg circle {
    fill: #F9FBFF;
}

/* Section Titles - Using Header 1 */
.section-title {
    color: #0D1D3F;
    font-family: 'Onest', sans-serif;
    font-size: 62px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.04em;
    margin-bottom: 60px;
}

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

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

/* Row 1: 2 wide cards */
.feature-card.card-1 {
    grid-column: span 3;
}

.feature-card.card-2 {
    grid-column: span 3;
}

/* Row 2: 3 narrow cards */
.feature-card.card-3,
.feature-card.card-4,
.feature-card.card-5 {
    grid-column: span 2;
}

/* Row 3: 2 wide cards */
.feature-card.card-6,
.feature-card.card-7 {
    grid-column: span 3;
}

/* Row 4: 3 narrow cards */
.feature-card.card-8,
.feature-card.card-9,
.feature-card.card-10 {
    grid-column: span 2;
}

.feature-card {
    background: white;
    box-shadow: 0px 0px 36px -12px rgba(3.65, 12.60, 31.63, 0.10);
    border-radius: 36px;
    padding: 24px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
}

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

/* Card 1 Specific Styles */
.feature-card.card-1 {
    grid-column: span 3;
    display: flex;
    flex-direction: column;
    gap: 0px !important;
    padding: 0 !important;
    overflow: hidden;
}

.card-1-image {
    width: 100% !important;
    height: 480px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    margin-top: -120px !important;
}

.feature-card.card-1 h3 {
    color: #0D1D3F;
    font-size: 24px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    opacity: 0.80;
    margin: 0;
    padding: 0px 20px 0 20px;
}

/* Card 2 Specific Styles */
.feature-card.card-2 {
    grid-column: span 3;
    display: flex;
    flex-direction: column;
    gap: 0px !important;
    padding: 0 !important;
    overflow: hidden;
}

.card-2-image {
    width: 100% !important;
    height: 480px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    margin-top: -120px !important;
}

.feature-card.card-2 h3 {
    color: #0D1D3F;
    font-size: 24px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    opacity: 0.80;
    margin: 0;
    padding: 0px 20px 0 20px;
}

/* Card 3 Specific Styles */
.feature-card.card-3 {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: 0px !important;
    padding: 0 !important;
    overflow: hidden;
}

.card-3-image {
    width: 100% !important;
    height: 370px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    margin-top: -60px !important;
}

.feature-card.card-3 h3 {
    color: #0D1D3F;
    font-size: 24px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 31.20px;
    word-wrap: break-word;
    opacity: 0.80;
    margin: 0;
    padding: 16px 20px 0 20px;
}

/* Card 4 Specific Styles */
.feature-card.card-4 {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: 0px !important;
    padding: 0 !important;
    overflow: hidden;
}

.card-4-image {
    width: 100% !important;
    height: 370px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    margin-top: -60px !important;
}

.feature-card.card-4 h3 {
    color: #0D1D3F;
    font-size: 24px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    opacity: 0.80;
    margin: 0;
    padding: 16px 20px 0 20px;
}

/* Card 5 Specific Styles */
.feature-card.card-5 {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: 0px !important;
    padding: 0 !important;
    overflow: hidden;
}

.card-5-image {
    width: 100% !important;
    height: 370px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    margin-top: -60px !important;
}

.feature-card.card-5 h3 {
    color: #0D1D3F;
    font-size: 24px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 31.20px;
    word-wrap: break-word;
    opacity: 0.80;
    margin: 0;
    padding: 16px 20px 0 20px;
}

/* Card 6 Specific Styles */
.feature-card.card-6 {
    grid-column: span 3;
    display: flex;
    flex-direction: column;
    gap: 0px !important;
    padding: 0 !important;
    overflow: hidden;
}

.card-6-image {
    width: 100% !important;
    height: 480px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    margin-top: -120px !important;
}

.feature-card.card-6 h3 {
    color: #0D1D3F;
    font-size: 24px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 31.20px;
    word-wrap: break-word;
    opacity: 0.80;
    margin: 0;
    padding: 0px 20px 0 20px;
}

/* Card 7 Specific Styles */
.feature-card.card-7 {
    grid-column: span 3;
    display: flex;
    flex-direction: column;
    gap: 0px !important;
    padding: 0 !important;
    overflow: hidden;
}

.card-7-image {
    width: 100% !important;
    height: 480px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    margin-top: -120px !important;
}

.feature-card.card-7 h3 {
    color: #0D1D3F;
    font-size: 24px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 31.20px;
    word-wrap: break-word;
    opacity: 0.80;
    margin: 0;
    padding: 0px 20px 0 20px;
}

/* Card 8 Specific Styles */
.feature-card.card-8 {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: 0px !important;
    padding: 0 !important;
    overflow: hidden;
}

.card-8-image {
    width: 100% !important;
    height: 420px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    margin-top: -110px !important;
}

.feature-card.card-8 h3 {
    color: #0D1D3F;
    font-size: 24px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 31.20px;
    word-wrap: break-word;
    opacity: 0.80;
    margin: 0;
    padding: 16px 20px 0 20px;
}

/* Card 9 Specific Styles */
.feature-card.card-9 {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: 0px !important;
    padding: 0 !important;
    overflow: hidden;
}

.card-9-image {
    width: 100% !important;
    height: 420px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    margin-top: -110px !important;
}

.feature-card.card-9 h3 {
    color: #0D1D3F;
    font-size: 24px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 31.20px;
    word-wrap: break-word;
    opacity: 0.80;
    margin: 0;
    padding: 16px 20px 0 20px;
}

/* Card 10 Specific Styles */
.feature-card.card-10 {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: 0px !important;
    padding: 0 !important;
    overflow: hidden;
}

.card-10-image {
    width: 100% !important;
    height: 420px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    margin-top: -110px !important;
}

.feature-card.card-10 h3 {
    color: #0D1D3F;
    font-size: 24px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 31.20px;
    word-wrap: break-word;
    opacity: 0.80;
    margin: 0;
    padding: 16px 20px 0 20px;
}

/* Steps */
.steps {
    position: relative;
    padding: 50px 0;
    background: #F9FBFF;
    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;
}

/* Step 2 section with purple background */
.steps-step2 {
    position: relative;
    background: #E8EFFF;
    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: opacity 0.3s ease;
}

.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;
}

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

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

.step-number-text {
    color: #0D1D3F;
    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: #0D1D3F;
    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: all 0.3s ease;
}

.btn-join-waitlist img {
    width: 230px;
    height: auto;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.btn-join-waitlist:hover {
    transform: translateY(-2px);
}

.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));
}

/* Waitlist Form Section */
.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: 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: #F9FBFF;
    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: #0D1D3F;
    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: #0D1D3F;
}

.waitlist-form input::placeholder {
    opacity: 0.50;
    color: #0D1D3F;
    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: #0D1D3F;
    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;
}

.radio-input {
    display: none;
}

.radio-custom {
    position: relative;
    width: 14px;
    height: 14px;
    border-radius: 9999px;
    border: 1px solid #0D1D3F;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radio-filled {
    display: none;
    width: 8px;
    height: 8px;
    background: #0D1D3F;
    border-radius: 9999px;
}

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

.radio-text {
    opacity: 0.80;
    color: #0D1D3F;
    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;
}

.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;
}

.checkbox-custom::before {
    content: '';
    width: 12.67px;
    height: 12.67px;
    position: absolute;
    left: 3.17px;
    top: 3.17px;
    outline: 1px solid #0D1D3F;
    outline-offset: -0.50px;
    transition: all 0.2s ease;
}

.checkbox-input:checked ~ .checkbox-custom::before {
    background: #0D1D3F;
}

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

.checkbox-text {
    flex: 1;
    opacity: 0.80;
    color: #0D1D3F;
    font-size: 14px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    line-height: 14px;
}

.btn-submit {
    padding: 24px 144px;
    background: #3E7AF2;
    border-radius: 168px;
    border: none;
    color: #F9FBFF;
    font-family: 'Onest', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-submit:hover {
    background: #215DD5;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(62, 122, 242, 0.4);
}

/* Team Section */
.team {
    padding: 60px 0;
    background: #F9FBFF;
}

.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: white;
    box-shadow: 0px 0px 36px -12px rgba(3.65, 12.60, 31.63, 0.10);
    border-radius: 39px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: all 0.3s ease;
    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: all 0.3s ease;
}

.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: all 0.3s ease;
}

.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: #0D1D3F;
    font-size: 26px;
    font-weight: 500;
    line-height: 26px;
    padding: 0 15px;
}

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

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

/* FAQ */
.faq {
    padding: 60px 0;
    background: white;
}

.faq .subtitle {
    opacity: 0.80;
    color: #0D1D3F;
    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: all 0.3s ease;
    cursor: pointer;
}

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

.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: #0D1D3F;
    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-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

/* Footer */
.footer {
    position: relative;
    padding: 50px 0;
    background: #3E7AF2;
    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: 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: white;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.40px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 0.8;
}

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

.btn-footer {
    display: inline-block;
    padding: 24px 168px;
    background: white;
    border-radius: 84px;
    color: #3E7AF2;
    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: all 0.3s ease;
}

.btn-footer:hover {
    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: all 0.3s ease;
}

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

.social-icon:hover svg path {
    fill: #3E7AF2;
}

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

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

/* Button loading state */
.btn-submit.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.btn-submit.loading .spinner {
    margin-right: 8px;
}

/* Modern Notification Toast */
.notification-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    background: white;
    color: #0D1D3F;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    font-family: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 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 ===== */

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

    /* Navigation */
    .nav {
        grid-template-columns: 1fr auto 1fr;
        padding: 12px 16px;
        gap: 16px;
    }

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

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

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

    /* Hero Section */
    .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 Section */
    .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 Sections */
    .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;
    }

    /* CTA Pill */
    .btn-pill {
        padding: 12px 12px 12px 32px;
    }

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

    /* Section Titles */
    .section-title {
        font-size: 42px;
        margin-bottom: 40px;
    }

    /* Why AyuMedica */
    .why-ayumedica {
        padding: 40px 0;
        background: white;
    }

    .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,
    .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 */
    .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 */
    .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 Section */
    .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 */
    .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 */
    .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;
    }

    .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;
    }

    .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 */
@media (max-width: 375px) {
    /* Prevent horizontal scroll on mobile */
    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 */
    .container {
        padding: 0 16px;
        max-width: 100% !important;
        width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }

    /* Navigation */
    .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;
    }

    .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 Section */
    .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: 100px;
        line-height: 100px;
        top: 80px;
    }

    .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%;
    }

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

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

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

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

    /* Mission Section */
    .mission {
        min-height: 400px;
        padding: 30px 0;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }

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

    .mission h2 {
        position: static;
        font-size: 24px;
        line-height: 120%;
        max-width: 100%;
        padding: 80px 16px 0;
        text-align: center;
    }

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

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

    .mission-text-bottom {
        bottom: 30px;
        right: 16px;
        left: 16px;
        text-align: center;
        max-width: 100%;
    }

    /* For Sections */
    .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 */
    .cta-pill {
        padding: 30px 0;
    }

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

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

    /* Section Titles */
    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    /* Why AyuMedica */
    .why-ayumedica {
        padding: 30px 0;
        background: white;
        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%;
    }

    /* Adjust card visual heights for mobile */
    .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,
    .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;
    }

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

    .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: 16px;
    }

    .btn-join-waitlist img {
        width: 160px;
    }

    .step-phone-image {
        width: 150px;
        height: 320px;
    }

    /* What Waiting */
    .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 */
    .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 Section */
    .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 */
    .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 */
    .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: 100px;
        line-height: 100px;
        margin-bottom: 24px;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .footer-col {
        gap: 16px;
    }

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

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

    .btn-footer {
        padding: 16px 60px;
        font-size: 16px;
        border-radius: 60px;
    }

    .footer-social {
        gap: 16px;
        padding-top: 30px;
    }

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

/* All Mobile Devices - Step Icon Fix */
@media (max-width: 430px) {
    .step-icon {
        width: 36px !important;
        height: 36px !important;
        padding: 8px !important;
    }

    .step-icon img {
        width: 20px !important;
        height: 20px !important;
        object-fit: contain;
    }

    .step-icon svg {
        width: 16px !important;
        height: 16px !important;
    }
}

/* iPhone 15 Pro / 16 Pro (393px) - Fix right side cutoff */
@media (min-width: 391px) and (max-width: 395px) {
    .container {
        padding: 0 16px !important;
        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 16px !important;
        max-width: 100vw;
        box-sizing: border-box;
    }

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

    .waitlist-form {
        max-width: calc(100vw - 48px);
        width: 100%;
        padding: 20px;
        border-radius: 28px;
        margin: 0 auto;
        box-sizing: border-box;
    }

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

    .waitlist-form input[type="text"],
    .waitlist-form input[type="email"],
    .waitlist-form input[type="tel"] {
        width: 100%;
        padding: 14px 12px;
        font-size: 14px;
        box-sizing: border-box;
    }

    .btn-submit {
        width: 100%;
        padding: 20px 40px;
        font-size: 19px;
        box-sizing: border-box;
    }
}
