/* ============================================
   JUST SMILE MIAMI — WEBSITE DESIGN SYSTEM
   Shared across all pages
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600;1,800&display=swap');

/* ---- DESIGN TOKENS ---- */
:root {
    /* Brand */
    --green-deep: #0B3D2E;
    --green-mid: #14523F;
    --green-bright: #1D6B52;
    --peach: #D89B7A;
    --peach-hover: #C5825F;
    --peach-soft: #F5C9A8;
    --peach-deep: #B57555;

    /* Neutrals */
    --cream: #F8F4ED;
    --cream-warm: #FBF9F4;
    --ink: #1A2620;
    --muted: #5F5E5A;
    --muted-soft: #6B6A65;
    --border: #E5E1D6;
    --white: #FFFFFF;

    /* Accents */
    --gold: #FFC542;
    --check: #1D6B52;

    /* Type */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --container: 1200px;
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --header-h: 76px;

    /* Z-index scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-header: 300;
    --z-overlay: 400;
    --z-modal: 500;
}

/* ---- RESET ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- UTILITIES ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--cream { background: var(--cream); }
.section--green {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='230' height='230' viewBox='0 0 230 230'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.055' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cg transform='translate(24 28) scale(1.5) rotate(-8 12 12)'%3E%3Cpath d='M12 3c-1.4 0-2.2.5-3.5.5C6 3.5 4.8 5 4.8 7.5c0 2.6 1.2 4.3 2.1 7.5.3 1.2.9 2 1.7 2s1.2-.8 1.2-2v-1.2c0-.8.4-1.2 2.2-1.2s2.2.4 2.2 1.2V15c0 1.2.4 2 1.2 2s1.4-.8 1.7-2c.9-3.2 2.1-4.9 2.1-7.5 0-2.5-1.2-4-3.7-4-1.3 0-2.1-.5-3.5-.5z'/%3E%3C/g%3E%3Cg transform='translate(138 124) scale(1.7) rotate(7)'%3E%3Cpath d='M2 4c3 5.5 13 5.5 16 0'/%3E%3Ccircle cx='4.5' cy='0.5' r='1.3'/%3E%3Ccircle cx='15.5' cy='0.5' r='1.3'/%3E%3C/g%3E%3Cpath d='M64 168l1.4 4.4 4.4 1.4-4.4 1.4-1.4 4.4-1.4-4.4-4.4-1.4 4.4-1.4z'/%3E%3Cpath d='M186 48l1 3.2 3.2 1-3.2 1-1 3.2-1-3.2-3.2-1 3.2-1z'/%3E%3C/g%3E%3C/svg%3E") repeat,
        radial-gradient(ellipse 60% 50% at 85% 10%, rgba(216,155,122,0.14) 0%, transparent 55%),
        linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 50%, var(--green-deep) 100%);
    color: var(--white);
}

.eyebrow {
    color: var(--peach);
    font-size: 12px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.5vw, 46px);
    color: var(--green-deep);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1px;
    text-wrap: balance;
}
.section-title em { color: var(--peach); font-style: italic; }
.section--green .section-title { color: var(--white); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head .section-sub {
    color: var(--muted);
    font-size: 17px;
    margin-top: 16px;
    line-height: 1.6;
}
.section--green .section-head .section-sub { color: rgba(255,255,255,0.85); }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: 0.4px;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
    white-space: nowrap;
}
.btn--primary {
    background: linear-gradient(135deg, var(--peach) 0%, var(--peach-hover) 100%);
    color: var(--white);
    box-shadow: 0 10px 24px -4px rgba(168,93,56,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -4px rgba(168,93,56,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn--ghost {
    background: transparent;
    color: var(--green-deep);
    border: 1.5px solid var(--border);
}
.btn--ghost:hover { border-color: var(--peach); color: var(--peach-hover); }
.btn--ghost-light {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.5); }
.btn--white {
    background: var(--white);
    color: var(--green-deep);
    box-shadow: 0 14px 36px rgba(0,0,0,0.18);
}
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(0,0,0,0.24); }
.btn--lg { padding: 18px 40px; font-size: 16px; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
    background: var(--green-deep);
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 9px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.topbar__contact { display: flex; align-items: center; gap: 24px; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item svg { width: 14px; height: 14px; color: var(--peach); }
.topbar__item a:hover { color: var(--peach-soft); }
.topbar__lang { display: inline-flex; gap: 4px; align-items: center; font-weight: 600; }
.topbar__lang a { padding: 2px 7px; border-radius: 5px; transition: background 0.2s, color 0.2s; }
.topbar__lang a.is-active { background: var(--peach); color: var(--white); }
.topbar__lang a:not(.is-active):hover { color: var(--peach-soft); }

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}
.header.is-scrolled { box-shadow: 0 6px 24px rgba(11,61,46,0.08); }
.header__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo { flex-shrink: 0; display: inline-flex; align-items: center; }
.logo__img { height: 46px; width: auto; display: block; }
.logo__img--footer { height: 54px; margin-bottom: 18px; }

.nav { display: flex; align-items: center; }
.nav__links { display: flex; align-items: center; gap: 22px; }
.header__inner { gap: 18px; }
/* Drawer-only blocks — hidden on desktop */
.nav__head, .nav__footer { display: none; }
.nav__link {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink);
    position: relative;
    padding: 4px 0;
    transition: color 0.2s;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--peach);
    transition: width 0.25s;
}
.nav__link:hover { color: var(--peach-hover); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__link.is-active { color: var(--green-deep); }
/* Dropdown menus (desktop hover) */
.nav__item { position: relative; }
.nav__link--parent { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.nav__chevron { transition: transform 0.2s; }
.nav__item:hover .nav__chevron { transform: rotate(180deg); }
.nav__item::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 14px; }
.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 236px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 18px 44px rgba(11,61,46,0.16);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 60;
}
.nav__item:hover .nav__dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(6px); }
.nav__dropdown a {
    display: block;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}
.nav__dropdown a:hover { background: var(--cream); color: var(--peach-hover); }
.nav__dropdown a.is-current { color: var(--peach-hover); }

.header__cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
/* Phone lives in the top bar on desktop; hidden in header to avoid crowding */
.header__phone { display: none; }
/* Instagram icon button — mobile header only */
.header__ig { display: none; }

.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.nav-toggle span {
    width: 24px; height: 2px;
    background: var(--green-deep);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='230' height='230' viewBox='0 0 230 230'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.055' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cg transform='translate(24 28) scale(1.5) rotate(-8 12 12)'%3E%3Cpath d='M12 3c-1.4 0-2.2.5-3.5.5C6 3.5 4.8 5 4.8 7.5c0 2.6 1.2 4.3 2.1 7.5.3 1.2.9 2 1.7 2s1.2-.8 1.2-2v-1.2c0-.8.4-1.2 2.2-1.2s2.2.4 2.2 1.2V15c0 1.2.4 2 1.2 2s1.4-.8 1.7-2c.9-3.2 2.1-4.9 2.1-7.5 0-2.5-1.2-4-3.7-4-1.3 0-2.1-.5-3.5-.5z'/%3E%3C/g%3E%3Cg transform='translate(138 124) scale(1.7) rotate(7)'%3E%3Cpath d='M2 4c3 5.5 13 5.5 16 0'/%3E%3Ccircle cx='4.5' cy='0.5' r='1.3'/%3E%3Ccircle cx='15.5' cy='0.5' r='1.3'/%3E%3C/g%3E%3Cpath d='M64 168l1.4 4.4 4.4 1.4-4.4 1.4-1.4 4.4-1.4-4.4-4.4-1.4 4.4-1.4z'/%3E%3Cpath d='M186 48l1 3.2 3.2 1-3.2 1-1 3.2-1-3.2-3.2-1 3.2-1z'/%3E%3C/g%3E%3C/svg%3E") repeat,
        radial-gradient(ellipse 70% 50% at 88% 8%, rgba(216,155,122,0.18) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 12% 95%, rgba(216,155,122,0.08) 0%, transparent 50%),
        linear-gradient(135deg, #0B3D2E 0%, #163F2E 30%, #1D5B45 60%, #0F4434 90%, #0B3D2E 100%);
    color: var(--white);
    overflow: hidden;
}
.hero__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 48px 24px 56px;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 52px;
    align-items: center;
}
.hero__body { align-self: center; max-width: 520px; }
.hero__h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
    text-wrap: balance;
}
.hero__h1 em { color: var(--peach-soft); font-style: italic; }

/* Secondary hero heading (in the body, beside the image) */
.hero__h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
    color: var(--white);
    text-wrap: balance;
}
.hero__h2 em { color: var(--peach-soft); font-style: italic; }

/* Title overlaid on the image (landing style) */
.hero__overlay {
    position: absolute;
    top: 0; left: 0; right: 0;
    padding: 38px 32px;
    text-align: center;
    pointer-events: none;
    z-index: 2;
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(34px, 3.6vw, 44px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 8px;
    color: #fff;
    text-shadow:
        0 0 24px rgba(0,0,0,0.9),
        0 0 50px rgba(0,0,0,0.6),
        0 2px 8px rgba(0,0,0,0.8);
}
.hero__title em {
    color: var(--peach-soft);
    font-style: italic;
    text-shadow:
        0 0 24px rgba(0,0,0,0.9),
        0 0 50px rgba(0,0,0,0.6),
        0 0 30px rgba(216,155,122,0.4);
}
.hero__lead {
    font-size: 17px;
    color: rgba(255,255,255,0.96);
    font-weight: 500;
    letter-spacing: 0.4px;
    text-shadow:
        0 0 18px rgba(0,0,0,0.85),
        0 2px 5px rgba(0,0,0,0.7);
}

/* Champagne glass pricing card (landing style) */
.hero__pricing {
    grid-area: pricing;
    background: linear-gradient(135deg,
        rgba(255, 250, 245, 0.09) 0%,
        rgba(245, 240, 232, 0.05) 100%);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 26px 32px 28px;
    color: #fff;
    text-align: center;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05),
        0 24px 50px -16px rgba(0, 0, 0, 0.45);
}
.hero__pricing-tag {
    font-size: 10px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--peach);
    margin-bottom: 6px;
}
.hero__pricing-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    font-style: italic;
    color: #fff;
    letter-spacing: -0.4px;
    line-height: 1.05;
    margin-bottom: 12px;
}
.hero__pricing-title span {
    color: #E5B9A0;
    font-weight: 600;
    margin-right: 4px;
    font-style: normal;
}
.hero__pricing-row {
    display: inline-flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 6px;
}
.hero__pricing-price {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    letter-spacing: -1.5px;
}
.hero__pricing-price .dollar {
    font-size: 0.48em;
    vertical-align: 0.55em;
    font-weight: 500;
    letter-spacing: 0;
    margin-right: 2px;
    opacity: 0.85;
}
.hero__pricing-original {
    font-family: var(--font-display);
    font-size: 17px;
    color: rgba(255,255,255,0.45);
    text-decoration: line-through;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(216,155,122,0.65);
    font-weight: 400;
    letter-spacing: -0.3px;
}
.hero__pricing-divider {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(216,155,122,0.5), transparent);
    margin: 16px auto 14px;
}
.hero__pricing-label {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--peach);
    margin-bottom: 6px;
}
.hero__pricing-items {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.4px;
}
.hero__pricing-items span {
    color: rgba(216,155,122,0.7);
    margin: 0 8px;
    font-weight: 600;
}

/* Hero credentials card (clinic-level, replaces pricing on Home) */
.hero__creds-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
    margin-top: 14px;
    text-align: left;
}
.hero__creds-list li { display: flex; flex-direction: column; }
.hero__creds-list b {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--peach-soft);
    line-height: 1;
    margin-bottom: 4px;
}
.hero__creds-list span {
    font-size: 12.5px;
    color: rgba(255,255,255,0.78);
    letter-spacing: 0.3px;
}
.hero__sub {
    font-size: 18px;
    color: rgba(255,255,255,0.92);
    line-height: 1.6;
    max-width: 520px;
    margin-bottom: 32px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.25);
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero__rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 11px 18px;
    border-radius: 50px;
    font-size: 14px;
}
.hero__rating .stars { color: var(--gold); letter-spacing: 2px; }
.hero__rating strong { color: var(--white); }
.hero__rating span { color: rgba(255,255,255,0.8); }

.hero__visual {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.55);
    width: 100%;
}
.hero__visual img { width: 100%; height: auto; display: block; }

/* ============================================
   PAGE HERO (service pages)
   ============================================ */
.page-hero {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='230' height='230' viewBox='0 0 230 230'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.055' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cg transform='translate(24 28) scale(1.5) rotate(-8 12 12)'%3E%3Cpath d='M12 3c-1.4 0-2.2.5-3.5.5C6 3.5 4.8 5 4.8 7.5c0 2.6 1.2 4.3 2.1 7.5.3 1.2.9 2 1.7 2s1.2-.8 1.2-2v-1.2c0-.8.4-1.2 2.2-1.2s2.2.4 2.2 1.2V15c0 1.2.4 2 1.2 2s1.4-.8 1.7-2c.9-3.2 2.1-4.9 2.1-7.5 0-2.5-1.2-4-3.7-4-1.3 0-2.1-.5-3.5-.5z'/%3E%3C/g%3E%3Cg transform='translate(138 124) scale(1.7) rotate(7)'%3E%3Cpath d='M2 4c3 5.5 13 5.5 16 0'/%3E%3Ccircle cx='4.5' cy='0.5' r='1.3'/%3E%3Ccircle cx='15.5' cy='0.5' r='1.3'/%3E%3C/g%3E%3Cpath d='M64 168l1.4 4.4 4.4 1.4-4.4 1.4-1.4 4.4-1.4-4.4-4.4-1.4 4.4-1.4z'/%3E%3Cpath d='M186 48l1 3.2 3.2 1-3.2 1-1 3.2-1-3.2-3.2-1 3.2-1z'/%3E%3C/g%3E%3C/svg%3E") repeat,
        radial-gradient(ellipse 70% 50% at 88% 8%, rgba(216,155,122,0.18) 0%, transparent 55%),
        linear-gradient(135deg, #0B3D2E 0%, #163F2E 30%, #1D5B45 60%, #0F4434 90%, #0B3D2E 100%);
    color: var(--white);
    padding: 52px 0 60px;
}
.breadcrumbs {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 22px;
}
.breadcrumbs a { color: rgba(255,255,255,0.8); }
.breadcrumbs a:hover { color: var(--peach-soft); }
.breadcrumbs span { margin: 0 7px; color: rgba(255,255,255,0.35); }
.page-hero__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1px;
    margin-bottom: 16px;
    text-wrap: balance;
}
.page-hero h1 em { color: var(--peach-soft); font-style: italic; }
.page-hero__offer {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 18px;
}
.page-hero__offer .now {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 700;
    color: var(--peach-soft);
    line-height: 1;
}
.page-hero__offer .was {
    font-family: var(--font-display);
    font-size: 19px;
    color: rgba(255,255,255,0.5);
    text-decoration: line-through;
    text-decoration-color: rgba(216,155,122,0.6);
}
.page-hero__offer .tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--peach-soft);
    background: rgba(216,155,122,0.14);
    border: 1px solid rgba(216,155,122,0.35);
    padding: 5px 12px;
    border-radius: 50px;
}
.page-hero__intro {
    font-size: 16.5px;
    color: rgba(255,255,255,0.92);
    line-height: 1.65;
    max-width: 60ch;
    margin-bottom: 26px;
}
/* Center the intro block in centered heroes (no visual image): trust/legal/pillar pages */
.page-hero:not(:has(.page-hero__visual)) .page-hero__intro { margin-left: auto; margin-right: auto; }
.page-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.page-hero__reviewed {
    font-size: 12.5px;
    color: rgba(255,255,255,0.55);
}
.page-hero__visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 70px -20px rgba(0,0,0,0.55);
}
.page-hero__visual img { width: 100%; height: auto; display: block; }

/* Service page helpers */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.split__img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 50px rgba(11,61,46,0.15); }
.split__img img { width: 100%; height: auto; display: block; }
.checklist { margin-top: 20px; }
.checklist li {
    position: relative;
    padding: 8px 0 8px 32px;
    font-size: 15px;
    color: var(--ink);
    line-height: 1.5;
}
.checklist li::before {
    content: "✓";
    position: absolute; left: 0; top: 9px;
    width: 20px; height: 20px;
    background: rgba(29,107,82,0.12);
    color: var(--check);
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 11px;
    font-weight: 800;
}
/* Pay-later financing band (Cherry & Affirm) */
.pay-later { text-align: center; }
.pay-later__amount {
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 54px);
    font-weight: 800;
    color: var(--peach-soft);
    letter-spacing: -1.5px;
    margin: 14px 0 6px;
    line-height: 1;
}
.pay-later__amount-sub {
    color: rgba(255,255,255,0.8);
    font-size: 14.5px;
    margin-bottom: 28px;
}
.pay-later__partners {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}
.pay-later__partner {
    background: var(--white);
    border-radius: 14px;
    padding: 16px 30px;
    min-width: 175px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.3);
}
.pay-later__partner-name {
    display: block;
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -0.6px;
    color: var(--green-deep);
    line-height: 1;
    margin-bottom: 6px;
    text-transform: lowercase;
}
.pay-later__partner-tag {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--muted);
}
.pay-later__benefits {
    display: flex;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.pay-later__benefits span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.92);
    font-size: 14.5px;
    font-weight: 600;
}
.pay-later__benefits span::before {
    content: "✓";
    width: 20px;
    height: 20px;
    background: rgba(245,201,168,0.22);
    color: var(--peach-soft);
    border-radius: 50%;
    line-height: 20px;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
    flex-shrink: 0;
}
.pay-later__trust {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    margin-top: 16px;
}
@media (max-width: 768px) {
    .pay-later__amount { font-size: 36px; }
    .pay-later__amount-sub { font-size: 13px; margin-bottom: 22px; }
    .pay-later__partners { gap: 10px; margin-bottom: 22px; }
    .pay-later__partner { flex: 1; min-width: 0; max-width: 172px; padding: 13px 16px; }
    .pay-later__partner-name { font-size: 19px; }
    .pay-later__partner-tag { font-size: 9px; letter-spacing: 1.4px; }
    .pay-later__benefits { flex-direction: column; gap: 10px; align-items: center; margin-bottom: 22px; }
    .pay-later__benefits span { font-size: 13.5px; }
}

/* Jump-link pills (long-form service pages) */
.toc { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.toc a {
    font-size: 13px;
    font-weight: 600;
    color: var(--green-deep);
    background: var(--white);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 50px;
    transition: border-color 0.2s, color 0.2s;
}
.toc a:hover { border-color: var(--peach); color: var(--peach-hover); }

/* Quick-facts grid */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.fact {
    background: var(--white);
    border-radius: var(--radius);
    padding: 18px 20px;
    box-shadow: 0 2px 12px rgba(11,61,46,0.04);
}
.fact b {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--green-deep);
    margin-bottom: 4px;
    font-weight: 700;
}
.fact span { font-size: 13px; color: var(--muted); }

/* Pros & cons */
.procon { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 40px; }
.procon__col { background: var(--cream); border-radius: var(--radius); padding: 26px 24px; }
.procon__col h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--green-deep);
    font-weight: 700;
    margin-bottom: 14px;
}
.procon__col li {
    position: relative;
    padding: 6px 0 6px 28px;
    font-size: 14.5px;
    color: var(--ink);
    line-height: 1.5;
}
.procon__col li::before {
    position: absolute;
    left: 0;
    top: 7px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    text-align: center;
    line-height: 19px;
    font-size: 11px;
    font-weight: 800;
}
.procon__col--pros li::before { content: "✓"; background: rgba(29,107,82,0.12); color: var(--check); }
.procon__col--cons li::before { content: "!"; background: rgba(216,155,122,0.2); color: var(--peach-deep); }

@media (max-width: 768px) {
    .toc { flex-wrap: nowrap; overflow-x: auto; margin: 0 -24px 30px; padding: 0 24px 8px; scrollbar-width: none; }
    .toc::-webkit-scrollbar { display: none; }
    .toc a { white-space: nowrap; flex-shrink: 0; }
    .facts { grid-template-columns: 1fr 1fr; gap: 10px; }
    .fact { padding: 14px 16px; }
    .fact b { font-size: 18px; }
    .procon { grid-template-columns: 1fr; gap: 14px; }
}

/* Care tips card strip (breaks the split zigzag) */
.tips { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.tip {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 18px;
    box-shadow: 0 2px 12px rgba(11,61,46,0.04);
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.55;
}
.tip b {
    display: block;
    color: var(--green-deep);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

/* Full-bleed photo banner */
.banner {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 96px 0;
    color: var(--white);
}
.banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(11,61,46,0.93) 0%, rgba(11,61,46,0.78) 45%, rgba(11,61,46,0.38) 100%);
}
.banner .container { position: relative; z-index: 1; }
.banner__content { max-width: 580px; }
.banner .section-title { color: var(--white); }
.banner p { color: rgba(255,255,255,0.9); font-size: 16px; line-height: 1.7; margin-top: 14px; }
.banner .checklist li { color: rgba(255,255,255,0.92); }
.banner .checklist li::before {
    background: rgba(245,201,168,0.22);
    color: var(--peach-soft);
}
.banner .btn { margin-top: 24px; }

/* Scroll-driven reveals — desktop only (mobile sliders scroll on x), reduced-motion safe */
@media (min-width: 769px) {
    @supports (animation-timeline: view()) {
        .gallery__item, .fact, .process__step, .review-card, .tip {
            animation: rise-in 1ms linear both;
            animation-timeline: view();
            animation-range: entry 0% entry 55%;
        }
    }
}
@keyframes rise-in {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
}

@media (max-width: 768px) {
    .tips {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding: 4px 24px 14px;
        margin: 0 -24px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .tips::-webkit-scrollbar { display: none; }
    .tip { flex: 0 0 64%; scroll-snap-align: center; }
    .banner { padding: 60px 0; }
}

.prose { max-width: 760px; margin: 0 auto; }
.prose p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 18px; }
.prose h3 {
    font-family: var(--font-display);
    color: var(--green-deep);
    font-size: 22px;
    font-weight: 700;
    margin: 28px 0 10px;
}

@media (max-width: 768px) {
    .page-hero { padding: 0 0 40px; position: relative; }
    /* Text-only heroes (no image): top breathing room + static breadcrumb so nothing overlaps */
    .page-hero:not(:has(.page-hero__visual)) { padding-top: 28px; }
    .page-hero:not(:has(.page-hero__visual)) .breadcrumbs {
        position: static; margin-bottom: 14px; padding: 0;
        color: rgba(255,255,255,0.7); text-shadow: none;
    }
    /* Breadcrumbs overlaid on top of the image */
    .breadcrumbs {
        position: absolute;
        top: 14px;
        left: 24px;
        right: 24px;
        z-index: 2;
        margin-bottom: 0;
        color: rgba(255,255,255,0.85);
        text-shadow: 0 1px 10px rgba(0,0,0,0.75), 0 0 18px rgba(0,0,0,0.5);
    }
    .breadcrumbs a { color: #fff; }
    .page-hero__grid { grid-template-columns: 1fr; gap: 26px; }
    /* Image first on mobile, full-bleed with rounded bottom (matches home hero) */
    .page-hero__visual {
        order: -1;
        margin: 0 -24px;
        border-radius: 0 0 24px 24px;
        box-shadow: 0 24px 60px -16px rgba(0,0,0,0.55);
    }
    .page-hero h1 { font-size: 30px; }
    .page-hero__offer .now { font-size: 36px; }
    .page-hero__intro { font-size: 14.5px; }
    .page-hero__actions .btn { width: 100%; }
    .split { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--border); }
.trust-strip__row {
    max-width: var(--container);
    margin: 0 auto;
    padding: 26px 24px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.trust-strip__item {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink);
}
.trust-strip__item .ic {
    width: 42px; height: 42px;
    background: var(--cream);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--peach);
    flex-shrink: 0;
}
.trust-strip__item .ic svg { width: 22px; height: 22px; }

/* ============================================
   GALLERY (Before & After)
   ============================================ */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.gallery__item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(11,61,46,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.gallery__item:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(11,61,46,0.12); }
.gallery__img {
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    position: relative;
}
.gallery__img::after {
    content: 'BEFORE & AFTER';
    position: absolute;
    top: 14px; right: 14px;
    background: rgba(11,61,46,0.92);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 4px;
}
.gallery__cap { padding: 18px; text-align: center; font-size: 14px; color: var(--muted); }
.gallery__cap strong { color: var(--green-deep); font-weight: 700; }
.gallery__more { text-align: center; margin-top: 44px; }
.gallery__more-slide,
.slider-more { display: none; }
.section-cta { text-align: center; margin-top: 40px; }
.about__p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 14px; }
/* Doctor bio pages */
.doctor-creds { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 30px; align-self: start; }
.doctor-creds h3 { font-family: var(--font-display); font-size: 18px; color: var(--green-deep); margin: 0 0 4px; }
.doctor-creds h3:not(:first-child) { margin-top: 22px; }
.doctor-creds .checklist { margin-top: 4px; }
.doctor-creds .checklist li em { color: var(--peach-hover); font-style: italic; }
.split--top { align-items: flex-start; }
/* Price tables (cost pages) — semantic table, AI-citable */
.price-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 14px; background: #fff; box-shadow: 0 8px 30px rgba(11,61,46,0.06); }
.price-table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 460px; }
.price-table thead th { background: var(--green-deep); color: #fff; font-weight: 600; font-size: 13px; letter-spacing: 0.4px; text-transform: uppercase; text-align: left; padding: 14px 18px; }
.price-table th, .price-table td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:nth-child(even) { background: var(--cream); }
.price-table td:first-child { font-weight: 600; color: var(--ink); }
.price-table .price-now { color: var(--green-deep); font-weight: 700; white-space: nowrap; }
.price-table .price-mkt { color: var(--muted); white-space: nowrap; }
.price-caption { font-size: 12.5px; color: var(--muted); margin-top: 12px; line-height: 1.5; }
/* Online consultation form card */
.consult-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 32px; box-shadow: 0 20px 50px rgba(11,61,46,0.10); }
.consult-form-card__title { font-family: var(--font-display); font-size: 24px; color: var(--green-deep); margin: 0 0 4px; }
.consult-form-card__sub { color: var(--muted); font-size: 14.5px; line-height: 1.5; margin-bottom: 20px; }
.consult-form-card iframe { width: 100%; border: 0; min-height: 560px; display: block; border-radius: 12px; }
.consult-form-slot { background: var(--cream); border: 1.5px dashed var(--border); border-radius: 14px; padding: 30px 22px; text-align: center; }
.consult-form-slot p { color: var(--muted); font-size: 14.5px; margin-bottom: 14px; }
.consult-form-slot .btn { margin: 6px 5px 0; }
.consult-steps li strong { color: var(--ink); }
.consult-form-card--center { max-width: 640px; margin: 0 auto; }
.consult-steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: 1000px; margin: 0 auto 46px; }
.consult-step { text-align: center; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 22px; }
.consult-step__num { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 50%; background: var(--green-deep); color: var(--peach-soft); font-family: var(--font-display); font-size: 21px; font-weight: 700; margin-bottom: 14px; }
.consult-step h3 { font-family: var(--font-display); font-size: 18px; color: var(--green-deep); margin: 0 0 6px; }
.consult-step p { color: var(--muted); font-size: 14px; line-height: 1.55; }
.financing__partners-label {
    text-align: center;
    color: rgba(255,255,255,0.78);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 48px 0 18px;
}
.financing__partners .pay-later__partner-name { text-transform: none; font-size: 20px; }
/* Mobile: financing partners become a swipeable slider (4+ cards don't fit in a row) */
@media (max-width: 768px) {
    .financing__partners {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-bottom: 10px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .financing__partners::-webkit-scrollbar { display: none; }
    .financing__partners .pay-later__partner {
        flex: 0 0 auto;
        min-width: 158px;
        max-width: none;
        padding: 15px 22px;
        scroll-snap-align: start;
    }
    .financing__partners .pay-later__partner-name { font-size: 21px; }
}
/* 4-up variant (named patient cases on service pages) */
.gallery__grid--four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
    .gallery__grid--four { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   VIDEO STORIES
   ============================================ */
.video-stories__grid {
    display: flex;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
}
.video-card { width: 100%; max-width: 340px; }
.video-card__player {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background-size: cover;
    background-position: center;
    background-color: #0B3D2E;
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 44px rgba(0,0,0,0.4);
    transition: box-shadow 0.3s;
}
.video-card__player:hover { box-shadow: 0 22px 54px rgba(0,0,0,0.55); }
.video-card__player::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.4) 75%, rgba(0,0,0,0.85) 100%);
    pointer-events: none;
}
.video-card__play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 72px; height: 72px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    transition: transform 0.25s, background 0.25s;
    z-index: 2;
}
.video-card__player:hover .video-card__play { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
.video-card__play::after {
    content: '';
    width: 0; height: 0;
    border-left: 22px solid var(--peach);
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    margin-left: 6px;
}
.video-card__caption {
    position: absolute;
    bottom: 22px; left: 22px; right: 22px;
    z-index: 2;
    color: #fff;
    pointer-events: none;
    text-align: left;
}
.video-card__caption-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.video-card__caption-role {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--peach-soft);
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.video-card__player.is-playing { cursor: default; }
.video-card__player.is-playing .video-card__play,
.video-card__player.is-playing .video-card__caption,
.video-card__player.is-playing::before { display: none; }
.video-card__player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============================================
   WHY CHOOSE
   ============================================ */
.why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.why__card {
    background: var(--white);
    padding: 34px 26px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 4px 24px rgba(11,61,46,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.why__card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(11,61,46,0.1); }
.why__icon {
    width: 70px; height: 70px;
    background: var(--green-deep);
    color: var(--peach);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 22px;
}
.why__icon svg { width: 32px; height: 32px; }
.why__card h3 {
    font-family: var(--font-display);
    font-size: 21px;
    color: var(--green-deep);
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}
.why__card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* ============================================
   SERVICES
   ============================================ */
.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.service-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 8px 30px rgba(11,61,46,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 46px rgba(11,61,46,0.18); }
.service-card__bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}
.service-card:hover .service-card__bg { transform: scale(1.06); }
.service-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(11,61,46,0) 30%, rgba(11,61,46,0.5) 65%, rgba(11,61,46,0.92) 100%);
    z-index: 1;
}
.service-card__body { position: relative; z-index: 2; padding: 26px; color: var(--white); }
.service-card__body h3 {
    font-family: var(--font-display);
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 8px;
}
.service-card__body p { font-size: 13.5px; color: rgba(255,255,255,0.85); line-height: 1.5; margin-bottom: 12px; }
.service-card__price {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--peach-soft);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.service-card__price small {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
    margin-right: 4px;
    text-transform: uppercase;
}
.service-card__link {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--peach-soft);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}
.service-card:hover .service-card__link { gap: 10px; }

/* ============================================
   OFFERS (signature packages)
   ============================================ */
.offers__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 880px;
    margin: 0 auto;
}
.offer-card {
    background: linear-gradient(180deg, var(--white) 0%, var(--cream-warm) 100%);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 34px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.offer-card:hover { transform: translateY(-5px); box-shadow: 0 24px 56px -20px rgba(11,61,46,0.2); }
.offer-card--featured { border-color: var(--peach); box-shadow: 0 20px 50px -20px rgba(216,155,122,0.3); }
.offer-card__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: 14px;
}
.offer-card--featured .offer-card__tag { color: var(--peach-hover); }
.offer-card__name {
    font-family: var(--font-display);
    font-size: 27px;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 6px;
}
.offer-card__time { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.offer-card__price {
    font-family: var(--font-display);
    font-size: 58px;
    font-weight: 800;
    color: var(--green-deep);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 8px;
}
.offer-card__price .dollar { font-size: 0.5em; vertical-align: 0.55em; opacity: 0.7; }
.offer-card__finance { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.offer-card__finance strong { color: var(--peach-hover); }
.offer-card__list { text-align: left; margin: 0 0 28px; }
.offer-card__list li {
    position: relative;
    padding: 8px 0 8px 30px;
    font-size: 14px;
    color: var(--ink);
    line-height: 1.45;
}
.offer-card__list li::before {
    content: "✓";
    position: absolute; left: 0; top: 9px;
    width: 19px; height: 19px;
    background: rgba(29,107,82,0.12);
    color: var(--check);
    border-radius: 50%;
    text-align: center;
    line-height: 19px;
    font-size: 11px;
    font-weight: 800;
}
.offer-card .btn { width: 100%; }

/* ============================================
   FINANCING (split banner)
   ============================================ */
.financing__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.financing__amount {
    font-family: var(--font-display);
    font-size: clamp(44px, 6vw, 66px);
    font-weight: 800;
    color: var(--peach);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 12px;
}
.financing__list { margin: 24px 0 32px; }
.financing__list li {
    position: relative;
    padding: 9px 0 9px 32px;
    font-size: 16px;
    color: rgba(255,255,255,0.92);
}
.financing__list li::before {
    content: "✓";
    position: absolute; left: 0; top: 10px;
    width: 22px; height: 22px;
    background: rgba(216,155,122,0.25);
    color: var(--peach-soft);
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    font-size: 12px;
    font-weight: 800;
}
.financing__card {
    background: rgba(255,250,245,0.07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.financing__card-big {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
    margin-bottom: 8px;
}
.financing__card-big sub { font-size: 22px; font-weight: 600; vertical-align: baseline; }
.financing__card p { color: rgba(255,255,255,0.8); font-size: 15px; margin-bottom: 24px; }

/* ============================================
   DOCTORS
   ============================================ */
.doctors__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 920px;
    margin: 0 auto;
}
.doctor {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(11,61,46,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}
.doctor:hover { transform: translateY(-5px); box-shadow: 0 20px 46px rgba(11,61,46,0.13); }
.doctor__photo {
    height: 320px;
    background-size: cover;
    background-position: center top;
    background-color: var(--cream);
}
.doctor__body { padding: 28px; }
.doctor__name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 4px;
}
.doctor__name em { color: var(--peach); font-style: italic; }
.doctor__role {
    color: var(--peach-hover);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.doctor__bio { color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.doctor { display: flex; flex-direction: column; }
.doctor__photo { flex-shrink: 0; }
.doctor__body { display: flex; flex-direction: column; flex: 1 1 auto; }
.doctor__link {
    margin-top: auto;
    align-self: flex-start;
    padding-top: 16px;
    color: var(--peach-hover);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    transition: color 0.2s;
}
.doctor__link:hover { color: var(--peach-deep); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.reviews__head-badge {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: var(--white);
    padding: 16px 26px;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(11,61,46,0.08);
    margin: 0 auto 48px;
}
.reviews__head-badge .num {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 800;
    color: var(--green-deep);
    line-height: 1;
}
.reviews__head-badge .stars { color: var(--gold); font-size: 19px; letter-spacing: 2px; }
.reviews__head-badge p { font-size: 13px; color: var(--muted); margin-top: 3px; }
.reviews__head-badge strong { color: var(--green-deep); }

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: 24px;
}
.review-card {
    background: var(--white);
    padding: 30px 26px;
    border-radius: var(--radius);
    box-shadow: 0 4px 18px rgba(11,61,46,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(11,61,46,0.1); }
.review-card .stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.review-card .text {
    font-size: 14.5px;
    color: var(--ink);
    line-height: 1.65;
    margin-bottom: 20px;
}
.review-card .author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 14px;
    font-size: 13px;
    color: var(--muted);
}
.review-card .author strong { display: block; color: var(--green-deep); font-size: 14px; }
.review-card .badge { font-size: 11px; color: #4285F4; font-weight: 700; }

/* ============================================
   FAQ
   ============================================ */
.faq__list { max-width: 820px; margin: 0 auto; }
.faq__item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(11,61,46,0.04);
    transition: box-shadow 0.2s;
}
.faq__item.open { box-shadow: 0 8px 24px rgba(11,61,46,0.08); }
.faq__q {
    width: 100%;
    text-align: left;
    padding: 18px 22px;
    font-weight: 600;
    color: var(--green-deep);
    font-size: 15.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    line-height: 1.4;
}
.faq__q::after {
    content: "+";
    font-size: 26px;
    color: var(--peach);
    font-weight: 400;
    flex-shrink: 0;
}
.faq__item.open .faq__q::after { content: "−"; }
.faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 26px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}
.faq__item.open .faq__a { max-height: 400px; padding: 0 26px 24px; }

/* ============================================
   VISIT / LOCATION
   ============================================ */
.visit__inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: stretch;
}
.visit__info { display: flex; flex-direction: column; justify-content: center; }
.visit__details { margin: 28px 0 32px; }
.visit__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.visit__detail .ic {
    width: 44px; height: 44px;
    background: var(--cream);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--peach);
    flex-shrink: 0;
}
.visit__detail .ic svg { width: 20px; height: 20px; }
.visit__detail h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 4px; font-weight: 700; }
.visit__detail p { color: var(--ink); font-size: 16px; font-weight: 600; }
.visit__detail a:hover { color: var(--peach-hover); }
.visit__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 44px rgba(11,61,46,0.14);
    min-height: 420px;
}
.visit__map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='230' height='230' viewBox='0 0 230 230'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.055' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cg transform='translate(24 28) scale(1.5) rotate(-8 12 12)'%3E%3Cpath d='M12 3c-1.4 0-2.2.5-3.5.5C6 3.5 4.8 5 4.8 7.5c0 2.6 1.2 4.3 2.1 7.5.3 1.2.9 2 1.7 2s1.2-.8 1.2-2v-1.2c0-.8.4-1.2 2.2-1.2s2.2.4 2.2 1.2V15c0 1.2.4 2 1.2 2s1.4-.8 1.7-2c.9-3.2 2.1-4.9 2.1-7.5 0-2.5-1.2-4-3.7-4-1.3 0-2.1-.5-3.5-.5z'/%3E%3C/g%3E%3Cg transform='translate(138 124) scale(1.7) rotate(7)'%3E%3Cpath d='M2 4c3 5.5 13 5.5 16 0'/%3E%3Ccircle cx='4.5' cy='0.5' r='1.3'/%3E%3Ccircle cx='15.5' cy='0.5' r='1.3'/%3E%3C/g%3E%3Cpath d='M64 168l1.4 4.4 4.4 1.4-4.4 1.4-1.4 4.4-1.4-4.4-4.4-1.4 4.4-1.4z'/%3E%3Cpath d='M186 48l1 3.2 3.2 1-3.2 1-1 3.2-1-3.2-3.2-1 3.2-1z'/%3E%3C/g%3E%3C/svg%3E") repeat,
        var(--green-deep);
    color: rgba(255,255,255,0.75);
    padding: 64px 0 0;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand .logo { color: var(--white); margin-bottom: 16px; }
.footer__brand .logo em { color: var(--peach); }
.footer__brand .logo small { color: rgba(255,255,255,0.5); }
.footer__brand p { font-size: 14px; line-height: 1.6; max-width: 280px; margin-bottom: 20px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.8);
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.footer__social a:hover { border-color: var(--peach); color: var(--peach); transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__col h4 {
    color: var(--white);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    font-weight: 700;
}
.footer__col ul li { margin-bottom: 11px; }
.footer__col ul a { font-size: 14px; transition: color 0.2s; }
.footer__col ul a:hover { color: var(--peach-soft); }
.footer__contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: 14px; line-height: 1.5; }
.footer__contact-item svg { width: 16px; height: 16px; color: var(--peach); flex-shrink: 0; margin-top: 2px; }
.footer__bottom {
    max-width: var(--container);
    margin: 0 auto;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    flex-wrap: wrap;
}
.footer__bottom a:hover { color: var(--peach-soft); }

/* ============================================
   PROCESS (How It Works)
   ============================================ */
.process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: relative;
}
/* Connecting line between step numbers (boxless timeline) */
.process__grid::before {
    content: '';
    position: absolute;
    top: 29px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: var(--border);
}
.process__step {
    background: transparent;
    padding: 0 14px;
    text-align: center;
}
.process__num { position: relative; z-index: 1; }
.process__num {
    width: 58px; height: 58px;
    background: var(--green-deep);
    color: var(--peach);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 800;
}
.process__step h3 {
    font-family: var(--font-display);
    color: var(--green-deep);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.process__step p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ============================================
   COMPARISON
   ============================================ */
.compare__table {
    max-width: 920px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(11,61,46,0.06);
}
.compare__row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: center;
}
.compare__row:not(:last-child) { border-bottom: 1px solid #EAE6DC; }
.compare__head { background: var(--green-deep); color: #fff; }
.compare__head .compare__cell {
    padding: 20px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.compare__cell { padding: 17px 20px; font-size: 14.5px; }
.compare__cell.feature { font-weight: 600; color: var(--ink); }
.compare__cell.us {
    text-align: center;
    font-weight: 600;
    color: var(--green-deep);
    background: rgba(216,155,122,0.06);
}
.compare__cell.us::before { content: "✓ "; color: var(--check); font-weight: 800; }
.compare__cell.others { text-align: center; color: #8A8A85; }
.compare__cell.others::before { content: "✕ "; color: #C44; font-weight: 700; }
.compare__head .compare__cell.us { background: var(--peach); color: #fff; text-align: center; }
.compare__head .compare__cell.others { background: transparent; color: rgba(255,255,255,0.85); text-align: center; }
.compare__head .compare__cell.us::before,
.compare__head .compare__cell.others::before { display: none; }
.compare__lbl-short { display: none; }

/* ============================================
   GUARANTEE
   ============================================ */
.guarantee__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.guarantee__card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 38px 28px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(11,61,46,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.guarantee__card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(11,61,46,0.1); }
.guarantee__icon {
    width: 64px; height: 64px;
    background: var(--peach);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(216,155,122,0.35);
}
.guarantee__icon svg { width: 28px; height: 28px; }
.guarantee__card h3 {
    font-family: var(--font-display);
    color: var(--green-deep);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}
.guarantee__card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }
/* Glass variant on green sections (landing-style) */
.section--green .guarantee__card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: none;
}
.section--green .guarantee__card:hover { background: rgba(255,255,255,0.09); box-shadow: none; }
.section--green .guarantee__card h3 { color: var(--white); }
.section--green .guarantee__card p { color: rgba(255,255,255,0.85); }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    background: linear-gradient(135deg, var(--peach) 0%, #E2A98B 100%);
    color: #fff;
    text-align: center;
    padding: 88px 24px;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    top: -50%; left: -10%;
    width: 120%; height: 200%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.15) 0%, transparent 50%);
    pointer-events: none;
}
.final-cta > * { position: relative; z-index: 2; }
.final-cta__title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.5vw, 44px);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 16px;
    text-wrap: balance;
}
.final-cta__title em { color: var(--green-deep); font-style: italic; }
.final-cta__sub { font-size: 17px; color: rgba(255,255,255,0.95); margin-bottom: 30px; }
.final-cta__trust { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,0.85); }

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 980px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 560px;
        text-align: center;
    }
    .hero__body { align-items: center; }
    .hero__actions { justify-content: center; }
    .why__grid, .services__grid, .process__grid { grid-template-columns: repeat(2, 1fr); }
    .process__grid::before { display: none; }
    .guarantee__grid { grid-template-columns: repeat(3, 1fr); }
    .financing__inner, .visit__inner { grid-template-columns: 1fr; gap: 36px; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    /* Tighter sticky header on mobile (white band was too tall) */
    :root { --header-h: 60px; }
    .logo__img { height: 38px; }
    /* Solid header on mobile: backdrop-filter would trap the fixed drawer */
    .header {
        background: var(--white);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .section { padding: 54px 0; }
    .topbar { font-size: 12.5px; }
    .topbar__inner { padding: 7px 24px; }
    .topbar__item--address { display: none; }

    /* Mobile nav — full-screen side drawer */
    .nav-toggle { display: flex; }
    .nav {
        position: fixed;
        inset: 0;
        z-index: var(--z-overlay);
        flex-direction: column;
        align-items: stretch;
        padding: 0 24px calc(22px + env(safe-area-inset-bottom));
        background:
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='230' height='230' viewBox='0 0 230 230'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.055' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cg transform='translate(24 28) scale(1.5) rotate(-8 12 12)'%3E%3Cpath d='M12 3c-1.4 0-2.2.5-3.5.5C6 3.5 4.8 5 4.8 7.5c0 2.6 1.2 4.3 2.1 7.5.3 1.2.9 2 1.7 2s1.2-.8 1.2-2v-1.2c0-.8.4-1.2 2.2-1.2s2.2.4 2.2 1.2V15c0 1.2.4 2 1.2 2s1.4-.8 1.7-2c.9-3.2 2.1-4.9 2.1-7.5 0-2.5-1.2-4-3.7-4-1.3 0-2.1-.5-3.5-.5z'/%3E%3C/g%3E%3Cg transform='translate(138 124) scale(1.7) rotate(7)'%3E%3Cpath d='M2 4c3 5.5 13 5.5 16 0'/%3E%3Ccircle cx='4.5' cy='0.5' r='1.3'/%3E%3Ccircle cx='15.5' cy='0.5' r='1.3'/%3E%3C/g%3E%3Cpath d='M64 168l1.4 4.4 4.4 1.4-4.4 1.4-1.4 4.4-1.4-4.4-4.4-1.4 4.4-1.4z'/%3E%3Cpath d='M186 48l1 3.2 3.2 1-3.2 1-1 3.2-1-3.2-3.2-1 3.2-1z'/%3E%3C/g%3E%3C/svg%3E") repeat,
            radial-gradient(ellipse 80% 50% at 85% 0%, rgba(216,155,122,0.16) 0%, transparent 55%),
            linear-gradient(160deg, #0B3D2E 0%, #14523F 55%, #0B3D2E 100%);
        transform: translateX(100%);
        transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
        overflow-y: auto;
    }
    .nav.is-open { transform: translateX(0); }

    .nav__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 0 10px;
    }
    .nav__head-logo { height: 42px; width: auto; }
    .nav__close {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255,255,255,0.28);
        border-radius: 50%;
        color: #fff;
    }
    .nav__close svg { width: 18px; height: 18px; }

    .nav__links { display: block; flex: 1; padding-top: 10px; }
    .nav__link {
        display: block;
        font-family: var(--font-display);
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        padding: 11px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        letter-spacing: -0.2px;
    }
    .nav__link::after { display: none; }
    .nav__link.is-active { color: var(--peach-soft); font-style: italic; }
    /* Dropdowns in the drawer: collapsible accordion (tap parent to expand) */
    .nav__item { display: block; }
    .nav__item::after { display: none; }
    .nav__link--parent { display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
    .nav__chevron { display: block; width: 16px; height: 16px; opacity: 0.8; transition: transform 0.25s; }
    .nav__item.is-expanded .nav__chevron { transform: rotate(180deg); }
    .nav__dropdown {
        position: static; opacity: 1; visibility: visible; transform: none;
        background: transparent; border: none; box-shadow: none;
        min-width: 0;
        display: none;
        padding: 0 0 0 16px;
    }
    .nav__item.is-expanded .nav__dropdown { display: block; padding: 2px 0 10px 16px; }
    /* Touch devices fire :hover on tap. The desktop rule `.nav__item:hover .nav__dropdown`
       (specificity 0,3,0) was beating the mobile `.nav__dropdown` rule and applying
       `transform: translateX(-50%)`, shoving the submenu off-screen to the left. Cancel all
       desktop hover transforms inside the drawer so the accordion stays in-flow. */
    .nav__item:hover .nav__dropdown { transform: none; opacity: 1; visibility: visible; }
    .nav__item:hover .nav__chevron { transform: none; }
    .nav__item.is-expanded:hover .nav__chevron { transform: rotate(180deg); }
    .nav__dropdown a {
        display: block;
        color: rgba(255,255,255,0.78);
        font-size: 15px; font-weight: 600;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .nav__dropdown a.is-current { color: var(--peach-soft); }

    /* Staggered entrance */
    .nav.is-open .nav__link {
        animation: nav-fade 0.45s cubic-bezier(0.16, 1, 0.3, 1) backwards;
    }
    .nav.is-open .nav__link:nth-child(1) { animation-delay: 0.10s; }
    .nav.is-open .nav__link:nth-child(2) { animation-delay: 0.15s; }
    .nav.is-open .nav__link:nth-child(3) { animation-delay: 0.20s; }
    .nav.is-open .nav__link:nth-child(4) { animation-delay: 0.25s; }
    .nav.is-open .nav__link:nth-child(5) { animation-delay: 0.30s; }
    .nav.is-open .nav__link:nth-child(6) { animation-delay: 0.35s; }

    /* Drawer footer — quick actions */
    .nav__footer { display: block; padding-top: 22px; }
    .nav__call {
        display: flex;
        align-items: center;
        gap: 13px;
        background: rgba(255,250,245,0.08);
        border: 1px solid rgba(255,255,255,0.16);
        border-radius: 16px;
        padding: 12px 16px;
        margin-bottom: 12px;
        color: #fff;
    }
    .nav__call:active { background: rgba(255,250,245,0.14); }
    .nav__call-ic {
        width: 40px;
        height: 40px;
        background: var(--peach);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        flex-shrink: 0;
    }
    .nav__call-ic svg { width: 18px; height: 18px; }
    .nav__call-txt {
        display: flex;
        flex-direction: column;
        font-weight: 700;
        font-size: 16px;
        line-height: 1.2;
    }
    .nav__call-txt small {
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--peach-soft);
        font-weight: 600;
        margin-bottom: 3px;
    }
    .nav__book { width: 100%; margin-bottom: 18px; }
    .nav__social { display: flex; gap: 12px; margin-bottom: 16px; }
    .nav__social svg { width: 38px; height: 38px; display: block; }
    .nav__social a:active { transform: scale(0.93); }
    .nav__meta { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.65; }

    .header__cta .btn--primary { display: none; }
    .header__cta { gap: 10px; }
    .header__ig {
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s;
    }
    .header__ig svg { width: 36px; height: 36px; display: block; }
    .header__ig:active { transform: scale(0.93); }

    /* ---- MOBILE TYPE SCALE (smaller) ---- */
    .section-title { font-size: 27px; letter-spacing: -0.6px; }
    .section-head { margin-bottom: 28px; }
    .section-head .section-sub { font-size: 15px; }
    .eyebrow { font-size: 11px; letter-spacing: 2.5px; }

    /* ---- BUTTONS — smaller across the board on mobile ---- */
    .btn { padding: 13px 24px; font-size: 14px; }
    .btn--lg { padding: 14px 28px; font-size: 14px; }

    /* ---- TRUST STRIP — 2x2 grid like the landing ---- */
    .trust-strip__row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px 12px;
        padding: 18px 16px;
    }
    .trust-strip__item { font-size: 12.5px; gap: 8px; }
    .trust-strip__item .ic { width: 36px; height: 36px; }
    .trust-strip__item .ic svg { width: 20px; height: 20px; }

    /* ---- MOBILE HERO — landing style: overlay title + overlapping pricing card ---- */
    .hero__inner {
        display: flex;
        flex-direction: column;
        padding: 0 18px 24px;
        gap: 0;
    }
    .hero__visual {
        margin: 0 -18px;
        width: auto;
        border-radius: 0 0 24px 24px;
        box-shadow: 0 24px 60px -16px rgba(0,0,0,0.55);
    }
    .hero__overlay { padding: 28px 22px; }
    .hero__title {
        font-size: 32px;
        letter-spacing: -0.8px;
        line-height: 1.1;
        text-shadow:
            0 0 20px rgba(0,0,0,0.85),
            0 0 40px rgba(0,0,0,0.65),
            0 0 60px rgba(0,0,0,0.4),
            0 2px 6px rgba(0,0,0,0.8);
    }
    .hero__lead { font-size: 14px; }

    /* Champagne pricing card overlaps the image */
    .hero__pricing {
        max-width: 340px;
        width: calc(100% - 16px);
        margin: -54px auto 0;
        position: relative;
        z-index: 5;
        padding: 18px 26px 20px;
    }
    .hero__pricing-tag { font-size: 9px; letter-spacing: 2.5px; }
    .hero__pricing-title { font-size: 22px; margin-bottom: 10px; }
    .hero__pricing-row { gap: 12px; margin-bottom: 4px; }
    .hero__pricing-price { font-size: 42px; letter-spacing: -1.2px; }
    .hero__pricing-original { font-size: 15px; }
    .hero__pricing-divider { width: 32px; margin: 14px auto 12px; }
    .hero__pricing-label { font-size: 9px; }
    .hero__pricing-items { font-size: 13px; line-height: 1.3; }

    .hero__body {
        padding: 26px 4px 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero__h2 { font-size: 23px; margin-bottom: 12px; }
    .hero__sub { font-size: 14.5px; margin-bottom: 22px; }
    .hero__actions { width: 100%; flex-direction: column; gap: 10px; margin-bottom: 20px; }
    /* Compact buttons on mobile — were too tall */
    .hero__actions .btn { width: 100%; padding: 14px 24px; font-size: 14px; }
    .hero__rating { font-size: 12px; padding: 9px 15px; gap: 8px; }

    /* ---- MOBILE SLIDERS (matches landing pattern) ---- */
    .gallery__grid,
    .why__grid,
    .services__grid,
    .process__grid,
    .guarantee__grid,
    .offers__grid,
    .reviews__grid,
    .doctors__grid {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 14px;
        padding: 4px 24px 18px;
        margin: 0 -24px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        max-width: none;
    }
    .gallery__grid::-webkit-scrollbar,
    .why__grid::-webkit-scrollbar,
    .services__grid::-webkit-scrollbar,
    .process__grid::-webkit-scrollbar,
    .guarantee__grid::-webkit-scrollbar,
    .offers__grid::-webkit-scrollbar,
    .reviews__grid::-webkit-scrollbar,
    .doctors__grid::-webkit-scrollbar { display: none; }

    .gallery__item { flex: 0 0 84%; scroll-snap-align: center; }
    .gallery__more,
    .section-cta { display: none; }
    .gallery__more-slide,
    .slider-more {
        display: flex;
        flex: 0 0 60%;
        scroll-snap-align: center;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        text-align: center;
        background: var(--white);
        border: 1.5px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 24px 18px;
    }
    .gallery__more-arrow,
    .slider-more__icon {
        width: 58px;
        height: 58px;
        border-radius: 50%;
        background: var(--peach);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 12px 26px -8px rgba(216,155,122,0.6);
    }
    .gallery__more-arrow svg,
    .slider-more__icon svg { width: 26px; height: 26px; }
    .gallery__more-text,
    .slider-more__text {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 17px;
        color: var(--green-deep);
        max-width: 150px;
        line-height: 1.25;
    }
    .why__card { flex: 0 0 80%; scroll-snap-align: center; }
    .service-card { flex: 0 0 80%; scroll-snap-align: center; min-height: 300px; }
    /* Process steps regain the card look inside the mobile slider */
    .process__step {
        flex: 0 0 80%;
        scroll-snap-align: center;
        background: var(--white);
        border-radius: var(--radius);
        box-shadow: 0 4px 24px rgba(11,61,46,0.05);
        padding: 32px 24px;
    }
    .guarantee__card { flex: 0 0 80%; scroll-snap-align: center; }
    .offer-card { flex: 0 0 86%; scroll-snap-align: center; }
    .review-card { flex: 0 0 86%; scroll-snap-align: center; }

    /* Offer cards — compact on mobile */
    .offer-card { padding: 26px 22px 24px; }
    .offer-card__tag { font-size: 10px; margin-bottom: 10px; }
    .offer-card__name { font-size: 21px; }
    .offer-card__time { font-size: 13px; margin-bottom: 16px; }
    .offer-card__price { font-size: 42px; letter-spacing: -1.5px; }
    .offer-card__finance { font-size: 13px; margin-bottom: 18px; }
    .offer-card__list { margin-bottom: 20px; }
    .offer-card__list li { font-size: 13.5px; padding: 5px 0 5px 28px; }
    .offer-card__list li::before { top: 6px; width: 18px; height: 18px; line-height: 18px; font-size: 10px; }
    .offer-card .btn { padding: 13px 22px; font-size: 13.5px; }

    /* Comparison table — compact on mobile */
    .compare__cell { padding: 13px 10px; font-size: 12.5px; }
    .compare__head .compare__cell { padding: 14px 10px; font-size: 11.5px; letter-spacing: 0.3px; }
    .compare__lbl-full { display: none; }
    .compare__lbl-short { display: inline; }

    /* Doctors become a compact swipeable slider on mobile */
    .doctor { flex: 0 0 85%; scroll-snap-align: center; }
    .doctor__photo { height: 240px; }
    .doctor__body { padding: 22px 20px; }
    .doctor__name { font-size: 20px; margin-bottom: 3px; }
    .doctor__role { font-size: 12px; margin-bottom: 12px; }
    .doctor__bio { font-size: 13.5px; line-height: 1.55; }
    .doctor__link { font-size: 13.5px; padding-top: 14px; }
    .about__p { font-size: 14.5px; line-height: 1.6; margin-bottom: 12px; }
    .consult-steps-row {
        display: flex;
        grid-template-columns: none;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        max-width: none;
        margin: 0 -18px 30px;
        padding: 0 18px;
    }
    .consult-steps-row::-webkit-scrollbar { display: none; }
    .consult-step { flex: 0 0 80%; scroll-snap-align: center; }
    /* Wider form on mobile: trim card padding + slight breakout so the GHL form isn't cramped */
    .consult-form-card { margin: 0 -10px; padding: 18px 8px; }
    .consult-form-card__title { font-size: 21px; padding: 0 6px; }
    .consult-form-card__sub { padding: 0 6px; }
    .consult-form-card iframe { border-radius: 8px; }
    #about .split__img img { height: 180px; object-fit: cover; }
    #about .checklist { margin-top: 14px; }
    #about .checklist li { padding: 5px 0 5px 30px; font-size: 14px; }

    /* Visit Us — card treatment on mobile */
    .visit__info { text-align: center; }
    .visit__details {
        background: var(--cream);
        border-radius: var(--radius-lg);
        padding: 6px 20px;
        margin: 24px 0 20px;
        text-align: left;
    }
    .visit__detail { padding: 14px 0; align-items: center; }
    .visit__detail:last-child { border-bottom: none; }
    .visit__detail .ic { background: var(--white); width: 40px; height: 40px; }
    .visit__detail .ic svg { width: 18px; height: 18px; }
    .visit__detail h4 { font-size: 11px; margin-bottom: 2px; }
    .visit__detail p { font-size: 14.5px; }
    .visit__info .btn { width: 100%; }
    .visit__map { min-height: 0; height: 260px; }

    /* FAQ — compact on mobile */
    .faq__q { padding: 15px 18px; font-size: 14.5px; gap: 10px; }
    .faq__q::after { font-size: 22px; }
    .faq__a { font-size: 14px; padding: 0 18px; line-height: 1.6; }
    .faq__item.open .faq__a { padding: 0 18px 18px; }
    .faq__item { margin-bottom: 8px; }

    /* Financing — compact on mobile: hide the 0% APR card (redundant with the list) */
    .financing__inner { gap: 0; }
    .financing__card { display: none; }
    .financing__amount { font-size: 34px; letter-spacing: -1px; margin-bottom: 4px; }
    .financing__list { margin: 14px 0 22px; }
    .financing__list li { font-size: 14px; padding: 6px 0 6px 30px; }
    .financing__list li::before { top: 7px; width: 20px; height: 20px; line-height: 20px; font-size: 11px; }
    .financing__content .btn { padding: 14px 28px; font-size: 14px; }

    /* Footer — compact: brand full-width, link columns side by side */
    .footer { padding: 44px 0 0; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 26px 18px; padding-bottom: 30px; text-align: left; }
    .footer__brand { grid-column: 1 / -1; }
    .footer__brand p { max-width: none; font-size: 13.5px; margin-bottom: 16px; }
    .logo__img--footer { height: 44px; margin-bottom: 12px; }
    .footer__social a { width: 36px; height: 36px; }
    .footer__col h4 { font-size: 12px; margin-bottom: 12px; letter-spacing: 1.2px; }
    .footer__col ul li { margin-bottom: 8px; }
    .footer__col ul a { font-size: 13.5px; }
    .footer__col:last-child { grid-column: 1 / -1; }
    .footer__contact-item { font-size: 13px; margin-bottom: 9px; }
    .footer__bottom { flex-direction: column; gap: 6px; text-align: center; padding: 16px 24px; font-size: 12px; }
}

@media (max-width: 420px) {
    .topbar__contact { gap: 14px; }
    .hero__title { font-size: 30px; }
    .hero__lead { font-size: 15px; }
    .offer-card__price { font-size: 38px; }
}

@keyframes nav-fade {
    from { opacity: 0; transform: translateX(28px); }
    to { opacity: 1; transform: none; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
    html { scroll-behavior: auto; }
}

/* ============================================
   MOBILE COMPACT OVERRIDES (landing parity)
   ============================================ */
.review-card__toggle { display: none !important; }
.review-card__more { display: none; }

@media (max-width: 768px) {
    .section { padding: 38px 0; }
    .section-title { font-size: 26px; }
    .section-head { margin-bottom: 18px; }
    .section-head .section-sub { font-size: 14.5px; margin-top: 8px; }

    .btn { padding: 13px 24px; font-size: 12.5px; }
    .btn--lg { padding: 13px 26px; font-size: 12.5px; }

    .gallery__item { flex-basis: 72%; }
    .why__card, .process__step, .guarantee__card { flex-basis: 74%; padding: 22px 20px; }
    .review-card, .offer-card { flex-basis: 80%; }
    .tip { flex-basis: 62%; }

    .why__icon, .guarantee__icon { width: 52px; height: 52px; margin-bottom: 14px; }
    .why__icon svg { width: 24px; height: 24px; }
    .guarantee__icon svg { width: 22px; height: 22px; }
    .process__num { width: 48px; height: 48px; font-size: 20px; margin-bottom: 14px; }
    .why__card h3, .guarantee__card h3, .process__step h3 { font-size: 16.5px; margin-bottom: 8px; }
    .why__card p, .guarantee__card p, .process__step p { font-size: 13.5px; }

    .checklist li { font-size: 14px; padding: 6px 0 6px 30px; }
    .checklist li::before { top: 7px; }
    .prose p { font-size: 14.5px; margin-bottom: 14px; }
    .prose h3 { font-size: 19px; margin: 22px 0 8px; }

    .toc { margin-bottom: 24px; }
    .facts { margin-top: 22px; }
    .page-hero { padding-bottom: 34px; }
    .split { gap: 22px; }
    .banner { padding: 48px 0; }

    .reviews__head-badge { padding: 12px 20px; gap: 14px; margin-bottom: 8px; }
    .reviews__head-badge .num { font-size: 36px; }

    .review-card { padding: 24px 20px; }
    .review-card .text {
        font-size: 13.5px;
        display: -webkit-box;
        -webkit-line-clamp: 7;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 14px;
    }
    .review-card__toggle:checked ~ .text {
        display: block;
        -webkit-line-clamp: unset;
        overflow: visible;
    }
    .review-card__more {
        display: block;
        color: var(--peach-hover);
        font-weight: 700;
        font-size: 12.5px;
        cursor: pointer;
        margin: -4px 0 14px;
        user-select: none;
    }
    .review-card__more::after { content: "Show more"; }
    .review-card__toggle:checked ~ .review-card__more::after { content: "Show less"; }

    .pay-later__amount { font-size: 34px; margin-top: 6px; }
    .final-cta { padding: 46px 24px; }
    .final-cta__sub { font-size: 14.5px; margin-bottom: 20px; }
    .logo__img--footer { height: 40px; }
}

/* ============================================
   DENTURES PAGE COMPONENTS (v24)
   ============================================ */
.container--narrow { max-width: 860px; }
.link-arrow { display: inline-block; color: var(--peach-hover); font-weight: 700; font-size: 14.5px; text-decoration: none; transition: color .2s; }
.link-arrow:hover { color: var(--peach-deep); }
.mini-h { font-family: var(--font-display); font-size: 19px; color: var(--green-deep); margin: 0 0 12px; }

/* Quick answer callout */
.quick-answer { background: var(--cream); border-left: 4px solid var(--peach); border-radius: 12px; padding: 24px 26px; }
.quick-answer__k { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--peach-deep); margin: 0 0 8px; }
.quick-answer__t { font-size: 17px; line-height: 1.7; color: var(--ink); margin: 0; }
.quick-answer__t strong { color: var(--green-deep); }

/* Option cards */
.opt-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.opt-card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 22px; display: flex; flex-direction: column; }
.opt-card--feature { border-color: var(--peach); box-shadow: 0 14px 40px rgba(216,155,122,.18); }
.opt-card__flag { position: absolute; top: -11px; left: 22px; background: var(--peach); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; }
.opt-card h3 { font-family: var(--font-display); font-size: 19px; color: var(--green-deep); margin: 0 0 6px; }
.opt-card__for { font-size: 13px; color: var(--muted); margin: 0 0 14px; min-height: 34px; }
.opt-card__price { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--green-deep); margin: 0 0 12px; }
.opt-card__price small { font-size: 13px; font-weight: 600; color: var(--muted); }
.opt-card__desc { font-size: 13.5px; line-height: 1.55; color: var(--ink); margin: 0; }

/* Decision helper */
.decider { margin-top: 34px; background: var(--green-deep); border-radius: var(--radius-lg); padding: 30px 26px; text-align: center; }
.decider__q { color: #fff; font-family: var(--font-display); font-size: 20px; margin: 0 0 18px; }
.decider__opts { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.decider__btn { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.25); color: #fff; font-size: 14px; font-weight: 600; padding: 11px 18px; border-radius: 30px; cursor: pointer; transition: all .2s; }
.decider__btn:hover { background: rgba(255,255,255,.16); }
.decider__btn.is-on { background: var(--peach); border-color: var(--peach); color: #fff; }
.decider__result { margin-top: 22px; background: rgba(255,255,255,.07); border-radius: 12px; padding: 20px; }
.decider__rec { color: #fff; font-family: var(--font-display); font-size: 19px; margin: 0 0 6px; }
.decider__note { color: rgba(255,255,255,.8); font-size: 14.5px; line-height: 1.6; margin: 0; }

/* Comparison matrix */
.matrix-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 14px; background: #fff; box-shadow: 0 8px 30px rgba(11,61,46,.06); }
.matrix { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 14px; }
.matrix thead th { background: var(--green-deep); color: #fff; font-size: 13px; font-weight: 600; padding: 14px 14px; text-align: center; }
.matrix thead th.matrix__hot { background: var(--peach); }
.matrix th:first-child, .matrix td:first-child { text-align: left; }
.matrix td { padding: 13px 14px; text-align: center; border-bottom: 1px solid var(--border); color: var(--ink); }
.matrix tbody tr:last-child td { border-bottom: none; }
.matrix tbody td:first-child { font-weight: 600; color: var(--green-deep); background: var(--cream); }
.matrix td.matrix__hot { background: rgba(216,155,122,.1); font-weight: 600; color: var(--peach-deep); }
.matrix__foot { text-align: center; font-size: 14px; color: var(--muted); margin-top: 16px; }
.matrix__foot a { color: var(--peach-hover); font-weight: 600; text-decoration: none; }

/* Cost calculator */
.calc { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 26px; box-shadow: 0 12px 40px rgba(11,61,46,.07); }
.calc__field { margin-bottom: 20px; }
.calc__field > label { display: block; font-size: 13px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.calc__opts { display: flex; flex-wrap: wrap; gap: 8px; }
.calc__opt { background: var(--cream); border: 1px solid var(--border); color: var(--ink); font-size: 14px; font-weight: 600; padding: 10px 16px; border-radius: 30px; cursor: pointer; transition: all .2s; }
.calc__opt:hover { border-color: var(--peach); }
.calc__opt.is-on { background: var(--green-deep); border-color: var(--green-deep); color: #fff; }
.calc__out { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; background: var(--cream); border-radius: 12px; padding: 20px 22px; margin: 6px 0 14px; }
.calc__range-lbl, .calc__mo-lbl { display: block; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .4px; }
.calc__range-val { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--green-deep); }
.calc__mo { text-align: right; }
.calc__mo-val { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--peach-deep); }
.calc__disclaimer { font-size: 12.5px; line-height: 1.55; color: var(--muted); margin: 0 0 18px; }

/* 10-year TCO chart */
.tco { display: flex; align-items: flex-end; justify-content: center; gap: 22px; height: 260px; max-width: 560px; margin: 0 auto; }
.tco__bar { flex: 1; max-width: 150px; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; }
.tco__fill { width: 100%; border-radius: 12px 12px 0 0; background: rgba(255,255,255,.22); display: flex; align-items: flex-start; justify-content: center; padding-top: 12px; }
.tco__fill--mid { background: rgba(229,185,160,.55); }
.tco__fill--hi { background: var(--peach); }
.tco__val { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #fff; }
.tco__lbl { color: rgba(255,255,255,.9); font-size: 13px; font-weight: 600; text-align: center; margin-top: 12px; line-height: 1.35; }
.tco__lbl small { display: block; font-weight: 400; color: rgba(255,255,255,.65); font-size: 11.5px; }
.tco__note { color: rgba(255,255,255,.85); font-size: 14.5px; line-height: 1.65; text-align: center; max-width: 620px; margin: 26px auto 0; }

/* First 90 days timeline */
.tl90 { list-style: none; margin: 0 auto; padding: 0; max-width: 680px; }
.tl90__step { display: flex; gap: 18px; padding: 0 0 26px 0; position: relative; }
.tl90__step:not(:last-child)::before { content: ""; position: absolute; left: 49px; top: 30px; bottom: 0; width: 2px; background: var(--border); }
.tl90__when { flex: 0 0 100px; font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--peach-deep); padding-top: 4px; }
.tl90__body { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; font-size: 14.5px; line-height: 1.6; color: var(--ink); flex: 1; }
.tl90__body strong { color: var(--green-deep); }

@media (max-width: 980px) {
  .opt-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .opt-grid {
    display: flex; grid-template-columns: none;
    overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px;
    margin: 0 -20px; padding: 14px 20px 6px;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .opt-grid::-webkit-scrollbar { display: none; }
  .opt-grid > .opt-card { flex: 0 0 84%; scroll-snap-align: center; }
  .opt-card__for { min-height: 0; }
  .quick-answer { padding: 20px; }
  .quick-answer__t { font-size: 15.5px; }
  .calc__out { flex-direction: column; align-items: flex-start; gap: 12px; }
  .calc__mo { text-align: left; }
  .tco { gap: 12px; height: 230px; }
  .tco__val { font-size: 15px; }
  .tco__lbl { font-size: 12px; }
  .tl90__step { flex-direction: column; gap: 6px; }
  .tl90__step::before { display: none !important; }
  .tl90__when { flex: none; }
  .decider__btn { font-size: 13px; padding: 10px 14px; }
}

/* Matrix: pin the row-label column so it stays visible during horizontal scroll (mobile) */
.matrix th:first-child, .matrix td:first-child { position: sticky; left: 0; z-index: 1; box-shadow: 1px 0 0 var(--border); }
.matrix thead th:first-child { z-index: 2; }

/* Denture type cards: image header */
.opt-card__img { margin: -26px -22px 16px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden; }
.opt-card__img img { width: 100%; height: 150px; object-fit: cover; display: block; }
.opt-card__flag { z-index: 2; }

/* Advances ladder */
.adv { list-style: none; margin: 0 auto 30px; padding: 0; max-width: 760px; }
.adv__row { display: flex; gap: 16px; align-items: flex-start; padding: 15px 18px; border: 1px solid var(--border); border-radius: 12px; background: #fff; margin-bottom: 10px; }
.adv__row--mod { border-color: var(--peach); }
.adv__row--top { background: var(--green-deep); border-color: var(--green-deep); }
.adv__row--top .adv__body, .adv__row--top .adv__body strong { color: #fff; }
.adv__tier { flex: 0 0 92px; font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--peach-deep); padding-top: 2px; }
.adv__row--top .adv__tier { color: var(--peach-soft); }
.adv__body { font-size: 14.5px; line-height: 1.6; color: var(--ink); }
.adv__body strong { color: var(--green-deep); }
.adv-hl { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 760px; margin: 0 auto; }
.adv-hl__card { background: var(--cream); border-radius: var(--radius-lg); padding: 24px; border-left: 4px solid var(--peach); }
.adv-hl__card h3 { font-family: var(--font-display); font-size: 18px; color: var(--green-deep); margin: 0 0 8px; }
.adv-hl__card p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }
@media (max-width: 768px) {
  .adv__tier { flex-basis: 78px; }
  .adv-hl { grid-template-columns: 1fr; }
}

/* ============================================
   ROOT CANAL PAGE COMPONENTS (v24)
   ============================================ */
/* 3 signs grid */
.signs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sign-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 22px; }
.sign-card__n { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--peach); color: #fff; font-family: var(--font-display); font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.sign-card h3 { font-family: var(--font-display); font-size: 18px; color: var(--green-deep); margin: 0 0 8px; }
.sign-card p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }

/* Cost stacker */
.stacker { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 26px; box-shadow: 0 12px 40px rgba(11,61,46,.07); }
.stacker__controls { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 24px; }
.stacker__bar { display: flex; height: 46px; border-radius: 10px; overflow: hidden; margin-bottom: 18px; background: var(--cream); }
.stacker__seg { height: 100%; transition: width .35s cubic-bezier(.32,.72,0,1); }
.stacker__seg--rc { background: var(--green-deep); }
.stacker__seg--bu { background: #1D6B52; }
.stacker__seg--cr { background: var(--peach); }
.stacker__rows { list-style: none; margin: 0; padding: 0; }
.stacker__rows li { display: flex; align-items: center; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 15px; color: var(--ink); }
.stacker__rows li b { margin-left: auto; font-family: var(--font-display); color: var(--green-deep); }
.stacker__dot { width: 12px; height: 12px; border-radius: 50%; flex: none; }
.stacker__dot--rc { background: var(--green-deep); }
.stacker__dot--bu { background: #1D6B52; }
.stacker__dot--cr { background: var(--peach); }
.stacker__total { border-bottom: none !important; padding-top: 14px !important; }
.stacker__total span { font-weight: 700; color: var(--green-deep); }
.stacker__total b { font-size: 22px; }

@media (max-width: 768px) {
  .signs-grid { grid-template-columns: 1fr; gap: 14px; }
  .stacker__controls { grid-template-columns: 1fr; gap: 14px; }
  .stacker { padding: 22px 18px; }
}

/* Visual procedure steps (with explanatory images) — reusable across service pages */
.proc { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.proc__step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; }
.proc__img { position: relative; aspect-ratio: 4 / 3; background: var(--cream); }
.proc__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.proc__n { position: absolute; top: 12px; left: 12px; width: 32px; height: 32px; border-radius: 50%; background: var(--green-deep); color: var(--peach-soft); font-family: var(--font-display); font-weight: 700; font-size: 16px; display: flex; align-items: center; justify-content: center; }
.proc__body { padding: 18px 18px 22px; }
.proc__body h3 { font-family: var(--font-display); font-size: 17px; color: var(--green-deep); margin: 0 0 6px; }
.proc__body p { font-size: 13.5px; line-height: 1.55; color: var(--muted); margin: 0; }
@media (max-width: 980px) { .proc { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  /* "How it works" steps become a horizontal swipe slider on mobile (design-system pattern) */
  .proc {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    margin: 0 -20px;
    padding: 0 20px 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .proc::-webkit-scrollbar { display: none; }
  .proc__step { flex: 0 0 84%; scroll-snap-align: center; }
}

/* Two-up image comparison (e.g. tooth-colored vs silver filling) — reusable */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 700px; margin: 0 auto 26px; }
.duo__card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; text-align: center; }
.duo__card--hot { border-color: var(--peach); box-shadow: 0 12px 34px rgba(216,155,122,.16); }
.duo__card img { width: 100%; height: 300px; object-fit: cover; display: block; }
.duo__flag { position: absolute; top: 12px; left: 12px; background: var(--peach); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; }
.duo__card h3 { font-family: var(--font-display); font-size: 17px; color: var(--green-deep); margin: 14px 0 4px; }
.duo__card p { font-size: 13px; line-height: 1.5; color: var(--muted); margin: 0 0 16px; padding: 0 14px; }
@media (max-width: 768px) {
  /* Before/after duo becomes a horizontal swipe slider on mobile (design-system pattern) */
  .duo {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    margin: 0 -20px 24px;
    padding: 0 20px 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .duo::-webkit-scrollbar { display: none; }
  .duo__card { flex: 0 0 84%; scroll-snap-align: center; }
  .duo__card h3 { font-size: 15.5px; }
  .duo__card img { height: 260px; }
}

/* Matrix on mobile: narrow the sticky label column + tighten cells so more data columns are visible while scrolling */
@media (max-width: 768px) {
  .matrix { min-width: 500px; font-size: 12.5px; }
  .matrix thead th, .matrix td { padding: 10px 8px; }
  .matrix th:first-child, .matrix td:first-child { width: 100px; min-width: 100px; max-width: 100px; white-space: normal; line-height: 1.25; }
}

/* Doctors section — reusable trust block on service pages */
.docs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 760px; margin: 0 auto; }
.doc-card { display: flex; gap: 16px; align-items: center; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px 22px; }
.doc-card img { width: 86px; height: 86px; border-radius: 50%; object-fit: cover; flex: none; }
.doc-card__name { font-family: var(--font-display); font-size: 17px; color: var(--green-deep); margin: 0; line-height: 1.2; }
.doc-card__cred { font-size: 13px; color: var(--muted); margin: 3px 0 9px; }
@media (max-width: 768px) { .docs { grid-template-columns: 1fr; gap: 14px; } }

/* ============================================
   BOOKING FORM MODAL (GHL embed)
   ============================================ */
.fm-overlay {
    position: fixed; inset: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: center; padding: 20px;
    background: rgba(11, 61, 46, 0.55);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.fm-overlay.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.fm-dialog {
    position: relative; width: 100%; max-width: 480px; max-height: 92vh;
    display: flex; flex-direction: column;
    background: var(--white); border-radius: 20px; overflow: hidden;
    box-shadow: 0 30px 80px rgba(11, 61, 46, 0.35);
    transform: translateY(18px) scale(0.98);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.fm-overlay.is-open .fm-dialog { transform: none; }
.fm-close {
    position: absolute; top: 12px; right: 12px; z-index: 3;
    width: 38px; height: 38px; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: rgba(11, 61, 46, 0.07); color: var(--green-deep);
    transition: background 0.2s ease;
}
.fm-close:hover { background: rgba(11, 61, 46, 0.15); }
.fm-close svg { width: 20px; height: 20px; }
.fm-head { padding: 26px 28px 14px; text-align: center; flex: none; }
.fm-title { font-family: var(--font-display); color: var(--green-deep); font-size: 1.5rem; line-height: 1.2; margin: 0 0 6px; }
.fm-sub { color: var(--muted); font-size: 0.95rem; line-height: 1.45; margin: 0; }
.fm-body { position: relative; flex: 0 1 auto; overflow-y: auto; -webkit-overflow-scrolling: touch; max-height: min(60vh, 600px); min-height: 200px; }
.fm-body iframe { display: block; width: 100%; height: 432px; border: none; background: var(--white); }
.fm-spinner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.92rem; pointer-events: none; background: var(--white); }
.fm-overlay.is-loaded .fm-spinner { display: none; }
.fm-foot { flex: none; padding: 16px 24px 20px; text-align: center; border-top: 1px solid var(--border); }
.fm-call { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--green-deep); }
.fm-call svg { width: 18px; height: 18px; color: var(--peach); }
.fm-call:hover { color: var(--peach-hover); }
.fm-hours { margin: 5px 0 0; font-size: 0.85rem; color: var(--muted); line-height: 1.45; }
@media (max-width: 560px) {
    .fm-overlay { padding: 0; align-items: flex-end; }
    .fm-dialog { max-width: none; max-height: 94vh; border-radius: 20px 20px 0 0; }
    .fm-head { padding: 22px 20px 10px; }
    .fm-title { font-size: 1.3rem; }
    .fm-body { max-height: min(64vh, 620px); }
}
