/* =========================================================================
   Invisalign Open Day - TEMPLATE 3 "The Showcase"
   Apple-esque / modern card UI. De-ientes tokens. Light neutral page, big
   rounded white cards, soft shadows, floating glass chips, pill buttons with
   circular arrows, bold Poppins headlines, deep-green ink, gold accents.
   ========================================================================= */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--beige-200); color: var(--ink-700);
  font-family: var(--font-poppins); font-weight: 400; -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; }

:root {
  --t3-ink: var(--green-900);
  --t3-accent: var(--green-700);
  --t3-gold: var(--gold-500);
  --t3-page: var(--beige-200);
  --t3-card: var(--paper);
  --t3-soft: #efece1;
  --t3-line: rgba(20,53,42,.1);
  --t3-r: 26px;
  --t3-shadow: 0 18px 50px -20px rgba(20,53,42,.22);
  --t3-shadow-sm: 0 6px 22px -12px rgba(20,53,42,.20);
}

/* primitives ------------------------------------------------------------- */
.t3-cont { width: 100%; max-width: 1240px; margin: 0 auto; padding-inline: 28px; }
.t3-sec { padding-block: clamp(56px, 6vw, 96px); }
.t3-eyebrow {
  display: inline-flex; align-items: center; gap: 9px; background: var(--t3-card);
  border: 1px solid var(--t3-line); border-radius: 999px; padding: 8px 15px;
  font: 600 12px/1 var(--font-poppins); letter-spacing: .6px; color: var(--t3-accent);
  box-shadow: var(--t3-shadow-sm);
}
.t3-eyebrow .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--t3-gold); }
.t3-eyebrow--plain { background: rgba(247,245,234,.04); border-color: rgba(247,245,234,.2); color: var(--t3-gold); box-shadow: none; }
.t3-display {
  font-family: var(--font-poppins); font-weight: 700; color: var(--t3-ink);
  font-size: clamp(40px, 5.4vw, 76px); line-height: 1.02; letter-spacing: -2px; margin: 0; text-wrap: balance;
}
.t3-display .alt { font-family: var(--font-the-seasons); font-weight: 500; font-style: italic; letter-spacing: -1px; color: var(--t3-accent); }
.t3-h2 {
  font-family: var(--font-poppins); font-weight: 700; color: var(--t3-ink);
  font-size: clamp(30px, 3.6vw, 50px); line-height: 1.06; letter-spacing: -1.2px; margin: 0; text-wrap: balance;
}
.t3-h2 .alt { font-family: var(--font-the-seasons); font-weight: 500; font-style: italic; letter-spacing: -.5px; color: var(--t3-accent); }
.t3-lead { font: 400 clamp(17px,1.4vw,20px)/1.55 var(--font-poppins); color: var(--ink-500); margin: 0; }
.t3-body { font: 400 16px/1.65 var(--font-poppins); color: var(--ink-500); margin: 0; }
.t3-kick { font: 600 12px/1 var(--font-poppins); letter-spacing: 2px; text-transform: uppercase; color: var(--t3-accent); }
.t3-ondark, .t3-ondark .t3-display, .t3-ondark .t3-h2 { color: var(--beige-100); }
.t3-ondark .t3-lead, .t3-ondark .t3-body { color: rgba(247,245,234,.8); }
.t3-ondark .t3-display .alt, .t3-ondark .t3-h2 .alt, .ty3-hero__card .t3-display .alt { color: var(--t3-gold); }
.t3-ph { border-bottom: 1.5px dotted color-mix(in srgb, var(--t3-accent) 55%, transparent); }
.t3-ondark .t3-ph { border-bottom-color: rgba(247,245,234,.5); }

/* buttons (pill + circular arrow) --------------------------------------- */
.t3-btn {
  display: inline-flex; align-items: center; gap: 12px; cursor: pointer; text-decoration: none;
  border: none; border-radius: 999px; padding: 7px 8px 7px 22px;
  font: 600 15px/1 var(--font-poppins); letter-spacing: .2px;
  transition: transform var(--dur-fast) var(--ease-in-out), background var(--dur-base);
}
.t3-btn .arw { width: 34px; height: 34px; border-radius: 999px; display: grid; place-items: center; flex: none; transition: transform var(--dur-base) var(--ease-in-out); }
.t3-btn .arw svg { width: 16px; height: 16px; transform: translateY(-1px); }
.t3-btn:hover .arw { transform: translateX(3px); }
.t3-btn:active { transform: translateY(1px); }
.t3-btn--ink { background: var(--t3-ink); color: var(--beige-100); }
.t3-btn--ink .arw { background: rgba(247,245,234,.16); color: var(--beige-100); }
.t3-btn--ink:hover { background: var(--green-700); }
.t3-btn--gold { background: var(--t3-gold); color: var(--green-900); }
.t3-btn--gold .arw { background: rgba(20,53,42,.16); color: var(--green-900); }
.t3-btn--light { background: var(--t3-card); color: var(--t3-ink); box-shadow: inset 0 0 0 1px var(--t3-line); }
.t3-btn--light .arw { background: var(--t3-ink); color: var(--beige-100); }
.t3-btn--block { width: 100%; justify-content: space-between; }
.t3-btn--lg { font-size: 16px; padding: 9px 10px 9px 26px; }
.t3-btn--lg .arw { width: 40px; height: 40px; }

/* nav -------------------------------------------------------------------- */
.t3-navwrap { position: sticky; top: 0; z-index: 50; padding: 16px 28px 0; }
.t3-nav {
  max-width: 1240px; margin: 0 auto; background: color-mix(in srgb, var(--t3-card) 80%, transparent);
  backdrop-filter: blur(14px); border: 1px solid var(--t3-line); border-radius: 999px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px;
  padding: 10px 12px 10px 22px; box-shadow: var(--t3-shadow-sm);
}
.t3-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.t3-brand img { height: 32px; width: auto; }
.t3-brand__logo { height: 32px; width: auto; }
.t3-brand span { font: 600 17px/1 var(--font-poppins); letter-spacing: -.3px; color: var(--t3-ink); }
.t3-brand__name { white-space: nowrap; }
.t3-loc { display: inline-flex; align-items: center; gap: 6px; background: var(--t3-gold); color: var(--green-900); border-radius: 999px; padding: 6px 13px 6px 10px; font: 700 13px/1 var(--font-poppins) !important; letter-spacing: .2px; white-space: nowrap; box-shadow: var(--t3-shadow-sm); }
.t3-loc svg { width: 14px; height: 14px; color: var(--green-900); }
.t3-navlinks { display: flex; gap: 26px; justify-self: center; }
.t3-navlinks a { font: 500 14px/1 var(--font-poppins); color: var(--ink-700); text-decoration: none; }
.t3-navlinks a:hover { color: var(--t3-accent); }
.t3-navend { justify-self: end; display: flex; align-items: center; gap: 14px; }
.t3-navphone { font: 500 14px/1 var(--font-poppins); color: var(--t3-ink); text-decoration: none; display: inline-flex; gap: 7px; align-items: center; }
.t3-navphone svg { width: 15px; height: 15px; }

/* hero ------------------------------------------------------------------- */
.t3-hero { padding: clamp(28px,3.5vw,52px) 0 clamp(40px,5vw,72px); }
.t3-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,3vw,52px); align-items: start; }
.t3-hero__copy .t3-display { margin: 22px 0 0; }
.t3-hero__copy .t3-lead { margin: 22px 0 0; max-width: 480px; }
.t3-lead .alt-strong { color: var(--t3-accent); font-weight: 600; }
.t3-hero__addr { display: flex; align-items: center; gap: 8px; margin: 16px 0 0; font: 500 14px/1.4 var(--font-poppins); color: var(--t3-accent); }
.t3-hero__addr svg { width: 16px; height: 16px; flex: none; color: var(--t3-gold); }
.t3-hero__pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.t3-hero__pills--under { margin-top: 18px; gap: 9px; }
.t3-hero__copy .t3-formcard { margin-top: 28px; }
.t3-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--t3-card); border: 1px solid var(--t3-line); border-radius: 999px; padding: 9px 16px; font: 500 14px/1 var(--font-poppins); color: var(--t3-ink); box-shadow: var(--t3-shadow-sm); }
.t3-pill svg { width: 15px; height: 15px; color: var(--t3-accent); }
.t3-hero__trust { display: flex; align-items: center; gap: 12px; margin-top: 26px; }
.t3-stars { color: var(--t3-gold); letter-spacing: 2px; font-size: 15px; }
.t3-hero__trust span { font: 400 13px/1.4 var(--font-poppins); color: var(--ink-500); }

/* hero visual: rounded image + floating chips + form card */
.t3-hero__visual { position: relative; }
.t3-hero__img { position: relative; border-radius: var(--t3-r); overflow: hidden; aspect-ratio: 4/4.4; box-shadow: var(--t3-shadow); }
.t3-hero__img img { width: 100%; height: 100%; object-fit: cover; }
.t3-float {
  position: absolute; background: color-mix(in srgb, var(--t3-card) 84%, transparent);
  backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.5); border-radius: 18px;
  box-shadow: var(--t3-shadow); padding: 14px 16px;
}
.t3-float--cd { top: 18px; left: 18px; display: flex; gap: 12px; }
.t3-float--cd .u { text-align: center; }
.t3-float--cd .u b { font: 700 22px/1 var(--font-poppins); color: var(--t3-ink); font-variant-numeric: tabular-nums; display: block; }
.t3-float--cd .u span { font: 600 9px/1 var(--font-poppins); letter-spacing: 1px; text-transform: uppercase; color: var(--ink-300); margin-top: 4px; display: block; }
.t3-float--places { top: 18px; right: 18px; display: flex; align-items: center; gap: 10px; }
.t3-float--places b { font: 700 22px/1 var(--font-poppins); color: var(--t3-accent); }
.t3-float--places span { font: 500 11px/1.2 var(--font-poppins); color: var(--ink-500); max-width: 64px; }
.t3-float--rev { bottom: 18px; left: 18px; right: 18px; display: flex; align-items: center; gap: 12px; }
.t3-float--rev img { width: 42px; height: 42px; border-radius: 999px; object-fit: cover; flex: none; }
.t3-float--rev .q { font: 500 13px/1.4 var(--font-poppins); color: var(--t3-ink); }
.t3-float--rev .by { font: 400 11px/1 var(--font-poppins); color: var(--ink-300); margin-top: 4px; }
.t3-float--rev .st { color: var(--t3-gold); font-size: 11px; letter-spacing: 1px; }

/* form card */
.t3-formcard { background: var(--t3-card); border-radius: var(--t3-r); box-shadow: var(--t3-shadow); padding: clamp(24px,2.4vw,32px); border: 1px solid var(--t3-line); }
.t3-formcard__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.t3-formcard__title { font: 700 22px/1.1 var(--font-poppins); letter-spacing: -.5px; color: var(--t3-ink); }
.t3-formcard__badge { font: 600 11px/1 var(--font-poppins); letter-spacing: .5px; text-transform: uppercase; color: var(--error-500); background: var(--error-100); border-radius: 999px; padding: 6px 11px; white-space: nowrap; }
.t3-formcard__note { font: 400 13px/1.5 var(--font-poppins); color: var(--ink-500); margin: 8px 0 18px; }
.t3-fld { margin-bottom: 11px; }
.t3-fld input, .t3-fld select, .t3-fld textarea {
  width: 100%; background: var(--t3-soft); border: 1px solid transparent; border-radius: 14px;
  padding: 14px 16px; font: 400 15px/1 var(--font-poppins); color: var(--t3-ink);
  transition: border-color var(--dur-base), background var(--dur-base);
}
.t3-fld textarea { line-height: 1.5; resize: vertical; min-height: 56px; }
.t3-fld select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%231d4734' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5 6 6.5l5-5'/></svg>");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.t3-fld input::placeholder, .t3-fld textarea::placeholder { color: var(--ink-300); }
.t3-fld input:focus, .t3-fld select:focus, .t3-fld textarea:focus { outline: none; background: var(--t3-card); border-color: var(--t3-accent); }
.t3-fld--row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.t3-formcard .t3-btn { margin-top: 6px; }
.t3-formcard__foot { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 14px; font: 400 12px/1.4 var(--font-poppins); color: var(--ink-300); text-align: center; }
.t3-formcard__foot svg { width: 14px; height: 14px; color: var(--t3-accent); }
.t3-formcard--done { text-align: center; padding-block: 38px; }
.t3-formcard--done .tick { width: 60px; height: 60px; border-radius: 999px; background: var(--green-050); display: grid; place-items: center; margin: 0 auto 16px; color: var(--t3-accent); }
.t3-formcard--done .tick svg { width: 28px; height: 28px; }

/* trust strip ------------------------------------------------------------ */
.t3-trust__card { background: var(--t3-card); border-radius: var(--t3-r); box-shadow: var(--t3-shadow-sm); display: grid; grid-template-columns: repeat(4,1fr); overflow: hidden; }
.t3-trust__item { padding: 30px 26px; border-left: 1px solid var(--t3-line); display: flex; gap: 14px; align-items: flex-start; }
.t3-trust__item:first-child { border-left: none; }
.t3-trust__ic { width: 38px; height: 38px; border-radius: 12px; background: var(--green-050); color: var(--t3-accent); display: grid; place-items: center; flex: none; }
.t3-trust__ic svg { width: 20px; height: 20px; }
.t3-trust__t { font: 600 15px/1.25 var(--font-poppins); color: var(--t3-ink); }
.t3-trust__s { font: 400 13px/1.5 var(--font-poppins); color: var(--ink-500); margin-top: 5px; }

/* offer ------------------------------------------------------------------ */
.t3-offer__head { text-align: center; max-width: 700px; margin: 0 auto clamp(36px,4vw,56px); }
.t3-offer__head .t3-eyebrow { margin-bottom: 18px; }
.t3-offer__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 20px; }
.t3-card { background: var(--t3-card); border-radius: var(--t3-r); box-shadow: var(--t3-shadow-sm); padding: clamp(26px,2.6vw,40px); }
.t3-incl { list-style: none; padding: 0; margin: 0; }
.t3-incl li { display: grid; grid-template-columns: 26px 1fr auto; gap: 14px; align-items: center; padding: 15px 0; border-bottom: 1px solid var(--t3-line); }
.t3-incl li:last-child { border-bottom: none; }
.t3-incl .ic { width: 26px; height: 26px; border-radius: 8px; background: var(--green-050); color: var(--t3-accent); display: grid; place-items: center; }
.t3-incl .ic svg { width: 15px; height: 15px; }
.t3-incl .it { font: 500 16px/1.3 var(--font-poppins); color: var(--t3-ink); }
.t3-incl .it small { display: block; font: 400 13px/1.4 var(--font-poppins); color: var(--ink-300); margin-top: 2px; }
.t3-incl .pr { font: 500 15px/1 var(--font-poppins); color: var(--ink-300); text-decoration: line-through; }
.t3-incl .pr.free { color: var(--t3-accent); text-decoration: none; font-weight: 600; font-size: 12px; letter-spacing: .5px; text-transform: uppercase; }
.t3-pricecard { background: var(--t3-ink); color: var(--beige-100); border-radius: var(--t3-r); padding: clamp(28px,2.8vw,40px); display: flex; flex-direction: column; position: relative; overflow: hidden; }
.t3-pricecard__leaf { position: absolute; right: -40px; top: -40px; width: 170px; opacity: .08; filter: brightness(0) invert(1); }
.t3-pricecard .lbl { font: 600 12px/1 var(--font-poppins); letter-spacing: 1.4px; text-transform: uppercase; color: var(--t3-gold); }
.t3-pricecard .was { font: 400 15px/1 var(--font-poppins); color: rgba(247,245,234,.55); text-decoration: line-through; margin-top: 18px; }
.t3-pricecard .now { font: 700 clamp(48px,5vw,64px)/1 var(--font-poppins); letter-spacing: -2px; color: var(--beige-100); margin: 6px 0 4px; }
.t3-pricecard .mo { font: 500 14px/1 var(--font-poppins); color: var(--t3-gold); }
.t3-pricecard .save { display: inline-block; margin-top: 18px; background: rgba(200,164,74,.16); border: 1px solid rgba(200,164,74,.4); color: var(--t3-gold); border-radius: 999px; padding: 7px 14px; font: 600 12px/1 var(--font-poppins); }
.t3-pricecard .fine { font: 400 12px/1.5 var(--font-poppins); color: rgba(247,245,234,.55); margin: 16px 0 0; }
.t3-pricecard .t3-btn { margin-top: auto; }
.t3-pricecard__spacer { height: 22px; }

/* flow ------------------------------------------------------------------- */
.t3-flow__head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: clamp(32px,3vw,48px); flex-wrap: wrap; }
.t3-flow__grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.t3-step { background: var(--t3-card); border-radius: 20px; padding: 26px 22px; box-shadow: var(--t3-shadow-sm); }
.t3-step__n { width: 40px; height: 40px; border-radius: 12px; background: var(--green-050); color: var(--t3-accent); display: grid; place-items: center; font: 700 17px/1 var(--font-poppins); }
.t3-step__t { font: 600 17px/1.2 var(--font-poppins); color: var(--t3-ink); margin: 18px 0 8px; letter-spacing: -.3px; }
.t3-step__s { font: 400 13px/1.55 var(--font-poppins); color: var(--ink-500); }
.t3-step__time { display: inline-block; margin-top: 14px; font: 600 11px/1 var(--font-poppins); letter-spacing: .5px; text-transform: uppercase; color: var(--t3-accent); }

/* before/after ----------------------------------------------------------- */
.t3-ba__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px,4vw,64px); align-items: center; }
.t3-ba__copy .t3-h2 { margin: 18px 0 20px; }
.t3-baframe { position: relative; border-radius: var(--t3-r); overflow: hidden; aspect-ratio: 16/11; user-select: none; touch-action: none; box-shadow: var(--t3-shadow); }
.t3-baframe img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.t3-baframe .after { filter: saturate(1.08) contrast(1.04) brightness(1.04); }
.t3-baframe .before { filter: grayscale(.55) saturate(.6) brightness(.94); }
.t3-baframe__h { position: absolute; top: 0; bottom: 0; width: 3px; background: var(--beige-100); }
.t3-baframe__g { position: absolute; top: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; border-radius: 999px; background: var(--t3-card); display: grid; place-items: center; color: var(--t3-accent); box-shadow: var(--t3-shadow-sm); }
.t3-baframe__g svg { width: 22px; height: 22px; }
.t3-baframe__tag { position: absolute; top: 16px; padding: 6px 13px; border-radius: 999px; font: 600 11px/1 var(--font-poppins); letter-spacing: 1px; text-transform: uppercase; }
.t3-baframe__tag.b { left: 16px; background: rgba(20,53,42,.72); color: var(--beige-100); }
.t3-baframe__tag.a { right: 16px; background: var(--t3-gold); color: var(--green-900); }
.t3-ba__note { font: 400 13px/1.5 var(--font-poppins); color: var(--ink-300); font-style: italic; margin-top: 16px; }

/* why -------------------------------------------------------------------- */
.t3-why__head { text-align: center; max-width: 680px; margin: 0 auto clamp(36px,4vw,52px); }
.t3-why__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.t3-whycard { background: var(--t3-card); border-radius: var(--t3-r); padding: 34px; box-shadow: var(--t3-shadow-sm); }
.t3-whycard__ic { width: 46px; height: 46px; border-radius: 14px; background: var(--green-050); color: var(--t3-accent); display: grid; place-items: center; margin-bottom: 18px; }
.t3-whycard__ic svg { width: 22px; height: 22px; }
.t3-whycard__t { font: 700 21px/1.2 var(--font-poppins); letter-spacing: -.5px; color: var(--t3-ink); margin-bottom: 10px; }
.t3-whycard__tag { display: block; margin-top: 7px; font: 600 11px/1 var(--font-poppins); letter-spacing: 1px; text-transform: uppercase; color: var(--t3-accent); }
.t3-whycard__s { font: 400 15px/1.6 var(--font-poppins); color: var(--ink-500); }

/* orthodontist ----------------------------------------------------------- */
.t3-ortho__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,4vw,64px); align-items: center; }
.t3-ortho__visual { position: relative; }
.t3-ortho__img { border-radius: var(--t3-r); overflow: hidden; aspect-ratio: 4/4.6; box-shadow: var(--t3-shadow); }
.t3-ortho__img img { width: 100%; height: 100%; object-fit: cover; }
.t3-ortho__chip { position: absolute; left: 18px; bottom: 18px; right: 18px; background: color-mix(in srgb, var(--t3-card) 86%, transparent); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.5); border-radius: 18px; box-shadow: var(--t3-shadow); padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.t3-ortho__chip b { font: 700 18px/1 var(--font-poppins); letter-spacing: -.3px; color: var(--t3-ink); display: block; }
.t3-ortho__chip span { font: 500 11px/1 var(--font-poppins); letter-spacing: 1px; text-transform: uppercase; color: var(--t3-accent); margin-top: 6px; display: block; }
.t3-ortho__chip .badge { font: 600 11px/1 var(--font-poppins); color: var(--green-900); background: var(--t3-gold); border-radius: 999px; padding: 7px 12px; white-space: nowrap; }
.t3-ortho__copy .t3-h2 { margin: 16px 0 18px; }
.t3-cred { list-style: none; padding: 0; margin: 22px 0 28px; display: grid; gap: 12px; }
.t3-cred li { display: flex; gap: 12px; align-items: flex-start; font: 400 15px/1.45 var(--font-poppins); color: var(--ink-700); }
.t3-cred svg { width: 20px; height: 20px; color: var(--t3-accent); flex: none; margin-top: 1px; }
.t3-cred b { color: var(--t3-ink); font-weight: 600; }

/* finance ---------------------------------------------------------------- */
.t3-fin__card { background: var(--t3-ink); color: var(--beige-100); border-radius: var(--t3-r); padding: clamp(36px,4vw,64px); position: relative; overflow: hidden; }
.t3-fin__leaf { position: absolute; right: -60px; bottom: -60px; width: 260px; opacity: .07; filter: brightness(0) invert(1); }
.t3-fin__head { text-align: center; max-width: 640px; margin: 0 auto clamp(32px,3vw,44px); position: relative; z-index: 1; }
.t3-fin__head .t3-h2 { color: var(--beige-100); margin: 14px 0 14px; }
.t3-fin__head .t3-h2 .alt { color: var(--t3-gold); }
.t3-fin__head .t3-lead { color: rgba(247,245,234,.8); }
.t3-fin__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; position: relative; z-index: 1; }
.t3-fin__stat { background: rgba(247,245,234,.06); border: 1px solid rgba(247,245,234,.14); border-radius: 18px; padding: 28px; text-align: center; }
.t3-fin__big { font: 700 clamp(40px,4vw,52px)/1 var(--font-poppins); letter-spacing: -1.5px; color: var(--beige-100); }
.t3-fin__big small { font-size: .4em; font-weight: 600; }
.t3-fin__t { font: 600 15px/1.3 var(--font-poppins); color: var(--beige-100); margin: 10px 0 6px; }
.t3-fin__s { font: 400 13px/1.5 var(--font-poppins); color: rgba(247,245,234,.65); }
.t3-fin__note { text-align: center; font: 400 12px/1.5 var(--font-poppins); color: rgba(247,245,234,.72); margin-top: 24px; position: relative; z-index: 1; }

/* reviews ---------------------------------------------------------------- */
.t3-rev__head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: clamp(28px,3vw,40px); flex-wrap: wrap; }
.t3-tabs { display: inline-flex; gap: 6px; background: var(--t3-card); border: 1px solid var(--t3-line); border-radius: 999px; padding: 5px; box-shadow: var(--t3-shadow-sm); }
.t3-tab { border: none; background: transparent; border-radius: 999px; padding: 9px 16px; cursor: pointer; font: 600 13px/1 var(--font-poppins); color: var(--ink-500); display: inline-flex; align-items: center; gap: 7px; }
.t3-tab .n { font: 600 11px/1 var(--font-poppins); color: var(--ink-300); }
.t3-tab[aria-selected="true"] { background: var(--t3-ink); color: var(--beige-100); }
.t3-tab[aria-selected="true"] .n { color: var(--t3-gold); }
.t3-rev__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.t3-revcard { background: var(--t3-card); border-radius: var(--t3-r); padding: 30px; box-shadow: var(--t3-shadow-sm); display: flex; flex-direction: column; gap: 14px; }
.t3-revcard__st { color: var(--t3-gold); letter-spacing: 2px; font-size: 14px; }
.t3-revcard__q { font: 400 16px/1.6 var(--font-poppins); color: var(--ink-700); }
.t3-revcard__by { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.t3-revcard__av { width: 44px; height: 44px; border-radius: 999px; object-fit: cover; }
.t3-revcard__n { font: 600 14px/1.2 var(--font-poppins); color: var(--t3-ink); }
.t3-revcard__m { font: 400 12px/1.2 var(--font-poppins); color: var(--ink-300); }

/* faq -------------------------------------------------------------------- */
.t3-faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px,4vw,64px); align-items: start; }
.t3-faq__head .t3-h2 { margin: 14px 0 0; }
.t3-faq__list { background: var(--t3-card); border-radius: var(--t3-r); box-shadow: var(--t3-shadow-sm); padding: 6px 28px; }
.t3-faq__item { border-bottom: 1px solid var(--t3-line); }
.t3-faq__item:last-child { border-bottom: none; }
.t3-faq__q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; padding: 22px 0; display: flex; justify-content: space-between; gap: 18px; align-items: center; font: 600 18px/1.35 var(--font-poppins); letter-spacing: -.3px; color: var(--t3-ink); }
.t3-faq__ic { flex: none; width: 28px; height: 28px; border-radius: 999px; background: var(--green-050); color: var(--t3-accent); display: grid; place-items: center; transition: transform var(--dur-base) var(--ease-in-out); }
.t3-faq__ic svg { width: 15px; height: 15px; }
.t3-faq__item[data-open="true"] .t3-faq__ic { transform: rotate(45deg); background: var(--t3-ink); color: var(--beige-100); }
.t3-faq__a { overflow: hidden; max-height: 0; transition: max-height var(--dur-slow) var(--ease-in-out); }
.t3-faq__a-in { padding: 0 0 22px; font: 400 15px/1.65 var(--font-poppins); color: var(--ink-500); }

/* final cta -------------------------------------------------------------- */
.t3-final__card { background: var(--t3-ink); color: var(--beige-100); border-radius: clamp(28px,3vw,40px); padding: clamp(44px,5vw,84px) clamp(28px,4vw,64px); text-align: center; position: relative; overflow: hidden; }
.t3-final__leaf { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 560px; opacity: .06; filter: brightness(0) invert(1); }
.t3-final__inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.t3-final .t3-display { color: var(--beige-100); margin: 22px 0 0; }
.t3-final__cd { display: flex; justify-content: center; gap: 12px; margin: 34px 0; }
.t3-final__cd .u { background: rgba(247,245,234,.07); border: 1px solid rgba(247,245,234,.14); border-radius: 16px; padding: 14px 18px; min-width: 78px; }
.t3-final__cd .u b { font: 700 36px/1 var(--font-poppins); color: var(--t3-gold); display: block; font-variant-numeric: tabular-nums; }
.t3-final__cd .u span { font: 600 10px/1 var(--font-poppins); letter-spacing: 1.4px; text-transform: uppercase; color: rgba(247,245,234,.55); margin-top: 7px; display: block; }
.t3-final__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.t3-final__fine { font: 400 13px/1.5 var(--font-poppins); color: rgba(247,245,234,.6); margin-top: 24px; }

/* footer ----------------------------------------------------------------- */
.t3-footer { padding: clamp(28px,3vw,40px) 28px 32px; }
.t3-footer__card { max-width: 1240px; margin: 0 auto; background: var(--t3-card); border-radius: var(--t3-r); box-shadow: var(--t3-shadow-sm); padding: clamp(36px,4vw,56px); }
.t3-footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; }
.t3-footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.t3-footer__brand img { height: 44px; width: auto; }
.t3-footer__brand span { font: 600 19px/1 var(--font-poppins); letter-spacing: -.3px; color: var(--t3-ink); }
.t3-footer p, .t3-footer a, .t3-footer li { font: 400 14px/1.7 var(--font-poppins); color: var(--ink-500); text-decoration: none; }
.t3-footer h4 { font: 600 12px/1 var(--font-poppins); letter-spacing: 1.5px; text-transform: uppercase; color: var(--t3-ink); margin: 0 0 14px; }
.t3-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.t3-footer a:hover { color: var(--t3-accent); }
.t3-footer__badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.t3-footer__badge { font: 600 10px/1.3 var(--font-poppins); letter-spacing: .4px; color: var(--ink-500); border: 1px solid var(--t3-line); border-radius: 999px; padding: 8px 12px; }
.t3-footer__bar { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--t3-line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font: 400 12px/1.5 var(--font-poppins); color: var(--ink-300); }

/* hero copy ordering + bespoke ticks ------------------------------------ */
.t3-hero__copy { display: flex; flex-direction: column; }
.t3-hero__copy .t3-formcard { margin-top: 28px; }
.t3-ticks { list-style: none; padding: 0; margin: 24px 0 0; }
.t3-ticks--under { margin-top: 18px; }
.t3-ticks li { display: flex; align-items: center; gap: 13px; padding: 12px 0; border-bottom: 1px solid var(--t3-line); font: 500 15px/1.3 var(--font-poppins); color: var(--t3-ink); }
.t3-ticks li:last-child { border-bottom: 0; }
.t3-ticks__ic { width: 26px; height: 26px; flex: none; border-radius: 999px; background: rgba(200,164,74,.16); border: 1px solid rgba(200,164,74,.45); color: var(--t3-gold); display: grid; place-items: center; }
.t3-ticks__ic svg { width: 14px; height: 14px; stroke-width: 2.4; }

/* treatment choice radios ------------------------------------------------ */
.t3-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.t3-choice__opt { display: flex; align-items: center; gap: 9px; cursor: pointer; background: var(--t3-soft); border: 1px solid transparent; border-radius: 14px; padding: 12px 14px; font: 500 14px/1.1 var(--font-poppins); color: var(--t3-ink); transition: border-color var(--dur-base), background var(--dur-base); }
.t3-choice__opt input { accent-color: var(--t3-accent); width: 16px; height: 16px; margin: 0; flex: none; }
.t3-choice__opt:has(input:checked) { border-color: var(--t3-accent); background: var(--green-050); }

/* centred hero testimonial ---------------------------------------------- */
.t3-hq { background: var(--t3-card); border-radius: var(--t3-r); box-shadow: var(--t3-shadow-sm); padding: clamp(36px,4vw,56px); text-align: center; max-width: 900px; margin: 0 auto; }
.t3-hq__score { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.t3-hq__num { font: 700 40px/1 var(--font-poppins); letter-spacing: -1.5px; color: var(--t3-ink); display: inline-flex; align-items: baseline; }
.t3-hq__num span { font-size: 17px; color: var(--ink-300); margin-left: 2px; }
.t3-hq__stars { color: var(--t3-gold); letter-spacing: 3px; font-size: 15px; }
.t3-hq__by { text-align: left; }
.t3-hq__by span { display: block; margin-top: 4px; font: 400 13px/1 var(--font-poppins); color: var(--ink-500); }
.t3-hq__q { font-family: "Cormorant Garamond", "Cormorant", Georgia, serif; font-weight: 500; font-style: italic; font-size: clamp(24px,3vw,38px); line-height: 1.3; color: var(--t3-ink); margin: 0; text-wrap: balance; }
.t3-hq__name { margin-top: 22px; font: 600 14px/1 var(--font-poppins); color: var(--ink-500); }

/* gallery + video slot --------------------------------------------------- */
.t3-gallery { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: clamp(32px,3vw,44px); }
.t3-galfig { margin: 0; }
.t3-galfig img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 20px; box-shadow: var(--t3-shadow-sm); }
.t3-galfig figcaption { font: 400 13px/1.4 var(--font-poppins); color: var(--ink-500); margin-top: 12px; text-align: center; }
.t3-video__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px,4vw,56px); align-items: center; }
.t3-video__media { position: relative; aspect-ratio: 16/10; overflow: hidden; border-radius: var(--t3-r); box-shadow: var(--t3-shadow); }
.t3-video__media img, .t3-video__media video { width: 100%; height: 100%; object-fit: cover; filter: brightness(.82); }
.t3-video__mute { display: none; position: absolute; left: 1rem; bottom: 1rem; width: 44px; height: 44px; border-radius: 999px; border: 0; cursor: pointer; background: var(--t3-card); color: var(--t3-accent); place-items: center; box-shadow: var(--t3-shadow-sm); transition: transform var(--dur-base) var(--ease-in-out); }
.t3-video__mute:hover { transform: scale(1.06); }
.t3-video__mute svg { width: 20px; height: 20px; }
.t3-video__note { position: absolute; left: 14px; bottom: 14px; right: 14px; font: 400 12px/1.4 var(--font-poppins); color: rgba(247,245,234,.92); background: rgba(20,53,42,.6); border-radius: 12px; padding: 8px 12px; }

/* header compact call button (mobile) ----------------------------------- */
.t3-callbtn { display: none; width: 40px; height: 40px; border-radius: 999px; align-items: center; justify-content: center; flex: none; background: var(--t3-card); color: var(--t3-ink); box-shadow: inset 0 0 0 1px var(--t3-line); text-decoration: none; }
.t3-callbtn svg { width: 17px; height: 17px; }

/* sticky mobile CTA (phones only) --------------------------------------- */
.t3-stickycta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: none; gap: 10px; padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px)); background: color-mix(in srgb, var(--t3-card) 96%, transparent); backdrop-filter: blur(10px); border-top: 1px solid var(--t3-line); box-shadow: 0 -8px 26px -12px rgba(20,53,42,.3); transform: translateY(120%); transition: transform var(--dur-base) var(--ease-in-out); }
.t3-stickycta.is-on { transform: translateY(0); }
.t3-stickycta__call { display: inline-flex; align-items: center; justify-content: center; gap: 8px; flex: none; width: 92px; border-radius: 999px; text-decoration: none; background: var(--t3-card); box-shadow: inset 0 0 0 1px var(--t3-line); color: var(--t3-ink); font: 600 14px/1 var(--font-poppins); }
.t3-stickycta__call svg { width: 16px; height: 16px; }
.t3-stickycta__book { flex: 1; display: inline-flex; align-items: center; justify-content: center; padding: 14px 18px; border-radius: 999px; text-decoration: none; background: var(--t3-ink); color: var(--beige-100); font: 600 15px/1 var(--font-poppins); }

/* reveal + responsive ---------------------------------------------------- */
.t3-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.t3-reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .t3-reveal { opacity: 1; transform: none; transition: none; } }

@media (max-width: 980px) {
  .t3-hero__grid, .t3-offer__grid, .t3-ba__grid, .t3-ortho__grid, .t3-faq__grid, .t3-video__grid { grid-template-columns: 1fr; }
  .t3-hero__visual { order: 4; margin-top: 28px; }
  .t3-hero__lead { order: 1; }
  .t3-hero__copy .t3-formcard { order: 2; margin-top: 24px; }
  .t3-hero__rest { order: 3; margin-top: 24px; }
  .t3-video__media { order: -1; }
  .t3-gallery { grid-template-columns: 1fr 1fr; }
  .t3-flow__grid { grid-template-columns: repeat(2,1fr); }
  .t3-trust__card { grid-template-columns: 1fr 1fr; }
  .t3-trust__item:nth-child(3) { border-left: none; }
  .t3-trust__item:nth-child(odd) { border-left: none; }
  .t3-why__grid, .t3-rev__grid, .t3-fin__grid, .t3-footer__top { grid-template-columns: 1fr; }
  .t3-fin__grid { grid-template-columns: 1fr 1fr; }
  .t3-navlinks { display: none; }
  .t3-nav { grid-template-columns: 1fr auto; }
  .t3-brand { justify-self: start; }
}
@media (max-width: 560px) {
  .t3-cont { padding-inline: 18px; }
  .t3-brand__name { display: none; }
  .t3-loc { padding: 5px 11px 5px 9px; font-size: 12px !important; }
  .t3-navwrap { position: static; padding-inline: 14px; }
  .t3-nav { padding: 9px 12px 9px 16px; gap: 10px; }
  .t3-brand { min-width: 0; gap: 9px; }
  .t3-brand img { height: 27px; }
  .t3-navend { gap: 0; }
  .t3-navend .t3-btn { display: none; }
  .t3-flow__grid, .t3-fin__grid, .t3-trust__card, .t3-gallery, .t3-choice { grid-template-columns: 1fr; }
  .t3-trust__item { border-left: none; border-top: 1px solid var(--t3-line); }
  .t3-trust__item:first-child { border-top: none; }
  .t3-fld--row { grid-template-columns: 1fr; }
  .t3-navphone { display: inline-flex; font-size: 13px; }
  .t3-callbtn { display: none; }
  .t3-stickycta { display: flex; }
  .t3-hero__img { aspect-ratio: 3/3.4; }
}
