/* ============================================
   TELEHEALTHPH.COM - STYLES
   Premium Clinical Telehealth Platform
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --teal: #0d7d74;
    --teal-dark: #0a6b63;
    --teal-light: #10a89b;
    --blue-deep: #0a3d5c;
    --blue-mid: #0c5a8a;
    --accent: #c77d3c;
    --accent-light: #d4965a;
    --emerald: #10b981;
    --slate-text: #1e293b;
    --slate-light: #64748b;
    --bg-cream: #f7f9fb;
    --white: #ffffff;
    --nav-height: 64px;
    --nav-height-scrolled: 56px;
}

/* ---- Base ---- */
* {
    font-variant-ligatures: contextual;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-cream);
    color: var(--slate-text);
    letter-spacing: -0.01em;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ---- Heading Typography ---- */
h1, h2, h3, .section-heading, .step-card h3, .bento-item h3 {
    font-family: 'Fraunces', Georgia, serif;
}

/* ---- Glass Morphism (Light Theme) ---- */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(13, 125, 116, 0.12);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.glass-nav {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(13, 125, 116, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

/* ---- Gradients ---- */
.gradient-teal {
    background: linear-gradient(135deg, #0d7d74 0%, #0a6b63 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #0d7d74 0%, #0a6b63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-mesh {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(13, 125, 116, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(10, 61, 92, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(13, 125, 116, 0.03) 0%, transparent 40%);
}

/* Medical cross background pattern — very subtle */
.medical-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='17' y='8' width='6' height='24' rx='1' fill='rgba(13,125,116,0.03)'/%3E%3Crect x='8' y='17' width='24' height='6' rx='1' fill='rgba(13,125,116,0.03)'/%3E%3C/svg%3E");
    background-size: 40px 40px;
}

/* ---- Hover Effects ---- */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(10, 61, 92, 0.08);
}

/* ---- Buttons ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--teal);
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--teal-dark);
    box-shadow: 0 8px 24px rgba(10, 61, 92, 0.12);
    transform: translateY(-1px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid rgba(13, 125, 116, 0.4);
    background: transparent;
    color: var(--teal);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-ghost:hover {
    background: var(--teal);
    color: white;
    border-color: var(--teal);
}

.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    color: var(--teal);
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-white:hover {
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

/* ---- Navigation ---- */
.nav-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-height);
    transition: height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.nav-main.scrolled {
    height: var(--nav-height-scrolled);
    background: rgba(255, 255, 255, 0.97) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--blue-deep);
}

.nav-logo span {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-text);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--teal);
}

.nav-cta {
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.875rem;
}

/* Mobile nav */
.nav-mobile-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--teal);
    cursor: pointer;
    padding: 4px;
}

.mobile-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 99;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu a {
    color: var(--slate-text);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.mobile-menu a:hover {
    color: var(--teal);
}

/* ---- Hero Section ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--nav-height);
    overflow: hidden;
    background: var(--bg-cream);
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(13, 125, 116, 0.06);
    border: 1px solid rgba(13, 125, 116, 0.18);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 1.5rem;
}

.hero-badge svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.hero h1 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--blue-deep);
    margin-bottom: 1.25rem;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--slate-light);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-buttons .btn-primary {
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 1rem;
}

.hero-buttons .btn-ghost {
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 1rem;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 280px;
    height: 480px;
    background: var(--white);
    border-radius: 32px;
    border: 3px solid #e2e8f0;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0,0,0,0.03);
    margin: 0 auto;
    overflow: hidden;
}

.phone-notch {
    width: 120px;
    height: 24px;
    background: #e2e8f0;
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
}

.phone-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
}

.phone-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d7d74, #0a6b63);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
}

.phone-header-text {
    flex: 1;
}

.phone-doctor-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue-deep);
}

.phone-status {
    font-size: 0.65rem;
    color: var(--emerald);
    display: flex;
    align-items: center;
    gap: 4px;
}

.phone-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--emerald);
}

.phone-chat {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Chat message hidden state — JS animates in */
.phone-mockup .chat-msg {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.phone-mockup .chat-msg.chat-visible {
    opacity: 1;
    transform: translateY(0);
}

.chat-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.75rem;
    line-height: 1.5;
}

.chat-msg.doctor {
    background: rgba(13, 125, 116, 0.06);
    border: 1px solid rgba(13, 125, 116, 0.1);
    color: var(--slate-text);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-msg.patient {
    background: var(--teal);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-msg.prescription {
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    color: var(--slate-text);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    width: 85%;
}

.prescription-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--emerald);
    margin-bottom: 4px;
    font-size: 0.7rem;
}

.prescription-icon svg {
    width: 14px;
    height: 14px;
}

/* ---- Trust Bar / Stats ---- */
.trust-bar {
    padding: 3.5rem 0;
    background: var(--white);
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(13, 125, 116, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.stat-icon svg {
    width: 20px;
    height: 20px;
    color: var(--teal);
}

.stat-number {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--teal);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--slate-light);
    margin-top: 4px;
}

/* Trust Badges Row */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding: 0 1.5rem;
}

.trust-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(13, 125, 116, 0.04);
    border: 1px solid rgba(13, 125, 116, 0.12);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--teal-dark);
}

.trust-badge-pill svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ---- Section Shared ---- */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-heading {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--blue-deep);
}

.section-sub {
    font-size: 1.1rem;
    color: var(--slate-light);
    max-width: 700px;
}

/* ---- How It Works ---- */
.hiw-section {
    padding: 6rem 0;
    background: var(--bg-cream);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(148, 163, 184, 0.12);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(10, 61, 92, 0.08);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--teal);
    color: white;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
}

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

.step-card h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--blue-deep);
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--slate-light);
    line-height: 1.6;
}

/* Journey Timeline */
.journey-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 3rem;
    padding: 0 1rem;
    position: relative;
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    max-width: 160px;
}

.journey-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    flex-shrink: 0;
    color: var(--teal);
}

.journey-dot svg {
    width: 20px;
    height: 20px;
}

.journey-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate-text);
    margin-top: 0.75rem;
    line-height: 1.3;
}

.journey-connector {
    position: absolute;
    top: 22px;
    left: calc(50% + 22px);
    width: calc(100% - 44px);
    height: 1px;
    background: rgba(13, 125, 116, 0.2);
    z-index: 0;
}

.journey-connector::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s ease;
}

.journey-timeline.visible .journey-connector::after {
    transform: scaleX(1);
}

.journey-step:last-child .journey-connector {
    display: none;
}

/* ---- Services Tabs ---- */
.services-section {
    padding: 6rem 0;
    background: var(--white);
}

.tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid rgba(148, 163, 184, 0.12);
    margin-bottom: 3rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.tabs-nav::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--slate-light);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    margin-bottom: -2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tab-btn svg {
    width: 18px;
    height: 18px;
}

.tab-btn:hover {
    color: var(--slate-text);
}

.tab-btn.active {
    color: var(--teal);
    border-bottom-color: var(--teal);
}

.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-panel.active {
    display: block;
}

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

.service-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid;
}

.service-price-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 1rem;
}

.service-price-tag .price {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue-deep);
}

.service-price-tag .per {
    font-size: 0.9rem;
    color: var(--slate-light);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--slate-text);
}

.service-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Service demo containers */
.demo-container {
    background: var(--bg-cream);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 16px;
    overflow: hidden;
}

/* Chat Demo */
.demo-chat {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.demo-msg {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.85rem;
    line-height: 1.5;
}

.demo-msg.doctor {
    background: rgba(13, 125, 116, 0.06);
    border: 1px solid rgba(13, 125, 116, 0.1);
    color: var(--slate-text);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.demo-msg.patient {
    background: var(--teal);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.demo-msg.system {
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.12);
    color: var(--slate-text);
    align-self: center;
    text-align: center;
    font-size: 0.8rem;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.demo-msg.system svg {
    width: 14px;
    height: 14px;
    color: var(--emerald);
    flex-shrink: 0;
}

/* Video Demo */
.demo-video {
    position: relative;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #0a3d5c, #0d7d74);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.demo-video-doctor {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.6);
}

.demo-video-doctor svg {
    width: 36px;
    height: 36px;
}

.demo-video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.demo-video-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.demo-video-btn svg {
    width: 18px;
    height: 18px;
}

.demo-video-btn.mic { background: rgba(255,255,255,0.15); color: white; }
.demo-video-btn.end { background: #ef4444; color: white; }
.demo-video-btn.cam { background: rgba(255,255,255,0.15); color: white; }

.demo-video-timer {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(0,0,0,0.3);
    font-size: 0.75rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
}

.demo-video-timer .rec-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
}

.demo-video-name {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Phone Demo */
.demo-phone {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-cream), rgba(13, 125, 116, 0.02));
}

.demo-phone-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(13, 125, 116, 0.08);
    border: 2px solid rgba(13, 125, 116, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--teal);
}

.demo-phone-avatar svg {
    width: 36px;
    height: 36px;
}

.demo-phone-name {
    font-weight: 600;
    color: var(--blue-deep);
    font-size: 1rem;
}

.demo-phone-specialty {
    color: var(--slate-light);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.demo-phone-timer {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal);
    margin: 1rem 0;
}

.demo-phone-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.demo-phone-controls .demo-video-btn {
    background: rgba(13, 125, 116, 0.08);
    color: var(--teal);
}

.demo-phone-controls .demo-video-btn.end {
    background: #ef4444;
    color: white;
}

/* ---- Pricing Section ---- */
.pricing-section {
    padding: 6rem 0;
    background: var(--bg-cream);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pricing-toggle-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--slate-light);
    cursor: pointer;
    transition: color 0.3s;
}

.pricing-toggle-label.active {
    color: var(--blue-deep);
}

.pricing-switch {
    position: relative;
    width: 52px;
    height: 28px;
    background: #e2e8f0;
    border-radius: 14px;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.pricing-switch.active {
    background: var(--teal);
}

.pricing-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.pricing-switch.active::after {
    transform: translateX(24px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-view {
    display: none;
}

.pricing-view.active {
    display: block;
}

.pricing-card {
    background: var(--white);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(10, 61, 92, 0.08);
}

.pricing-card.featured {
    border: 2px solid var(--teal);
    border-top: 4px solid var(--teal);
    box-shadow: 0 4px 20px rgba(13, 125, 116, 0.08);
}

.pricing-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    white-space: nowrap;
    background: var(--teal);
}

.pricing-name {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue-deep);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-name svg {
    width: 18px;
    height: 18px;
    color: var(--teal);
    flex-shrink: 0;
}

.pricing-price {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue-deep);
    margin-bottom: 0.5rem;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--slate-light);
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--slate-light);
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--slate-text);
}

.pricing-free-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(13, 125, 116, 0.06);
    color: var(--teal);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.75rem;
}

.payment-methods {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--slate-light);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.payment-icon {
    padding: 6px 14px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid rgba(148, 163, 184, 0.15);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate-text);
}

/* ---- Cost Savings Comparison ---- */
.savings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.savings-card {
    border-radius: 16px;
    padding: 1.75rem;
    text-align: center;
    border: 1px solid transparent;
    position: relative;
}

.savings-card.savings-us {
    background: rgba(13, 125, 116, 0.04);
    border-color: rgba(13, 125, 116, 0.2);
}

.savings-card.savings-clinic {
    background: rgba(199, 125, 60, 0.04);
    border-color: rgba(199, 125, 60, 0.15);
}

.savings-card.savings-er {
    background: rgba(239, 68, 68, 0.04);
    border-color: rgba(239, 68, 68, 0.15);
}

.savings-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
}

.savings-icon svg {
    width: 28px;
    height: 28px;
}

.savings-card.savings-clinic .savings-icon { color: var(--accent); }
.savings-card.savings-er .savings-icon { color: #ef4444; }

.savings-title {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--blue-deep);
    margin-bottom: 0.5rem;
}

.savings-price {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.savings-card.savings-us .savings-price { color: var(--teal); }
.savings-card.savings-clinic .savings-price { color: var(--accent); }
.savings-card.savings-er .savings-price { color: #ef4444; }

.savings-detail {
    font-size: 0.8rem;
    color: var(--slate-light);
    line-height: 1.5;
}

.savings-highlight {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--teal);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ---- Comparison Table Section ---- */
.comparison-section {
    padding: 6rem 0;
    background: var(--white);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    min-width: 650px;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.9rem;
}

.comparison-table thead th {
    padding: 1rem 1.25rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--slate-light);
    border-bottom: 2px solid rgba(148, 163, 184, 0.12);
    white-space: nowrap;
}

.comparison-table thead th:first-child {
    text-align: left;
}

.comparison-table thead th.highlight {
    color: var(--teal);
    background: rgba(13, 125, 116, 0.03);
    border-top: 3px solid var(--teal);
    border-radius: 12px 12px 0 0;
    font-size: 0.95rem;
}

.comparison-table tbody td {
    padding: 0.9rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
    color: var(--slate-text);
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--blue-deep);
}

.comparison-table tbody td.highlight {
    background: rgba(13, 125, 116, 0.03);
    font-weight: 600;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:last-child td.highlight {
    border-radius: 0 0 12px 12px;
}

.check-yes {
    color: var(--emerald);
    font-weight: 700;
    font-size: 1.1rem;
}

.check-no {
    color: #ef4444;
    font-weight: 700;
    font-size: 1.1rem;
}

.check-partial {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
}

/* ---- Why / Bento Grid ---- */
.why-section {
    padding: 6rem 0;
    background: var(--white);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.bento-item {
    background: var(--bg-cream);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.bento-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(10, 61, 92, 0.06);
    border-color: rgba(13, 125, 116, 0.15);
}

.bento-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(13, 125, 116, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--teal);
}

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

.bento-item h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue-deep);
    margin-bottom: 0.5rem;
}

.bento-item p {
    font-size: 0.9rem;
    color: var(--slate-light);
    line-height: 1.6;
}

.bento-stat {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 3px 10px;
    border-radius: 6px;
    background: rgba(13, 125, 116, 0.06);
    border: 1px solid rgba(13, 125, 116, 0.1);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--teal);
}

/* ---- Conditions Grid ---- */
.conditions-section {
    padding: 6rem 0;
    background: var(--bg-cream);
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.condition-tile {
    background: var(--white);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
}

.condition-tile:hover {
    border-color: rgba(13, 125, 116, 0.2);
    box-shadow: 0 4px 16px rgba(10, 61, 92, 0.04);
}

.condition-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(13, 125, 116, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: var(--teal);
}

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

.condition-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-text);
}

.condition-tile.more {
    background: rgba(13, 125, 116, 0.03);
    border-color: rgba(13, 125, 116, 0.12);
}

.condition-tile.more .condition-name {
    color: var(--teal);
}

.condition-tile.more .condition-icon {
    background: rgba(13, 125, 116, 0.08);
}

/* ---- Testimonials ---- */
.testimonials-section {
    padding: 6rem 0;
    background: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-cream);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(13, 125, 116, 0.08);
    border: 1px solid rgba(13, 125, 116, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-info .testimonial-author {
    margin-bottom: 0;
}

.testimonial-info .testimonial-location {
    margin-bottom: 0;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.12);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--emerald);
}

.verified-badge svg {
    width: 10px;
    height: 10px;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    color: #d4a017;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--slate-text);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--blue-deep);
    font-size: 0.9rem;
}

.testimonial-location {
    font-size: 0.8rem;
    color: var(--slate-light);
    margin-bottom: 0.75rem;
}

.testimonial-result {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.12);
    color: var(--emerald);
    font-size: 0.75rem;
    font-weight: 600;
}

/* ---- Doctor Showcase ---- */
.doctors-section {
    padding: 6rem 0;
    background: var(--bg-cream);
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.doctor-card {
    background: var(--white);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.doctor-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(10, 61, 92, 0.06);
}

.doctor-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(13, 125, 116, 0.06);
    border: 2px solid rgba(13, 125, 116, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.doctor-name {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--blue-deep);
    margin-bottom: 0.25rem;
}

.doctor-specialty {
    font-size: 0.85rem;
    color: var(--slate-light);
    margin-bottom: 0.25rem;
}

.doctor-hospital {
    font-size: 0.75rem;
    color: var(--slate-light);
    margin-bottom: 0.75rem;
}

.doctor-license {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(13, 125, 116, 0.06);
    border: 1px solid rgba(13, 125, 116, 0.1);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.doctor-license svg {
    width: 12px;
    height: 12px;
}

.doctor-stars {
    display: flex;
    justify-content: center;
    gap: 1px;
    margin-bottom: 0.5rem;
}

.doctor-stars svg {
    width: 14px;
    height: 14px;
    color: #d4a017;
}

.doctor-consults {
    font-size: 0.8rem;
    color: var(--slate-light);
    margin-bottom: 1rem;
}

/* ---- FAQ ---- */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-cream);
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s, background 0.3s;
}

.faq-item:hover {
    border-color: rgba(13, 125, 116, 0.15);
}

.faq-item.open {
    background: rgba(13, 125, 116, 0.02);
    border-color: rgba(13, 125, 116, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--blue-deep);
    font-family: 'Inter', sans-serif;
}

.faq-icon {
    color: var(--teal);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
    display: flex;
    align-items: center;
}

.faq-icon svg {
    width: 16px;
    height: 16px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
    font-size: 0.9rem;
    color: var(--slate-light);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

/* ---- Final CTA ---- */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0d7d74 0%, #0a3d5c 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta .section-heading {
    color: white;
}

.final-cta .section-sub {
    color: rgba(255, 255, 255, 0.8);
}

.final-cta-trust {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ---- Footer ---- */
.site-footer {
    background: #0a1520;
    color: #94a3b8;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-brand svg {
    width: 28px;
    height: 28px;
}

.footer-brand span {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.footer-tagline {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(148, 163, 184, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: rgba(13, 125, 116, 0.15);
    color: var(--teal-light);
}

.footer-social a svg {
    width: 16px;
    height: 16px;
}

.footer-col h4 {
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    padding: 4px 0;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--teal-light);
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
}

.footer-regulatory {
    font-size: 0.72rem;
    color: #475569;
    max-width: 600px;
    line-height: 1.5;
}

/* ---- Sticky Mobile CTA ---- */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.sticky-mobile-cta.visible {
    display: flex;
}

.sticky-cta-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue-deep);
}

.sticky-cta-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* ---- Scroll Animations ---- */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-children > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.16s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.16s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.32s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(9) { transition-delay: 0.32s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(10) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(11) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(12) { transition-delay: 0.48s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(13) { transition-delay: 0.48s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(14) { transition-delay: 0.56s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(15) { transition-delay: 0.56s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(16) { transition-delay: 0.64s; opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    .nav-mobile-toggle {
        display: none;
    }
    .sticky-mobile-cta {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .service-layout {
        grid-template-columns: 1fr;
    }
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .hero h1 {
        font-size: 2.25rem;
    }
    .section-heading {
        font-size: 1.75rem;
    }
    .phone-mockup {
        width: 240px;
        height: 400px;
    }
    .doctors-grid {
        grid-template-columns: 1fr;
    }
    .savings-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }
    .journey-timeline {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .journey-step {
        flex-direction: row;
        text-align: left;
        max-width: none;
        gap: 1rem;
        padding: 0.75rem 0;
    }
    .journey-connector {
        display: none;
    }
    .journey-label {
        margin-top: 0;
    }
    .comparison-table-wrapper {
        margin-left: -1rem;
        margin-right: -1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-ghost {
        width: 100%;
        max-width: 320px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-badges {
        gap: 0.5rem;
    }
}

/* ---- Conversion Elements ---- */

/* Hero reassurance line */
.hero-reassurance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: var(--slate-light);
    margin-bottom: 2.5rem;
}

.hero-reassurance-dot {
    color: rgba(100, 116, 139, 0.3);
    font-size: 0.6rem;
}

/* Social proof strip */
.social-proof-strip {
    padding: 1.5rem 0;
    background: rgba(13, 125, 116, 0.02);
    border-top: 1px solid rgba(13, 125, 116, 0.06);
    border-bottom: 1px solid rgba(13, 125, 116, 0.06);
}

.social-proof-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.social-proof-stat {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue-deep);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-proof-stat svg {
    width: 16px;
    height: 16px;
    color: var(--teal);
}

.social-proof-divider {
    width: 1px;
    height: 24px;
    background: rgba(148, 163, 184, 0.15);
}

/* All-inclusive banner */
.free-consult-banner {
    max-width: 620px;
    margin: 0 auto 2.5rem;
}

.free-banner-inner {
    background: rgba(13, 125, 116, 0.03);
    border: 1px solid rgba(13, 125, 116, 0.15);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    text-align: center;
    position: relative;
}

.free-banner-tag {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    padding: 3px 14px;
    border-radius: 999px;
    background: var(--teal);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.free-banner-text {
    display: block;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue-deep);
    margin-bottom: 0.25rem;
}

.free-banner-text strong {
    color: var(--teal);
}

.free-banner-sub {
    display: block;
    font-size: 0.8rem;
    color: var(--slate-light);
}

/* Inline CTA strip */
.inline-cta-strip {
    padding: 2.5rem 0;
    background: rgba(13, 125, 116, 0.03);
    border-top: 1px solid rgba(13, 125, 116, 0.06);
    border-bottom: 1px solid rgba(13, 125, 116, 0.06);
}

.inline-cta-text {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue-deep);
    margin-bottom: 1rem;
}

@media (max-width: 767px) {
    .social-proof-divider {
        display: none;
    }
    .social-proof-inner {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    .free-banner-text {
        font-size: 1.05rem;
    }
    .hero-reassurance {
        font-size: 0.75rem;
    }
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .fade-up {
        opacity: 1;
        transform: none;
    }
    .stagger-children > * {
        opacity: 1;
        transform: none;
    }
    .phone-mockup .chat-msg {
        opacity: 1;
        transform: none;
    }
}
