/* ==========================================================
   Stomadent — LIGHT WARM THEME FUNNEL PAGE
   Brand colors: teal #1d2c7b, amber #FAB338 (amber lives in the --coral* tokens)
   Audience: UK & international English-speaking patients
   Clear contrast, larger text, mobile-first responsive
========================================================== */

:root {
    /* Brand */
    --teal: #1d2c7b;
    --teal-bright: #2a3da0;
    --teal-light: #e4e8f7;
    --teal-soft: #f2f4fb;

    --coral: #FAB338;
    --coral-dark: #EC8E13;
    --coral-light: #FFF1D6;
    --coral-soft: #FFF9EB;

    --green: #1d2c7b;

    --gold: #F59E0B;

    /* Neutrals — warm, not cold */
    --bg: #FAF8F4;
    --bg-warm: #F5F1E8;
    --surface: #FFFFFF;
    --surface-warm: #FBF8F2;

    --text: #1a2a45;
    --text-strong: #0F172A;
    --text-muted: #4B5563;
    --text-light: #6B7280;
    --text-faint: #9CA3AF;

    --border: #E5E7EB;
    --border-warm: #EDE7DA;
    --border-strong: #D1D5DB;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.1);
    --shadow-teal: 0 8px 24px rgba(29, 44, 123, 0.2);
    --shadow-coral: 0 8px 24px rgba(250, 179, 56, 0.3);

    /* Radius */
    --r-sm: 8px;
    --r: 12px;
    --r-lg: 16px;
    --r-xl: 24px;

    /* Layout */
    --container: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    color: var(--text);
    font-size: 17px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.container--narrow {
    max-width: 880px;
}

.text-teal {
    color: var(--coral);
    font-weight: 800;
}

/* ==========================================================
   STICKY HEADER (preserved)
========================================================== */
.afd-old-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 16px;
    display: flex;
    justify-content: center;
    background: transparent;
    margin-bottom: -98px;
}

.afd-old-header__box {
    background: #ffffff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px 8px 10px;
    max-width: var(--container);
    width: 100%;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(229, 231, 235, 0.6);
    gap: 12px;
}

.afd-old-header__logo {
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
}

.afd-old-header__btn {
    background: linear-gradient(90deg, #3B82F6 0%, #9333EA 100%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 100px;
    padding: 12px 24px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(109, 74, 233, 0.35);
    white-space: nowrap;
}

.afd-old-header__btn:hover {
    background: linear-gradient(90deg, #2563EB 0%, #7E22CE 100%);
    color: #ffffff;
    transform: translateY(-1px);
}

.lang-switcher {
    position: relative;
    margin-right: 12px;
}
.lang-switcher__btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    color: inherit;
}
.lang-switcher__btn:hover {
    border-color: #1d2c7b;
    box-shadow: 0 2px 8px rgba(0,148,141,0.12);
}
.lang-switcher__flag {
    width: 18px;
    height: auto;
    border-radius: 2px;
    display: inline-block;
    vertical-align: middle;
}
.lang-switcher__arrow {
    font-size: 10px;
    opacity: 0.5;
    transition: transform 0.2s;
}
.lang-switcher__btn[aria-expanded="true"] .lang-switcher__arrow {
    transform: rotate(180deg);
}
.lang-switcher__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    min-width: 100px;
    overflow: hidden;
    z-index: 999;
}
.lang-switcher__option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
}
.lang-switcher__option:hover {
    background: #f4fafa;
    color: #1d2c7b;
}

/* ==========================================================
   SHARED — Section headers, eyebrows, buttons
========================================================== */
.section-header {
    margin-bottom: 56px;
}

.section-header--center {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 56px;
}

.eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 18px;
    padding: 8px 16px;
    background: var(--teal-light);
    border-radius: 100px;
}

.eyebrow--coral {
    color: var(--coral-dark);
    background: var(--coral-light);
}

.section-title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-strong);
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.section-lead {
    font-size: 19px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 640px;
}

.section-header--center .section-lead {
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 30px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(90deg, #3B82F6 0%, #9333EA 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(109, 74, 233, 0.35);
}

.btn--primary:hover {
    background: linear-gradient(90deg, #2563EB 0%, #7E22CE 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(250, 179, 56, 0.4);
}

.btn__arrow {
    transition: transform 0.25s ease;
}

.btn--primary:hover .btn__arrow {
    transform: translateX(4px);
}

.btn--ghost {
    background: #ffffff;
    color: var(--text-strong);
    border: 1.5px solid var(--border-strong);
}

.btn--ghost:hover {
    border-color: var(--teal);
    color: var(--teal);
    transform: translateY(-2px);
}

/* ==========================================================
   HERO — Centered with video below
========================================================== */
.hero {
    padding: 138px 24px 84px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(250, 248, 244, 0) calc(100% - 120px), var(--bg) 100%),
        linear-gradient(180deg, rgba(10, 14, 35, 0.62) 0%, rgba(10, 14, 35, 0.42) 48%, rgba(10, 14, 35, 0.58) 100%),
        url('https://media.marketing4smb.com/stomadent/hero-bg.webp') center 28% / cover no-repeat;
}

.hero-media {
    padding: 36px 0 10px;
}

.hero::before {
    content: "";
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(29, 44, 123, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero__inner {
    max-width: 880px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 9px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
}

.hero__badge-dot {
    width: 7px;
    height: 7px;
    background: var(--coral);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(29, 44, 123, 0.15);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.hero__title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 60px;
    font-weight: 800;
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -1.8px;
}

.hero__subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero__subtitle strong {
    color: var(--text-strong);
    font-weight: 700;
}

.hero__cta-row {
    display: inline-flex;
    gap: 14px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero .btn--ghost {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.55);
}

.hero__rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.hero__stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
}

.hero__rating-text {
    color: var(--text-muted);
    font-size: 15px;
}

.hero__rating-text strong {
    color: var(--text-strong);
    font-weight: 700;
}

/* VIDEO BLOCK — large, prominent, below hero */
.hero__video-wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.hero__video-frame {
    border-radius: var(--r-xl);
    padding: 0;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.hero__video-frame video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    background: #000;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.hero__video-badge {
    position: absolute;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-strong);
    box-shadow: var(--shadow-md);
    animation: float-bob 4s ease-in-out infinite;
}

.hero__video-badge--1 {
    top: 30px;
    left: -20px;
    animation-delay: 0s;
}

.hero__video-badge--2 {
    bottom: 30px;
    right: -20px;
    animation-delay: 1.5s;
}

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

.hero__video-badge-icon {
    width: 24px;
    height: 24px;
    background: var(--teal);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ==========================================================
   STATS BAR
========================================================== */
.stats {
    padding: 60px 24px;
    background: linear-gradient(135deg, var(--teal-soft) 0%, var(--coral-soft) 100%);
    border-top: 1px solid var(--border-warm);
    border-bottom: 1px solid var(--border-warm);
}

.stats__container {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat.in-view {
    opacity: 1;
    transform: translateY(0);
}

.stat__num {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: var(--teal);
    margin-bottom: 10px;
    letter-spacing: -1.5px;
}

.stat__plus {
    color: var(--coral);
}

.stat__label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.4;
    max-width: 200px;
    margin: 0 auto;
}

/* ==========================================================
   FEATURES — 6 cards
========================================================== */
.features {
    padding: 90px 0;
    background: var(--bg);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: var(--teal);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
}

.feature-card__icon--teal {
    background: var(--teal-light);
}

.feature-card__icon--coral {
    background: var(--coral-light);
}

.feature-card__title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 10px;
    line-height: 1.3;
}

.feature-card__text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================
   STEPS — 4-step timeline
========================================================== */
.steps {
    padding: 90px 0;
    background: var(--surface-warm);
}

.steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.steps__line {
    position: absolute;
    top: 32px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--teal) 20%, var(--teal) 80%, transparent);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.step.in-view {
    opacity: 1;
    transform: translateY(0);
}

.step__num {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--teal);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 0 0 6px var(--surface-warm), 0 8px 16px rgba(29, 44, 123, 0.25);
}

.step__title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 8px;
}

.step__text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    padding: 0 8px;
}

/* ==========================================================
   BIG QUOTE
========================================================== */
.big-quote-section {
    padding: 80px 0;
    background: var(--bg);
}

.big-quote {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 56px 48px;
    max-width: 920px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.big-quote::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--teal-light) 0%, transparent 70%);
    pointer-events: none;
}

.big-quote__mark {
    font-family: Georgia, serif;
    font-size: 90px;
    color: var(--teal);
    line-height: 0.5;
    margin-bottom: 12px;
    opacity: 0.3;
    position: relative;
}

.big-quote__text {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-strong);
    margin-bottom: 32px;
    letter-spacing: -0.3px;
    position: relative;
}

.big-quote__highlight {
    color: var(--teal);
    font-weight: 700;
}

.big-quote__author {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    flex-wrap: wrap;
}

.big-quote__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-bright) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.big-quote__info {
    flex: 1;
    min-width: 0;
}

.big-quote__name {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-strong);
}

.big-quote__city {
    font-size: 14px;
    color: var(--text-muted);
}

.big-quote__stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
}

/* ==========================================================
   PACKAGES
========================================================== */
.packages {
    padding: 90px 0;
    background: var(--surface-warm);
}

.packages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.pkg {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px 32px 32px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
}

.pkg.in-view {
    opacity: 1;
    transform: translateY(0);
}

.pkg:hover {
    border-color: var(--teal);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.pkg--featured {
    border-color: var(--teal);
    box-shadow: 0 16px 40px rgba(29, 44, 123, 0.12);
    background: linear-gradient(180deg, #ffffff 0%, var(--teal-soft) 100%);
}

.pkg__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--coral);
    color: #ffffff;
    padding: 7px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    box-shadow: var(--shadow-coral);
}

.pkg__name {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 16px;
    margin-top: 8px;
}

.pkg__price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}

.pkg__from {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

.pkg__price {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
    letter-spacing: -1.5px;
}

.pkg__price--text {
    font-size: 30px;
    color: var(--text-strong);
}

.pkg__subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 28px;
}

.pkg__list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}

.pkg__list li {
    font-size: 15px;
    color: var(--text);
    line-height: 1.5;
    padding: 11px 0 11px 30px;
    position: relative;
    border-top: 1px solid var(--border);
}

.pkg__list li:first-child {
    border-top: none;
}

.pkg__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 18px;
    height: 18px;
    background: var(--teal);
    border-radius: 50%;
}

.pkg__list li::after {
    content: "✓";
    position: absolute;
    left: 4.5px;
    top: 11px;
    color: #ffffff;
    font-weight: 700;
    font-size: 11px;
}

.pkg__btn {
    display: block;
    width: 100%;
    background: var(--coral);
    color: #ffffff;
    text-align: center;
    padding: 16px 20px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.25s ease;
    margin-bottom: 14px;
    box-shadow: var(--shadow-coral);
}

.pkg__btn:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
}

.pkg__btn--outline {
    background: var(--surface);
    color: var(--teal);
    border: 1.5px solid var(--teal);
    box-shadow: none;
}

.pkg__btn--outline:hover {
    background: var(--teal);
    color: #ffffff;
}

.pkg__note {
    font-size: 11px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

.packages__disclaimer {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    padding: 20px 24px;
    background: var(--surface);
    border-radius: var(--r);
    border-left: 4px solid var(--teal);
}

/* ==========================================================
   WHY US — 4 cards
========================================================== */
.why {
    padding: 90px 0;
    background: var(--bg);
}

.why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.why-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.why-card:hover {
    border-color: var(--teal);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-card__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--coral-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
}

.why-card__title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 10px;
}

.why-card__text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================
   REVIEWS
========================================================== */
.reviews {
    padding: 90px 0;
    background: var(--surface-warm);
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.review-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.review-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.review-card__stars {
    color: var(--gold);
    font-size: 17px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.review-card__text {
    font-size: 16px;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 22px;
    font-style: italic;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-bright) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.review-card__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-strong);
}

.review-card__city {
    font-size: 13px;
    color: var(--text-muted);
}

/* ==========================================================
   FAQ
========================================================== */
.faq {
    padding: 90px 0;
    background: var(--bg);
}

.faq__list {
    margin-top: 0;
    background: var(--surface);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    padding: 0 28px;
    box-shadow: var(--shadow-sm);
}

.afd-faq-item {
    border-bottom: 1px solid var(--border);
}

.afd-faq-item:last-child {
    border-bottom: none;
}

.afd-faq-question {
    width: 100%;
    border: none;
    background: none;
    text-align: left;
    font-size: 18px;
    color: var(--text-strong);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    padding: 24px 0;
    transition: color 0.2s ease;
    gap: 16px;
}

.afd-faq-question:hover {
    color: var(--teal);
}

.afd-faq-question::after {
    content: "+";
    font-size: 28px;
    color: var(--teal);
    font-weight: 300;
    transition: transform 0.3s ease;
    line-height: 1;
    flex-shrink: 0;
}

.afd-faq-item.active .afd-faq-question::after {
    transform: rotate(45deg);
}

.afd-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

.afd-faq-answer p {
    margin: 0;
    padding: 0 0 24px;
}

/* ==========================================================
   CTA / FORM SECTION
========================================================== */
.cta {
    padding: 90px 0 100px;
    background: linear-gradient(135deg, var(--teal-soft) 0%, var(--coral-soft) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(250, 179, 56, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta__inner {
    max-width: 640px;
    margin: 0 auto;
    background: var(--surface);
    border-radius: var(--r-xl);
    padding: 56px 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative;
}

.cta__inner .section-header {
    margin-bottom: 36px;
}

/* Form — class unchanged */
.afd-form input,
.afd-form textarea {
    width: 100%;
    margin-bottom: 14px;
    background: var(--surface-warm);
    color: var(--text-strong);
    border: 1.5px solid var(--border);
    font-family: 'Inter', sans-serif;
    border-radius: var(--r);
    padding: 16px 18px;
    transition: all 0.2s ease;
    font-size: 16px;
    line-height: 1.4;
}

.afd-form input::placeholder,
.afd-form textarea::placeholder {
    color: var(--text-light);
}

.afd-form input:focus,
.afd-form textarea:focus {
    border-color: var(--teal);
    background: var(--surface);
    box-shadow: 0 0 0 4px rgba(29, 44, 123, 0.1);
}

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

.afd-form__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.afd-form__consent input[type="checkbox"] {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--teal);
    cursor: pointer;
    border: 1.5px solid var(--border);
    border-radius: 4px;
}

.afd-form__consent label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    cursor: pointer;
}

.afd-form__consent label a {
    color: var(--teal);
    text-decoration: underline;
}

.afd-form__consent label a:hover {
    color: var(--teal-dark, var(--teal));
}

.afd-btn-submit {
    width: 100%;
    border: none;
    cursor: pointer;
    background: linear-gradient(90deg, #3B82F6 0%, #9333EA 100%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    padding: 18px 24px;
    line-height: 1;
    text-align: center;
    transition: all 0.25s ease;
    border-radius: var(--r);
    box-shadow: 0 4px 14px rgba(109, 74, 233, 0.35);
}

.afd-btn-submit:hover {
    background: linear-gradient(90deg, #2563EB 0%, #7E22CE 100%);
    color: #ffffff;
    transform: translateY(-2px);
}

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

.cta__privacy {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 20px 0;
    text-align: center;
}

.cta__privacy a {
    color: var(--teal);
    text-decoration: underline;
    font-weight: 600;
}

.cta__trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.cta__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}

.cta__trust-check {
    width: 22px;
    height: 22px;
    background: var(--teal);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* Form success (ID unchanged) */
.afd-form-success {
    background: #ffffff;
    border: 2px solid #16a34a;
    border-radius: var(--r);
    padding: 36px 28px;
    text-align: center;
    animation: afdFadeIn 0.4s ease;
}

.afd-form-success__icon {
    width: 64px;
    height: 64px;
    background: #16a34a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    margin: 0 auto 18px;
    animation: afdScaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.afd-form-success__title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-strong);
    margin: 0 0 12px;
}

.afd-form-success__text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0 0 24px;
}

.afd-form-success__btn {
    background: linear-gradient(90deg, #3B82F6 0%, #9333EA 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(109, 74, 233, 0.35);
    border: none;
    border-radius: 100px;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.afd-form-success__btn:hover {
    background: linear-gradient(90deg, #2563EB 0%, #7E22CE 100%);
    color: #ffffff;
}

.afd-form-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc2626;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
    z-index: 9999;
    animation: afdSlideUp 0.3s ease;
    max-width: 90%;
}

.afd-form-toast.afd-form-toast--warning {
    background: #f59e0b;
}

/* ==========================================================
   FOOTER
========================================================== */
.footer {
    background: var(--text-strong);
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer .container {
    max-width: var(--container);
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
    max-width: 280px;
}

.footer__logo {
    height: 60px;
    margin-bottom: 16px;
    opacity: 0.95;
}

.footer__tagline {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer__col-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer__col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.9;
    margin: 0;
}

.footer__col a {
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s ease;
}

.footer__col a:hover {
    color: #ffffff;
}

.footer__disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    text-align: center;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--r);
    border-left: 3px solid var(--teal);
    margin: 30px 0 20px;
}

.footer__bottom {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================
   LIVE NOTIFICATIONS — Social proof, bottom-left
========================================================== */
.notif-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9990;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    max-width: 340px;
}

.notif {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 40px 14px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    opacity: 0;
    transform: translateX(-30px) scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: auto;
    position: relative;
    max-width: 320px;
}

.notif--in {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.notif__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-bright) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(29, 44, 123, 0.25);
}

.notif__body {
    flex: 1;
    min-width: 0;
}

.notif__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-strong);
    line-height: 1.3;
    margin-bottom: 2px;
}

.notif__action {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.35;
    margin-bottom: 4px;
}

.notif__meta {
    font-size: 11px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}

.notif__dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
    animation: notif-pulse 2s ease-in-out infinite;
}

@keyframes notif-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2); }
    50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.notif__close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.2s ease;
}

.notif__close:hover {
    background: var(--bg-warm);
    color: var(--text);
}

/* ==========================================================
   COOKIE BANNER — Bottom banner, GDPR compliant
========================================================== */
.cookie-banner {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 99999;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 16px 50px rgba(15, 23, 42, 0.15);
    padding: 20px 24px;
    max-width: 1100px;
    margin: 0 auto;
    display: none;
}

.cookie-banner.active {
    display: block;
    animation: cookieSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cookie-banner__text {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.cookie-banner__icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}

.cookie-banner__title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 4px;
}

.cookie-banner__desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

.cookie-banner__desc a {
    color: var(--teal);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-banner__desc a:hover {
    color: var(--teal-bright);
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 100px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-banner__btn--reject {
    background: transparent;
    color: var(--text-muted);
    border: 1.5px solid var(--border-strong);
}

.cookie-banner__btn--reject:hover {
    background: var(--surface-warm);
    color: var(--text-strong);
}

.cookie-banner__btn--accept {
    background: linear-gradient(90deg, #3B82F6 0%, #9333EA 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(109, 74, 233, 0.35);
}

.cookie-banner__btn--accept:hover {
    background: linear-gradient(90deg, #2563EB 0%, #7E22CE 100%);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(29, 44, 123, 0.35);
}

.cookie-reopen {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #ffffff;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cookie-reopen::before {
    content: "🍪";
    font-size: 14px;
}

.cookie-reopen:hover {
    border-color: var(--teal);
    color: var(--teal);
    transform: translateY(-1px);
}

.cookie-reopen[hidden] {
    display: none;
}

/* ==========================================================
   ANIMATIONS
========================================================== */
@keyframes afdFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes afdScaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

@keyframes afdSlideUp {
    from { opacity: 0; transform: translate(-50%, 20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

/* ==========================================================
   RESPONSIVE — TABLET (1024px)
========================================================== */
@media (max-width: 1024px) {
    .hero__title {
        font-size: 46px;
    }

    .section-title {
        font-size: 36px;
    }

    .features__grid,
    .reviews__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages__grid {
        grid-template-columns: 1fr 1fr;
    }

    .packages__grid .pkg:last-child {
        grid-column: 1 / -1;
        max-width: 540px;
        margin: 0 auto;
        width: 100%;
    }

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

    .steps__line {
        display: none;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .big-quote__text {
        font-size: 24px;
    }

    .hero__video-badge--1 {
        left: 10px;
    }

    .hero__video-badge--2 {
        right: 10px;
    }
}

/* ==========================================================
   RESPONSIVE — MOBILE (768px)
========================================================== */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 0 16px;
    }

    /* Header */
    .afd-old-header {
        padding: 10px 12px;
        margin-bottom: -78px;
    }

    .afd-old-header__box {
        padding: 6px 10px 6px 8px;
    }

    .afd-old-header__logo {
        height: 44px;
    }

    .afd-old-header__btn {
        font-size: 13px;
        padding: 10px 18px;
    }

    /* Section spacing */
    .features,
    .steps,
    .packages,
    .why,
    .reviews,
    .faq,
    .big-quote-section,
    .cta {
        padding: 60px 0;
    }

    .section-header,
    .section-header--center {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 30px;
        letter-spacing: -0.8px;
    }

    .section-lead {
        font-size: 16px;
    }

    .eyebrow {
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 14px;
    }

    /* Hero */
    .hero {
        padding: 132px 16px 40px;
        background:
            linear-gradient(180deg, rgba(250, 248, 244, 0) calc(100% - 90px), var(--bg) 100%),
            linear-gradient(180deg, rgba(13, 19, 48, 0.12) 0%, rgba(13, 19, 48, 0.5) 42vw, #0d1330 60vw, #0d1330 100%),
            url('https://media.marketing4smb.com/stomadent/hero-bg.webp') top center / 100% auto no-repeat;
        background-color: #0d1330;
    }

    .hero-media {
        padding: 24px 0 6px;
    }

    .hero__video-wrap {
        padding: 0 4px;
        margin-top: 32px;
    }

    .hero__title {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .hero__subtitle {
        font-size: 17px;
        margin-bottom: 28px;
    }

    .hero__cta-row {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-bottom: 24px;
    }

    .btn {
        width: 100%;
        font-size: 15px;
        padding: 15px 24px;
    }

    /* Video */
    .hero__video-wrap {
        padding: 0 4px;
        margin-top: 32px;
    }

    .hero__video-frame {
        padding: 0;
        border-radius: 16px;
    }

    .hero__video-frame video {
        border-radius: 12px;
    }

    .hero__video-badge {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 10px;
    }

    .hero__video-badge--1 {
        top: 10px;
        left: 5px;
    }

    .hero__video-badge--2 {
        bottom: 10px;
        right: 5px;
    }

    .hero__video-badge-icon {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }

    /* Stats */
    .stats {
        padding: 40px 16px;
    }

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

    .stat__num {
        font-size: 38px;
    }

    .stat__label {
        font-size: 13px;
    }

    /* Grids collapse to 1 column on mobile */
    .features__grid,
    .why__grid,
    .reviews__grid,
    .packages__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .packages__grid .pkg:last-child {
        grid-column: auto;
        max-width: none;
    }

    .steps__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .feature-card,
    .why-card,
    .review-card {
        padding: 24px 22px;
    }

    .feature-card__icon,
    .why-card__icon {
        width: 56px;
        height: 56px;
        font-size: 26px;
        margin-bottom: 18px;
    }

    .feature-card__title,
    .why-card__title {
        font-size: 18px;
    }

    /* Big quote */
    .big-quote {
        padding: 36px 24px;
    }

    .big-quote__text {
        font-size: 20px;
    }

    .big-quote__mark {
        font-size: 60px;
    }

    /* Packages */
    .pkg {
        padding: 32px 24px 24px;
    }

    .pkg__price {
        font-size: 42px;
    }

    /* CTA form */
    .cta__inner {
        padding: 36px 24px;
    }

    .cta__trust {
        gap: 14px;
        flex-direction: column;
        align-items: center;
    }

    /* FAQ */
    .faq__list {
        padding: 0 20px;
    }

    .afd-faq-question {
        font-size: 16px;
        padding: 20px 0;
    }

    .afd-faq-answer {
        font-size: 15px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 24px;
    }

    .footer__cols {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer__brand {
        text-align: center;
        margin: 0 auto;
    }

    .footer__top {
        gap: 30px;
        padding-bottom: 30px;
    }

    /* Cookie banner — stack on mobile */
    .cookie-banner {
        bottom: 8px;
        left: 8px;
        right: 8px;
        padding: 16px;
        border-radius: 14px;
    }

    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .cookie-banner__icon {
        font-size: 24px;
    }

    .cookie-banner__title {
        font-size: 14px;
    }

    .cookie-banner__desc {
        font-size: 13px;
    }

    .cookie-banner__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .cookie-banner__btn {
        padding: 12px 16px;
        font-size: 14px;
    }

    /* Collapse to an icon-only white circle on mobile (shown only after a consent choice) */
    .cookie-reopen {
        bottom: 12px;
        left: 12px;
        width: 44px;
        height: 44px;
        padding: 0;
        gap: 0;
        font-size: 0;
        border-radius: 50%;
        justify-content: center;
    }

    .cookie-reopen::before {
        font-size: 18px;
    }

    /* Notifications — repositioned to avoid cookie banner on mobile */
    .notif-container {
        bottom: auto;
        top: 80px;
        left: 10px;
        right: 10px;
        max-width: none;
    }

    .notif {
        max-width: none;
    }

    /* ==========================================================
       STEPS — Fun mobile animation with vertical journey line
       Designed for older audience: clear, gentle, friendly
    ========================================================== */
    .steps__grid {
        position: relative;
        max-width: 360px;
        margin: 0 auto;
    }

    /* Vertical dashed connecting line */
    .steps__grid::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 30px;
        bottom: 30px;
        width: 3px;
        transform: translateX(-1.5px);
        background-image: linear-gradient(
            to bottom,
            var(--teal) 0,
            var(--teal) 8px,
            transparent 8px,
            transparent 16px
        );
        background-size: 3px 16px;
        background-repeat: repeat-y;
        z-index: 0;
        opacity: 0.4;
    }

    .step {
        position: relative;
        z-index: 1;
    }

    /* White ring around number circle to break the dashed line cleanly */
    .step__num {
        position: relative;
        box-shadow:
            0 0 0 8px var(--surface-warm),
            0 8px 20px rgba(29, 44, 123, 0.3);
    }

    /* Animated ripple ring around each step */
    .step__num::after {
        content: "";
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        border: 2px solid var(--teal);
        opacity: 0;
        animation: step-ripple 3s ease-out infinite;
    }

    .step:nth-child(2) .step__num::after { animation-delay: 0.6s; }
    .step:nth-child(3) .step__num::after { animation-delay: 1.2s; }
    .step:nth-child(4) .step__num::after { animation-delay: 1.8s; }

    @keyframes step-ripple {
        0% {
            opacity: 0.7;
            transform: scale(1);
        }
        100% {
            opacity: 0;
            transform: scale(1.5);
        }
    }

    /* Playful bounce-in when each step scrolls into view */
    .step.in-view .step__num {
        animation: step-bounce-in 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    @keyframes step-bounce-in {
        0% {
            transform: scale(0.3) rotate(-12deg);
            opacity: 0;
        }
        60% {
            transform: scale(1.12) rotate(6deg);
            opacity: 1;
        }
        100% {
            transform: scale(1) rotate(0);
            opacity: 1;
        }
    }

    /* Gentle wave for the title under each step */
    .step.in-view .step__title {
        animation: step-title-rise 0.5s ease-out 0.3s both;
    }

    @keyframes step-title-rise {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* ==========================================================
   RESPONSIVE — SMALL MOBILE (480px)
========================================================== */
@media (max-width: 480px) {
    .afd-old-header__logo {
        height: 38px;
    }

    .afd-old-header__btn {
        font-size: 11px;
        padding: 9px 14px;
    }

    .hero__title {
        font-size: 28px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .hero__rating {
        flex-direction: column;
        gap: 6px;
    }

    .section-title {
        font-size: 26px;
    }

    .hero__video-badge {
        display: none;
    }

    .stat__num {
        font-size: 34px;
    }

    .pkg__price {
        font-size: 36px;
    }

    .big-quote__author {
        gap: 12px;
    }

    .big-quote__stars {
        width: 100%;
        margin-top: 8px;
    }
}

/* ============================================
   SCROLLING TICKER
   ============================================ */

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-wrap {
  width: 100%;
  background: #141f58; /* deep brand teal — darker shade of --teal (#1d2c7b), distinct from the near-black team section */
  overflow: hidden;
  padding: 15px 0;
  white-space: nowrap;
}

.ticker__track {
  display: inline-flex;
  align-items: center;
  animation: tickerScroll 32s linear infinite;
  will-change: transform;
}

.ticker-wrap:hover .ticker__track {
  animation-play-state: paused;
}

.ticker__item {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0 28px;
  flex-shrink: 0;
}

.ticker__sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ============================================
   VIDEO TESTIMONIAL SECTION
   ============================================ */

.video-proof {
  padding: 80px 0;
  background: #ffffff;
}

.video-proof__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.video-proof__left {
  display: flex;
  justify-content: center;
}

.video-proof__video-wrap {
  position: relative;
  width: 100%;
  max-width: 300px;
  border-radius: 22px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  aspect-ratio: 9 / 16;
  background: #111;
}

.video-proof__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  overflow: hidden;
}

.video-proof__location {
  position: absolute;
  top: -1px;
  left: 14px;
  transform: translateY(-100%);
  animation: badgeFloatTop 3.5s ease-in-out infinite;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 5px 13px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-strong);
}

.video-proof__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e53e3e;
  flex-shrink: 0;
  display: inline-block;
}

.video-proof__incluso {
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  transform: translateY(95%);
  animation: badgeFloatBottom 4s ease-in-out infinite;
  animation-delay: 0.8s;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 12px;
  padding: 7px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #111;
  text-align: center;
  white-space: nowrap;
}

.video-proof__right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

.video-proof__text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.video-proof__headline {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text-strong);
  line-height: 1.15;
  margin: 0;
}

.video-proof__support {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 55ch;
  margin: 0;
}

.video-proof__attribution {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal, #1d2c7b);
  margin: 0;
}

.video-proof__headline em {
  font-style: italic;
  font-weight: 600;
  color: #333;
  font-size: 0.9em;
  display: block;
  margin-top: 10px;
  line-height: 1.5;
}

.video-proof__highlight {
  color: var(--teal, #1d2c7b);
}

.video-proof__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #3B82F6 0%, #9333EA 100%);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 18px 34px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 14px rgba(109, 74, 233, 0.35);
}

.video-proof__cta:hover {
  background: linear-gradient(90deg, #2563EB 0%, #7E22CE 100%);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .video-proof {
    padding: 40px 0 48px;
  }
  .video-proof__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .video-proof__video-wrap {
    max-width: 88vw;
    width: 88vw;
    margin: 0 auto;
  }
  .video-proof__left {
    padding-bottom: 38px;
  }
  .video-proof__right {
    align-items: center;
  }
  .video-proof--flip .video-proof__left,
  .video-proof--flip .video-proof__right { order: 0; }
}

/* ============================================
   GOOGLE REVIEWS SECTION
   ============================================ */

.google-reviews {
  padding: 80px 0;
  background: #ffffff;
}

.google-reviews__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.google-reviews__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.google-reviews__glogo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.google-reviews__brand-name {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
}

.google-reviews__brand-sub {
  display: block;
  font-size: 0.8rem;
  color: #666;
  margin-top: 2px;
}

.google-reviews__score {
  display: flex;
  align-items: center;
  gap: 12px;
}

.google-reviews__score-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: #111;
  line-height: 1;
}

.google-reviews__stars--lg {
  display: flex;
  gap: 3px;
}

.google-reviews__stars--lg span {
  font-size: 1.8rem;
  color: #F4B400;
  line-height: 1;
}

/* Cards grid */
.google-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.google-reviews__card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.google-reviews__card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
  transform: translateY(-3px);
}

.google-reviews__card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.google-reviews__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.google-reviews__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.google-reviews__date {
  font-size: 0.78rem;
  color: #888;
  margin-top: 2px;
}

.google-reviews__stars {
  color: #F4B400;
  font-size: 1rem;
  letter-spacing: 1px;
  line-height: 1;
}

.google-reviews__text {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 900px) {
  .google-reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .google-reviews__grid {
    grid-template-columns: 1fr;
  }
  .google-reviews__header {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ============================================
   VIDEO TESTIMONIAL CAROUSEL — MOBILE ONLY
   ============================================ */

/* Hidden on desktop */
.vid-carousel {
  display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .vid-carousel {
    display: block;
    padding: 24px 0 20px;
    background: #fff;
  }

  .vid-carousel__track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 16px 4px;
  }

  .vid-carousel__track::-webkit-scrollbar {
    display: none;
  }

  /* Each card: portrait reel style, show ~2.2 cards */
  .vid-card {
    flex: 0 0 44vw;
    min-width: 44vw;
    aspect-ratio: 9 / 16;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    background: #222;
    cursor: pointer;
  }

  .vid-card__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Dark overlay + play button */
  .vid-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.18);
    transition: background 0.2s;
  }

  .vid-card.playing .vid-card__overlay {
    background: transparent;
  }

  .vid-card__play {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.88);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s, transform 0.15s;
    flex-shrink: 0;
    clip-path: none;
  }

  .vid-card__play::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 0 9px 17px;
    border-color: transparent transparent transparent #111;
    margin-left: 3px;
  }

  .vid-card.playing .vid-card__play {
    opacity: 0;
    transform: scale(0.7);
    pointer-events: none;
  }

  /* Bottom gradient + name label */
  .vid-card__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 12px 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
    color: #F4B400;
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-align: center;
  }

}

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

@keyframes badgeFloatBottom {
  0%, 100% { transform: translateY(95%) translateY(0px); }
  50%       { transform: translateY(95%) translateY(5px); }
}

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */

.social-proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: nowrap;
  margin-top: 20px;
  padding: 0px 1px;
  border-radius: 50px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.social-proof-bar__avatars {
  display: flex;
  align-items: center;
}

.spb-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.spb-avatar:first-child {
  margin-left: 0;
}

.social-proof-bar__text {
  display: flex;
  align-items: center;
  gap: 6px;
}

.spb-stars {
  color: #F4B400;
  font-size: 0.9rem;
  letter-spacing: 1px;
  line-height: 1;
}

.spb-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a73e8;
}

.spb-glogo {
  flex-shrink: 0;
}

.spb-google-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: #444;
}

.spb-icon { flex-shrink: 0; }

/* ============================================
   STEPS V2 — ZIG-ZAG ANIMATED
   ============================================ */

.steps-v2 {
  padding: 80px 0;
  background: #fff;
}

.steps-v2__eyebrow {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal, #1d2c7b);
  background: rgba(0,148,141,0.08);
  padding: 5px 16px;
  border-radius: 50px;
  width: fit-content;
  margin: 0 auto 16px;
}

.steps-v2__title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
}

.steps-v2__lead {
  text-align: center;
  font-size: 1rem;
  color: #666;
  max-width: 580px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.steps-v2__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  align-items: start;
}

/* SVG zig-zag connector */
.steps-v2__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

#stepsPath {
  stroke: var(--teal, #1d2c7b);
  stroke-opacity: 0.3;
  stroke-width: 2;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 1.2s ease 0.4s;
}

#stepsPath.is-drawn {
  stroke-dashoffset: 0;
}

/* Alternate row offset for zig-zag */
.step-v2--2,
.step-v2--4 {
  margin-top: 80px;
}

/* Step cards */
.step-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(32px) scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-v2.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.step-v2.is-visible .step-v2__icon {
  animation: iconPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.step-v2--2.is-visible .step-v2__icon { animation-delay: 0.12s; }
.step-v2--3.is-visible .step-v2__icon { animation-delay: 0.24s; }
.step-v2--4.is-visible .step-v2__icon { animation-delay: 0.36s; }

@keyframes iconPop {
  0%   { transform: scale(0.5) rotate(-10deg); opacity: 0; }
  70%  { transform: scale(1.15) rotate(4deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.step-v2--2 { transition-delay: 0.12s; }
.step-v2--3 { transition-delay: 0.24s; }
.step-v2--4 { transition-delay: 0.36s; }

.step-v2__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.step-v2__icon svg {
  width: 28px;
  height: 28px;
}

.step-v2--1 .step-v2__icon { background: #E1F5EE; color: #0F6E56; }
.step-v2--2 .step-v2__icon { background: #FAECE7; color: #993C1D; }
.step-v2--3 .step-v2__icon { background: #E6F1FB; color: #185FA5; }
.step-v2--4 .step-v2__icon { background: #EAF3DE; color: #3B6D11; }

.step-v2__body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
  line-height: 1.3;
}

.step-v2__body p {
  font-size: 0.86rem;
  color: #666;
  line-height: 1.6;
}

/* Mobile: 2 per row */
@media (max-width: 768px) {
  .steps-v2__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .step-v2--2,
  .step-v2--4 {
    margin-top: 0;
  }
  .steps-v2__svg {
    display: none;
  }
}

.vid-carousel-header {
  display: none;
}

@media (max-width: 768px) {
  .vid-carousel-header {
    display: block;
    padding: 32px 24px 0;
    background: transparent;
    text-align: center;
    position: relative;
  }

  .vid-carousel-header__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111;
    line-height: 1.25;
    margin: 0 0 10px;
    display: inline-block;
    position: relative;
    z-index: 1;
  }

  .vid-carousel-header__title::before {
    content: '';
    position: absolute;
    inset: -5px -16px -3px -12px;
    background: #FFD60A;
    z-index: -1;
    filter: url(#marker-rough);
    transform: rotate(-1deg);
    border-radius: 2px;
  }

  .vid-carousel-header__sub {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
  }
}

/* ============================================
   TRUST CARDS SECTION
   ============================================ */

.trust-cards {
  padding: 80px 0;
  background: #fff;
}

.trust-cards__eyebrow {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral, #FAB338);
  background: rgba(250,179,56,0.08);
  padding: 5px 16px;
  border-radius: 50px;
  width: fit-content;
  margin: 0 auto 16px;
}

.trust-cards__title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.trust-cards__lead {
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 48px;
}

.trust-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.trust-card__media--portrait {
  aspect-ratio: 3 / 4;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.trust-card__media--portrait video,
.trust-card__media--portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder styling */
.trust-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #888;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Bottom label */
.trust-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 18px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-card__emoji {
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  .trust-cards__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .trust-card__media--portrait {
    aspect-ratio: 3 / 4;
  }
}

/* ============================================
   CLINIC TOUR VIDEO SECTION
   ============================================ */

.clinic-tour {
  padding: 80px 0;
  background: #f8f8f8;
}

.clinic-tour__eyebrow {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal, #1d2c7b);
  background: rgba(0,148,141,0.08);
  padding: 5px 16px;
  border-radius: 50px;
  width: fit-content;
  margin: 0 auto 16px;
}

.clinic-tour__title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.clinic-tour__lead {
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 36px;
}

.clinic-tour__video-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.clinic-tour__video-wrap video,
.clinic-tour__video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.clinic-tour__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0e0e0 0%, #cccccc 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #888;
  font-size: 0.9rem;
  font-weight: 500;
}

.clinic-tour__video-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  background: #000;
}

.clinic-tour__video-wrap #ytPlayer,
.clinic-tour__video-wrap #ytPlayer iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.yt-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.yt-playbtn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, background 0.15s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  color: #111;
}

.yt-playbtn:hover {
  transform: scale(1.1);
  background: #fff;
}

.yt-thumb-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}
.yt-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.yt-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: background 0.2s;
}
.yt-thumb-link:hover .yt-thumb-overlay {
  background: rgba(0,0,0,0.45);
}
.yt-thumb-btn {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition: transform 0.15s, background 0.15s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.yt-thumb-link:hover .yt-thumb-btn {
  transform: scale(1.08);
  background: #fff;
}
.yt-thumb-label {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ============================================
   PRICE LIST SECTION
   ============================================ */

.price-list {
  padding: 80px 0;
  background: #fff;
}

.price-list__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1d2c7b;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 18px 28px;
  border-radius: 10px 10px 0 0;
  letter-spacing: 0.02em;
}

.price-list__body {
  border: 1.5px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}

.price-list__row {
  display: flex;
  align-items: center;
  padding: 16px 28px;
  gap: 12px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s;
}

.price-list__row:last-child {
  border-bottom: none;
}

.price-list__row:hover {
  background: #f9fdf9;
}

.price-list__row--offer {
  background: #fffdf5;
}

.price-list__row--offer:hover {
  background: #fff8e8;
}

.price-list__left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  max-width: 65%;
}

.price-list__badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: #c0392b;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  border: 1.5px solid #c0392b;
  padding: 2px 8px;
  border-radius: 4px;
}

.price-list__desc {
  font-size: 0.95rem;
  color: #222;
  font-weight: 500;
  line-height: 1.4;
}

.price-list__dots {
  flex: 1;
  border-bottom: 2px dashed #c8e6c9;
  min-width: 20px;
  margin-bottom: 2px;
}

.price-list__price {
  font-size: 1rem;
  font-weight: 700;
  color: #1d2c7b;
  flex-shrink: 0;
  white-space: nowrap;
}

.price-list__note {
  font-size: 0.8rem;
  font-style: italic;
  color: #888;
  margin-top: 16px;
  text-align: center;
}

@media (max-width: 768px) {
  .price-list__header {
    font-size: 0.9rem;
    padding: 14px 16px;
  }
  .price-list__row {
    padding: 14px 16px;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
  }
  .price-list__left {
    flex: 1;
    min-width: 0;
    max-width: none;
    width: auto;
  }
  .price-list__desc {
    font-size: 0.88rem;
  }
  .price-list__dots {
    flex: 1;
    min-width: 8px;
    display: flex;
  }
  .price-list__price {
    flex-shrink: 0;
    font-size: 0.95rem;
    margin-left: 0;
  }
  .price-list__row--offer {
    flex-wrap: wrap;
    gap: 4px 8px;
  }
  .price-list__row--offer .price-list__badge {
    width: 100%;
    order: -1;
  }
  .price-list__row--offer .price-list__desc {
    flex: 1;
    font-size: 0.88rem;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .price-list__row--offer .price-list__dots {
    display: none;
  }
  .price-list__row--offer .price-list__price {
    flex-shrink: 0;
  }
}

.site-footer {
  background: #0d1421;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 48px 24px 32px;
}

.site-footer__inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.site-footer__logo img {
  height: 56px;
  width: auto;
}

.site-footer__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 500px;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer__legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.15s;
}

.site-footer__legal a:hover {
  color: #fff;
}

.site-footer__legal span {
  color: rgba(255,255,255,0.2);
  font-size: 0.8rem;
}

.site-footer__copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.soggiorno-grid {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.soggiorno-grid__top {
  width: 100%;
  flex: 1.2;
  object-fit: contain;
  background: #111;
  display: block;
}

.soggiorno-grid__bottom {
  display: flex;
  gap: 3px;
  flex: 1;
}

.soggiorno-grid__bottom img {
  flex: 1;
  min-width: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============================================
   LEAD-CAPTURE POPUP FORM
   ============================================ */

/* Design tokens — tweak these to rebrand the whole form */
:root {
  --brand: #1d2c7b;
  --brand-dark: #141f58;
  --brand-soft: #e4e8f7;
  --ink: #0f1a14;
  --ink-2: #4a5650;
  --ink-3: #8a948f;
  --line: #e6eae7;
  --card: #ffffff;
  --accent-1: #ff7a3c;
  --accent-2: #e8559f;
  --accent-3: #8b5cf6;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-pop: 0 30px 80px -20px rgba(15, 26, 20, 0.35);
  --font-sans: 'Nunito', system-ui, -apple-system, sans-serif;
}

/* ===== FORM (everything below is required) ===== */
*, *::before, *::after { box-sizing: border-box; }

.ada-form {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  background: var(--card);
  border-radius: var(--radius-lg);
  position: relative;
  font-family: var(--font-sans);
  color: var(--ink);
}

.ada-form__progress {
  display: flex; gap: 6px;
  padding: 24px 22px 0;
}
.ada-form__progress span {
  flex: 1; height: 4px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
  position: relative;
}
.ada-form__progress span::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 999px;
  transform: translateX(-100%);
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}
.ada-form__progress span:nth-child(1)::after { background: var(--accent-1); }
.ada-form__progress span:nth-child(2)::after { background: var(--accent-2); }
.ada-form__progress span:nth-child(3)::after { background: var(--accent-3); }
.ada-form__progress span:nth-child(4)::after { background: var(--brand); }
.ada-form__progress span.is-done::after { transform: translateX(0); }

.ada-form__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 0;
  min-height: 36px;
}
.ada-form__back {
  background: transparent; border: none; cursor: pointer;
  padding: 6px; margin-left: -6px;
  border-radius: 8px; color: var(--ink-2);
  display: inline-flex; align-items: center;
  transition: background .15s ease, color .15s ease;
}
.ada-form__back:hover { background: var(--brand-soft); color: var(--ink); }
.ada-form__back[hidden] { visibility: hidden; }
.ada-form__close {
  background: transparent; border: none; cursor: pointer;
  color: var(--brand); font-weight: 600; font-size: 14px;
  padding: 6px 8px; border-radius: 8px;
  transition: background .15s ease;
}
.ada-form__close:hover { background: var(--brand-soft); }
.ada-form__close.hidden { display: none; }

.ada-form__body { padding: 8px 28px 24px; min-height: 360px; position: relative; }
.ada-form__brand {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  margin: 8px 0 18px;
}
.ada-form__logo {
  width: 72px; height: 72px;
  border-radius: 50%; overflow: hidden;
  background: white; margin-bottom: 10px;
  display: grid; place-items: center;
}
.ada-form__logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.ada-form__brand-name {
  font-size: 13px; color: var(--ink-2);
  font-weight: 600; letter-spacing: 0.02em;
}

.ada-step {
  display: none;
  animation: fadeUp .45s cubic-bezier(.2,.8,.2,1) both;
}
.ada-step.is-active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ada-step__title {
  font-family: var(--font-sans);
  font-weight: 800; font-size: 22px;
  line-height: 1.25; letter-spacing: -0.01em;
  text-align: center; margin: 0 0 6px;
  color: var(--ink);
}
.ada-step__sub {
  text-align: center; color: var(--ink-2);
  font-size: 14px; margin: 0 0 22px;
}

/* Step 1 — choice list */
.ada-choices { display: flex; flex-direction: column; gap: 10px; margin-bottom: 8px; }
.ada-choice {
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 14px 20px;
  background: white;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  text-align: left;
  transition: all .18s ease;
  position: relative;
}
.ada-choice:hover { border-color: var(--brand); transform: translateY(-1px); }
.ada-choice.is-selected {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 600;
}
.ada-choice.is-selected::after {
  content: '\2713';
  position: absolute; right: 18px; top: 50%;
  transform: translateY(-50%);
  color: var(--brand); font-weight: 700;
}

/* Inputs */
.ada-field { margin-bottom: 14px; }
.ada-field input,
.ada-field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  background: white;
  transition: border-color .15s ease, box-shadow .15s ease;
  resize: vertical;
}
.ada-field textarea { min-height: 110px; line-height: 1.5; }
.ada-field input:focus,
.ada-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(29, 44, 123, 0.12);
}
.ada-field input::placeholder,
.ada-field textarea::placeholder { color: var(--ink-3); }
.ada-field__hint {
  font-size: 12px; color: var(--ink-3);
  margin-top: 6px; text-align: right;
}
.ada-field__hint.is-error { color: #c0392b; }

/* Phone field with country picker */
.ada-phone {
  display: flex;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  transition: border-color .15s ease, box-shadow .15s ease;
  position: relative;
}
.ada-phone:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(29, 44, 123, 0.12);
}
.ada-phone__country {
  position: relative;
  border-right: 1.5px solid var(--line);
  background: var(--brand-soft);
  border-top-left-radius: 9px;
  border-bottom-left-radius: 9px;
}
.ada-phone__country-btn {
  height: 100%;
  background: transparent; border: none;
  padding: 0 6px 0 10px;
  cursor: pointer;
  display: flex; align-items: center; gap: 3px;
  font-family: inherit;
}
.ada-phone__flag { font-size: 18px; line-height: 1; }
.ada-phone__caret {
  width: 9px; height: 9px;
  color: var(--brand-dark);
  transition: transform .2s ease;
  opacity: 0.7;
}
.ada-phone__country.is-open .ada-phone__caret { transform: rotate(180deg); }
.ada-phone__list {
  position: absolute;
  top: calc(100% + 6px); left: 0;
  min-width: 220px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 28px -8px rgba(15, 26, 20, 0.18);
  list-style: none;
  padding: 4px; margin: 0;
  z-index: 10;
  max-height: 240px; overflow-y: auto;
}
.ada-phone__list[hidden] { display: none; }
.ada-phone__list li {
  padding: 9px 10px;
  border-radius: 6px;
  cursor: pointer;
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: var(--ink);
  transition: background .12s ease;
}
.ada-phone__list li:hover { background: var(--brand-soft); }
.ada-phone__list li.is-selected {
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 700;
}
.ada-phone__list .name { flex: 1; }
.ada-phone__list .code { color: var(--ink-3); font-size: 13px; font-weight: 500; }
.ada-phone__list li.is-selected .code { color: var(--brand); }
.ada-field .ada-phone input {
  border: none !important;
  border-radius: 0 !important;
  flex: 1;
  box-shadow: none !important;
  padding: 14px 16px;
  min-width: 0;
  background: transparent;
}
.ada-field .ada-phone input:focus {
  box-shadow: none !important;
  border: none !important;
}
.ada-phone-hint {
  font-size: 12px; color: var(--ink-3);
  margin-top: 6px; text-align: right;
}
.ada-phone-hint.is-error { color: #c0392b; }

.ada-disclaimer {
  font-size: 11.5px; color: var(--ink-3);
  line-height: 1.5; margin: 14px 0 0;
}

/* CTA */
.ada-cta {
  width: calc(100% - 56px);
  margin: 8px 28px 22px;
  padding: 16px;
  border: none;
  border-radius: var(--radius-md);
  background: linear-gradient(90deg, #3B82F6 0%, #9333EA 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(109, 74, 233, 0.35);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background .15s ease, transform .1s ease, opacity .15s ease;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.ada-cta:hover:not(:disabled) { background: linear-gradient(90deg, #2563EB 0%, #7E22CE 100%); color: #ffffff; }
.ada-cta:active:not(:disabled) { transform: scale(0.99); }
.ada-cta:disabled { opacity: 0.4; cursor: not-allowed; }
.ada-cta__spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none;
}
.ada-cta.is-loading .ada-cta__spinner { display: inline-block; }
.ada-cta.is-loading .ada-cta__label { opacity: 0.6; }
@keyframes spin { to { transform: rotate(360deg); } }

.ada-form__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 22px 16px;
  font-size: 12px;
  color: var(--ink-3);
  border-top: 1px solid var(--line);
}
.ada-form__footer-arrows { display: flex; gap: 6px; }
.ada-form__footer-arrows button {
  width: 26px; height: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  cursor: pointer;
  color: var(--ink-2);
  display: grid; place-items: center;
  transition: background .15s ease;
}
.ada-form__footer-arrows button:hover:not(:disabled) { background: var(--brand-soft); }
.ada-form__footer-arrows button:disabled { opacity: .35; cursor: not-allowed; }

/* Success step */
.ada-success { text-align: center; padding: 18px 8px 8px; }
.ada-success__icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--brand-soft);
  display: grid; place-items: center;
  color: var(--brand);
  animation: pop .5s cubic-bezier(.2,1.4,.4,1) both;
}
@keyframes pop {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.ada-success__icon svg { width: 30px; height: 30px; }
.ada-success h3 {
  font-family: var(--font-sans);
  font-weight: 800; font-size: 22px;
  margin: 0 0 8px; letter-spacing: -0.01em;
}
.ada-success p {
  color: var(--ink-2);
  font-size: 14.5px; line-height: 1.55;
  margin: 0 0 22px;
  max-width: 320px; margin-inline: auto;
}

/* Popup overlay */
.ada-overlay {
  position: fixed; inset: 0;
  background: rgba(15, 26, 20, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ada-overlay.is-open { display: flex; opacity: 1; }
.ada-overlay .ada-form {
  box-shadow: var(--shadow-pop);
  animation: popIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes popIn {
  from {
    transform: translateY(60px) scale(0.98);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
.ada-overlay .ada-form__close { z-index: 2; }

.mobile-sticky-cta { display: none; }

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 12px;
    right: 12px;
    z-index: 9998;
  }
  .mobile-sticky-cta__btn {
    background: linear-gradient(90deg, #3B82F6 0%, #9333EA 100%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 16px;
    border: 1px solid transparent;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(109, 74, 233, 0.35);
    display: flex;
    align-items: center;
    gap: 6px;
  }
}

/* ============================================
   TEAM SECTION — Top-rated Tirana dentists (dark)
   Scoped: .team-* only. Mobile slider reuses the
   same native scroll-snap mechanism as .vid-carousel.
   ============================================ */
.team-section {
  background: #0D0F0E;
  color: #ffffff;
  padding: 64px 0;
}

.team-section__inner {
  display: grid;
  grid-template-columns: 2.7fr 1fr; /* ~73% gallery so the 3:4 cards grow large */
  gap: 32px;
  align-items: center;
}

.team-section__gallery {
  min-width: 0; /* allow the flex track to shrink within the grid cell */
}

.team-gallery__track {
  display: flex;
  gap: 16px;
}

.team-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1d1c;
}

.team-card__img {
  width: 100%;
  aspect-ratio: 3 / 4; /* explicit ratio — reserves height, prevents layout shift */
  object-fit: cover;
  display: block;
}

.team-card__name {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-strong);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

/* Staggered vertical rhythm (desktop only) — scaled to the larger cards */
.team-card:nth-child(odd)  { transform: translateY(-28px); }
.team-card:nth-child(even) { transform: translateY(28px); }

.team-section__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.team-section__title {
  margin: 0 0 4px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.team-section__title-accent {
  display: block;
  color: var(--teal, #1d2c7b);
}

.team-section__title-main {
  display: block;
  color: #ffffff;
}

.team-section__p {
  margin: 0;
  max-width: 46ch;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.team-section__btn {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--teal, #1d2c7b);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 30px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-section__btn:hover {
  background: var(--teal-bright, #2a3da0);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .team-section {
    padding: 48px 0;
  }

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

  /* Text column stacks on top */
  .team-section__text {
    order: -1;
  }

  .team-section__title {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  /* Cards become a horizontal swipe slider — same scroll-snap pattern
     used by .vid-carousel__track (native scroll, no JS) */
  .team-gallery__track {
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .team-gallery__track::-webkit-scrollbar {
    display: none;
  }

  .team-card {
    flex: 0 0 calc((100vw - 60px) / 1.5); /* paddings 48px + gap 12px → exactly 1.5 cards (1 full + half peek) */
    min-width: calc((100vw - 60px) / 1.5);
    scroll-snap-align: start;
  }

  /* No stagger on mobile */
  .team-card:nth-child(odd),
  .team-card:nth-child(even) {
    transform: none;
  }
}

/* ============================================
   GOOGLE REVIEWS — "Real patients, real stories"
   Scoped .greviews / .greview-card. Uses design
   tokens to match the page. Mobile reuses the same
   native scroll-snap slider as .vid-carousel__track.
   ============================================ */
.greviews {
  padding: 90px 0;
  background: var(--bg);
}

.greviews .container {
  max-width: 1440px; /* wider inner wrapper so the full-width section doesn't look boxed/narrow */
}

.greviews__rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.greviews__more {
  text-align: center;
  margin-top: 36px;
}

.greviews__rating-stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 1.15rem;
  line-height: 1;
}

.greviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}

.greview-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.greview-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.greview-card__stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 1rem;
  line-height: 1;
}

.greview-card__text {
  margin: 0;
  flex: 1 1 auto;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.greview-card__foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.greview-card__avatar {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-bright) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
}

.greview-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-strong);
  line-height: 1.3;
}

.greview-card__date {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* Tablet (768–1023px): 2 per row */
@media (max-width: 1023px) and (min-width: 768px) {
  .greviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (<768px): horizontal swipe slider — same native scroll-snap
   mechanism as the testimonials .vid-carousel__track (no JS) */
@media (max-width: 767px) {
  .greviews {
    padding: 56px 0;
  }
  .greviews__grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 6px;
  }
  .greviews__grid::-webkit-scrollbar {
    display: none;
  }
  .greview-card {
    flex: 0 0 calc((100% - 14px) / 1.33); /* 1 full card + ~1/3 peek */
    scroll-snap-align: start;
  }
}

/* ===== Video-proof mirrored variant (text left / video right) ===== */
@media (min-width: 769px) {
    .video-proof--flip .video-proof__inner {
        grid-template-columns: 1.2fr 1fr;
    }
    .video-proof--flip .video-proof__left { order: 2; }
    .video-proof--flip .video-proof__right { order: 1; }
}

/* ===== Featured video: transparent play button ===== */
.video-proof__video { cursor: pointer; }
.vp-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(15, 22, 58, 0.35);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: transform .2s ease, background .2s ease, opacity .25s ease;
    padding: 0;
}
.vp-play svg { width: 22px; height: 22px; margin-left: 3px; }
.vp-play:hover {
    transform: translate(-50%, -50%) scale(1.08);
    background: rgba(15, 22, 58, 0.55);
}
.vp-play.is-hidden { opacity: 0; pointer-events: none; }
@media (max-width: 768px) {
    .vp-play { width: 48px; height: 48px; }
    .vp-play svg { width: 19px; height: 19px; }
}

/* ===== Hero video caption ===== */
.hero__video-caption {
    margin: 14px auto 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 0 16px;
}

/* ===== Perf: skip rendering of far-below-fold content ===== */
.faq { content-visibility: auto; contain-intrinsic-size: auto 1200px; }

/* ===== Section reveal ===== */
.hero-media, .vid-carousel-header, .vid-carousel, .video-proof,
.steps-v2, .cta, .faq, .site-footer {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s ease, transform .6s ease;
}
.hero-media.in-view, .vid-carousel-header.in-view, .vid-carousel.in-view,
.video-proof.in-view, .steps-v2.in-view, .cta.in-view, .faq.in-view,
.site-footer.in-view {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .hero-media, .vid-carousel-header, .vid-carousel, .video-proof,
    .steps-v2, .cta, .faq, .site-footer {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
