:root {
    /* === Premium matte-black palette === */
    --ink: #17181C;
    /* matte black — primary brand neutral */
    --ink-2: #202228;
    /* raised matte black (cards / panels) */
    --forest: #22242B;
    /* repurposed: charcoal so all former green gradients read as matte black */
    --navy: #111E3D;
    /* secondary theme colour — used sparingly */
    --navy-2: #16284C;
    /* lighter navy for gradient depth */
    /* Restrained green accent — kept only as a thin highlight, not a surface colour */
    --lime: #9FBE3C;
    --lime-d: #6F8E25;
    --lime-l: #C2DD6E;
    --steel: #6B7075;
    --steel-l: #A0A4AA;
    /* Neutral light surfaces (previously green-tinted) */
    --paper: #FFFFFF;
    --mist: #F6F7F8;
    --mist-2: #F0F1F3;
    --line: #E7E9ED;
    --card: linear-gradient(180deg, #FFFFFF 0%, #F7F8FA 100%);
    --card-line: #E8EAEF;
    --shadow: 0 22px 60px -26px rgba(18, 20, 26, .42);
    --shadow-sm: 0 12px 34px -18px rgba(18, 20, 26, .30);
    --r: 16px;
    --maxw: 1200px;
    --display: 'Poppins', system-ui, sans-serif;
    --body: 'Plus Jakarta Sans', system-ui, sans-serif;
    --accent: 'Fraunces', Georgia, serif;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--body);
    color: var(--ink);
    background: var(--paper);
    margin: 0;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

h1,
h2,
h3,
h4 {
    font-family: var(--display);
    font-weight: 600;
    line-height: 1.14;
    letter-spacing: -.02em;
    color: var(--ink)
}

p {
    line-height: 1.7;
    color: #4b4f57;
    font-weight: 400
}

a {
    text-decoration: none
}

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

.tdc-container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 20px
}

.eyebrow {
    font-family: var(--display);
    font-weight: 600;
    font-size: .76rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--lime-d);
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: 10px;
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    background: var(--lime);
    border-radius: 2px
}

.accent-italic {
    font-family: var(--accent);
    font-style: italic;
    font-weight: 500
}

.lime-text {
    color: var(--lime-d)
}

.sec-pad {
    padding: clamp(46px, 6vw, 80px) 0
}

.sec-head {
    max-width: 740px;
    margin: 0 auto 38px;
    text-align: center
}

.sec-head h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
    margin: .6rem 0 .7rem;
    font-weight: 600
}

.sec-head p {
    font-size: 1.02rem;
    color: #565b63;
    font-weight: 400
}

/* Buttons — premium matte black primary, green kept as a restrained accent */
.btn-tdc {
    --bg: var(--ink);
    --fg: #fff;
    font-family: var(--display);
    font-weight: 500;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    justify-content: center;
    padding: .85rem 1.55rem;
    border-radius: 50px;
    border: 1.5px solid transparent;
    background: var(--bg);
    color: var(--fg);
    transition: .28s cubic-bezier(.2, .7, .3, 1);
    box-shadow: 0 14px 30px -16px rgba(18, 20, 26, .65);
    cursor: pointer;
    line-height: 1;
    position: relative;
    overflow: hidden
}

.btn-tdc:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px -16px rgba(18, 20, 26, .7);
    color: #fff;
    background: #000
}

.btn-tdc::before {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 55%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .18), transparent);
    transform: skewX(-22deg);
    transition: left .6s ease;
    pointer-events: none
}

.btn-tdc:hover::before {
    left: 140%
}

/* Accent (green) — used sparingly for emphasis */
.btn-accent {
    background: var(--lime);
    color: var(--ink);
    box-shadow: 0 14px 28px -16px rgba(159, 190, 60, .7)
}

.btn-accent:hover {
    background: var(--lime-l);
    color: var(--ink)
}

/* Primary CTAs that sit on dark sections become the green accent so they stand out */
.hero .btn-tdc:not(.btn-outline-light):not(.btn-dark):not(.btn-ghost),
.pitch2-inner .btn-tdc:not(.btn-outline-light):not(.btn-dark):not(.btn-ghost),
.cond-cta .btn-tdc:not(.btn-outline-light):not(.btn-dark):not(.btn-ghost),
.ceramist .btn-tdc:not(.btn-outline-light):not(.btn-dark):not(.btn-ghost),
.rev-aside .btn-tdc:not(.btn-outline-light):not(.btn-dark):not(.btn-ghost),
.appoint .btn-tdc:not(.btn-outline-light):not(.btn-dark):not(.btn-ghost),
.fv-overlay .btn-tdc:not(.btn-outline-light):not(.btn-dark):not(.btn-ghost) {
    background: var(--lime);
    color: var(--ink);
    box-shadow: 0 14px 28px -16px rgba(159, 190, 60, .65)
}

.hero .btn-tdc:not(.btn-outline-light):not(.btn-dark):not(.btn-ghost):hover,
.pitch2-inner .btn-tdc:not(.btn-outline-light):not(.btn-dark):not(.btn-ghost):hover,
.cond-cta .btn-tdc:not(.btn-outline-light):not(.btn-dark):not(.btn-ghost):hover,
.ceramist .btn-tdc:not(.btn-outline-light):not(.btn-dark):not(.btn-ghost):hover,
.rev-aside .btn-tdc:not(.btn-outline-light):not(.btn-dark):not(.btn-ghost):hover,
.appoint .btn-tdc:not(.btn-outline-light):not(.btn-dark):not(.btn-ghost):hover,
.fv-overlay .btn-tdc:not(.btn-outline-light):not(.btn-dark):not(.btn-ghost):hover {
    background: var(--lime-l);
    color: var(--ink)
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: rgba(23, 24, 28, .18);
    box-shadow: none
}

.btn-ghost:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff
}

.btn-dark {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 14px 28px -16px rgba(18, 20, 26, .8)
}

.btn-dark:hover {
    background: #000;
    color: var(--lime-l)
}

.btn-outline-light {
    background: transparent;
    border-color: rgba(255, 255, 255, .45);
    color: #fff;
    box-shadow: none
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--ink);
    border-color: #fff
}

.btn-sm-tdc {
    padding: .6rem 1.05rem;
    font-size: .85rem
}

/* Topbar */
.topbar {
    background: var(--ink);
    color: #cfd6cd;
    font-size: .85rem;
    font-weight: 500
}

.topbar .tdc-container {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem 1.4rem;
    align-items: center;
    justify-content: space-between;
    padding: 9px 20px
}

.topbar a {
    color: #cfd6cd;
    transition: .2s
}

.topbar a:hover {
    color: var(--lime)
}

.topbar .tb-info {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem 1.3rem;
    align-items: center
}

.topbar .tb-info i {
    color: var(--lime);
    margin-right: .4rem
}

.topbar .tb-social {
    display: flex;
    gap: .85rem;
    font-size: .95rem
}

@media(max-width:767px) {
    .topbar .tb-hours {
        display: none
    }
}

/* Navbar */
.navbar-tdc {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: .3s;
    border-bottom: 1px solid var(--line)
}

.navbar-tdc.scrolled {
    box-shadow: 0 10px 30px -18px rgba(22, 33, 27, .3)
}

.navbar-tdc .tdc-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px
}

.brand img {
    height: 52px;
    width: auto
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    list-style: none;
    margin: 0;
    padding: 0
}

.nav-links a {
    font-family: var(--display);
    font-weight: 500;
    font-size: .95rem;
    color: var(--ink);
    position: relative;
    padding: 4px 0
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--lime);
    transition: .28s;
    border-radius: 2px
}

.nav-links a:hover {
    color: var(--lime-d)
}

.nav-links a:hover::after {
    width: 100%
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: .7rem
}

.nav-call {
    font-family: var(--display);
    font-weight: 700;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .98rem
}

.nav-call i {
    color: var(--lime-d)
}

.nav-toggle {
    display: none;
    background: var(--ink);
    color: #fff;
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    font-size: 1.15rem
}

@media(max-width:991px) {

    .nav-links,
    .nav-call {
        display: none
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center
    }
}

.mobile-menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(86vw, 360px);
    background: #fff;
    z-index: 1060;
    transform: translateX(100%);
    transition: .35s cubic-bezier(.2, .7, .3, 1);
    padding: 26px 22px;
    overflow-y: auto;
    box-shadow: -20px 0 60px -20px rgba(0, 0, 0, .4)
}

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

.mobile-menu .mm-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px
}

.mobile-menu .mm-head img {
    height: 42px
}

.mobile-menu a {
    display: block;
    font-family: var(--display);
    font-weight: 500;
    color: var(--ink);
    padding: 13px 0;
    border-bottom: 1px solid var(--line)
}

.mm-close {
    background: var(--mist);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 1.1rem;
    color: var(--ink)
}

.scrim {
    position: fixed;
    inset: 0;
    background: rgba(15, 20, 16, .5);
    z-index: 1055;
    opacity: 0;
    visibility: hidden;
    transition: .3s
}

.scrim.open {
    opacity: 1;
    visibility: visible
}

/* Hero */
.hero {
    position: relative;
    color: #fff;
    overflow: hidden;
    isolation: isolate
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: #141519
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .42;
    transform: scale(1.05);
    animation: heroZoom 16s ease-in-out infinite alternate
}

@keyframes heroZoom {
    to {
        transform: scale(1.14)
    }
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(105deg, rgba(17, 18, 22, .97) 0%, rgba(17, 30, 61, .78) 48%, rgba(17, 18, 22, .40) 100%)
}

.hero .tdc-container {
    padding: 50px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 48px;
    align-items: center
}

.hero h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 600;
    line-height: 56px;
}

.hero h1 .hl {
    color: var(--lime);
    white-space: nowrap
}

.hero .lead-p {
    color: #cfd3da;
    font-size: 1.08rem;
    max-width: 33em;
    margin: 1.1rem 0 1.7rem;
    font-weight: 400
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: rgba(159, 190, 60, .13);
    border: 1px solid rgba(159, 190, 60, .34);
    color: var(--lime-l);
    padding: .5rem 1rem;
    border-radius: 50px;
    font-family: var(--display);
    font-weight: 500;
    font-size: .82rem;
    margin-bottom: 1.2rem
}

.hero-badge .est {
    font-family: var(--accent);
    font-style: italic;
    font-weight: 500
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-bottom: 1.7rem
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem 1.4rem;
    color: #c4c9d1;
    font-weight: 400;
    font-size: .94rem
}

.hero-chips span {
    display: inline-flex;
    align-items: center;
    gap: .5rem
}

.hero-chips i {
    color: var(--lime)
}

.hero-visual {
    position: relative;
    min-height: 380px
}

.hero-visual .v-main {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 40px 70px -30px rgba(0, 0, 0, .7);
    border: 4px solid rgba(255, 255, 255, .1)
}

.hero-visual .v-main img {
    width: 100%;
    height: 420px;
    object-fit: cover
}

.hero-rate {
    position: absolute;
    left: 15px;
    bottom: 15px;
    background: #fff;
    color: var(--ink);
    border-radius: 16px;
    padding: .85rem 1.05rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: .7rem
}

.hero-rate .stars {
    color: #FBBC04;
    font-size: .8rem;
    letter-spacing: 1px
}

.hero-rate b {
    font-family: var(--display);
    font-weight: 600;
    display: block;
    font-size: 1.02rem;
    line-height: 1.1
}

.hero-rate small {
    color: var(--steel);
    font-size: .74rem
}

.hero-pill {
    position: absolute;
    right: -6px;
    top: 18px;
    background: var(--lime);
    color: var(--ink);
    border-radius: 50px;
    padding: .55rem 1rem;
    font-family: var(--display);
    font-weight: 600;
    font-size: .85rem;
    box-shadow: 0 16px 30px -14px rgba(0, 0, 0, .6)
}

@media(max-width:991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .hero-visual {
        min-height: auto;
        max-width: 480px
    }
}

/* Trust marquee */
.trust-strip {
    background: linear-gradient(100deg, var(--mist) 0%, #fff 50%, var(--mist) 100%);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    position: relative
}

.trust-strip::before,
.trust-strip::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 70px;
    z-index: 2;
    pointer-events: none
}

.trust-strip::before {
    left: 0;
    background: linear-gradient(90deg, var(--mist), transparent)
}

.trust-strip::after {
    right: 0;
    background: linear-gradient(270deg, var(--mist), transparent)
}

.marquee {
    display: flex;
    width: max-content;
    animation: marquee 32s linear infinite;
    padding: 14px 0
}

.trust-strip:hover .marquee {
    animation-play-state: paused
}

.marquee .mi {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--display);
    font-weight: 600;
    color: var(--ink);
    font-size: .94rem;
    padding: 0 26px;
    white-space: nowrap
}

.marquee .mi:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    margin-left: 26px
}

.marquee .mi i {
    color: var(--lime-d);
    font-size: 1.05em
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* Pitch banner (separator between services & conditions) */
.pitch2 {
    padding: clamp(34px, 5vw, 60px) 0;
    background: #fff
}

.pitch2-inner {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(120deg, var(--ink) 0%, var(--ink-2) 50%, var(--navy) 100%);
    color: #fff;
    padding: clamp(28px, 4.5vw, 48px);
    display: grid;
    grid-template-columns: 1.25fr .9fr;
    gap: 38px;
    align-items: center;
    box-shadow: var(--shadow)
}

.pitch2-inner::before {
    content: "";
    position: absolute;
    right: -90px;
    top: -90px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(159, 190, 60, .22), transparent 70%)
}

.pitch2-inner::after {
    content: "\f5c9";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: -26px;
    bottom: -44px;
    font-size: 13rem;
    color: rgba(255, 255, 255, .035);
    line-height: 1
}

.p2-left {
    position: relative;
    z-index: 1
}

.p2-left .eyebrow {
    color: var(--lime-l)
}

.p2-left h2 {
    color: #fff;
    font-size: 24px;
    margin: .6rem 0 .75rem;
    line-height: 1.16;
    font-weight: 600
}

.p2-left p {
    color: #c8ccd4;
    margin: 0 0 1.5rem;
    font-size: 1.0rem;
    max-width: 36em
}

.p2-cta {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem
}

.p2-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px
}

.p2-stat {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
    transition: .3s
}

.p2-stat:hover {
    background: rgba(159, 190, 60, .12);
    border-color: rgba(159, 190, 60, .35);
    transform: translateY(-4px)
}

.p2-stat .num {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.9rem;
    color: var(--lime);
    line-height: 1
}

.p2-stat .lbl {
    font-size: .76rem;
    color: #bcc1c9;
    margin-top: .35rem;
    font-weight: 400
}

@media(max-width:767px) {
    .pitch2-inner {
        grid-template-columns: 1fr;
        gap: 26px
    }
}

/* Smile results bento */
.smile-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 172px;
    gap: 14px;
    grid-auto-flow: dense;
    margin-top: 8px
}

@media(max-width:991px) {
    .smile-bento {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 158px
    }
}

@media(max-width:575px) {
    .smile-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px
    }
}

.sb-feature {
    grid-column: span 2;
    grid-row: span 2;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: var(--shadow);
    background: var(--mist);
    user-select: none
}

.sb-wide {
    grid-column: span 2
}

.sb-tile {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ink-2), var(--ink));
    border: 1px solid var(--line);
    cursor: pointer
}

.sb-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .55s
}

.sb-tile:hover img {
    transform: scale(1.08)
}

.sb-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(17, 18, 22, .7));
    opacity: .5;
    transition: .3s
}

.sb-tile:hover::after {
    opacity: .8
}

.sb-tile .rtag {
    position: absolute;
    left: 13px;
    bottom: 12px;
    z-index: 2;
    font-family: var(--display);
    font-weight: 500;
    font-size: .78rem;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: .4rem
}

.sb-tile .rtag i {
    color: var(--lime-l)
}

.sb-feature .ba-img {
    position: absolute;
    inset: 0;
    aspect-ratio: auto
}

.sb-feature .ba-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

/* Services */
.services {
    background: #fff
}

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

@media(max-width:991px) {
    .svc-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:575px) {
    .svc-grid {
        grid-template-columns: 1fr
    }
}

.svc-card {
    background: var(--card);
    border: 1px solid var(--card-line);
    border-radius: var(--r);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: .3s;
    position: relative
}

.svc-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lime), var(--lime-l));
    transform: scaleX(0);
    transform-origin: left;
    transition: .35s;
    z-index: 3
}

.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: transparent
}

.svc-card:hover::after {
    transform: scaleX(1)
}

.svc-media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--forest), var(--ink))
}

.svc-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s
}

.svc-card:hover .svc-media img {
    transform: scale(1.08)
}

.svc-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, .94);
    color: var(--ink);
    font-family: var(--display);
    font-weight: 600;
    font-size: .72rem;
    padding: .32rem .7rem;
    border-radius: 50px
}

.svc-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.svc-body h3 {
    font-size: 1.18rem;
    margin-bottom: .5rem
}

.svc-body p {
    font-size: .93rem;
    margin: 0 0 1.2rem;
    flex: 1
}

.svc-cta {
    font-family: var(--display);
    font-weight: 600;
    font-size: .9rem;
    color: var(--lime-d);
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    transition: .25s;
    margin-top: auto
}

.svc-cta:hover {
    gap: .75rem;
    color: var(--ink)
}

/* Conditions */
.conditions {
    background: linear-gradient(180deg, #F7F8FA 0%, #FFFFFF 60%);
    position: relative
}

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

@media(max-width:767px) {
    .cond-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:479px) {
    .cond-grid {
        grid-template-columns: 1fr
    }
}

.cond-card {
    display: flex;
    gap: 15px;
    align-items: center;
    text-align: left;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px 20px;
    transition: .32s cubic-bezier(.2, .7, .3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm)
}

.cond-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, rgba(159, 190, 60, .08), transparent 65%);
    opacity: 0;
    transition: .3s
}

.cond-card .cond-ic {
    flex: none;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--ink), var(--ink-2));
    color: var(--lime-l);
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    transition: .35s;
    box-shadow: 0 10px 22px -12px rgba(18, 20, 26, .6);
    position: relative;
    z-index: 1
}

.cond-card .ct {
    position: relative;
    z-index: 1
}

.cond-card .ct h3 {
    font-size: 1.0rem;
    margin: 0 0 .18rem;
    font-weight: 600
}

.cond-card .ct p {
    font-size: .82rem;
    margin: 0;
    color: #5f646c;
    line-height: 1.45
}

.cond-card .arr {
    margin-left: auto;
    color: var(--steel-l);
    transition: .3s;
    flex: none;
    font-size: .9rem;
    position: relative;
    z-index: 1
}

.cond-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(159, 190, 60, .45)
}

.cond-card:hover::before {
    opacity: 1
}

.cond-card:hover .cond-ic {
    transform: rotate(-6deg) scale(1.06)
}

.cond-card:hover .arr {
    color: var(--lime-d);
    transform: translateX(5px)
}

.cond-cta {
    margin-top: 28px;
    background: linear-gradient(120deg, var(--ink), var(--navy));
    color: #fff;
    border-radius: 20px;
    padding: 28px 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden
}

.cond-cta::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(159, 190, 60, .18), transparent 70%)
}

.cond-cta .cc-text {
    flex: 1 1 300px;
    position: relative;
    z-index: 1
}

.cond-cta h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: .25rem;
    font-weight: 600
}

.cond-cta p {
    color: #c8ccd4;
    margin: 0;
    font-size: .94rem
}

.cond-cta .cc-btns {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1
}

@media(max-width:575px) {
    .cond-cta {
        text-align: center
    }

    .cond-cta .cc-btns {
        justify-content: center;
        width: 100%
    }
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 54px;
    align-items: center
}

.about-media {
    position: relative
}

.about-media .am-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 5px solid #fff
}

.about-media .am-main img {
    width: 100%;
    height: 470px;
    object-fit: cover
}

.about-media .am-seal {
    position: absolute;
    right: -10px;
    bottom: -18px;
    background: var(--ink);
    color: #fff;
    border-radius: 20px;
    padding: 18px 22px;
    text-align: center;
    box-shadow: var(--shadow);
    min-width: 140px
}

.about-media .am-seal .y {
    font-family: var(--display);
    font-weight: 800;
    font-size: 2rem;
    color: var(--lime);
    line-height: 1
}

.about-media .am-seal small {
    font-family: var(--accent);
    font-style: italic;
    color: #cfd6cd;
    font-size: .82rem
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 1.8rem;
    display: grid;
    gap: .85rem
}

.check-list li {
    display: flex;
    gap: .8rem;
    align-items: flex-start;
    font-weight: 500;
    color: #2f3a31
}

.check-list i {
    color: var(--lime-d);
    background: var(--mist);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: .78rem;
    flex: none;
    margin-top: 2px
}

@media(max-width:991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px
    }

    .about-media {
        max-width: 520px
    }
}

/* Doctors */
.docs {
    background: var(--mist)
}

.doc-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px
}

@media(max-width:991px) {
    .doc-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:575px) {
    .doc-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

.doc-card {
    display: block;
    background: #fff;
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: .3s;
    color: inherit
}

.doc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(17, 30, 61, .18)
}

.doc-photo {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ink-2), var(--ink))
}

.doc-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s
}

.doc-card:hover .doc-photo img {
    transform: scale(1.06)
}

.doc-info {
    padding: 16px 16px 20px;
    text-align: center
}

.doc-info h3 {
    font-size: 1.02rem;
    margin-bottom: .25rem;
    font-weight: 600;
    transition: .25s
}

.doc-card:hover .doc-info h3 {
    color: var(--navy)
}

.doc-info .spec {
    font-size: .79rem;
    color: var(--steel);
    line-height: 1.45
}

.doc-info .view {
    margin-top: .7rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--display);
    font-weight: 500;
    font-size: .82rem;
    color: var(--lime-d);
    transition: .25s
}

.doc-card:hover .doc-info .view {
    gap: .65rem;
    color: var(--ink)
}

/* Why choose */
.why {
    background: var(--ink);
    color: #fff;
    overflow: hidden
}

.why .sec-head h2 {
    color: #fff
}

.why .sec-head p {
    color: #bcc1c9
}

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

@media(max-width:767px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:479px) {
    .why-grid {
        grid-template-columns: 1fr
    }
}

.why-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--r);
    padding: 28px 24px;
    transition: .3s
}

.why-card:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(159, 190, 60, .35);
    transform: translateY(-6px)
}

.why-card .ic {
    width: 56px;
    height: 56px;
    border-radius: 15px;
    background: rgba(159, 190, 60, .12);
    border: 1px solid rgba(159, 190, 60, .3);
    display: grid;
    place-items: center;
    color: var(--lime-l);
    font-size: 1.4rem;
    margin-bottom: 18px
}

.why-card h3 {
    color: #fff;
    font-size: 1.12rem;
    margin-bottom: .5rem;
    font-weight: 600
}

.why-card p {
    color: #bcc1c9;
    font-size: .92rem;
    margin: 0;
    font-weight: 400
}

/* Legacy */
.legacy {
    background: var(--mist)
}

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

@media(max-width:767px) {
    .firsts {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:419px) {
    .firsts {
        grid-template-columns: 1fr
    }
}

.first-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 24px 22px;
    transition: .3s
}

.first-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow)
}

.first-card .ic {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--ink), var(--ink-2));
    display: grid;
    place-items: center;
    color: var(--lime-l);
    font-size: 1.2rem;
    margin-bottom: 16px
}

.first-card h3 {
    font-size: 1.04rem;
    margin-bottom: .4rem;
    font-weight: 600
}

.first-card p {
    font-size: .9rem;
    margin: 0
}

.awards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 28px
}

@media(max-width:767px) {
    .awards-row {
        grid-template-columns: repeat(2, 1fr)
    }
}

.awards-row .aw {
    border-radius: 14px;
    overflow: hidden;
    background: var(--mist-2);
    aspect-ratio: 4/3;
    border: 1px solid var(--line)
}

.awards-row .aw img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s
}

.awards-row .aw:hover img {
    transform: scale(1.07)
}

/* Technology */
.tech {
    background: #fff
}

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

@media(max-width:767px) {
    .tech-grid {
        grid-template-columns: 1fr
    }
}

.tech-card {
    border: 1px solid var(--card-line);
    border-radius: var(--r);
    overflow: hidden;
    background: var(--card);
    transition: .3s
}

.tech-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-6px)
}

.tech-media {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, var(--forest), var(--ink))
}

.tech-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s
}

.tech-card:hover .tech-media img {
    transform: scale(1.07)
}

.tech-text {
    padding: 15px
}

.tech-text .eyebrow {
    margin-bottom: .5rem
}

.tech-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.tech-text p {
    font-size: .94rem;
    margin: 0
}

/* Ceramist */
.ceramist {
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 55%, var(--navy) 100%);
    color: #fff;
    position: relative;
    overflow: hidden
}

.ceramist::before {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(159, 190, 60, .16), transparent 70%)
}

.ceramist .eyebrow {
    color: var(--lime-l)
}

.ceramist h2 {
    color: #fff
}

.ceramist .cer-copy p {
    color: #c8ccd4
}

.cer-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 54px;
    align-items: center;
    position: relative;
    z-index: 1
}

@media(max-width:991px) {
    .cer-grid {
        grid-template-columns: 1fr;
        gap: 44px
    }
}

.cer-media {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 4px solid rgba(255, 255, 255, .08)
}

.cer-media img {
    width: 100%;
    height: 450px;
    object-fit: cover
}

.cer-feats {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 1.8rem;
    display: grid;
    gap: 1rem
}

.cer-feats li {
    display: flex;
    gap: .85rem;
    align-items: flex-start
}

.cer-feats .ic {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: rgba(159, 190, 60, .1);
    border: 1px solid rgba(159, 190, 60, .28);
    display: grid;
    place-items: center;
    color: var(--lime-l);
    flex: none
}

.cer-feats b {
    font-family: var(--display);
    font-weight: 600;
    display: block;
    font-size: .98rem;
    color: #fff
}

.cer-feats span {
    font-size: .9rem;
    color: #bcc1c9
}

/* Real results */
/* ===== Real Results — before/after grid ===== */
.smiles {
    background: linear-gradient(180deg, #F6F7F8 0%, #FFFFFF 60%)
}

/* Four-up before/after grid — each card is its own independent comparison slider */
.ba-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin: 0 auto;
    max-width: 1200px
}

.ba-wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 22px 60px -26px rgba(18, 20, 26, .42);
    position: relative;
    user-select: none;
    border: 4px solid #fff;
    background: #F6F7F8
}

.ba-img {
    position: relative;
    aspect-ratio: 4/5
}

.ba-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.ba-after {
    clip-path: inset(0 0 0 50%)
}

.ba-label {
    position: absolute;
    bottom: 14px;
    font-weight: 500;
    font-size: .78rem;
    background: rgba(17, 18, 22, .78);
    color: #fff;
    padding: .3rem .75rem;
    border-radius: 50px;
    backdrop-filter: blur(4px)
}

.ba-label.l {
    left: 14px
}

.ba-label.r {
    right: 14px;
    background: #9FBE3C;
    color: #17181C
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #fff;
    transform: translateX(-50%);
    box-shadow: 0 0 14px rgba(0, 0, 0, .3);
    z-index: 3
}

.ba-knob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    color: #17181C;
    box-shadow: 0 22px 60px -26px rgba(18, 20, 26, .42);
    cursor: ew-resize;
    z-index: 4
}

.ba-range {
    position: absolute;
    inset: 0;
    width: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 5;
    margin: 0
}

.smiles .hint {
    text-align: center;
    color: #6B7075;
    font-size: .88rem;
    margin-top: 1rem
}

/* Scale the controls down to suit the smaller grid cards */
.ba-grid .ba-knob {
    width: 40px;
    height: 40px
}

.ba-grid .ba-label {
    font-size: .72rem;
    padding: .26rem .6rem;
    bottom: 12px
}

.ba-grid .ba-label.l {
    left: 12px
}

.ba-grid .ba-label.r {
    right: 12px
}

/* Responsive: 4 → 2 → 1 columns */
@media(max-width:980px) {
    .ba-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px
    }
}

@media(max-width:560px) {
    .ba-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 420px
    }
}

/* Expanded result gallery — responsive masonry-style grid, all images optimized + clickable */
.results-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 30px
}

@media(max-width:991px) {
    .results-gallery {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:575px) {
    .results-gallery {
        grid-template-columns: repeat(2, 1fr)
    }
}

.result-tile {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--ink-2), var(--ink));
    cursor: zoom-in;
    border: 1px solid var(--line);
    display: block
}

.result-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .55s
}

.result-tile:hover img {
    transform: scale(1.07)
}

.result-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(17, 18, 22, .66));
    opacity: 0;
    transition: .3s
}

.result-tile:hover::after {
    opacity: 1
}

.result-tile .rtag {
    position: absolute;
    left: 12px;
    bottom: 11px;
    z-index: 2;
    font-family: var(--display);
    font-weight: 500;
    font-size: .76rem;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    opacity: 0;
    transform: translateY(6px);
    transition: .3s
}

.result-tile .rtag i {
    color: var(--lime-l)
}

.result-tile:hover .rtag {
    opacity: 1;
    transform: none
}

.result-tile .zoom {
    position: absolute;
    top: 11px;
    right: 11px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .92);
    color: var(--ink);
    display: grid;
    place-items: center;
    font-size: .85rem;
    opacity: 0;
    transform: scale(.8);
    transition: .3s
}

.result-tile:hover .zoom {
    opacity: 1;
    transform: none
}

/* Gallery 4x2 */
.gallery {
    background: var(--ink)
}

.gallery .sec-head h2 {
    color: #fff
}

.gallery .sec-head p {
    color: #bcc1c9
}

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

@media(max-width:575px) {
    .gal-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

.gtile {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--ink-2);
    position: relative;
    cursor: zoom-in;
    display: block
}

.gtile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s
}

.gtile:hover img {
    transform: scale(1.08)
}

.gtile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(17, 30, 61, .55));
    opacity: 0;
    transition: .3s
}

.gtile:hover::after {
    opacity: 1
}

.gtile .zoom {
    position: absolute;
    top: 11px;
    right: 11px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .92);
    color: var(--ink);
    display: grid;
    place-items: center;
    font-size: .85rem;
    opacity: 0;
    transform: scale(.8);
    transition: .3s
}

.gtile:hover .zoom {
    opacity: 1;
    transform: none
}

/* Reviews (Google style) */
.reviews {
    background: linear-gradient(180deg, #f4ffd6 0%, #f1f1f1 100%);
}

.rev-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 38px;
    align-items: start
}

.appoint.sec-pad .form-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.appoint.sec-pad .form-img {
    height: 300px;
    margin-top: 30px;
    border-radius: 20px;
}

@media(max-width:991px) {
    .rev-layout {
        grid-template-columns: 1fr;
        gap: 28px
    }
}

.rev-aside {
    position: sticky;
    top: 96px;
    background: linear-gradient(140deg, var(--ink) 0%, var(--ink-2) 55%, var(--navy) 100%);
    color: #fff;
    border-radius: 22px;
    padding: 34px 30px;
    box-shadow: var(--shadow);
    overflow: hidden
}

@media(max-width:991px) {
    .rev-aside {
        position: static;
        text-align: center
    }
}

.rev-aside::before {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(159, 190, 60, .2), transparent 70%)
}

.rev-aside .gbig {
    position: relative;
    z-index: 1;
    background: #fff;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    box-shadow: 0 14px 30px -14px rgba(0, 0, 0, .5);
    margin-bottom: 20px
}

@media(max-width:991px) {
    .rev-aside .gbig {
        margin: 0 auto 18px
    }
}

.rev-aside h3 {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 1.7rem;
    margin: 0 0 .15rem;
    font-weight: 600
}

.rev-aside .rstars {
    position: relative;
    z-index: 1;
    color: #FBBC04;
    font-size: 1.35rem;
    letter-spacing: 3px;
    margin: .2rem 0 .7rem
}

.rev-aside p {
    position: relative;
    z-index: 1;
    color: #c8ccd4;
    font-size: .92rem;
    margin: 0 0 1.5rem;
    line-height: 1.7
}

.rev-aside .btn-tdc {
    position: relative;
    z-index: 1;
    width: 100%
}

.rev-masonry {
    column-count: 2;
    column-gap: 18px
}

@media(max-width:575px) {
    .rev-masonry {
        column-count: 1
    }
}

.rev-card {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    margin: 0 0 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--shadow-sm);
    transition: .32s
}

.rev-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(17, 30, 61, .18)
}

.rev-card.feat {
    background: linear-gradient(145deg, #fff, var(--mist));
    border-color: rgba(159, 190, 60, .4)
}

.rev-card.feat .rev-text {
    font-size: 1rem;
    color: #2f333a
}

.rev-quote {
    color: var(--lime-d);
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: .5rem;
    opacity: .8
}

.rev-top {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: .55rem
}

.rev-av {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.1rem;
    flex: none
}

.rev-id b {
    font-family: var(--display);
    font-weight: 600;
    font-size: .98rem;
    display: block;
    line-height: 1.2
}

.rev-id small {
    color: var(--steel);
    font-size: .77rem
}

.rev-top .gmini {
    margin-left: auto;
    flex: none
}

.rev-stars {
    color: #FBBC04;
    letter-spacing: 1px;
    font-size: .9rem;
    margin-bottom: .5rem
}

.rev-stars .rt {
    color: var(--steel);
    font-family: var(--body);
    letter-spacing: 0;
    font-size: .76rem;
    margin-left: .45rem
}

.rev-text {
    font-size: .92rem;
    color: #3c463f;
    margin: 0 0 1rem;
    line-height: 1.65
}

.rev-foot {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .76rem;
    color: var(--steel);
    border-top: 1px solid var(--line);
    padding-top: .8rem
}

.rev-foot i {
    color: #34A853
}

/* Branches */
.branches {
    background: var(--mist)
}

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

@media(max-width:991px) {
    .br-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:575px) {
    .br-grid {
        grid-template-columns: 1fr
    }
}

.br-card {
    background: #fff;
    border-radius: var(--r);
    padding: 26px 24px;
    border: 1px solid var(--line);
    transition: .3s;
    display: flex;
    flex-direction: column
}

.br-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow)
}

.br-card .pin {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--ink);
    color: var(--lime);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    margin-bottom: 14px
}

.br-card h3 {
    font-size: 1.1rem;
    margin-bottom: .5rem
}

.br-card .addr {
    font-size: .9rem;
    color: #4a544c;
    margin-bottom: 1rem;
    flex: 1
}

.br-card .ph {
    font-family: var(--display);
    font-weight: 600;
    color: var(--ink);
    font-size: .9rem;
    margin-bottom: .9rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.br-card .ph i {
    color: var(--lime-d)
}

/* Appointment */
.appoint {
    background: linear-gradient(120deg, var(--ink) 0%, var(--ink-2) 55%, var(--navy) 100%);
    color: #fff;
    overflow: hidden;
    position: relative
}

.appoint::before {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(159, 190, 60, .16), transparent 70%)
}

.appoint-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 1
}

@media(max-width:991px) {
    .appoint-grid {
        grid-template-columns: 1fr;
        gap: 36px
    }
}

.appoint h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
    font-weight: 600
}

.appoint .lead-p {
    color: #c8ccd4;
    font-size: 1.02rem;
    margin: .9rem 0 1.5rem
}

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

.appoint-contacts a {
    display: flex;
    gap: .9rem;
    align-items: center;
    color: #fff
}

.appoint-contacts .ic {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(159, 190, 60, .12);
    border: 1px solid rgba(159, 190, 60, .3);
    display: grid;
    place-items: center;
    color: var(--lime-l);
    font-size: 1.02rem;
    flex: none
}

.appoint-contacts b {
    font-family: var(--display);
    font-weight: 600;
    display: block;
    font-size: .98rem
}

.appoint-contacts small {
    color: #bcc1c9;
    font-size: .82rem
}

/* Form: compact and balanced */
.form-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 36px 70px -32px rgba(0, 0, 0, .55);
    max-width: 440px;
    width: 100%;
    margin-left: auto
}

@media(max-width:991px) {
    .form-card {
        margin: 0 auto
    }
}

.form-head {
    background: linear-gradient(120deg, var(--ink), var(--navy));
    padding: 18px 24px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.form-head h3 {
    font-size: 1.15rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: .55rem;
    font-weight: 600
}

.form-head h3 i {
    color: var(--lime-l)
}

.form-head p {
    margin: .25rem 0 0;
    font-size: 18px;
    color: rgba(255, 255, 255, .7);
    font-weight: 400
}

.form-body {
    padding: 22px 24px 24px
}

.form-body label {
    font-family: var(--display);
    font-weight: 500;
    font-size: .78rem;
    color: var(--ink);
    margin-bottom: .28rem;
    display: block
}

.form-body .form-control,
.form-body .form-select {
    border: 1.5px solid var(--line);
    border-radius: 10px;
    padding: .62rem .8rem;
    font-size: .9rem;
    color: var(--ink);
    background: #fafbfc
}

.form-body .form-control:focus,
.form-body .form-select:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 .18rem rgba(17, 30, 61, .14);
    background: #fff
}

.form-body .priv {
    font-size: .74rem;
    color: var(--steel);
    margin-top: .85rem;
    display: flex;
    gap: .45rem;
    align-items: flex-start
}

.form-body .priv i {
    color: var(--lime-d);
    margin-top: 2px
}

/* FAQ */
.faq {
    background: #fff
}

.faq-layout {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 44px;
    align-items: start
}

@media(max-width:991px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 30px
    }
}

.faq-visual {
    position: sticky;
    top: 96px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 460px
}

@media(max-width:991px) {
    .faq-visual {
        position: static;
        min-height: 300px
    }
}

.faq-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0
}

.faq-visual .fv-overlay {
     position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(17 18 22 / 0%) 70%, rgba(17, 18, 22, .86) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}

.faq-visual .fv-badge {
    align-self: flex-start;
    background: var(--lime);
    color: var(--ink);
    font-family: var(--display);
    font-weight: 600;
    font-size: .78rem;
    padding: .4rem .9rem;
    border-radius: 50px;
    margin-bottom: auto
}

.faq-visual h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: .4rem;
    font-weight: 600
}

.faq-visual p {
    color: #dfe2e7;
    font-size: .92rem;
    margin-bottom: 1rem
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
    transition: .3s
}

.faq-item.open {
    box-shadow: var(--shadow-sm);
    border-color: rgba(17, 30, 61, .22)
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 18px 22px;
    font-family: var(--display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer
}

.faq-q .pl {
    flex: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--mist-2);
    color: var(--ink);
    display: grid;
    place-items: center;
    transition: .3s;
    font-size: .85rem
}

.faq-item.open .pl {
    background: var(--lime);
    color: var(--ink);
    transform: rotate(45deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 22px
}

.faq-item.open .faq-a {
    max-height: 260px;
    padding: 0 22px 20px
}

.faq-a p {
    margin: 0;
    font-size: .95rem
}

/* Footer */
.footer {
    background: var(--ink);
    color: #a7abb3;
    padding-top: 56px;
    position: relative;
    border-top: 3px solid var(--navy)
}

.footer::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    width: 42%;
    height: 3px;
    background: linear-gradient(90deg, var(--lime), transparent)
}

.footer .ft-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 36px;
    padding-bottom: 40px
}

@media(max-width:767px) {
    .footer .ft-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:480px) {
    .footer .ft-grid {
        grid-template-columns: 1fr
    }
}

.footer img.ft-logo {
    height: 50px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
    opacity: .95
}

.footer p {
    font-size: .92rem;
    color: #8a8f97;
    font-weight: 400
}

.footer h4 {
    color: #fff;
    font-size: .98rem;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: .01em
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .55rem
}

.footer ul a {
    color: #8a8f97;
    font-size: .92rem;
    transition: .2s
}

.footer ul a:hover {
    color: var(--lime-l)
}

.footer .ft-contact li {
    display: flex;
    gap: .7rem;
    font-size: .92rem;
    color: #8a8f97;
    align-items: flex-start
}

.footer .ft-contact i {
    color: var(--lime);
    margin-top: 3px;
    width: 16px
}

.footer .ft-social {
    display: flex;
    gap: .7rem;
    margin-top: 16px
}

.footer .ft-social a {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    display: grid;
    place-items: center;
    color: #cfd2d8;
    transition: .25s
}

.footer .ft-social a:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
    transform: translateY(-3px)
}

.footer .ft-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 18px 0;
    text-align: center;
    font-size: .84rem;
    color: #71757d
}

/* Floating + mobile bar */
.float-wa {
    position: fixed;
    right: 18px;
    bottom: 30px;
    z-index: 1035;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    transition: .25s
}

.float-wa:hover {
    transform: scale(1.08);
    color: #fff
}

.mobar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    display: none;
    background: #fff;
    box-shadow: 0 -10px 30px -18px rgba(0, 0, 0, .4);
    padding: 8px;
    gap: 8px;
    border-top: 1px solid var(--line)
}

.mobar a {
    flex: 1;
    border-radius: 12px;
    padding: .7rem;
    font-family: var(--display);
    font-weight: 600;
    font-size: .85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem
}

.mobar .m-call {
    background: var(--ink);
    color: #fff
}

.mobar .m-wa {
    background: #25D366;
    color: #fff
}

.mobar .m-book {
    background: var(--lime);
    color: var(--ink)
}

@media(max-width:991px) {
    .mobar {
        display: flex
    }

    body {
        padding-bottom: 64px
    }

    .float-wa {
        bottom: 78px
    }
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .3, 1)
}

.reveal.in {
    opacity: 1;
    transform: none
}

@media(prefers-reduced-motion:reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }

    .hero-bg img,
    .marquee {
        animation: none
    }
}