/* ========================================
   CSS Variables
   ======================================== */
:root {
    /* Primary Colors */
    --purple-primary: #8B5CF6;
    --blue-primary: #3B82F6;
    --pink-primary: #EC4899;
    
    /* Light Shades */
    --purple-light: #EDE9FE;
    --blue-light: #DBEAFE;
    --pink-light: #FCE7F3;
    
    /* Dark Shades */
    --purple-dark: #7C3AED;
    --blue-dark: #2563EB;
    --pink-dark: #DB2777;
    
    /* Warm Palette */
    --cream: #FAFAFF;
    --cream-dark: #F0EEFF;
    --warm-white: #FCFBFF;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Theme accent aliases */
    --color-text-primary: #8B5CF6;
    --color-text-secondary: #6D28D9;
    --color-background-light: #F5F3FF;
    --color-border-light: rgba(139, 92, 246, 0.2);
    
    /* Spacing */
    --section-padding: 6rem 0;
    --section-gap: 0;
    --container-padding: 0 2rem;
    
    /* Typography */
    --font-primary: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-weight: 300;
    line-height: 1.7;
    color: var(--gray-800);
    background:
        radial-gradient(circle, rgba(139, 92, 246, 0.075) 1.5px, transparent 1.5px),
        radial-gradient(ellipse 70% 40% at 0% 0%, rgba(196, 181, 253, 0.28) 0%, transparent 55%),
        radial-gradient(ellipse 65% 45% at 100% 100%, rgba(251, 207, 232, 0.30) 0%, transparent 55%),
        radial-gradient(ellipse 50% 35% at 55% 50%, rgba(167, 139, 250, 0.12) 0%, transparent 60%),
        linear-gradient(135deg, #FAFAFF 0%, #F5F3FF 50%, #FDF2F8 100%);
    background-size: 28px 28px, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100vh;
}

a:hover,
button:hover,
.btn:hover {
    cursor: pointer;
}

/* Hidden decorative elements */
.morphing-shape,
.bubble-wave {
    display: none !important;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ========================================
   Container
   ======================================== */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.08);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--purple-primary);
    font-family: var(--font-display);
}

.logo-image {
    height: 40px;
    width: auto;
}

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

.nav-link {
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    border-radius: 4px;
}

.nav-link:focus-visible {
    outline: 2px solid var(--purple-primary);
    outline-offset: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--purple-primary), var(--pink-primary));
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--purple-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gray-900);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* ========================================
   Hero Section
   ======================================== */
.hero > .container {
    position: relative;
    z-index: 5;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 80px;
    background:
        radial-gradient(ellipse 60% 50% at 18% 20%, rgba(196, 181, 253, 0.40) 0%, transparent 60%),
        radial-gradient(ellipse 55% 50% at 85% 28%, rgba(251, 207, 232, 0.45) 0%, transparent 60%),
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(167, 139, 250, 0.35) 0%, transparent 60%),
        linear-gradient(180deg, #F5F3FF 0%, #FAFAFF 25%, #FDF2F8 60%, #EDE9FE 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 30% 75%, rgba(236, 72, 153, 0.10) 0%, transparent 35%),
        radial-gradient(circle at 78% 65%, rgba(139, 92, 246, 0.10) 0%, transparent 38%);
    z-index: 0;
    animation: heroGlowDrift 22s ease-in-out infinite alternate;
}

@keyframes heroGlowDrift {
    0%   { transform: translate(0, 0) scale(1); opacity: 1; }
    100% { transform: translate(20px, -10px) scale(1.04); opacity: 0.85; }
}

@media (prefers-reduced-motion: reduce) {
    .hero::before { animation: none; }
}

.hero::after {
    display: none;
}

.hero-background {
    display: none;
}

.bubble {
    display: none;
}

/* ========================================
   Centered Hero Layout (TrumpRx-inspired)
   ======================================== */
.hero-centered-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Floating metric badges */
.hero-floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.1);
    z-index: 3;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    transition: var(--transition-smooth);
}

.hero-floating-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(139, 92, 246, 0.18);
}

.badge-1 {
    top: 8%;
    left: clamp(8px, 2vw, 32px);
    animation-delay: 0.5s;
}

.badge-2 {
    bottom: 6%;
    left: clamp(4px, 1vw, 24px);
    animation-delay: 0.65s;
}

.badge-3 {
    top: 30%;
    right: clamp(8px, 2vw, 32px);
    animation-delay: 0.8s;
}

/* Title block with overlay */
.hero-title-block {
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
    /* opacity/animation handled per-line via .hero-title-line */
}

.hero-title-large {
    font-size: 7rem;
    font-weight: 700;
    line-height: 1.05;
    font-family: var(--font-display);
    color: var(--gray-900);
    position: relative;
    z-index: 1;
}

/* ========================================
   3D Transparent Bubble
   ======================================== */
/* Large centered hero bubble — behind all text */
.hero-center-bubble {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 620px;
    height: 620px;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    animation: bubbleFloat 14s ease-in-out infinite, bubbleFadeIn 2s ease forwards 0.4s;
    border-radius: 50%;
}
.hero-center-bubble .bubble-3d-inner {
    background: radial-gradient(
        circle at 32% 32%,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(196, 181, 253, 0.18) 20%,
        rgba(236, 72, 153, 0.10) 40%,
        rgba(139, 92, 246, 0.08) 65%,
        transparent 100%
    );
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    box-shadow:
        inset 0 0 80px rgba(196, 181, 253, 0.14),
        inset -20px -20px 60px rgba(236, 72, 153, 0.08),
        0 12px 60px rgba(139, 92, 246, 0.12),
        0 4px 20px rgba(236, 72, 153, 0.06);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.bubble-3d {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -55%);
    width: 340px;
    height: 340px;
    z-index: 2;
    pointer-events: none;
    animation: bubbleFloat 8s ease-in-out infinite;
    opacity: 0;
    animation: bubbleFloat 8s ease-in-out infinite, bubbleFadeIn 1.5s ease forwards 1.8s;
}

.bubble-3d-sm {
    width: 120px;
    height: 120px;
    top: 18%;
    left: 12%;
    animation: bubbleFloat 10s ease-in-out infinite 1s, bubbleFadeIn 1.5s ease forwards 2.2s;
}

.bubble-3d-xs {
    width: 70px;
    height: 70px;
    top: 72%;
    left: 82%;
    animation: bubbleFloat 12s ease-in-out infinite 2s, bubbleFadeIn 1.5s ease forwards 2.6s;
}

.bubble-3d-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(
        circle at 35% 35%,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(139, 92, 246, 0.06) 20%,
        rgba(236, 72, 153, 0.04) 40%,
        rgba(139, 92, 246, 0.02) 60%,
        rgba(59, 130, 246, 0.01) 80%,
        transparent 100%
    );
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    box-shadow:
        inset 0 0 40px rgba(139, 92, 246, 0.06),
        inset -10px -10px 30px rgba(236, 72, 153, 0.03),
        0 8px 32px rgba(139, 92, 246, 0.08),
        0 2px 8px rgba(236, 72, 153, 0.04);
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
}

.bubble-3d-sm .bubble-3d-inner {
    border-width: 1px;
}

.bubble-3d-xs .bubble-3d-inner {
    border-width: 1px;
}

/* Primary highlight — top-left bright spot */
.bubble-3d-highlight {
    position: absolute;
    top: 15%;
    left: 20%;
    width: 35%;
    height: 25%;
    border-radius: 50%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    transform: rotate(-25deg);
    filter: blur(2px);
}

/* Secondary smaller highlight */
.bubble-3d-highlight-small {
    position: absolute;
    top: 28%;
    left: 32%;
    width: 12%;
    height: 8%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    transform: rotate(-30deg);
    filter: blur(1px);
}

/* Bottom-right subtle reflection */
.bubble-3d-reflection {
    position: absolute;
    bottom: 12%;
    right: 15%;
    width: 25%;
    height: 15%;
    border-radius: 50%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.12) 0%,
        transparent 70%
    );
    transform: rotate(15deg);
    filter: blur(3px);
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translate(-50%, -55%) translateY(0px) rotate(0deg);
    }
    25% {
        transform: translate(-50%, -55%) translateY(-12px) rotate(1deg);
    }
    50% {
        transform: translate(-50%, -55%) translateY(-6px) rotate(-0.5deg);
    }
    75% {
        transform: translate(-50%, -55%) translateY(-14px) rotate(0.5deg);
    }
}

.bubble-3d-sm .bubble-3d-inner .bubble-3d-highlight {
    filter: blur(1px);
}

.bubble-3d-xs .bubble-3d-inner .bubble-3d-highlight {
    filter: blur(1px);
}

@keyframes bubbleFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-centered-content {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.35s;
}

/* Legacy classes kept for compatibility */
.hero-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title-wrapper {
    grid-column: 1;
}

.hero-content-left {
    grid-column: 1;
    margin-top: -2rem;
}

.hero-title-wrapper {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.15s;
}

.hero-content-left {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.35s;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.4rem;
    font-family: var(--font-display);
    color: var(--gray-900);
}

.highlight-text {
    background: linear-gradient(135deg, var(--purple-primary), var(--pink-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.transformative-underline {
    position: relative;
    display: inline-block;
}

.transformative-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0.05em;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, var(--purple-primary), var(--pink-primary));
    border-radius: 2px;
    opacity: 0.7;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    line-height: 1.9;
    max-width: 680px;
}

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

.hero-buttons .btn-primary {
    padding: 1.1rem 2.6rem;
    font-size: 1.05rem;
    box-shadow: 0 8px 28px rgba(139, 92, 246, 0.4);
}

.hero-accent-icon {
    position: absolute;
    top: -60px;
    right: -60px;
    font-size: 6rem;
    color: var(--purple-primary);
    opacity: 0.1;
    animation: floatIcon 6s ease-in-out infinite;
}

.hero-content-right {
    position: relative;
    grid-column: 2;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

/* ========================================
   Scroll-Highlight Statement Section
   ======================================== */
.scroll-statement-section {
    padding: 10rem 0;
    background:
        radial-gradient(ellipse 70% 50% at 20% 0%, rgba(167, 139, 250, 0.32) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 85% 15%, rgba(251, 207, 232, 0.40) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(196, 181, 253, 0.32) 0%, transparent 60%),
        linear-gradient(180deg, #EDE9FE 0%, #F5F3FF 50%, #FDF2F8 100%);
    position: relative;
    overflow: hidden;
}

.scroll-statement-section .container {
    position: relative;
    z-index: 2;
}

/* Statement section floating bubbles */
.statement-bubble {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(139, 92, 246, 0.25) 20%,
        rgba(236, 72, 153, 0.18) 40%,
        rgba(59, 130, 246, 0.12) 60%,
        rgba(139, 92, 246, 0.08) 80%,
        transparent 100%
    );
    border: 2px solid rgba(255, 255, 255, 0.7);
    box-shadow:
        inset 0 0 30px rgba(255, 255, 255, 0.5),
        inset -8px -8px 20px rgba(139, 92, 246, 0.15),
        0 8px 30px rgba(139, 92, 246, 0.2),
        0 4px 15px rgba(236, 72, 153, 0.15);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    animation: statementBubbleFadeIn 0.8s ease forwards;
}

.statement-bubble::before {
    content: '';
    position: absolute;
    top: 12%;
    left: 18%;
    width: 35%;
    height: 22%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.2) 60%, transparent 100%);
    transform: rotate(-15deg);
    filter: blur(2px);
}

.statement-bubble::after {
    content: '';
    position: absolute;
    top: 25%;
    left: 28%;
    width: 10%;
    height: 7%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    filter: blur(1px);
}

@keyframes statementBubbleFadeIn {
    from { 
        opacity: 0; 
        transform: scale(0.9);
    }
    to { 
        opacity: 1; 
        transform: scale(1);
    }
}

.sb-1 {
    width: 160px;
    height: 160px;
    top: 5%;
    left: 2%;
    animation: statementBubbleFadeIn 0.8s ease forwards, sbFloat1 8s ease-in-out infinite 0.3s;
}

.sb-2 {
    width: 95px;
    height: 95px;
    top: 12%;
    right: 5%;
    animation: statementBubbleFadeIn 0.8s ease forwards 0.1s, sbFloat2 10s ease-in-out infinite 0.4s;
}

.sb-3 {
    width: 60px;
    height: 60px;
    bottom: 15%;
    left: 7%;
    animation: statementBubbleFadeIn 0.8s ease forwards 0.2s, sbFloat3 12s ease-in-out infinite 0.5s;
}

.sb-4 {
    width: 130px;
    height: 130px;
    bottom: 8%;
    right: 3%;
    animation: statementBubbleFadeIn 0.8s ease forwards 0.15s, sbFloat4 9s ease-in-out infinite 0.35s;
}

.sb-5 {
    width: 45px;
    height: 45px;
    top: 45%;
    right: 8%;
    animation: statementBubbleFadeIn 0.8s ease forwards 0.25s, sbFloat5 11s ease-in-out infinite 0.45s;
}

@keyframes sbFloat1 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.9; }
    25% { transform: translateY(-18px) translateX(5px); opacity: 0.95; }
    50% { transform: translateY(-8px) translateX(-3px); opacity: 0.85; }
    75% { transform: translateY(-22px) translateX(8px); opacity: 0.92; }
}

@keyframes sbFloat2 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.85; }
    33% { transform: translateY(-15px) translateX(-6px); opacity: 0.92; }
    66% { transform: translateY(-10px) translateX(4px); opacity: 0.8; }
}

@keyframes sbFloat3 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.8; }
    25% { transform: translateY(-12px) translateX(4px); opacity: 0.88; }
    50% { transform: translateY(-20px) translateX(-2px); opacity: 0.75; }
    75% { transform: translateY(-8px) translateX(6px); opacity: 0.85; }
}

@keyframes sbFloat4 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.85; }
    50% { transform: translateY(-16px) translateX(-5px); opacity: 0.92; }
}

@keyframes sbFloat5 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.75; }
    33% { transform: translateY(-10px) translateX(3px); opacity: 0.88; }
    66% { transform: translateY(-18px) translateX(-4px); opacity: 0.8; }
}

/* Subtle Bubble Accents - Used Throughout Site */
.bubble-accent {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(139, 92, 246, 0.08) 25%,
        rgba(236, 72, 153, 0.06) 50%,
        rgba(59, 130, 246, 0.04) 75%,
        transparent 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow:
        inset 0 0 15px rgba(255, 255, 255, 0.2),
        inset -3px -3px 10px rgba(139, 92, 246, 0.06),
        0 3px 15px rgba(139, 92, 246, 0.08);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    animation: bubbleAccentFadeIn 1.5s ease forwards;
}

.bubble-accent::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 20%;
    width: 30%;
    height: 20%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.1) 60%, transparent 100%);
    transform: rotate(-15deg);
    filter: blur(1.5px);
}

/* Bubble Size Variants */
.bubble-accent.bubble-xs {
    width: 35px;
    height: 35px;
}

.bubble-accent.bubble-sm {
    width: 50px;
    height: 50px;
}

.bubble-accent.bubble-md {
    width: 75px;
    height: 75px;
}

.bubble-accent.bubble-lg {
    width: 100px;
    height: 100px;
}

.bubble-accent.bubble-xl {
    width: 130px;
    height: 130px;
}

/* Bubble Float Animations */
.bubble-accent.float-1 {
    animation: bubbleAccentFadeIn 1.5s ease forwards, bubbleFloat1 12s ease-in-out infinite 0.5s;
}

.bubble-accent.float-2 {
    animation: bubbleAccentFadeIn 1.5s ease forwards, bubbleFloat2 14s ease-in-out infinite 1s;
}

.bubble-accent.float-3 {
    animation: bubbleAccentFadeIn 1.5s ease forwards, bubbleFloat3 16s ease-in-out infinite 1.5s;
}

.bubble-accent.float-4 {
    animation: bubbleAccentFadeIn 1.5s ease forwards, bubbleFloat4 13s ease-in-out infinite 2s;
}

.bubble-accent.float-5 {
    animation: bubbleAccentFadeIn 1.5s ease forwards, bubbleFloat5 15s ease-in-out infinite 2.5s;
}

.bubble-accent.float-6 {
    animation: bubbleAccentFadeIn 1.5s ease forwards, bubbleFloat6 11s ease-in-out infinite 0.8s;
}

@keyframes bubbleAccentFadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 0.4; transform: scale(1); }
}

@keyframes bubbleFloat1 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.4; }
    25% { transform: translateY(-12px) translateX(4px); opacity: 0.5; }
    50% { transform: translateY(-6px) translateX(-2px); opacity: 0.35; }
    75% { transform: translateY(-15px) translateX(6px); opacity: 0.45; }
}

@keyframes bubbleFloat2 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.35; }
    33% { transform: translateY(-10px) translateX(-4px); opacity: 0.45; }
    66% { transform: translateY(-8px) translateX(3px); opacity: 0.3; }
}

@keyframes bubbleFloat3 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.3; }
    25% { transform: translateY(-8px) translateX(3px); opacity: 0.4; }
    50% { transform: translateY(-14px) translateX(-1px); opacity: 0.25; }
    75% { transform: translateY(-6px) translateX(4px); opacity: 0.35; }
}

@keyframes bubbleFloat4 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.35; }
    50% { transform: translateY(-11px) translateX(-3px); opacity: 0.45; }
}

@keyframes bubbleFloat5 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.3; }
    33% { transform: translateY(-7px) translateX(2px); opacity: 0.4; }
    66% { transform: translateY(-12px) translateX(-3px); opacity: 0.25; }
}

@keyframes bubbleFloat6 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.4; }
    25% { transform: translateY(-9px) translateX(-2px); opacity: 0.5; }
    50% { transform: translateY(-5px) translateX(3px); opacity: 0.35; }
    75% { transform: translateY(-13px) translateX(-4px); opacity: 0.45; }
}

/* Section-specific bubble positioning */
.services {
    position: relative;
    overflow: hidden;
}

.how-it-works {
    position: relative;
    overflow: hidden;
}

.about {
    position: relative;
    overflow: hidden;
}

.contact {
    position: relative;
    overflow: hidden;
}

.faq {
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .sb-1 { width: 90px; height: 90px; top: 5%; left: 2%; }
    .sb-2 { width: 55px; height: 55px; top: 10%; right: 4%; }
    .sb-3 { width: 35px; height: 35px; bottom: 12%; left: 5%; }
    .sb-4 { width: 70px; height: 70px; bottom: 8%; right: 2%; }
    .sb-5 { display: none; }
    
    /* Hide some bubbles on mobile for cleaner look */
    .bubble-accent.bubble-xl,
    .bubble-accent.bubble-lg {
        display: none;
    }

    .bubble-accent {
        opacity: 0.2 !important;
        animation: none !important;
    }
}

.scroll-statement {
    font-family: var(--font-display);
    font-size: 4.2rem;
    font-weight: 500;
    line-height: 1.28;
    text-align: center;
    max-width: 1060px;
    margin: 0 auto;
    color: var(--gray-900);
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
}

.scroll-statement .scroll-word {
    color: rgba(109, 96, 136, 0.12);
    transition: color 0.7s ease, opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
    opacity: 0.25;
    transform: translateY(4px);
}

.scroll-statement .scroll-word.highlighted {
    color: #6d28d9;
    opacity: 1;
    transform: translateY(0);
}

.scroll-statement {
    font-family: var(--font-display);
    font-size: 4.2rem;
    font-weight: 500;
    line-height: 1.28;
    text-align: center;
    max-width: 1060px;
    margin: 0 auto;
    letter-spacing: -0.02em;
}

/* === Grain texture overlay — editorial depth === */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 220px 220px;
}

/* === Decorative watercolour orbs — soft background depth === */
.deco-orb {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    filter: blur(42px);
}
.deco-orb-lavender {
    background: radial-gradient(circle, rgba(196, 181, 253, 0.85) 0%, rgba(139, 92, 246, 0.45) 45%, transparent 70%);
}
.deco-orb-pink {
    background: radial-gradient(circle, rgba(251, 207, 232, 0.90) 0%, rgba(236, 72, 153, 0.42) 45%, transparent 70%);
}
.deco-orb-violet {
    background: radial-gradient(circle, rgba(167, 139, 250, 0.80) 0%, rgba(109, 40, 217, 0.35) 45%, transparent 70%);
}
.deco-orb-blush {
    background: radial-gradient(circle, rgba(253, 232, 245, 0.95) 0%, rgba(236, 72, 153, 0.38) 45%, transparent 70%);
}
.deco-orb-xs  { width: 180px; height: 180px; }
.deco-orb-sm  { width: 280px; height: 280px; }
.deco-orb-md  { width: 420px; height: 420px; }
.deco-orb-lg  { width: 580px; height: 580px; }

/* === Decorative rings === */
.deco-ring {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(139, 92, 246, 0.28);
    animation: decoRingPulse 8s ease-in-out infinite;
}
.deco-ring-pink { border-color: rgba(236, 72, 153, 0.24); }
.deco-ring-sm  { width: 200px; height: 200px; }
.deco-ring-md  { width: 360px; height: 360px; }
.deco-ring-lg  { width: 520px; height: 520px; }
@keyframes decoRingPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50%       { opacity: 0.35; transform: scale(1.04); }
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.metric-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.1);
    animation: fadeInUp 0.8s ease;
    transition: var(--transition-smooth);
}

.metric-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(139, 92, 246, 0.18);
}

.metric-card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0.2s;
}

.metric-card-2 {
    bottom: 20%;
    left: -10%;
    animation-delay: 0.4s;
}

.metric-card-3 {
    top: 50%;
    right: -15%;
    animation-delay: 0.6s;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--purple-primary), var(--pink-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.metric-trend {
    font-size: 0.75rem;
    color: var(--pink-primary);
    font-weight: 600;
}

.client-logos {
    margin-top: 4rem;
    text-align: center;
}

.logos-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.logo-item {
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--gray-600);
    font-weight: 500;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: var(--transition-smooth);
    letter-spacing: 0.02em;
}

.logo-item:hover {
    transform: translateY(-2px);
    border-color: rgba(139, 92, 246, 0.25);
    color: var(--purple-primary);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 1.5px solid rgba(139, 92, 246, 0.4);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 6px;
    background: var(--purple-primary);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 100% {
        top: 10px;
        opacity: 1;
    }
    50% {
        top: 30px;
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    text-align: center;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: transparent;
    color: var(--purple-primary);
    border: 1.5px solid rgba(139, 92, 246, 0.65);
    border-radius: 50px;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.08), 0 0 18px rgba(139, 92, 246, 0.18);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    border-color: var(--purple-primary);
    box-shadow: 0 0 0 5px rgba(139, 92, 246, 0.13), 0 0 28px rgba(139, 92, 246, 0.32);
    color: var(--purple-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--purple-primary);
    border: 1.5px solid rgba(139, 92, 246, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--pink-primary) 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
}

.btn:disabled,
.btn[disabled] {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none !important;
    pointer-events: none;
}

.btn-full {
    display: block;
    width: 100%;
}

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

.btn.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -8px;
    border: 2px solid rgba(255,255,255,0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btnSpin 0.6s linear infinite;
}

/* ========================================
   Section Styles
   ======================================== */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.section-icon-accent {
    display: inline-block;
    font-size: 2.5rem;
    color: var(--gray-400);
    opacity: 0.3;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.section-icon-accent i {
    display: inline-block;
}

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

.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    color: var(--gray-900);
    line-height: 1.2;
    display: block;
    position: relative;
    text-align: center;
}

.section-title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-title.visible span {
    opacity: 1;
        transform: translateY(0);
    }

.section-title.visible span:nth-child(1) { transition-delay: 0.05s; }
.section-title.visible span:nth-child(2) { transition-delay: 0.1s; }
.section-title.visible span:nth-child(3) { transition-delay: 0.15s; }
.section-title.visible span:nth-child(4) { transition-delay: 0.2s; }
.section-title.visible span:nth-child(5) { transition-delay: 0.25s; }

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.faq .section-subtitle {
    display: block;
    color: var(--gray-500);
    font-weight: 400;
    margin-top: 0.75rem;
}

.highlight-purple {
    color: var(--purple-primary);
}

.highlight-pink {
    color: var(--pink-primary);
}

.highlight-blue {
    color: var(--blue-primary);
}

/* ========================================
   Dividers
   ======================================== */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5rem 0;
    position: relative;
    width: 100%;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

.divider-icon {
    margin: 0 2rem;
    font-size: 1.5rem;
    color: var(--gray-400);
}

/* Section Divider */
.section-divider-gradient {
    width: 100%;
    height: 1px;
    background: var(--gray-200);
    max-width: 1200px;
    margin: 0 auto;
}

.divider-wave {
    display: none;
}

/* ========================================
   Services Section
   ======================================== */
.services {
    background:
        radial-gradient(ellipse 70% 45% at 50% 18%, rgba(255, 255, 255, 0.20) 0%, transparent 70%),
        radial-gradient(ellipse 80% 50% at 50% 22%, rgba(249, 168, 212, 0.22) 0%, transparent 65%),
        linear-gradient(180deg,
            #b39bff 0%,
            #ae93f5 22%,
            #c8b8f5 42%,
            #ede7fc 55%,
            #f8f6ff 62%,
            #ffffff 72%);
    color: #fff;
    padding-top: 0;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.services::after {
    display: none;
}

/* Why Stem Cell Therapy Design */
.why-stem-cell-wrapper {
    position: relative !important;
    min-height: 600px !important;
    display: block !important;
    margin-top: 0 !important;
    padding: 1rem 0 !important;
    width: 100% !important;
    background: transparent !important;
}

.connecting-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.line-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 2s ease forwards;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.15));
}

.line-1 { animation-delay: 0.7s; }
.line-2 { animation-delay: 0.8s; }
.line-3 { animation-delay: 0.9s; }
.line-4 { animation-delay: 1s; }
.line-5 { animation-delay: 1.1s; }
.line-6 { animation-delay: 1.2s; }

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

.why-stem-cell-center {
    display: none !important;
}

.center-icon-circle {
    display: none !important;
}

.center-pulse {
    display: none;
}

.why-stem-cell-reasons {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 5rem !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 5 !important;
    width: 100% !important;
    padding: 0 2rem !important;
}

.reason-item {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    align-items: center !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    width: 100% !important;
    margin-bottom: 0 !important;
}

.reason-item:nth-child(even) {
    direction: rtl;
}

.reason-item:nth-child(even) > * {
    direction: ltr;
}

.reason-item.reason-1 { animation-delay: 0.1s; }
.reason-item.reason-2 { animation-delay: 0.2s; }
.reason-item.reason-3 { animation-delay: 0.3s; }

@keyframes fadeInReason {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.reason-image-wrapper {
    width: 100% !important;
    height: 400px !important;
    overflow: hidden !important;
    position: relative !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.reason-item:hover .reason-image-wrapper {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1) !important;
}

.reason-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
}

.reason-item:hover .reason-image {
    transform: scale(1.1) !important;
}

.reason-overlay {
    display: none !important;
}

.reason-text-content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    text-align: left !important;
}

.reason-item:nth-child(even) .reason-text-content {
    text-align: left !important;
}

.reason-icon {
    width: 56px !important;
    height: 56px !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(236, 72, 153, 0.08)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.5rem !important;
    color: var(--purple-primary) !important;
    margin-bottom: 1.5rem !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    margin-top: 0 !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
    align-self: flex-start !important;
    border: 1px solid rgba(139, 92, 246, 0.15) !important;
}

.reason-item:hover .reason-icon {
    transform: none !important;
    background: linear-gradient(135deg, var(--purple-primary), var(--pink-primary)) !important;
    color: var(--white) !important;
    border-color: transparent !important;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3) !important;
}

.reason-title {
    font-size: 2rem !important;
    font-weight: 300 !important;
    margin-bottom: 1.5rem !important;
    color: #111827 !important;
    line-height: 1.2 !important;
    text-align: left !important;
    position: relative !important;
}

.reason-title::before,
.reason-title::after {
    display: none;
}

@keyframes cellFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translate(8px, -6px) scale(1.15) rotate(5deg);
        opacity: 0.75;
    }
    50% {
        transform: translate(-5px, -8px) scale(1.1) rotate(-5deg);
        opacity: 0.8;
    }
    75% {
        transform: translate(6px, 4px) scale(1.05) rotate(3deg);
        opacity: 0.7;
    }
}

.reason-description {
    color: #4B5563 !important;
    line-height: 1.8 !important;
    font-size: 1.125rem !important;
}

.reason-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.reason-icon {
    width: 56px !important;
    height: 56px !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(236, 72, 153, 0.08)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.5rem !important;
    color: var(--purple-primary) !important;
    margin: 0 0 1.5rem 0 !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    border: 1px solid rgba(139, 92, 246, 0.15) !important;
    transition: var(--transition-smooth);
    position: relative;
}

.reason-content:hover .reason-icon {
    background: linear-gradient(135deg, var(--purple-primary), var(--pink-primary)) !important;
    color: var(--white) !important;
}

.reason-icon::after {
    display: none;
    transition: var(--transition-smooth);
}


/* Connecting lines from center to reasons */
.why-stem-cell-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 1px;
    background: transparent;
    z-index: 1;
}

/* Responsive styles for Why Stem Cell Therapy */
@media (max-width: 1024px) {
    .why-stem-cell-reasons {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .why-stem-cell-wrapper {
        min-height: 800px;
    }
    
    .connecting-lines {
        display: none;
    }
    
    .reason-icon {
        margin: 0 0 1.5rem 0 !important;
        margin-left: 0 !important;
        margin-right: auto !important;
    }

    .hero-floating-badge {
        display: none;
    }
}

@media (max-width: 768px) {
    .why-stem-cell-reasons {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        max-width: 100% !important;
    }
    
    .why-stem-cell-wrapper {
        min-height: auto !important;
        padding: 2rem 0 !important;
    }
    
    .center-icon-circle {
        width: 100px !important;
        height: 100px !important;
        font-size: 2.5rem !important;
    }
    
    .center-pulse {
        width: 100px !important;
        height: 100px !important;
    }
    
    .reason-item {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .reason-item:nth-child(even) {
        direction: ltr !important;
    }
    
    .reason-item:nth-child(even) > * {
        direction: ltr !important;
    }
    
    .reason-image-wrapper {
        height: 300px !important;
    }
    
    /* Disable image animations on mobile */
    .reason-image {
        transition: none !important;
        transform: none !important;
    }
    
    .reason-item:hover .reason-image {
        transform: none !important;
    }
    
    .reason-item:hover .reason-image-wrapper {
        transform: none !important;
    }
    
    .reason-text-content {
        text-align: center !important;
    }
    
    .reason-item:nth-child(even) .reason-text-content {
        text-align: center !important;
    }
    
    .reason-icon {
        margin: 0 auto 1.5rem auto !important;
        align-self: center !important;
    }
    
    .reason-title {
        font-size: 1.5rem !important;
        text-align: center !important;
    }
    
    .reason-description {
        text-align: center !important;
    }
    
    .connecting-lines {
        display: none !important;
    }
}

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

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.08);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(139, 92, 246, 0.06);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    margin-top: -2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-card > .service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--purple-primary), var(--pink-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition-smooth);
    padding: 0 2rem;
}

.service-title {
    padding: 0 2rem;
}

.service-description {
    padding: 0 2rem 1.5rem 2rem;
    flex: 1;
}

.service-features {
    list-style: none;
    padding: 0 2rem 2rem 2rem;
    text-align: left;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--purple-primary);
    font-weight: 700;
}

.service-card::after {
    display: none;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--purple-primary);
    transition: var(--transition-smooth);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-900);
    transition: var(--transition-smooth);
}

.service-description {
    color: var(--gray-600);
    line-height: 1.8;
    transition: var(--transition-smooth);
}

/* ========================================
   How It Works Section
   ======================================== */
.how-it-works {
    padding-top: 5rem;
    padding-bottom: 4rem;
    position: relative;
    background: linear-gradient(135deg, #F5F3FF 0%, #FAFAFF 50%, #FDF2F8 100%);
}

.how-it-works::after {
    display: none;
}

.how-it-works-visual {
    margin-bottom: 3rem;
}

.scientist-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.scientist-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.image-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    padding: 2rem;
    color: var(--white);
}

.image-overlay-text p {
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.image-overlay-text i {
    font-size: 1.5rem;
    color: var(--purple-primary);
}

.process-timeline {
    max-width: 800px;
    margin: 2rem auto 0;
    padding-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-progress {
    display: none;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 58px;
    width: 2px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.15));
    z-index: 0;
    bottom: calc(-3rem + 26px);
}

.process-step.active::before {
    background: var(--gray-200);
    opacity: 1;
}

.process-step:last-child::before {
    display: none;
}

.process-step:nth-last-child(2)::before {
    bottom: 30px;
}

.step-number {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    position: relative;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.step-number::before {
    display: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--gray-900) !important;
    opacity: 1 !important;
}

.step-description {
    color: var(--gray-800) !important;
    line-height: 1.8;
    opacity: 1 !important;
}

.process-timeline-footer {
    text-align: center;
    margin-top: 3rem;
}

/* ========================================
   About Section
   ======================================== */
.about {
    background: var(--white);
    position: relative;
    margin-top: 0;
    padding-top: 6rem;
    padding-bottom: 6rem;
    border-top: none;
}

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

.about-visual {
    display: flex;
    flex-direction: column;
}

.about-visual-mobile-first {
    display: none;
}

.about-description {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition-smooth);
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-primary), var(--pink-primary));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
    font-weight: 700;
}

.feature-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.feature-text p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.about-images {
    display: grid;
    gap: 1.5rem;
}

.about-image-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 0.5rem;
}

.about-image-wrapper:last-child {
    margin-bottom: 0;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-image:hover {
    transform: scale(1.05);
}

.about-text h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.about-text p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.features-list {
    margin-top: 2rem;
}


/* ========================================
   Metrics Section
   ======================================== */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.metrics-section .metric-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.08);
    position: relative;
}

.metrics-section .metric-value {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--purple-primary), var(--pink-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.metrics-section .metric-label {
    color: var(--gray-600);
    font-weight: 500;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    background: linear-gradient(135deg, #F5F3FF 0%, #FAFAFF 50%, #FDF2F8 100%);
    position: relative;
    padding-top: 6rem;
    padding-bottom: 4rem;
}

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

.faq .section-title {
    margin: 0 auto 1rem auto;
}

.faq .section-subtitle {
    margin: 0 auto;
    max-width: 600px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(139, 92, 246, 0.08);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.04);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--gray-900);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--purple-primary);
}

.faq-icon {
    transition: var(--transition-smooth);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1), padding 0.55s ease, opacity 0.35s ease;
    padding: 0 2rem;
    opacity: 0;
}

.faq-answer p,
.faq-answer ul {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 3500px !important;
    padding: 0 2rem 1.5rem 2rem !important;
    opacity: 1 !important;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    background: var(--white);
    padding-top: 6rem;
    padding-bottom: 4rem;
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.03), rgba(236, 72, 153, 0.03));
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.06);
    margin-top: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
}

.contact-details h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.contact-details p {
    color: var(--gray-600);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-label {
    font-weight: 500;
    color: var(--gray-700);
}

.form-input,
.form-textarea {
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--purple-primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

/* Contact Form Input Styling */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
    padding: 0.9rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    background: var(--white);
    color: var(--gray-800);
    transition: var(--transition-smooth);
    width: 100%;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--purple-primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    background: var(--white);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238B5CF6' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    appearance: none;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: #FAFAFF;
    color: #1a0833;
    padding: 4rem 0 1.5rem;
    margin-top: 0;
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, rgba(139, 92, 246, 0.5), rgba(236, 72, 153, 0.4), rgba(139, 92, 246, 0.5)) 1;
}

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

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

.footer-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #8b5cf6;
    margin-bottom: 0.25rem;
}

.footer-description {
    color: #6b7280;
    line-height: 1.8;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    color: #4b5563;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: #8b5cf6;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(139, 92, 246, 0.15);
    color: #9ca3af;
}

.footer-bottom p {
    font-size: 0.82rem;
}

.footer-disclaimer {
    font-size: 0.72rem;
    color: #9ca3af;
    max-width: 760px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

/* ========================================
   WhatsApp Button
   ======================================== */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 2px 12px rgba(37, 211, 102, 0.25);
    transition: var(--transition-smooth);
    z-index: 999;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

/* ========================================
   Founder Page Styles
   ======================================== */
.founder-hero {
    padding-top: 120px;
    padding-bottom: 4rem;
    text-align: center;
    position: relative;
}

.founder-about {
    padding: var(--section-padding);
    background: var(--white);
}

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

.founder-image-wrapper {
    position: relative;
}

.founder-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.founder-image {
        width: 100%;
    height: auto;
    display: block;
}

.image-overlay-glow {
    display: none;
}

.founder-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    color: var(--gray-900);
}

.founder-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    color: var(--gray-900);
}

.founder-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--purple-primary), var(--pink-primary));
    margin: 1.5rem 0;
    border-radius: 2px;
}

.founder-text p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
        width: 100%;
    height: 300px;
    object-fit: cover;
}

.founder-testimonial {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.03), rgba(236, 72, 153, 0.03));
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
    position: relative;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.testimonial-quote-top,
.testimonial-quote-bottom {
    font-size: 4rem;
    color: var(--purple-primary);
    opacity: 0.3;
    position: absolute;
}

.testimonial-quote-top {
    top: 1rem;
    left: 2rem;
}

.testimonial-quote-bottom {
    bottom: 1rem;
    right: 2rem;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.8;
    text-align: center;
    position: relative;
    z-index: 1;
}

.consultation-image-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.consultation-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-caption {
    text-align: center;
    margin-top: 1rem;
    color: var(--gray-600);
    font-style: italic;
}

.collection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.collection-method {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 2px 12px rgba(139, 92, 246, 0.06);
}

.collection-image-wrapper {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.collection-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.collection-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--purple-primary);
}

.collection-info ul {
    list-style: disc;
    margin-left: 1.5rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.collection-info p {
    color: var(--gray-600);
    line-height: 1.8;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    /* Hide bubble cursor on mobile */
    body::after {
        display: none;
    }
    
    /* Typography */
    .hero-title {
        font-size: 3.5rem;
        line-height: 1.15;
        word-wrap: break-word;
        hyphens: auto;
        margin-bottom: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.0625rem;
        line-height: 1.6;
    }

    .section-title {
        font-size: 2.2rem;
    }
    
    /* Navigation */
    .nav-wrapper { padding: 0.6rem 0; }
    .logo-image { height: 34px; }
    .nav-menu {
        position: fixed;
        top: 58px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 58px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem 1rem;
        box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
        transition: var(--transition-smooth);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 1rem 0;
        font-size: 1.125rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        touch-action: manipulation;
    }
    
    .nav-toggle {
        display: flex;
        width: 48px;
        height: 48px;
        align-items: center;
        justify-content: center;
        padding: 0;
        gap: 5px;
        touch-action: manipulation;
    }
    
    /* Hero */
    .hero {
        padding-top: 7rem;
        min-height: 90vh;
        padding-bottom: 2rem;
    }
    
    .hero .container {
        padding: 0 1rem;
        position: relative;
        z-index: 5;
    }
    
    /* Centered hero mobile */
    .hero-centered-wrapper {
        width: 100%;
        padding: 0 0.5rem;
    }
    
    .hero-title-large {
        font-size: 3.8rem;
        line-height: 1.1;
        letter-spacing: -0.02em;
    }
    
    .hero-title-block {
        margin-bottom: 1.5rem;
        width: 100%;
    }
    
    .hero-floating-badge {
        display: none;
    }
    
    .hero-center-bubble {
        width: 320px;
        height: 320px;
    }

    .bubble-3d {
        width: 140px;
        height: 140px;
        left: 65%;
        top: 50%;
        transform: translate(-50%, -55%);
    }
    
    .bubble-3d-sm {
        width: 50px;
        height: 50px;
        top: 20%;
        left: 12%;
    }
    
    .bubble-3d-xs {
        width: 30px;
        height: 30px;
        top: 78%;
        left: 88%;
    }
    
    .hero-centered-content {
        max-width: 100%;
        padding: 0 0.5rem;
        margin-top: 1rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        padding: 0;
    }
    
    .hero-buttons {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: auto;
        min-width: 200px;
        max-width: 280px;
        padding: 0.875rem 2rem;
        font-size: 1rem;
        margin: 0 auto;
    }
    
    .client-logos {
        margin-top: 2.5rem;
        padding: 0 0.5rem;
    }
    
    .logos-label {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .logos-grid {
        gap: 0.75rem;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .logo-item {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    #particleCanvas {
        opacity: 0.3;
    }
    
    .scroll-statement {
        font-size: 2.4rem;
        line-height: 1.3;
        letter-spacing: -0.01em;
    }
    
    .scroll-statement-section {
        padding: 5rem 0;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        display: flex;
        flex-direction: column;
    }
    
    .hero-title-wrapper {
        order: 1;
        text-align: center;
    }
    
    .hero-content-right {
        order: 2;
    }
    
    .hero-content-left {
        order: 3;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Sections */
    .about-content,
    .contact-wrapper,
    .founder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* About */
    .about-text {
        text-align: center;
    }
    
    .about-text .section-title {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .about-image-wrapper {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .about-visual-mobile-first .about-image-wrapper {
        height: auto;
        aspect-ratio: 4 / 3;
    }
    
    .about-visual-desktop {
        display: none;
    }
    
    .about-visual-mobile-first {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .about-visual-mobile-first .about-image-wrapper {
        width: 100%;
        flex: 1 1 100%;
        margin-top: 0 !important;
    }
    
    .about-visual-mobile-first .about-image-wrapper:first-child {
        display: none;
    }
    
    .feature-item {
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: 12px;
        padding: 1.25rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: var(--transition-smooth);
    }
    
    .feature-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
        border-color: var(--purple-primary);
    }
    
    .about-visual {
        margin-top: 2rem;
    }
    
    /* Hero Metrics */
    .metric-card {
        position: absolute;
    }
    
    .metric-card-1 {
        top: 5%;
        left: -5%;
        right: auto;
    }
    
    .metric-card-2 {
        bottom: 15%;
        left: -5%;
    }
    
    .metric-card-3 {
        top: 45%;
        right: -8%;
    }
    
    .hero-image-container {
        margin-bottom: 2rem;
    }
    
    /* Client Logos */
    .logos-grid {
        gap: 1rem;
    }
    
    .logo-item {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    /* Service Images */
    .service-image {
        height: 150px;
    }
    
    /* Scientist Image */
    .scientist-image {
        height: 250px;
    }
    
    .image-overlay-text {
        padding: 1.5rem;
    }
    
    .image-overlay-text p {
        font-size: 1rem;
    }
    
    /* Metrics */
    .metrics-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .metric-value {
        font-size: 2.5rem;
    }
    
    /* Process */
    .process-step {
        gap: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* Contact */
    .contact {
        padding-top: 4rem;
    }
    
    .contact-wrapper {
        padding: 2rem;
    }
    
    /* Section Spacing */
    .section {
        padding: 3rem 0;
    }
    
    .services {
        padding-top: 4rem;
    }
    
    .how-it-works {
        padding-top: 4rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        margin-bottom: 1rem;
    }
    
    .section-icon-accent {
        font-size: 2rem;
    margin-bottom: 1rem;
}

    /* Dividers */
    .section-divider {
        margin: 3rem 0;
    }
    
    .divider-icon {
        font-size: 1.5rem;
        margin: 0 1rem;
    }
    
    /* Content Spacing */
    .about-content {
        gap: 2rem;
        margin-top: 0;
    }
    
    .services-grid {
        margin-top: 0;
    }
    
    .process-timeline {
        margin-top: 1.5rem;
    }
    
    .contact-wrapper {
        margin-top: 0;
    }
    
    .faq-list {
        margin-top: 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    /* FAQ Header */
    .faq .section-header {
        text-align: center;
    }
    
    .faq .section-title {
        margin: 0 auto 1rem auto;
    }
    
    .faq .section-subtitle {
        margin: 0 auto;
        text-align: center;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }
    .footer .logo-image { height: 44px; }
    
    /* WhatsApp */
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 1rem;
        right: 1rem;
    }
    
    /* Founder */
    .founder-content {
        grid-template-columns: 1fr;
    }
    
    .transformation-gallery {
        grid-template-columns: 1fr;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-testimonial {
        padding: 2rem;
}

.testimonial-quote-top,
.testimonial-quote-bottom {
    font-size: 3rem;
}

.testimonial-text {
        font-size: 1.125rem;
    }
    
    .consultation-image-wrapper {
        height: 300px;
    }
}

@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 1rem;
    }
    
    /* Typography */
    .hero-title {
        font-size: 3rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
        line-height: 1.65;
        padding: 0 0.25rem;
    }
    
    .hero-title-large {
        font-size: clamp(3rem, 11vw, 4rem);
        letter-spacing: -0.025em;
        line-height: 1.05;
    }
    @media (max-width: 380px) {
        .hero-title-large { font-size: 3.25rem; }
    }

    .hero-centered-content {
        padding: 0 0.25rem;
    }
    
    .bubble-3d {
        width: 120px;
        height: 120px;
    }
    
    .bubble-3d-sm {
        width: 40px;
        height: 40px;
    }
    
    .bubble-3d-xs {
        width: 25px;
        height: 25px;
    }
    
    /* Transformative underline - adjust for mobile */
    .transformative-underline::after {
        height: 2px;
        bottom: 0.1em;
    }
    
    .section-title {
        font-size: clamp(2.4rem, 7vw, 2.8rem);
        line-height: 1.25;
    }
    
    .section-subtitle {
        font-size: 0.9375rem;
    }
    
    /* Hero */
    .hero {
        min-height: 80vh;
    }
    
    /* Buttons */
    .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Form inputs - better for mobile */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.875rem;
        min-height: 48px;
    }
    
    /* Services */
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    /* About */
    .about-image-wrapper {
        height: 140px;
        margin-bottom: 0.5rem;
    }
    
    .about-visual {
        margin-top: 1.5rem;
    }
    
    /* Section Spacing */
    .section {
        padding: 2.5rem 0;
    }
    
    .services {
        padding-top: 3rem;
    }
    
    .how-it-works {
        padding-top: 3rem;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .section-divider {
        margin: 2rem 0;
    }
    
    /* Hero Metrics */
    .metric-card {
        padding: 0.75rem 1rem;
    }
    
    .metric-card-1 {
        top: 3%;
        left: -3%;
        right: auto;
    }
    
    .metric-card-2 {
        bottom: 10%;
        left: -3%;
    }
    
    .metric-card-3 {
        top: 40%;
        right: -5%;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .metric-label {
        font-size: 0.75rem;
    }
    
    /* Client Logos */
    .logos-grid {
        gap: 0.75rem;
    }
    
    .logo-item {
        font-size: 0.7rem;
        padding: 0.5rem 0.875rem;
    }
    
    /* Service Images */
    .service-image {
        height: 120px;
    }
    
    /* Scientist Image */
    .scientist-image {
        height: 200px;
    }
    
    .image-overlay-text {
        padding: 1rem;
    }
    
    .image-overlay-text p {
        font-size: 0.875rem;
    }
    
    /* Metrics */
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    /* FAQ */
    .faq .section-header {
        text-align: center;
    }
    
    .faq .section-title {
        margin: 0 auto 1rem auto;
    }
    
    .faq .section-subtitle {
        margin: 0 auto;
        text-align: center;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 1.5rem 1rem 1.5rem;
    }
    
    /* Contact */
    .contact {
        padding-top: 3rem;
    }
    
    .contact-wrapper {
        padding: 1.5rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.875rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-links a {
        padding: 0.5rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* WhatsApp button - better positioning on mobile */
    .whatsapp-button {
        width: 56px;
        height: 56px;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 1.75rem;
    }
    
    /* Reason titles - better mobile spacing */
    .reason-title {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .reason-description {
        font-size: 0.9375rem;
        line-height: 1.7;
    }
    
    /* Process timeline - better mobile */
    .process-step {
        margin-bottom: 2rem;
    }
    
    .step-title {
        font-size: 1.25rem;
    }
    
    .step-description {
        font-size: 0.9375rem;
        line-height: 1.7;
    }
    
    /* Better image loading on mobile */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
    }
}

/* ========================================
   Animation Classes
   ======================================== */
.fade-in {
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   1. Scroll Progress Bar
   ======================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-primary), var(--pink-primary), var(--blue-primary));
    z-index: 1001;
    transition: width 0.05s linear;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.4);
}

/* ========================================
   2. SVG Wave Dividers
   ======================================== */
.wave-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 0;
    padding: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

.wave-divider.wave-flip svg {
    transform: scaleY(-1);
}

.wave-divider.wave-tall svg {
    height: 80px;
}

.wave-divider.wave-to-dark {
    background: linear-gradient(180deg, #FDF2F8 0%, #EDE9FE 30%, #D8C8FB 65%, #c0a8f7 90%, #b39bff 100%);
    height: 80px;
    overflow: hidden;
}
.wave-divider.wave-to-dark svg {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .wave-divider svg {
        height: 35px;
    }
    .wave-divider.wave-tall svg {
        height: 45px;
    }
}

/* ========================================
   3. Glassmorphism Enhancements
   ======================================== */
.faq-item {
    background: rgba(255, 255, 255, 0.65) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
    transform: translateY(-2px);
}

.feature-item {
    background: rgba(255, 255, 255, 0.55);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    border-radius: 14px !important;
    padding: 1.25rem !important;
    box-shadow: 0 2px 12px rgba(139, 92, 246, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.75) !important;
    box-shadow: 0 8px 28px rgba(139, 92, 246, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
    transform: translateY(-3px) !important;
    border-color: rgba(139, 92, 246, 0.25) !important;
}

.hero-floating-badge {
    background: rgba(255, 255, 255, 0.6) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}

.contact-wrapper {
    background: rgba(255, 255, 255, 0.5) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 8px 40px rgba(139, 92, 246, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

/* ---- Disable gradient border on expanded FAQ ---- */
.faq-item.active.gradient-border-wrap::before {
    opacity: 0 !important;
    animation: none !important;
}

.faq-item.active {
    border-color: rgba(139, 92, 246, 0.2) !important;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
    transform: none !important;
}

/* ========================================
   Liquid Glass Effect (Global)
   ======================================== */
/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.55) !important;
    -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
    backdrop-filter: blur(16px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow:
        0 4px 24px rgba(139, 92, 246, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(139, 92, 246, 0.04) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.72) !important;
    box-shadow:
        0 12px 40px rgba(139, 92, 246, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(139, 92, 246, 0.06) !important;
    border-color: rgba(139, 92, 246, 0.18) !important;
    transform: translateY(-6px) !important;
}

/* Metric Cards */
.metric-card {
    background: rgba(255, 255, 255, 0.6) !important;
    -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
    backdrop-filter: blur(16px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow:
        0 4px 20px rgba(139, 92, 246, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}

/* Logo Items (trust bar) */
.logo-item {
    background: rgba(255, 255, 255, 0.5) !important;
    -webkit-backdrop-filter: blur(12px) saturate(160%) !important;
    backdrop-filter: blur(12px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(160%) !important;
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    box-shadow:
        0 2px 10px rgba(139, 92, 246, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.logo-item:hover {
    background: rgba(255, 255, 255, 0.7) !important;
    box-shadow:
        0 6px 20px rgba(139, 92, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
    border-color: rgba(139, 92, 246, 0.2) !important;
}

/* Reason Item text side */
.reason-text-content {
    background: rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow:
        0 2px 16px rgba(139, 92, 246, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.35s ease;
}

.reason-item:hover .reason-text-content {
    background: rgba(255, 255, 255, 0.55);
    box-shadow:
        0 8px 28px rgba(139, 92, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Navbar - refined liquid glass */
.navbar {
    background: rgba(255, 255, 255, 0.6) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4) !important;
}

/* Process step cards */
.process-step .step-content {
    background: rgba(255, 255, 255, 0.45);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow:
        0 2px 12px rgba(139, 92, 246, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.process-step:hover .step-content {
    background: rgba(255, 255, 255, 0.6);
    box-shadow:
        0 6px 24px rgba(139, 92, 246, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Scroll indicator mouse */
.mouse {
    background: rgba(255, 255, 255, 0.3) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

/* Hero floating badges - enhanced liquid glass */
.hero-floating-badge {
    background: rgba(255, 255, 255, 0.5) !important;
    -webkit-backdrop-filter: blur(20px) saturate(200%) !important;
    backdrop-filter: blur(20px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(200%) !important;
    border: 1px solid rgba(255, 255, 255, 0.55) !important;
    box-shadow:
        0 8px 32px rgba(139, 92, 246, 0.08),
        0 2px 8px rgba(236, 72, 153, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(139, 92, 246, 0.03) !important;
}

/* FAQ item - enhanced liquid glass */
.faq-item {
    background: rgba(255, 255, 255, 0.5) !important;
    -webkit-backdrop-filter: blur(18px) saturate(180%) !important;
    backdrop-filter: blur(18px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    box-shadow:
        0 4px 20px rgba(139, 92, 246, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.65),
        inset 0 -1px 0 rgba(139, 92, 246, 0.02) !important;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.68) !important;
    box-shadow:
        0 8px 32px rgba(139, 92, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        inset 0 -1px 0 rgba(139, 92, 246, 0.03) !important;
}

/* Feature items - enhanced */
.feature-item {
    background: rgba(255, 255, 255, 0.45) !important;
    -webkit-backdrop-filter: blur(14px) saturate(170%) !important;
    backdrop-filter: blur(14px) saturate(170%) !important;
    -webkit-backdrop-filter: blur(14px) saturate(170%) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow:
        0 2px 12px rgba(139, 92, 246, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        inset 0 -1px 0 rgba(139, 92, 246, 0.02) !important;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.65) !important;
    box-shadow:
        0 8px 28px rgba(139, 92, 246, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.65),
        inset 0 -1px 0 rgba(139, 92, 246, 0.04) !important;
    border-color: rgba(139, 92, 246, 0.22) !important;
}

/* Contact wrapper - enhanced */
.contact-wrapper {
    background: rgba(255, 255, 255, 0.42) !important;
    -webkit-backdrop-filter: blur(20px) saturate(190%) !important;
    backdrop-filter: blur(20px) saturate(190%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(190%) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow:
        0 8px 40px rgba(139, 92, 246, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        inset 0 -1px 0 rgba(139, 92, 246, 0.03) !important;
}

/* Form inputs - liquid glass */
.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.5) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(139, 92, 246, 0.12) !important;
    transition: all 0.3s ease !important;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    background: rgba(255, 255, 255, 0.7) !important;
    border-color: var(--purple-primary) !important;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   4. Parallax Image Scrolling
   ======================================== */
.reason-image-wrapper {
    overflow: hidden !important;
}

.reason-image-wrapper .reason-image {
    transition: transform 0.1s linear !important;
    will-change: transform;
}

.scientist-image-wrapper {
    overflow: hidden;
}

.scientist-image {
    transition: transform 0.1s linear !important;
    will-change: transform;
}

/* ========================================
   5. Staggered Section Reveal Animations
   ======================================== */
.reveal-ready {
    opacity: 0;
    will-change: transform, opacity;
}

.reveal-fade-up {
    transform: translateY(40px);
}

.reveal-fade-left {
    transform: translateX(-50px);
}

.reveal-fade-right {
    transform: translateX(50px);
}

.reveal-scale {
    transform: scale(0.92);
}

.reveal-visible {
    opacity: 1 !important;
    transform: translateY(0) translateX(0) scale(1) !important;
}

/* ========================================
   6. Animated Gradient Border on Hover
   ======================================== */
.gradient-border-wrap {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.gradient-border-wrap::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    border-radius: inherit;
    background: conic-gradient(
        from var(--gradient-angle, 0deg),
        var(--purple-primary),
        var(--pink-primary),
        var(--blue-primary),
        var(--purple-primary)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gradient-border-wrap:hover::before {
    opacity: 1;
    animation: rotateGradientBorder 3s linear infinite;
}

.gradient-border-wrap::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    z-index: -1;
    border-radius: inherit;
    background: inherit;
}

@keyframes rotateGradientBorder {
    0% { --gradient-angle: 0deg; }
    100% { --gradient-angle: 360deg; }
}

/* Fallback for browsers that don't support @property */
@supports not (background: conic-gradient(from 0deg, red, blue)) {
    .gradient-border-wrap:hover::before {
        background: linear-gradient(135deg, var(--purple-primary), var(--pink-primary), var(--blue-primary));
    }
}

@property --gradient-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

/* Apply gradient border to specific elements */
.faq-item.gradient-border-wrap::after {
    background: rgba(255, 255, 255, 0.65);
    border-radius: 12px;
}

.feature-item.gradient-border-wrap::after {
    background: rgba(255, 255, 255, 0.55);
    border-radius: 14px;
}

/* ========================================
   7. Particle Canvas (Hero)
   ======================================== */
#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* ========================================
   8. Floating CTA Button
   ======================================== */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 5rem;
    z-index: 998;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-cta .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--purple-primary);
    border: 1.5px solid rgba(139, 92, 246, 0.6);
    animation: ctaPulse 2.5s ease-in-out infinite;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.floating-cta .btn:hover {
    transform: translateY(-2px);
    border-color: var(--purple-primary);
    box-shadow: 0 0 0 5px rgba(139, 92, 246, 0.13), 0 0 28px rgba(139, 92, 246, 0.32);
    animation: none;
}

.floating-cta .btn i {
    font-size: 1rem;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.08), 0 0 14px rgba(139, 92, 246, 0.15); }
    50% { box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.13), 0 0 26px rgba(139, 92, 246, 0.28); }
}

@media (max-width: 768px) {
    .floating-cta {
        display: none;
    }
}

/* ========================================
   Animation Improvements
   ======================================== */

/* 1. "Transformative" gradient shimmer */
@keyframes highlightShimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.highlight-text {
    background: linear-gradient(135deg, var(--purple-primary), var(--pink-primary), #a78bfa, var(--purple-primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: highlightShimmer 4s linear infinite;
}

/* 2. Button ripple */
.btn {
    position: relative;
    overflow: hidden;
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: rippleEffect 0.55s linear;
    background: rgba(255, 255, 255, 0.32);
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* 3. Service image hover light sweep */
.reason-image-wrapper {
    position: relative;
}

.reason-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 20%,
        rgba(255, 255, 255, 0.22) 50%,
        transparent 80%
    );
    transform: translateX(-120%) skewX(-15deg);
    pointer-events: none;
    z-index: 2;
}

.reason-item:hover .reason-image-wrapper::after {
    transform: translateX(120%) skewX(-15deg);
    transition: transform 0.65s ease;
}

/* 4. FAQ answer opacity transition (smooth fade in/out) */
.faq-answer {
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
}

/* 5. Process step number hover glow */
.step-number {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.12);
    box-shadow: 0 6px 22px rgba(139, 92, 246, 0.5);
}

/* 6. Feature icon spin on hover */
.feature-icon {
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, var(--pink-primary), var(--purple-primary));
}

/* 7. Contact form inputs — animated left border accent on focus */
.contact-form .form-group {
    position: relative;
}

.contact-form .form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--purple-primary), var(--pink-primary));
    border-radius: 0 0 8px 8px;
    transition: width 0.35s ease;
}

.contact-form .form-group:focus-within::after {
    width: 100%;
}

/* 8. Hero section — staggered line-by-line title entrance */
@keyframes heroLineFocus {
    0%   { opacity: 0; transform: scale(1.10); filter: blur(10px); }
    60%  { opacity: 1; filter: blur(0.5px); }
    100% { opacity: 1; transform: scale(1);    filter: blur(0px); }
}

.hero-title-large {
    overflow: visible;
    position: relative;
}

.hero-title-line {
    display: block;
    opacity: 0;
    animation: heroLineFocus 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title-line:nth-child(1) { animation-delay: 0.05s; }
.hero-title-line:nth-child(2) { animation-delay: 0.25s; }
.hero-title-line:nth-child(3) { animation-delay: 0.45s; }

/* line-inner is inert for this option */
.hero-title-line span.line-inner { display: inline; }

/* 9. Reason icon hover — gradient fill + scale */
.reason-icon {
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease !important;
}

.reason-item:hover .reason-icon {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3) !important;
}

/* 10. FAQ question hover */
.faq-question {
    position: relative;
}

@media (prefers-reduced-motion: reduce) {
    .highlight-text { animation: none; }
    .btn-ripple { animation: none; }
    .hero-title-line { animation: none; opacity: 1; }
    .reason-image-wrapper::after { display: none; }
}

/* ============================================
   Skip Navigation (Accessibility)
   ============================================ */
.skip-nav {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--purple-primary);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 9999;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-nav:focus {
    top: 0;
}

/* ============================================
   AI Chat Section
   ============================================ */
.ai-chat-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(139,92,246,0.03) 0%, rgba(236,72,153,0.03) 100%);
}

.ai-chat-wrapper {
    max-width: 720px;
    margin: 0 auto;
}

.ai-chat-box {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(139,92,246,0.12), 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    border: 1px solid rgba(139,92,246,0.1);
}

/* Header */
.ai-chat-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--purple-primary) 0%, #a855f7 100%);
    color: #fff;
}

.ai-chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ai-chat-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.ai-chat-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.ai-chat-status {
    font-size: 0.75rem;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.ai-status-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 6px #4ade80;
}

.ai-chat-limit {
    font-size: 0.78rem;
    background: rgba(255,255,255,0.18);
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
}

/* Messages */
.ai-chat-messages {
    padding: 1.5rem;
    min-height: 280px;
    max-height: 420px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    scroll-behavior: smooth;
}

.ai-message {
    display: flex;
    max-width: 85%;
}

.ai-message-bot {
    align-self: flex-start;
}

.ai-message-user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.ai-message-bubble {
    padding: 0.75rem 1rem;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #1f2937;
}

.ai-message-bot .ai-message-bubble {
    background: #f3f4f6;
    border-bottom-left-radius: 4px;
}

.ai-message-user .ai-message-bubble {
    background: linear-gradient(135deg, var(--purple-primary), #a855f7);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.ai-message-error .ai-message-bubble {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

/* Typing indicator */
.ai-typing .ai-message-bubble {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0.85rem 1rem;
}

.ai-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #9ca3af;
    animation: aiDotBounce 1.2s infinite;
}
.ai-dot:nth-child(2) { animation-delay: 0.2s; }
.ai-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes aiDotBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
    30% { transform: translateY(-5px); opacity: 1; }
}

/* Suggestion chips */
.ai-suggested-questions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.ai-suggestions-label {
    width: 100%;
    font-size: 0.78rem;
    color: #9ca3af;
    margin-bottom: 0.1rem;
}

.ai-suggestion-chip {
    background: #fff;
    border: 1px solid rgba(139,92,246,0.3);
    color: var(--purple-primary);
    font-size: 0.8rem;
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    font-family: inherit;
    line-height: 1.4;
}

.ai-suggestion-chip:hover {
    background: rgba(139,92,246,0.06);
    border-color: var(--purple-primary);
}

.ai-suggestion-chip:focus-visible {
    outline: 2px solid var(--purple-primary);
    outline-offset: 2px;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.35);
    z-index: 900;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.5);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1.5rem;
        left: 1.5rem;
        width: 40px;
        height: 40px;
    }
}

/* Blog: Coming Soon badge */
.blog-coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #9ca3af;
    font-size: 0.9rem;
    cursor: default;
    pointer-events: none;
    font-weight: 500;
}

/* Input area */
.ai-chat-input-area {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid #f3f4f6;
}

.ai-input-wrapper {
    flex: 1;
    position: relative;
}

.ai-chat-input {
    width: 100%;
    resize: none;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.7rem 0.9rem;
    padding-bottom: 1.5rem;
    font-family: inherit;
    font-size: 0.9rem;
    color: #1f2937;
    line-height: 1.5;
    transition: border-color 0.2s;
    background: #fafafa;
    box-sizing: border-box;
}

.ai-chat-input:focus {
    outline: none;
    border-color: var(--purple-primary);
    background: #fff;
}

.ai-chat-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.ai-char-count {
    position: absolute;
    bottom: 0.4rem;
    right: 0.75rem;
    font-size: 0.72rem;
    color: #9ca3af;
    pointer-events: none;
}

.ai-send-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-primary), #a855f7);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    transition: opacity 0.2s, transform 0.15s;
    margin-bottom: 0.1rem;
}

.ai-send-btn:hover:not(:disabled) {
    opacity: 0.9;
    transform: scale(1.05);
}

.ai-send-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.ai-disclaimer {
    font-size: 0.72rem;
    color: #9ca3af;
    text-align: center;
    padding: 0.5rem 1.5rem 1rem;
    margin: 0;
    line-height: 1.5;
}

/* Mobile */
@media (max-width: 600px) {
    .ai-chat-messages {
        min-height: 220px;
        max-height: 320px;
        padding: 1rem;
    }
    .ai-chat-header {
        padding: 0.85rem 1rem;
    }
    .ai-chat-input-area {
        padding: 0.75rem 1rem;
    }
    .ai-chat-limit {
        display: none;
    }
    .ai-message {
        max-width: 95%;
    }
}

/* ==========================================================================
   Why Stem Cell Therapy — Hero Block + Bento Grid
   ========================================================================== */

#services.services {
    overflow: hidden;
    position: relative;
    padding-top: 0;
}

.why-hero {
    position: relative;
    padding: 4rem 1.5rem 2.5rem;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    margin-bottom: 2.5rem;
    text-align: center;
    background: transparent;
    /* Perf: skip rendering the heavy animation stack when offscreen */
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

.why-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 55% 45% at 50% 50%, rgba(249, 168, 212, 0.25) 0%, transparent 70%);
}

.why-hero::before { display: none; }

.why-hero-glow {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translateX(-50%);
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 168, 212, 0.55) 0%, rgba(236, 72, 153, 0.20) 35%, transparent 65%);
    filter: blur(60px);
    pointer-events: none;
}

/* Floating cells (background) */
.why-hero-cells {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.why-cell {
    position: absolute;
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 32%, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.25) 22%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(249, 168, 212, 0.55) 0%, rgba(168, 85, 247, 0.30) 50%, rgba(168, 85, 247, 0) 75%);
    box-shadow:
        inset 0 0 30px rgba(255, 255, 255, 0.15),
        0 0 30px rgba(249, 168, 212, 0.25);
    opacity: 0.85;
    animation: whyCellDrift 18s ease-in-out infinite;
}
.why-cell-1 { width: 90px;  height: 90px;  top: 8%;   left: 6%;   animation-delay: -2s; }
.why-cell-2 { width: 50px;  height: 50px;  top: 22%;  left: 18%;  animation-delay: -6s; animation-duration: 22s; }
.why-cell-3 { width: 130px; height: 130px; top: 60%;  left: 4%;   animation-delay: -1s; animation-duration: 24s; opacity: 0.6; }
.why-cell-4 { width: 70px;  height: 70px;  top: 75%;  left: 22%;  animation-delay: -8s; animation-duration: 20s; }
.why-cell-5 { width: 110px; height: 110px; top: 12%;  right: 8%;  animation-delay: -3s; animation-duration: 26s; }
.why-cell-6 { width: 45px;  height: 45px;  top: 30%;  right: 22%; animation-delay: -10s; animation-duration: 19s; }
.why-cell-7 { width: 95px;  height: 95px;  top: 65%;  right: 6%;  animation-delay: -5s; animation-duration: 23s; }
.why-cell-8 { width: 60px;  height: 60px;  bottom: 8%; right: 26%; animation-delay: -12s; }

@keyframes whyCellDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(18px, -22px) scale(1.04); }
    66%      { transform: translate(-14px, 14px) scale(0.97); }
}

/* Hero top: eyebrow + headline + sub */
.why-hero-top {
    position: relative;
    z-index: 4;
    max-width: 760px;
    margin: 0 auto 2.25rem;
}

/* Hero stage (figure + cards) */
.why-hero-stage {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    height: 720px;
    perspective: 1400px;
    perspective-origin: 50% 50%;
}

.why-hero-subject {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 100%;
    aspect-ratio: auto;
    z-index: 3;
    overflow: visible;
    filter: drop-shadow(0 20px 40px rgba(45, 10, 78, 0.35));
}
.why-hero-subject img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: saturate(1.05) contrast(1.02);
}

/* Translucent wavy SVG connectors between cards and body */
.why-hero-connectors {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: visible;
}
.why-hero-connectors .conn {
    stroke-width: 2.2;
    stroke-linecap: round;
    opacity: 0.7;
    animation: connBreath 4.5s ease-in-out infinite;
}
.why-hero-connectors .conn:nth-child(2) { animation-delay: -0.9s; }
.why-hero-connectors .conn:nth-child(3) { animation-delay: -1.8s; }
.why-hero-connectors .conn:nth-child(4) { animation-delay: -2.7s; }
.why-hero-connectors .conn:nth-child(5) { animation-delay: -3.6s; }
@keyframes connBreath {
    0%, 100% { opacity: 0.55; }
    50%      { opacity: 0.95; }
}

/* Body landmark markers (dots that sit on the figure) */
.body-marker {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff 0%, #fce7f3 50%, #f9a8d4 100%);
    transform: translate(-50%, -50%);
    z-index: 4;
    box-shadow:
        0 0 0 4px rgba(249, 168, 212, 0.28),
        0 0 24px rgba(249, 168, 212, 0.7),
        0 0 1px rgba(255, 255, 255, 0.95) inset;
    animation: bmPulse 2.6s ease-in-out infinite;
}
.body-marker::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    animation: bmRing 2.6s ease-out infinite;
}
@keyframes bmPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(249,168,212,0.28), 0 0 24px rgba(249,168,212,0.7), 0 0 1px rgba(255,255,255,0.95) inset; }
    50%      { box-shadow: 0 0 0 8px rgba(249,168,212,0.14), 0 0 32px rgba(249,168,212,0.95), 0 0 1px rgba(255,255,255,0.95) inset; }
}
@keyframes bmRing {
    0%   { transform: scale(0.6); opacity: 0.9; }
    100% { transform: scale(1.6); opacity: 0; }
}
.bm-cardio { animation-delay: -0.5s; }
.bm-cardio::after { animation-delay: -0.5s; }
.bm-skin   { animation-delay: -1s; }
.bm-skin::after   { animation-delay: -1s; }
.bm-immune { animation-delay: -1.5s; }
.bm-immune::after { animation-delay: -1.5s; }
.bm-joints { animation-delay: -2s; }
.bm-joints::after { animation-delay: -2s; }

/* Anatomical callout cards */
.float-card {
    position: absolute;
    z-index: 5;
    background: rgba(255, 255, 255, 0.18);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    padding: 12px 16px;
    color: #fff;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.18) inset,
        0 22px 44px -22px rgba(76, 29, 149, 0.5);
    min-width: 175px;
    max-width: 220px;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    animation: fcardDrift 14s ease-in-out infinite;
    will-change: transform;
}

/* Alternating tints — purple / peach / purple / peach / purple */
.fcard-1, .fcard-3, .fcard-5 {
    background: linear-gradient(135deg, rgba(196, 181, 253, 0.32) 0%, rgba(167, 139, 250, 0.24) 100%);
    border: 1px solid rgba(255, 255, 255, 0.30);
}
.fcard-2, .fcard-4 {
    background: linear-gradient(135deg, rgba(252, 211, 177, 0.30) 0%, rgba(249, 168, 137, 0.22) 100%);
    border: 1px solid rgba(255, 230, 215, 0.32);
}

.fcard-1 { top: 7%;   right: 14%; animation-delay: -1s; }
.fcard-2 { top: 32%;  left: 14%;  animation-delay: -4s; animation-duration: 17s; }
.fcard-3 { top: 44%;  right: 14%; animation-delay: -2s; animation-duration: 16s; }
.fcard-4 { top: 60%;  left: 14%;  animation-delay: -6s; animation-duration: 15s; }
.fcard-5 { bottom: 4%; right: 14%; animation-delay: -8s; animation-duration: 18s; }

@keyframes fcardDrift {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(var(--card-r, 0deg)); }
    50%      { transform: translate3d(0, -10px, 0) rotate(var(--card-r, 0deg)); }
}

.fcard-1 { --card-r: -5deg; }
.fcard-2 { --card-r: -2deg; }
.fcard-3 { --card-r: 4deg;  }
.fcard-4 { --card-r: 2deg;  }
.fcard-5 { --card-r: -3deg; }

.fcard-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.62);
    font-weight: 600;
    margin-bottom: 6px;
}
.fcard-benefit {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.005em;
    color: #fff;
    background: linear-gradient(135deg, #ffffff 0%, #fce7f3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.fcard-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}
.fcard-value-accent {
    background: linear-gradient(135deg, #f9a8d4 0%, #fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.fcard-unit {
    font-size: 0.85rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 3px;
}
.fcard-bar {
    margin-top: 10px;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 99px;
    overflow: hidden;
}
.fcard-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #f9a8d4, #ec4899);
    border-radius: 99px;
}
.fcard-spark {
    margin-top: 8px;
    height: 24px;
    color: #f9a8d4;
}
.fcard-spark svg {
    display: block;
    width: 100%;
    height: 100%;
}
.fcard-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.fcard-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.7);
    animation: fcardPulse 2.4s ease-in-out infinite;
}
@keyframes fcardPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.55; transform: scale(0.85); }
}
.fcard-meta {
    margin-top: 4px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.05em;
}
.fcard-cell svg { width: 56px; height: 56px; display: block; }

.why-hero-eyebrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin: 0 0 1rem;
}
.why-hero-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: #fff;
    margin: 0 0 1rem;
    font-weight: 600;
}
.why-hero-headline em {
    font-style: italic;
    background: linear-gradient(135deg, #f9a8d4 0%, #fff 50%, #f9a8d4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 400;
    padding-right: 0.05em;
}
.why-hero-sub {
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    max-width: 540px;
    margin: 0 auto;
}
.why-hero-ctas {
    position: relative;
    z-index: 4;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2.25rem;
}
.fcard-value-sm { font-size: 1.35rem; }
.btn-ghost-light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    padding: 0.95rem 1.7rem;
    border-radius: 99px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
.how-cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 4rem auto 0;
    padding: 0;
    text-align: center;
}

.how-consult-wrap {
    display: flex;
    justify-content: center;
    margin: 2rem auto 0;
}
.how-consult-wrap .btn {
    width: auto;
    display: inline-flex;
}
.how-cta-btn {
    margin: 0 auto;
}
.how-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 1.85rem;
    border-radius: 999px;
    background: transparent;
    color: #8B5CF6;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    border: 1.5px solid #8B5CF6;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}
.how-cta-btn i { font-size: 0.82em; }
@media (hover: hover) {
    .how-cta-btn:hover {
        background: rgba(139, 92, 246, 0.12);
        border-color: #a78bfa;
        color: #c4b5fd;
        transform: translateY(-2px);
    }
}
.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
    .why-cell, .float-card, .fcard-dot, .body-marker, .body-marker::after, .why-hero-connectors .conn { animation: none !important; }
}

/* Perf: when section is offscreen, pause its animations to free CPU/GPU */
.animations-paused,
.animations-paused * {
    animation-play-state: paused !important;
}

/* Bento Grid for reason cards */
.why-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.1rem;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}
.bento-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(139, 92, 246, 0.10);
    box-shadow:
        0 30px 60px -30px rgba(76, 29, 149, 0.14),
        0 8px 24px -12px rgba(236, 72, 153, 0.08);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
    display: flex;
    color: #1a0833;
}
@media (hover: hover) {
    .bento-card:hover {
        transform: translateY(-6px);
        box-shadow:
            0 38px 70px -30px rgba(76, 29, 149, 0.40),
            0 16px 32px -14px rgba(236, 72, 153, 0.22);
    }
}

/* Card variants — distinct pastel tints */
.bento-card-1 {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: stretch;
    min-height: 460px;
    background:
        radial-gradient(ellipse 70% 60% at 80% 50%, rgba(196, 181, 253, 0.42) 0%, transparent 60%),
        linear-gradient(135deg, #F5F0FF 0%, #FAF7FF 50%, #FDF8FD 100%);
}
.bento-card-2 {
    flex-direction: column;
    min-height: 480px;
    background:
        radial-gradient(ellipse 80% 60% at 30% 80%, rgba(196, 181, 253, 0.38) 0%, transparent 60%),
        linear-gradient(135deg, #F2EEFF 0%, #EBE4FF 100%);
}
.bento-card-3 {
    flex-direction: column;
    min-height: 480px;
    background:
        radial-gradient(ellipse 75% 60% at 70% 80%, rgba(251, 207, 232, 0.42) 0%, transparent 60%),
        linear-gradient(135deg, #FFF0F7 0%, #FCDEED 100%);
}

/* Image — bleeds into the card background via mask */
.bento-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}
.bento-image::after { display: none; }
.bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.bento-card-1 .bento-image {
    inset: 0 0 0 48%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 100%);
}
.bento-card-2 .bento-image,
.bento-card-3 .bento-image {
    top: auto;
    height: 60%;
    bottom: 0;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 32%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 32%, #000 100%);
}
.bento-card-2 .bento-image img { object-position: 50% 50%; }
.bento-card-3 .bento-image img { object-position: 50% 30%; }
@media (hover: hover) {
    .bento-card:hover .bento-image img { transform: scale(1.05); }
}

/* Text */
.bento-text {
    position: relative;
    z-index: 3;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
}
.bento-card-1 .bento-text {
    flex: 0 0 50%;
    padding: 3.5rem 2.25rem 3.5rem 3rem;
    justify-content: center;
}
.bento-icon { display: none; }
.bento-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.85rem, 3.4vw, 2.6rem);
    line-height: 1.05;
    color: #3d2c5f;
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.02em;
}
.bento-card-1 .bento-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
}
.bento-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #4b3a6e;
    margin: 0;
    max-width: 320px;
}
.bento-card-1 .bento-desc { max-width: 380px; font-size: 1.05rem; }
.bento-desc .text-pink { color: #db2777; font-weight: 600; }
.bento-desc .text-purple { color: #7c3aed; font-weight: 600; }
.bento-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.55rem;
    padding: 0.72rem 1.3rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #1a0833 0%, #3d2c5f 100%);
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 0.01em;
}
.bento-cta i { font-size: 0.78em; transition: transform 0.3s ease; }
@media (hover: hover) {
    .bento-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 28px -10px rgba(26, 8, 51, 0.45);
    }
    .bento-cta:hover i { transform: translateX(3px); }
}

/* Animated background effects */
.bento-fx {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

/* Card 1 — drifting orbs */
.bento-fx-orb {
    position: absolute;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.40) 16%, transparent 32%),
        radial-gradient(circle at 50% 50%, rgba(196, 181, 253, 0.65) 0%, rgba(167, 139, 250, 0.40) 60%, rgba(139, 92, 246, 0.10) 90%, transparent 100%);
    box-shadow: 0 12px 30px -12px rgba(139, 92, 246, 0.45);
    animation: bento-orb-float 16s ease-in-out infinite;
    will-change: transform;
}
.bento-fx-orb:nth-child(1) { width: 86px; height: 86px; top: 18%; left: 7%; animation-delay: 0s; opacity: 0.85; }
.bento-fx-orb:nth-child(2) { width: 52px; height: 52px; top: 62%; left: 14%; animation-delay: -5s; opacity: 0.80; }
.bento-fx-orb:nth-child(3) { width: 116px; height: 116px; top: 38%; left: 26%; animation-delay: -9s; opacity: 0.55; }
.bento-fx-orb:nth-child(4) { width: 38px; height: 38px; top: 78%; left: 36%; animation-delay: -3s; opacity: 0.78; }
.bento-fx-orb:nth-child(5) { width: 28px; height: 28px; top: 12%; left: 32%; animation-delay: -7s; opacity: 0.65; }
@keyframes bento-orb-float {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    33% { transform: translate3d(14px, -22px, 0) scale(1.05); }
    66% { transform: translate3d(-12px, -10px, 0) scale(0.96); }
}

/* Card 2 — soft pulsing glow */
.bento-fx-glow {
    position: absolute;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(252, 211, 177, 0.55) 0%, rgba(252, 211, 177, 0.18) 40%, transparent 70%);
    top: 70%;
    left: 28%;
    transform: translate(-50%, -50%);
    animation: bento-glow-pulse 7s ease-in-out infinite;
    filter: blur(6px);
    will-change: transform, opacity;
}
@keyframes bento-glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.18); opacity: 1; }
}

/* Card 3 — drifting shimmer */
.bento-fx-shimmer {
    position: absolute;
    width: 220%; height: 100%;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.0) 30%, rgba(255, 255, 255, 0.55) 50%, rgba(251, 207, 232, 0.20) 56%, transparent 80%);
    top: 0;
    left: -120%;
    animation: bento-shimmer-drift 11s linear infinite;
    mix-blend-mode: overlay;
    will-change: transform;
}
@keyframes bento-shimmer-drift {
    0% { transform: translateX(0); }
    100% { transform: translateX(60%); }
}

@media (prefers-reduced-motion: reduce) {
    .bento-fx-orb, .bento-fx-glow, .bento-fx-shimmer { animation: none; }
}

/* Tablet */
@media (max-width: 960px) {
    .why-hero { padding: 3rem 1.25rem 2rem; }
    .why-bento { grid-template-columns: 1fr; grid-template-rows: auto; gap: 1.25rem; }
    .why-hero-stage { height: 760px; max-width: 720px; }
    .why-hero-subject { width: 380px; }
    .why-hero-glow { width: 520px; height: 520px; }
    .float-card { padding: 10px 13px; min-width: 145px; max-width: 175px; }
    .fcard-benefit { font-size: 0.92rem; }
    .fcard-label { font-size: 0.62rem; }

    /* Bento card 1 — restack vertically: text top, image bottom-bleed (like cards 2/3) */
    .bento-card-1 {
        flex-direction: column;
        min-height: 480px;
    }
    .bento-card-1 .bento-text {
        flex: 0 0 auto;
        padding: 2.25rem 1.75rem 1.75rem;
        max-width: none;
        align-items: flex-start;
    }
    .bento-card-1 .bento-title { font-size: clamp(1.85rem, 6vw, 2.4rem); }
    .bento-card-1 .bento-desc { max-width: none; }
    .bento-card-1 .bento-image {
        position: absolute;
        inset: auto 0 0 0;
        top: auto;
        height: 56%;
        -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 32%, #000 100%);
        mask-image: linear-gradient(180deg, transparent 0%, #000 32%, #000 100%);
    }
    .bento-card-1 .bento-image img { object-position: 72% 40%; }
}

/* Mobile */
@media (max-width: 600px) {
    .why-hero { padding: 2.5rem 1rem 2.5rem; }
    .why-hero-top { margin-bottom: 1.5rem; }
    .why-hero-stage { height: 680px; }
    .why-hero-subject { width: 310px; }
    .why-hero-glow { width: 380px; height: 380px; }

    .float-card { padding: 8px 10px; border-radius: 12px; min-width: 0; max-width: 124px; }
    .fcard-benefit { font-size: 0.78rem; line-height: 1.2; }
    .fcard-label { font-size: 0.55rem; letter-spacing: 0.12em; margin-bottom: 3px; }
    .body-marker { width: 10px; height: 10px; }

    .fcard-1 { top: 12%; right: 1%; }
    .fcard-2 { top: 24%; left: 1%;  }
    .fcard-3 { top: 46%; right: 1%; }
    .fcard-4 { top: 60%; left: 1%;  }
    .fcard-5 { bottom: 2%; right: 1%; }

    .why-cell-3, .why-cell-7, .why-cell-8 { display: none; }

    .why-hero-headline { font-size: 2.3rem; }
    .why-hero-sub { font-size: 0.98rem; }
    .why-hero-ctas { gap: 0.7rem; flex-direction: column; align-items: stretch; margin-top: 1.5rem; }
    .why-hero-ctas .btn { justify-content: center; }
}

/* ============================================
   HOW IT WORKS — purple-gradient zigzag timeline
   ============================================ */

/* Bridge — services light-purple → pastel hero palette (smooth blend) */
.how-bridge {
    height: 80px;
    background: linear-gradient(180deg, #ffffff 0%, #fafaff 35%, #f7f4ff 70%, #F5F3FF 100%);
}

/* Pastel — same family as the landing hero */
.how-it-works {
    background:
        radial-gradient(ellipse 60% 45% at 18% 18%, rgba(196, 181, 253, 0.45) 0%, transparent 60%),
        radial-gradient(ellipse 55% 45% at 85% 25%, rgba(251, 207, 232, 0.50) 0%, transparent 60%),
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(167, 139, 250, 0.35) 0%, transparent 60%),
        linear-gradient(180deg, #F5F3FF 0%, #FAFAFF 25%, #FDF2F8 60%, #EDE9FE 100%);
    color: #1a0833;
    padding: 5.5rem 0 6rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.how-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.how-header {
    text-align: center;
    margin-bottom: 4.5rem;
    position: relative;
    z-index: 2;
}
.how-header .why-hero-eyebrow { color: #8b5cf6; }
.how-header .why-hero-headline {
    font-size: clamp(2.25rem, 4.6vw, 3.6rem);
    color: #1a0833;
}
.how-header .why-hero-headline em {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.how-header .why-hero-sub {
    margin-top: 1rem;
    color: #4b5563;
}

.how-timeline {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

/* Center spine — purple-pink gradient on light bg */
.how-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 1.5rem;
    bottom: 1.5rem;
    width: 2px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(139, 92, 246, 0.50) 6%,
        rgba(236, 72, 153, 0.60) 35%,
        rgba(139, 92, 246, 0.60) 70%,
        rgba(236, 72, 153, 0.50) 94%,
        transparent 100%);
    transform: translateX(-50%);
    border-radius: 99px;
    box-shadow: 0 0 18px rgba(236, 72, 153, 0.20);
}

.how-step {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-bottom: 1.6rem;
}
.how-step:last-child { margin-bottom: 0; }

.how-step-left .how-card { grid-column: 1; margin-right: 3.25rem; }
.how-step-right .how-card { grid-column: 2; margin-left: 3.25rem; }

.how-card {
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.92) 0%, rgba(252, 231, 243, 0.78) 100%);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 22px;
    padding: 1.65rem 1.85rem;
    color: #1a0833;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 1) inset,
        0 22px 44px -22px rgba(76, 29, 149, 0.22),
        0 8px 22px -10px rgba(236, 72, 153, 0.16);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease, border-color 0.5s ease;
    position: relative;
}
.how-card:hover {
    transform: translateY(-5px);
    border-color: rgba(196, 181, 253, 0.7);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 1) inset,
        0 30px 60px -22px rgba(76, 29, 149, 0.32),
        0 12px 30px -10px rgba(236, 72, 153, 0.24);
}

.how-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.6rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    display: block;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.how-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.how-art {
    width: 88px;
    height: 88px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 6px 14px rgba(139, 92, 246, 0.18));
}
.how-art img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Legacy icon class — keep hidden in case any markup still references it */
.how-icon { display: none; }

.how-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    line-height: 1.2;
    margin: 0 0 0.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #1a0833;
}

.how-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}
.how-desc .text-pink-light { color: #ec4899; font-weight: 600; }

/* Spine dot — purple-pink glow on light bg */
.how-spine-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff 0%, #fce7f3 40%, #ec4899 100%);
    box-shadow:
        0 0 0 4px rgba(236, 72, 153, 0.20),
        0 0 24px rgba(236, 72, 153, 0.45),
        0 0 1px rgba(255, 255, 255, 0.95) inset;
    z-index: 3;
    animation: bmPulse 2.6s ease-in-out infinite;
}
.how-spine-dot::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(236, 72, 153, 0.35);
    animation: bmRing 2.6s ease-out infinite;
}
.how-step:nth-child(2) .how-spine-dot { animation-delay: -0.6s; }
.how-step:nth-child(2) .how-spine-dot::after { animation-delay: -0.6s; }
.how-step:nth-child(3) .how-spine-dot { animation-delay: -1.2s; }
.how-step:nth-child(3) .how-spine-dot::after { animation-delay: -1.2s; }
.how-step:nth-child(4) .how-spine-dot { animation-delay: -1.8s; }
.how-step:nth-child(4) .how-spine-dot::after { animation-delay: -1.8s; }

/* Wave at the bottom — pastel → white transition into About */
.wave-divider.wave-from-dark {
    background: linear-gradient(180deg, #EDE9FE 0%, #F5F3FF 50%, #FFFFFF 100%);
    height: 60px;
    overflow: hidden;
}

/* Tablet */
@media (max-width: 960px) {
    .how-timeline { max-width: 100%; padding: 0 1rem; }
    .how-step-left .how-card { margin-right: 2rem; }
    .how-step-right .how-card { margin-left: 2rem; }
    .how-card { padding: 1.4rem 1.5rem; }
    .how-num { font-size: 2.2rem; }
}

/* Mobile — single column with spine on left */
@media (max-width: 640px) {
    .how-timeline::before { left: 18px; transform: none; }
    .how-step { grid-template-columns: 1fr; }
    .how-step-left .how-card,
    .how-step-right .how-card {
        grid-column: 1;
        margin-left: 42px;
        margin-right: 0;
    }
    .how-spine-dot { left: 18px; transform: translate(-50%, -50%); }
    .how-card { padding: 1.25rem 1.4rem; }
    .how-num { font-size: 2rem; }
    .how-title { font-size: 1.15rem; }
    .how-desc { font-size: 0.88rem; }
    .how-header { margin-bottom: 3rem; }
}

/* ============================================
   SECTION REVEAL ANIMATIONS
   Triggered by JS adding .is-revealed to sections
   ============================================ */

/* --- Why Stem Cell Therapy section --- */
.services .why-hero-eyebrow,
.services .why-hero-headline,
.services .why-hero-sub,
.services .why-hero-ctas {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.services.is-revealed .why-hero-eyebrow   { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.services.is-revealed .why-hero-headline  { opacity: 1; transform: translateY(0); transition-delay: 0.18s; }
.services.is-revealed .why-hero-sub       { opacity: 1; transform: translateY(0); transition-delay: 0.30s; }
.services.is-revealed .why-hero-ctas      { opacity: 1; transform: translateY(0); transition-delay: 1.85s; }

/* Figure fade + soft rise + scale */
.services .why-hero-subject {
    opacity: 0;
    transform: translateX(-50%) translateY(36px) scale(0.96);
    transition: opacity 1.2s ease, transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.services.is-revealed .why-hero-subject {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    transition-delay: 0.4s;
}

/* Floating callout cards stagger in (opacity only — drift animation owns transform) */
.services .float-card { opacity: 0; transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1); }
.services.is-revealed .float-card { opacity: 1; }
.services.is-revealed .fcard-1 { transition-delay: 0.85s; }
.services.is-revealed .fcard-2 { transition-delay: 1.00s; }
.services.is-revealed .fcard-3 { transition-delay: 1.15s; }
.services.is-revealed .fcard-4 { transition-delay: 1.30s; }
.services.is-revealed .fcard-5 { transition-delay: 1.45s; }

/* Body markers pop in (translate centering preserved + scale 0→1) */
.services .body-marker {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.services.is-revealed .body-marker { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.services.is-revealed .bm-head   { transition-delay: 1.55s; }
.services.is-revealed .bm-cardio { transition-delay: 1.65s; }
.services.is-revealed .bm-skin   { transition-delay: 1.75s; }
.services.is-revealed .bm-immune { transition-delay: 1.85s; }
.services.is-revealed .bm-joints { transition-delay: 1.95s; }

/* Wavy connectors draw in via stroke-dashoffset */
.services .why-hero-connectors .conn {
    stroke-dasharray: 220;
    stroke-dashoffset: 220;
    transition: stroke-dashoffset 1.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.services.is-revealed .why-hero-connectors .conn { stroke-dashoffset: 0; }
.services.is-revealed .why-hero-connectors .conn:nth-of-type(1) { transition-delay: 1.05s; }
.services.is-revealed .why-hero-connectors .conn:nth-of-type(2) { transition-delay: 1.20s; }
.services.is-revealed .why-hero-connectors .conn:nth-of-type(3) { transition-delay: 1.35s; }
.services.is-revealed .why-hero-connectors .conn:nth-of-type(4) { transition-delay: 1.50s; }
.services.is-revealed .why-hero-connectors .conn:nth-of-type(5) { transition-delay: 1.65s; }

/* Bento cards stagger up */
.services .bento-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.services.is-revealed .bento-card { opacity: 1; transform: translateY(0); }
.services.is-revealed .bento-card-1 { transition-delay: 2.0s; }
.services.is-revealed .bento-card-2 { transition-delay: 2.15s; }
.services.is-revealed .bento-card-3 { transition-delay: 2.30s; }


/* --- How It Works section --- */
.how-it-works .how-header > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.how-it-works.is-revealed .how-header > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.how-it-works.is-revealed .how-header > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.18s; }
.how-it-works.is-revealed .how-header > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.30s; }

/* Spine line draws downward */
.how-timeline::before {
    transform-origin: top center;
    transform: translateX(-50%) scaleY(0);
    transition: transform 1.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.how-it-works.is-revealed .how-timeline::before {
    transform: translateX(-50%) scaleY(1);
    transition-delay: 0.45s;
}

/* Cards slide in alternating from sides — per-step trigger via .is-anim */
.how-it-works .how-step-left  .how-card,
.how-it-works .how-step-right .how-card {
    opacity: 0;
    transition: opacity 0.85s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.how-it-works .how-step-left  .how-card { transform: translateX(-44px); }
.how-it-works .how-step-right .how-card { transform: translateX(44px); }
.how-it-works .how-step.is-anim .how-card { opacity: 1; transform: translateX(0); }

/* Spine dot pops in slightly after its card */
.how-it-works .how-spine-dot {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.how-it-works .how-step.is-anim .how-spine-dot {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    transition-delay: 0.22s;
}

@media (prefers-reduced-motion: reduce) {
    .services *, .how-it-works *, .how-timeline::before {
        transition: none !important;
        animation: none !important;
    }
    /* Catch-all for any drifting decorative elements */
    .asc-cell, .asc-bg-cells .asc-cell,
    .bento-fx-orb, .bento-fx-glow, .bento-fx-shimmer,
    .why-cell, .float-card, .fcard-dot, .body-marker,
    .body-marker::after, .why-hero-connectors .conn,
    .pc-hero-motif {
        animation: none !important;
        transition: none !important;
    }
    /* Drop heavy backdrop blur for users who opt out of motion (often correlates with low-power preferences) */
    *, *::before, *::after {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}

/* === Backdrop-filter graceful degradation === */
@supports not (backdrop-filter: blur(1px)) {
    @supports not (-webkit-backdrop-filter: blur(1px)) {
        .navbar, .pc-eyebrow, .au-eyebrow, .asc-eyebrow, .jr-eyebrow,
        .syj-field input, .syj-field select, .syj-field textarea,
        .pc-clinic-doctor, .pc-clinic-pill, .jr-card-photo-tag,
        .float-card, .feature-item, .art-sources {
            background-color: rgba(255, 255, 255, 0.92) !important;
        }
    }
}

/* === Defer offscreen decorative work for paint perf === */
.asc-bg-cells,
.pc-hero-motif,
.bento-fx {
    contain: layout paint;
}

/* ============================================
   MOBILE / TABLET RESPONSIVE FIXES
   ============================================ */

/* --- Hide heavy decoratives on small screens --- */
@media (max-width: 768px) {
    .deco-orb { display: none; }
    .deco-ring { display: none; }
    .deco-ring-lg { display: block; opacity: 0.3; animation: none; }
    .services { padding-bottom: 0.5rem; }
    .how-bridge { height: 24px; }
}

/* --- Scroll statement --- */
@media (max-width: 768px) {
    .scroll-statement { font-size: clamp(2.4rem, 8vw, 3rem); line-height: 1.32; }
    .scroll-statement-section { padding: 6rem 0; }
}

/* --- Hero section --- */
@media (max-width: 768px) {
    .hero { padding-top: 130px; padding-bottom: 60px; }
    .hero-title-large { font-size: clamp(3.5rem, 13vw, 4.5rem); }
    .hero-subtitle { font-size: 0.97rem; }
    .client-logos { margin-top: 2.5rem; }
    .logos-grid { gap: 0.5rem; }
    .logo-item { font-size: 0.72rem; padding: 0.35rem 0.7rem; }
}

/* --- Bento mobile CTA --- */
.bento-mobile-cta {
    display: none;
}
@media (max-width: 960px) {
    /* Hide the in-card Learn more on mobile since we show it below */
    .bento-card-1 .bento-cta { display: none; }
    .bento-mobile-cta {
        display: flex;
        justify-content: center;
        padding: 1.5rem 1rem 0;
    }
    .bento-mobile-cta .bento-cta {
        font-size: 1rem;
        padding: 0.85rem 2rem;
        border: 1.5px solid rgba(109, 40, 217, 0.35);
        border-radius: 50px;
    }
}

/* --- Bento cards mobile (below 640px not already covered) --- */
@media (max-width: 640px) {
    .why-bento { padding: 0 1rem; gap: 1rem; }
    .bento-card-2, .bento-card-3 { min-height: 380px; }
    .bento-card-1 { min-height: 420px; }
    .bento-card-2 .bento-text,
    .bento-card-3 .bento-text { padding-top: 1.75rem; }
}

/* --- How It Works mobile spine fix --- */
@media (max-width: 640px) {
    .how-it-works .how-step-left .how-card,
    .how-it-works .how-step-right .how-card {
        transform: translateY(20px);
    }
}

/* --- wcu section mobile --- */
@media (max-width: 860px) {
    .wcu-principle { grid-template-columns: 100px 1fr; gap: 1.5rem; }
}
@media (max-width: 640px) {
    .wcu-principle {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 2rem 0.25rem;
        text-align: center;
        border-bottom: none;
    }
    .wcu-principle::before { display: none; }
    .wcu-principle-number { margin: 0 auto; }
    .wcu-principle-content p { max-width: 100%; }
    .wcu-principles { max-width: 100%; border-top: none; }
    .wcu-head { margin-bottom: 2.5rem; }
    .wcu-title { font-size: clamp(2rem, 8vw, 2.8rem); }
}

/* --- Contact / syj section --- */
@media (max-width: 768px) {
    .syj-section { padding: 5rem 0; }
    .syj-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
    .syj-head { margin-bottom: 2.5rem; }
}

/* --- FAQ section --- */
@media (max-width: 768px) {
    .faq { padding: 4rem 0; }
    .section-title { font-size: clamp(2.6rem, 9vw, 3.2rem); }
}

/* --- Navbar mobile --- */
@media (max-width: 768px) {
    .navbar { padding: 0.75rem 0; }
}

/* --- Touch targets --- */
@media (max-width: 768px) {
    .btn { min-height: 48px; padding: 0.85rem 1.5rem; }
    .faq-question { min-height: 52px; padding: 1rem 1.25rem; gap: 1rem; }
    .nav-toggle { width: 44px; height: 44px; }
}

/* --- Tablet (768–960px) intermediate fixes --- */
@media (min-width: 641px) and (max-width: 960px) {
    .scroll-statement { font-size: clamp(2.4rem, 5vw, 3.6rem); }
    .wcu-principle { grid-template-columns: 140px 1fr; gap: 2rem; }
    .syj-grid { gap: 1.75rem; }
    .how-step-left .how-card { margin-right: 1.5rem; }
    .how-step-right .how-card { margin-left: 1.5rem; }
}

/* --- about-stem-cells.html grids --- */
@media (max-width: 768px) {
    .asc-props    { grid-template-columns: 1fr !important; }
    .asc-journey  { grid-template-columns: 1fr !important; }
    .asc-sources  { grid-template-columns: 1fr !important; }
    .asc-safety   { grid-template-columns: repeat(2, 1fr) !important; }
    .asc-hero     { padding: 9rem 0 4rem !important; }
}
@media (max-width: 480px) {
    .asc-safety   { grid-template-columns: 1fr !important; }
}

/* --- partner-clinics.html grids --- */
@media (max-width: 768px) {
    .pc-spotlight { grid-template-columns: 1fr !important; }
    .pc-conditions { grid-template-columns: repeat(2, 1fr) !important; }
    .pc-vet        { grid-template-columns: repeat(2, 1fr) !important; }
    .pc-hero       { padding: 9rem 0 4rem !important; }
}
@media (max-width: 480px) {
    .pc-conditions, .pc-vet { grid-template-columns: 1fr !important; }
}

/* --- founder.html --- */
@media (max-width: 768px) {
    .au-hero { padding: 9rem 0 4rem !important; }
    .au-gallery-wrap { max-width: 100%; padding: 0 1rem; }
}

/* --- Overflow guard --- */
@media (max-width: 768px) {
    .hero, .scroll-statement-section, .services,
    .how-it-works, .wcu-section, .syj-section, .faq {
        overflow-x: hidden;
    }
}
