/* ============================================================
   A Dental Clinic — Homepage
   Rebuilt as responsive HTML/CSS from the XD/SVG design
   ============================================================ */

.adental-page {
  --teal:#0e4943;          /* primary brand */
  --teal-deep:#01282d;     /* deep sections */
  --teal-deep-2:#00292c;
  --gold:#be8e45;          /* bronze accent */
  --gold-soft:#c9a05a;
  --yellow:#f4bb17;        /* review stars */
  --ink:#101010;
  --body:#3f4a48;
  --muted:#6b7370;
  --line:#e6e8e7;
  --bg:#ffffff;
  --bg-soft:#f4f5f4;
  --bg-soft-2:#f3f3f3;
  --radius:14px;
  --radius-lg:22px;
  --container:1290px;
  --pad:24px;
  --sec:clamp(56px,7vw,104px); /* vertical section rhythm */
  font-synthesis-weight:none;
}


.adental-page *,
.adental-page *::before,
.adental-page *::after {box-sizing:border-box}

.adental-page html {scroll-behavior:smooth;-webkit-text-size-adjust:100%}

.adental-page body {
  margin:0;
  font-family:"Poppins",system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;
  color:var(--body);
  background:var(--bg);
  line-height:1.6;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
}

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

.adental-page a {color:inherit;text-decoration:none}

.adental-page h1,
.adental-page h2,
.adental-page h3,
.adental-page h4,
.adental-page p {margin:0}

.adental-page ul {margin:0;padding:0;list-style:none}

.adental-page button {font-family:inherit}


.adental-page .container {width:100%;max-width:var(--container);margin-inline:auto;padding-inline:var(--pad)}


/* eyebrow / labels */
.adental-page .eyebrow {
  font-size:.9rem;font-weight:600;letter-spacing:.06em;
  color:var(--teal) !important;text-transform:uppercase;margin-bottom:14px !important;
}


/* section headings */
.adental-page .h2 {font-size:clamp(1.7rem,3.4vw,2.55rem);line-height:1.15;font-weight:700;color:var(--ink);letter-spacing:-.01em}

.adental-page .lead {font-size:1.06rem;color:var(--body);max-width:60ch}


/* ---------- buttons ---------- */
.adental-page .btn {
  display:inline-flex;align-items:center;gap:10px;
  font-weight:600;font-size:.95rem;line-height:1;
  padding:15px 26px;border-radius:8px;border:1.6px solid transparent;
  cursor:pointer;transition:background .18s,color .18s,border-color .18s,transform .18s;
  white-space:nowrap;
}

.adental-page .btn svg {width:18px;height:18px;flex:none}

.adental-page .btn--teal {background:var(--teal);color:#fff}

.adental-page .btn--teal:hover {background:#0a3a35}

.adental-page .btn--gold {background:var(--gold);color:#fff}

.adental-page .btn--gold:hover {background:#a97c37}

.adental-page .btn--outline {background:transparent;color:var(--teal);border-color:#707070}

.adental-page .btn--outline:hover {border-color:var(--teal)}

.adental-page .btn--outline-teal {background:transparent;color:var(--teal);border-color:var(--teal)}

.adental-page .btn--outline-teal:hover {background:rgba(14,73,67,.08)}

.adental-page .btn--ghost-light {background:transparent;color:#fff;border-color:rgba(255,255,255,.5)}

.adental-page .btn--ghost-light:hover {background:rgba(255,255,255,.12)}

.adental-page .btn--white {background:#fff;color:var(--ink)}

.adental-page .btn:focus-visible {outline:3px solid var(--yellow);outline-offset:2px}

.adental-page a:focus-visible {outline:3px solid var(--yellow);outline-offset:3px;border-radius:3px}


/* ============================================================
   HEADER
   ============================================================ */
.adental-page .site-header {position:sticky;top:0;z-index:60;background:#fff;border-bottom:1px solid #f0f1f0}

.adental-page .header-inner {display:flex;align-items:center;gap:clamp(16px,2.4vw,28px);min-height:84px;max-width:1560px}

.adental-page .brand {display:flex;align-items:center;gap:12px;flex:none}

.adental-page .brand__logo {height:44px;width:auto;flex:none}


.adental-page .main-nav {margin-left:auto}

.adental-page .main-nav>ul {display:flex;align-items:center;gap:clamp(14px,1.8vw,26px)}

.adental-page .main-nav a {font-weight:600;font-size:.94rem;color:var(--ink);padding:6px 0;position:relative;white-space:nowrap}

.adental-page .main-nav a.is-active {color:var(--teal)}

.adental-page .main-nav a.is-active::after {content:"";position:absolute;left:0;right:0;bottom:-2px;height:2px;background:var(--gold)}

.adental-page .main-nav a:hover {color:var(--teal)}


.adental-page .has-dropdown {position:relative}

.adental-page .has-dropdown>a {display:inline-flex;align-items:center;gap:6px}

.adental-page .has-dropdown>a::after {content:"";width:6px;height:6px;border-right:1.6px solid currentColor;border-bottom:1.6px solid currentColor;transform:rotate(45deg);margin-top:-3px}

.adental-page .dropdown {position:absolute;top:100%;left:0;margin:0;padding:8px;min-width:220px;background:#fff;border:1px solid var(--line);border-radius:10px;box-shadow:0 18px 40px rgba(0,0,0,.12);opacity:0;visibility:hidden;transform:translateY(6px);transition:opacity .18s,transform .18s,visibility .18s;z-index:70}

.adental-page .has-dropdown:hover .dropdown,
.adental-page .has-dropdown:focus-within .dropdown {opacity:1;visibility:visible;transform:translateY(0)}

.adental-page .dropdown li {width:100%}

.adental-page .dropdown a {display:block;padding:9px 12px;font-size:.88rem;font-weight:500;border-radius:6px;white-space:nowrap}

.adental-page .dropdown a:hover {background:var(--bg-soft-2);color:var(--teal)}


.adental-page .header-cta {flex:none;padding:13px 20px;font-size:.86rem}

.adental-page .nav-toggle {display:none;flex:none;background:none;border:0;cursor:pointer;padding:8px;color:var(--ink)}

.adental-page .nav-toggle svg {width:28px;height:28px}


/* ============================================================
   HERO
   ============================================================ */
.adental-page .hero {
  position:relative;overflow:hidden;background:#efe7dd;
}

.adental-page .hero__bg {position:absolute;inset:0;z-index:0}

.adental-page .hero__bg img {width:100%;height:100%;object-fit:cover;object-position:center}

.adental-page .hero__bg::after {content:"";position:absolute;inset:0;
  background:linear-gradient(100deg,rgba(255,255,255,.96) 0%,rgba(255,255,255,.86) 38%,rgba(255,255,255,.28) 60%,rgba(255,255,255,0) 78%)}

.adental-page .hero__inner {position:relative;z-index:2;display:grid;grid-template-columns:1.15fr .85fr;gap:20px;align-items:end}

.adental-page .hero__copy {padding:64px 0 60px;max-width:840px;position:relative;z-index:2}

.adental-page .hero__eyebrow {font-size:.82rem;font-weight:600;letter-spacing:.02em;color:var(--ink);text-transform:uppercase;margin-bottom:14px}

.adental-page .hero h1 {font-size:clamp(1.9rem,3.4vw,3.6rem);line-height:1.12;font-weight:600;letter-spacing:-.01em;color:var(--ink)}

.adental-page .hero h1 .accent {color:var(--teal)}

.adental-page .hero__lead {margin:26px 0 30px;font-size:1.06rem;color:#2f3a38;max-width:52ch;font-weight:500}

.adental-page .hero__actions {display:flex;flex-wrap:wrap;gap:16px}


.adental-page .hero__figure {position:relative;z-index:1;align-self:end;display:flex;justify-content:flex-end}

.adental-page .hero__figure img {max-height:600px;width:auto;filter:drop-shadow(0 24px 40px rgba(0,0,0,.16))}

.adental-page .doc-card {
  position:absolute;top:100px;right:-90px;background:transparent;text-align:left;max-width:250px;z-index:4;
}

.adental-page .doc-card__name {font-size:1.45rem;font-weight:600;color:var(--teal)}

.adental-page .doc-card__rule {width:150px;height:2px;background:var(--gold);margin:8px 0 12px}

.adental-page .doc-card__meta {font-size:.9rem;color:var(--ink);font-weight:500;line-height:1.4}


/* stats */
.adental-page .stats {display:flex;flex-wrap:wrap;gap:24px 26px;margin-top:40px}

.adental-page .stat {display:flex;align-items:center;gap:11px}

.adental-page .stat img {width:32px;height:auto}

.adental-page .stat__num {font-size:1.45rem;font-weight:600;color:var(--ink);line-height:1}

.adental-page .stat__lbl {font-size:.8rem;color:var(--ink);font-weight:500}


/* ============================================================
   SERVICE STRIP (dark teal)
   ============================================================ */
.adental-page .strip {background:var(--teal-deep);position:relative;z-index:5}

.adental-page .strip__inner {display:flex;justify-content:space-between;align-items:center;gap:16px;padding-block:24px;flex-wrap:nowrap}

.adental-page .strip-item {display:flex;align-items:center;gap:10px;color:#fff;flex:none;min-width:0}

.adental-page .strip-item__ic {width:38px;height:38px;border-radius:50%;border:1.5px solid rgba(255,255,255,.35);display:grid;place-items:center;flex:none;background: rgba(66, 136, 141, 0.4) 0% 0% no-repeat padding-box;}

.adental-page .strip-item__ic img {width:25px;height:25px;opacity:0.9}

.adental-page .strip-item span:last-child {font-size:.78rem;line-height:1.3;max-width:150px}


/* ============================================================
   IMPLANT SOLUTIONS
   ============================================================ */
.adental-page .implants {padding:var(--sec) 0}

.adental-page .implants__grid {display:grid;grid-template-columns:310px 1fr 300px;gap:44px;align-items:start}

.adental-page .implants__intro .h2 {margin:6px 0 20px}

.adental-page .implants__intro p {margin-bottom:26px;color:var(--body)}

.adental-page .implant-items {display:grid;grid-template-columns:repeat(3,1fr);gap:22px}

.adental-page .impl {background:#fff;border:1px solid #eef0ef;border-radius:12px;padding:22px 20px;box-shadow:0 10px 26px rgba(9,40,37,.05);text-align:center}

.adental-page .impl__ic {height:52px;display:flex;align-items:flex-end;justify-content:center;margin-bottom:10px}

.adental-page .impl__ic img {max-height:48px;width:auto}

.adental-page .impl h3 {font-size:.82rem;font-weight:600;color:var(--ink);margin-bottom:6px;line-height:1.3}

.adental-page .impl p {font-size:.725rem;color:var(--muted);line-height:1.3}

.adental-page .implants__award {align-self:stretch}

.adental-page .implants__award img {width:100%;height:100%;object-fit:cover;border-radius:10px;box-shadow:0 18px 40px rgba(0,0,0,.10)}


/* ============================================================
   ABOUT DR (dark teal, image bleeds left)
   ============================================================ */
.adental-page .about {background:var(--teal-deep);color:#fff;position:relative;overflow:hidden}

.adental-page .about__grid {display:grid;grid-template-columns:0.8fr 1.2fr}

.adental-page .about__media {position:relative;min-height:520px}

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

.adental-page .about__body {padding:clamp(48px,6vw,96px) clamp(24px,5vw,90px)}

.adental-page .about__title {font-size:clamp(1.7rem,3.2vw,2.5rem);font-weight:700;line-height:1.15;margin-bottom:26px}

.adental-page .about__title .gold {color:var(--gold)}

.adental-page .about__list {display:flex;flex-direction:column;gap:15px;margin-bottom:34px}

.adental-page .about__list li {display:flex;gap:14px;align-items:flex-start;font-size:1.02rem;color:#eef3f1}

.adental-page .about__list .check {width:22px;height:22px;flex:none;color:var(--gold);margin-top:2px}

.adental-page .about__watermark {position:absolute;right:6%;bottom:-6%;width:min(360px,32vw);color:rgba(255,255,255,.04);z-index:0;pointer-events:none;opacity:0.9}

.adental-page .about__body,
.adental-page .about__media {position:relative;z-index:1}


/* ============================================================
   BRACES & INVISALIGN
   ============================================================ */
.adental-page .braces {background:var(--bg-soft-2);padding:var(--sec) 0 24px}

.adental-page .braces__head {margin-bottom:36px}

.adental-page .braces__head .h2 {max-width:780px;margin-top:8px}

.adental-page .braces__grid {display:grid;grid-template-columns:repeat(3,minmax(0,1fr)) 1.6fr;gap:22px;align-items:stretch}

.adental-page .brace-card {background:#fff;border:1px solid #eef0ef;border-radius:12px;padding:20px 20px;box-shadow:0 10px 26px rgba(9,40,37,.05);display:flex;gap:14px;align-items:center}

.adental-page .brace-card__ic {width:46px;height:46px;flex:none;display:grid;place-items:center}

.adental-page .brace-card__ic img {max-width:42px;max-height:42px}

.adental-page .brace-card h3 {font-size:.9rem;font-weight:600;color:var(--teal);margin-bottom:4px}

.adental-page .brace-card p {font-size:.78rem;color:var(--muted);line-height:1.4}

.adental-page .brace-card--promo {background:var(--teal-deep);border:0;color:#fff;align-items:center;text-align:center}

.adental-page .brace-card--promo p {color:#e7efec;font-size:.92rem}

.adental-page .brace-card--promo .gold {color:var(--gold);font-weight:600}

.adental-page .braces__figure {grid-column:4;grid-row:1 / span 2;border-radius:14px;overflow:hidden}

.adental-page .braces__figure img {width:100%;height:100%;object-fit:cover;object-position:center}


/* ============================================================
   OTHER SERVICES (grey)
   ============================================================ */
.adental-page .other {background:var(--bg-soft-2);padding:24px 0 clamp(46px,5vw,72px)}

.adental-page .other__head {display:flex;align-items:center;gap:26px;margin-bottom:34px}

.adental-page .other__head h2 {font-size:1.45rem;font-weight:700;color:var(--ink);letter-spacing:.02em;white-space:nowrap}

.adental-page .other__head .rule {height:1px;background:#d9dcda;flex:1}

.adental-page .other__cols {display:grid;grid-template-columns:1.1fr 1fr 1fr 1fr;gap:34px}

.adental-page .other__intro {color:var(--body);font-size:.98rem;max-width:32ch}

.adental-page .svc-list li {display:flex;gap:12px;align-items:center;padding:6px 0;font-weight:600;color:var(--teal);font-size:.98rem}

.adental-page .svc-list .check {width:20px;height:20px;color:var(--teal);flex:none}


/* ============================================================
   DIGITAL TECH
   ============================================================ */
.adental-page .tech {padding:var(--sec) 0}

.adental-page .tech__grid {display:grid;grid-template-columns:1fr 1.05fr;gap:56px;align-items:stretch}

.adental-page .tech__title {font-size:clamp(1.6rem,3vw,2.3rem);font-weight:700;color:var(--ink);text-transform:uppercase;line-height:1.15;letter-spacing:.01em;margin-bottom:20px}

.adental-page .tech__lead {color:var(--body);margin-bottom:30px;max-width:48ch}

.adental-page .tech-item {display:grid;grid-template-columns:26px 1fr;gap:12px;padding:14px 0;border-top:1px solid #eef0ef}

.adental-page .tech-item:first-of-type {border-top:0}

.adental-page .tech-item .arrow {color:var(--gold);width:22px;margin-top:3px}

.adental-page .tech-item h3 {font-size:1.05rem;font-weight:600;color:var(--teal);margin-bottom:4px}

.adental-page .tech-item p {font-size:.95rem;color:var(--muted)}

.adental-page .tech__media {height:100%}

.adental-page .tech__media img {width:100%;height:100%;object-fit:cover;border-radius:16px;box-shadow:0 22px 46px rgba(0,0,0,.14)}


/* ============================================================
   MEDISAVE (mid teal)
   ============================================================ */
.adental-page .medisave {background:var(--teal);color:#fff;padding:var(--sec) 0}

.adental-page .medisave__top {display:grid;grid-template-columns:.85fr 1.15fr;gap:60px;align-items:center}

.adental-page .medisave__card {border-radius:16px;overflow:hidden;box-shadow:0 20px 40px rgba(0,0,0,.2)}

.adental-page .medisave__card img {width:100%}

.adental-page .medisave h2 {font-size:clamp(1.5rem,2.8vw,2.15rem);font-weight:700;margin-bottom:18px}

.adental-page .medisave__note {font-style:italic;color:#dbe7e3;margin-bottom:16px;font-weight:300;font-size:.98rem}

.adental-page .medisave__body {color:#e7efec;font-size:1rem;line-height:1.7}

.adental-page .medisave__badges {display:grid;grid-template-columns:1fr repeat(5,minmax(0,150px));gap:20px;align-items:center;margin-top:54px}

.adental-page .badge-lines {position:relative;width:100%;height:96px}

.adental-page .badge-lines img {width:100%;height:100%;object-fit:fill}

.adental-page .badge-lines::after {content:"";position:absolute;inset:0;background:linear-gradient(270deg,transparent 0%,var(--teal) 100%);pointer-events:none}

.adental-page .badge {background:#fff;border-radius:10px;padding:14px;height:96px;display:grid;place-items:center}

.adental-page .badge img {max-height:66px;width:auto}


/* ============================================================
   CLINICS
   ============================================================ */
.adental-page .clinics {padding:var(--sec) 0}

.adental-page .clinics__wrap {border:1px solid #AAAAAA;border-radius:var(--radius-lg);padding:clamp(28px,4vw,56px)}

.adental-page .clinics__head {text-align:center;margin-bottom:40px}

.adental-page .clinics__head .eyebrow {margin-bottom:8px}

.adental-page .clinic-grid {display:grid;grid-template-columns:1fr 1fr;gap:0}

.adental-page .clinic {padding:0 clamp(20px,3vw,42px)}

.adental-page .clinic+.clinic {border-left:1px solid #AAAAAA}

.adental-page .clinic__map {border-radius:12px;overflow:hidden;border:1px solid var(--line);aspect-ratio:16/9;margin-bottom:22px}

.adental-page .clinic__map img {width:100%;height:100%;object-fit:cover}

.adental-page .clinic__map iframe {width:100%;height:100%;display:block;border:0}

.adental-page .clinic__name {display:flex;gap:10px;align-items:center;font-size:1.35rem;font-weight:600;line-height:1.25;color:var(--ink);margin-bottom:10px;min-height:2.5em}

.adental-page .clinic__name .pin {color:var(--gold);width:24px;flex:none}

.adental-page .clinic__desc {color:var(--muted);font-size:.98rem;margin-bottom:22px}

.adental-page .clinic__contact {display:grid;grid-template-columns:1fr 1fr;border-top:1px solid #AAAAAA;border-bottom:1px solid #AAAAAA;margin-bottom:24px}

.adental-page .contact-item {display:flex;gap:12px;align-items:center;padding:18px 16px}

.adental-page .contact-item:first-child {padding-left:0}

.adental-page .contact-item+.contact-item {border-left:1px solid #AAAAAA}

.adental-page .contact-item .ic {width:34px;height:34px;color:var(--gold);flex:none}

.adental-page .contact-item__lbl {font-size:.82rem;color:var(--muted)}

.adental-page .contact-item__val {font-size:1.05rem;font-weight:600;color:var(--ink)}

.adental-page .contact-item__val a {transition:color .15s}

.adental-page .contact-item__val a:hover {color:var(--teal)}

.adental-page .clinic__actions {display:grid;grid-template-columns:1fr 1fr;gap:16px}

.adental-page .clinic__actions .btn {justify-content:center}


/* ============================================================
   CTA LINE (nested inside clinics__wrap)
   ============================================================ */
.adental-page .cta-line {padding:32px 0 0;margin-top:38px;border-top:1px solid #AAAAAA;text-align:center}

.adental-page .cta-line h2 {font-size:clamp(1.35rem,2.6vw,2rem);font-weight:700;color:var(--ink)}

.adental-page .cta-line p {font-size:clamp(1.05rem,2vw,1.55rem);font-weight:700;color:var(--teal-2,#036067);margin-top:8px}

.adental-page .cta-line a {color:#036067;text-decoration:underline;text-underline-offset:3px}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.adental-page .testi {padding:0 0 var(--sec)}

.adental-page .testi__wrap {position:relative;overflow:hidden;background:var(--bg-soft-2);border-radius:var(--radius-lg);padding:clamp(30px,4vw,56px);display:grid;grid-template-columns:1.05fr 2fr;gap:40px;align-items:center}

.adental-page .testi__bgphoto {position:absolute;top:0;right:0;height:100%;width:38%;max-width:420px;object-fit:cover;object-position:right center;z-index:0;pointer-events:none}

.adental-page .testi__intro {position:relative;z-index:1}

.adental-page .testi__intro .eyebrow {margin-bottom:8px !important}

.adental-page .testi__intro .h2 {margin:0 0 6px;font-size:clamp(1.4rem,2.2vw,1.85rem);white-space:nowrap}

.adental-page .testi__intro>p {color:var(--body);font-size:.95rem;line-height:1.45;max-width:32ch;margin-bottom:10px}

.adental-page .testi__rating {display:block;width:280px;height:auto;margin-bottom:12px;margin-left: -20px}

.adental-page .testi__intro .btn img {width:16px;height:11px}

.adental-page .testi__note {display:flex;align-items:center;gap:8px;margin-top:8px;font-size:.8rem;color:var(--muted);white-space:nowrap}

.adental-page .testi__note svg {width:15px;height:15px;flex:none}


.adental-page .testi__features {position:relative;z-index:1;display:grid;grid-template-columns:repeat(3,1fr);gap:24px;text-align:center;padding-right:100px}

.adental-page .tfeat {min-width:0}

.adental-page .tfeat+.tfeat {border-left:1px solid #d7dbd9;padding-left:24px}

.adental-page .tfeat__ic {width:64px;height:64px;margin:0 auto 14px}

.adental-page .tfeat h3 {font-size:1rem;font-weight:600;color:var(--ink);margin-bottom:6px}

.adental-page .tfeat p {font-size:.95rem;color:var(--muted);line-height:1.55}


/* ============================================================
   READY BAND
   ============================================================ */
.adental-page .ready {padding:0 0 var(--sec)}

.adental-page .ready__inner {background:var(--teal-deep);border-radius:var(--radius-lg);padding:clamp(28px,3.5vw,44px) clamp(28px,4vw,56px);display:flex;align-items:center;gap:26px;flex-wrap:wrap}

.adental-page .ready__ic {width:66px;height:66px;border-radius:50%;background:#0e4943;display:grid;place-items:center;flex:none;color:#fff}

.adental-page .ready__ic svg {width:30px;height:30px}

.adental-page .ready__txt {flex:1;min-width:240px;color:#fff}

.adental-page .ready__txt h2 {font-size:clamp(1.3rem,2.4vw,1.8rem);font-weight:500}

.adental-page .ready__txt p {color:#cfdcd8;font-size:.98rem;margin-top:4px}

.adental-page .ready__actions {display:flex;gap:16px;flex-wrap:wrap}


/* ============================================================
   FOOTER
   ============================================================ */
.adental-page .footer {background:var(--teal-deep);color:#cdd8d4}

.adental-page .footer__main {display:grid;grid-template-columns:1fr 2fr 1.1fr;gap:48px;padding-block:clamp(48px,6vw,80px) 44px}

.adental-page .footer h4 {font-size:1.1rem;font-weight:600;color:#fff;letter-spacing:.04em;padding-bottom:14px;border-bottom:1px solid rgba(255,255,255,.16);margin-bottom:18px}

.adental-page .footer a {color:#c3d0cc;font-size:.96rem;line-height:2.1;transition:color .15s}

.adental-page .footer a:hover {color:#fff}

.adental-page .footer__links {display:flex;flex-direction:column}

.adental-page .footer__services {display:grid;grid-template-columns:1fr 1fr;gap:0 30px}

.adental-page .footer__services .cols {display:flex;flex-direction:column}

.adental-page .gr-badge {display:inline-flex;align-items:center;gap:10px;background:#fff;border-radius:50px;padding:10px 14px;margin-top:18px}

.adental-page .gr-badge img {width:30px}

.adental-page .gr-badge .t {font-size:.72rem;color:#333;font-weight:600}

.adental-page .gr-badge .s {color:var(--yellow);font-size:1.2rem;line-height: 1;}

.adental-page .footer__contact address {font-style:normal;line-height:1.7;font-size:.95rem;color:#c3d0cc}

.adental-page .footer__contact .blk+ .blk {margin-top:18px}

.adental-page .footer__social {display:flex;gap:14px;margin-top:22px}

.adental-page .footer__social a {width:40px;height:40px;border-radius:50%;border:1px solid rgba(255,255,255,.3);display:grid;place-items:center;color:#fff}

.adental-page .footer__social a:hover {background:rgba(255,255,255,.12)}

.adental-page .footer__social svg {width:25px;height:25px}

.adental-page .footer__bottom {border-top:1px solid rgba(255,255,255,.14);padding-block:22px;display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap}

.adental-page .footer__bottom .copy {font-size:.9rem;color:#aebbb6}

.adental-page .footer__assoc {display:flex;align-items:center;gap:16px}

.adental-page .footer__assoc span {font-size:.9rem;color:#aebbb6}

.adental-page .footer__assoc img {border-radius:6px;padding:6px 10px;height:42px;width:auto}


/* ============================================================
   SCROLL-REVEAL + MICRO-INTERACTIONS
   ============================================================ */
.adental-page .reveal {opacity:0;transform:translateY(28px)}

@keyframes reveal-in {
  from{opacity:0;transform:translateY(28px)}
  to{opacity:1;transform:translateY(0)}
}

.adental-page .reveal.reveal-play {animation:reveal-in .9s cubic-bezier(.22,.61,.36,1) both}

.adental-page .reveal.d1.reveal-play {animation-delay:.1s}

.adental-page .reveal.d2.reveal-play {animation-delay:.2s}

.adental-page .reveal.d3.reveal-play {animation-delay:.3s}

.adental-page .reveal.d4.reveal-play {animation-delay:.4s}

.adental-page .reveal.d5.reveal-play {animation-delay:.5s}

.adental-page .reveal.d6.reveal-play {animation-delay:.6s}


/* buttons */
.adental-page .btn:hover {transform:translateY(-2px)}

.adental-page .btn:active {transform:translateY(0) scale(.97)}

.adental-page .btn svg,
.adental-page .btn img {transition:transform .25s}

.adental-page .btn:hover svg,
.adental-page .btn:hover img {transform:translateX(3px)}


/* cards */
.adental-page .impl,
.adental-page .brace-card,
.adental-page .badge {transition:transform .25s,box-shadow .25s,border-color .25s}

.adental-page .impl:hover,
.adental-page .brace-card:not(.brace-card--promo):hover {transform:translateY(-5px);box-shadow:0 16px 32px rgba(9,40,37,.1);border-color:#dfe4e2}

.adental-page .badge:hover {transform:translateY(-3px);box-shadow:0 10px 20px rgba(0,0,0,.12)}

.adental-page .impl__ic img,
.adental-page .brace-card__ic img {transition:transform .3s}

.adental-page .impl:hover .impl__ic img,
.adental-page .brace-card:hover .brace-card__ic img {transform:scale(1.08)}


.adental-page .strip-item__ic {transition:transform .25s,background-color .25s}

.adental-page .strip-item:hover .strip-item__ic {transform:scale(1.1);background:rgba(66,136,141,.7)}


.adental-page .clinic__map {transition:border-color .25s}

.adental-page .clinic:hover .clinic__map {border-color:var(--gold)}


.adental-page .tfeat__ic {transition:transform .3s}

.adental-page .tfeat:hover .tfeat__ic {transform:translateY(-3px) scale(1.05)}


.adental-page .tech-item .arrow {transition:transform .25s}

.adental-page .tech-item:hover .arrow {transform:translateX(4px)}


.adental-page .footer__social a {transition:transform .2s,background-color .15s}

.adental-page .footer__social a:hover {transform:translateY(-2px)}


.adental-page .has-dropdown>a::after {transition:transform .25s}

.adental-page .has-dropdown:hover>a::after {transform:rotate(225deg)}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1180px) {

  .adental-page .brand__logo {height:38px}

  .adental-page .main-nav ul {gap:12px}

  .adental-page .main-nav a {font-size:.86rem}

  .adental-page .header-cta {padding:11px 14px;font-size:.78rem;gap:6px}

  .adental-page .header-cta svg {display:none}

  .adental-page .implants__grid {grid-template-columns:1fr 300px;grid-template-areas:"intro award" "items items"}

  .adental-page .implants__intro {grid-area:intro}

  .adental-page .implants__award {grid-area:award}

  .adental-page .implant-items {grid-area:items;margin-top:8px}

  .adental-page .braces__grid {grid-template-columns:repeat(3,1fr)}

  .adental-page .braces__figure {grid-column:1 / -1;grid-row:auto;order:-1;margin-inline:auto}

  .adental-page .braces__figure img {width:100%;height:auto;max-width:420px}

  .adental-page .other__cols {grid-template-columns:1fr 1fr;gap:24px}

  .adental-page .other__intro {grid-column:1 / -1;max-width:none}

  .adental-page .medisave__badges {grid-template-columns:repeat(3,1fr)}

  .adental-page .badge-lines {display:none}


}


@media (max-width:1024px) {

  .adental-page .main-nav {position:fixed;inset:84px 0 auto 0;background:#fff;border-bottom:1px solid #eee;
    transform:translateY(-140%);transition:transform .3s;box-shadow:0 20px 30px rgba(0,0,0,.08);margin:0}

  .adental-page .main-nav.open {transform:translateY(0)}

  .adental-page .main-nav>ul {flex-direction:column;align-items:flex-start;gap:0;padding:10px 24px 20px}

  .adental-page .main-nav li {width:100%}

  .adental-page .main-nav a {display:block;padding:14px 0;border-bottom:1px solid #f2f2f2;width:100%}

  .adental-page .main-nav a.is-active::after {display:none}

  .adental-page .has-dropdown>a {display:flex;align-items:center;gap:6px}

  .adental-page .has-dropdown>a::after {margin-top:0}

  .adental-page .dropdown {position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border:0;border-radius:0;padding:0 0 0 16px;min-width:0}

  .adental-page .dropdown a {padding:12px 0;font-size:.9rem}

  .adental-page .nav-toggle {display:block;margin-left:auto}

  .adental-page .header-cta {display:none}


  .adental-page .hero__inner {grid-template-columns:1fr}

  .adental-page .hero__figure {position:absolute;right:calc((var(--pad) + 28px) * -1);bottom:0;left:auto;top:auto;
    justify-content:flex-end;align-self:auto;margin:0;z-index:1;pointer-events:none}

  .adental-page .hero__figure img {max-height:380px}

  .adental-page .doc-card {display:none}

  .adental-page .hero__copy {padding:48px 0 44px;position:relative}

  .adental-page .stats {flex-direction:column;align-items:flex-start;flex-wrap:nowrap;max-width:60%;gap:22px;
    position:relative;z-index:2}

  .adental-page .hero__bg::after {background:linear-gradient(180deg,rgba(255,255,255,.92),rgba(255,255,255,.8))}


  .adental-page .about__grid {grid-template-columns:1fr}

  .adental-page .about__media {min-height:280px}


  .adental-page .tech__grid {grid-template-columns:1fr;gap:32px}

  .adental-page .tech__media {order:-1;height:auto}

  .adental-page .tech__media img {height:auto}


  .adental-page .medisave__top {grid-template-columns:1fr;gap:30px}


  .adental-page .clinic-grid {grid-template-columns:1fr;gap:40px}

  .adental-page .clinic {padding:0}

  .adental-page .clinic+.clinic {border-left:0;border-top:1px solid #AAAAAA;padding-top:40px}

  .adental-page .clinic__contact {border-top-width:1px;border-bottom-width:1px}

  .adental-page .cta-line {border-top-width:1px}


  .adental-page .testi__wrap {grid-template-columns:1fr;gap:28px}

  .adental-page .testi__bgphoto {display:none}

  .adental-page .testi__features {grid-template-columns:1fr;gap:20px;text-align:left;padding-right:0}

  .adental-page .tfeat {display:grid;grid-template-columns:48px 1fr;column-gap:14px;align-items:start}

  .adental-page .tfeat__ic {grid-row:1 / span 2;width:48px;height:48px;margin:0}

  .adental-page .tfeat h3,
.adental-page .tfeat p {grid-column:2}

  .adental-page .tfeat+.tfeat {border-left:0;border-top:1px solid #d7dbd9;padding-left:0;padding-top:20px}


  .adental-page .footer__main {grid-template-columns:1fr;gap:30px}

  .adental-page .footer__col--about {display:grid;grid-template-columns:1fr 1fr;gap:0 16px;align-items:center}

  .adental-page .footer__col--about h4 {grid-column:1 / -1}

  .adental-page .footer__col--about .footer__links {grid-column:1}

  .adental-page .footer__col--about .gr-badge {grid-column:2;margin:0;justify-self:start}


}


@media (max-width:640px) {

  .adental-page {--pad:18px}

  .adental-page .strip__inner {flex-direction:column;align-items:flex-start;gap:16px}

  .adental-page .strip-item span:last-child {white-space:normal;max-width:none}

  .adental-page .implants__grid {grid-template-columns:1fr;grid-template-areas:"intro" "award" "items"}

  .adental-page .implant-items {grid-template-columns:1fr 1fr;gap:26px 18px}

  .adental-page .implants__award img {max-width:100%;margin-inline:auto}

  .adental-page .braces__grid {grid-template-columns:1fr}

  .adental-page .braces__figure img {max-width:320px}

  .adental-page .other__cols {grid-template-columns:1fr}

  .adental-page .other__head h2 {white-space:normal}

  .adental-page .medisave__badges {grid-template-columns:repeat(2,1fr)}

  .adental-page .clinic__contact,
.adental-page .clinic__actions {grid-template-columns:1fr}

  .adental-page .contact-item {padding:16px 0}

  .adental-page .contact-item:first-child {padding-top:0}

  .adental-page .contact-item+.contact-item {border-left:0;border-top:1px solid #AAAAAA}

  .adental-page .footer__services {grid-template-columns:1fr 1fr;gap:0 16px}

  .adental-page .footer__services a {font-size:.86rem;line-height:1.9}

  .adental-page .hero__actions .btn,
.adental-page .clinic__actions .btn,
.adental-page .ready__actions .btn {width:100%;justify-content:center;white-space:normal;text-align:center;padding:14px 18px}

  .adental-page .hero__figure img {max-height:300px}

  .adental-page .stats {max-width:54%;gap:20px}

  .adental-page .hero__actions {flex-direction:column;align-items:stretch}


}


@media (prefers-reduced-motion:reduce) {

  .adental-page * {transition:none!important;scroll-behavior:auto!important}

  .adental-page .reveal {opacity:1!important;transform:none!important;animation:none!important}


}

