/* =====================================================================
   FL ECOSYSTEM — Contact / Free Online Presence Review page
   Self-contained stylesheet for contact/index.html only.
   Mirrors the approved homepage design system (see homepage-style.css) so this
   page is a faithful match WITHOUT touching the shared
   legacy-homepage-style.css / legacy-homepage-script.js used by other pages.
   ===================================================================== */

/* ---------- Tokens (mirrors homepage-style.css) ---------- */
:root {
  --create:  #FF6A00;
  --manage:  #007BFF;
  --connect: #8A2BE2;
  --learn:   #FFC400;

  --grad: linear-gradient(100deg, #FF6A00 0%, #8A2BE2 52%, #007BFF 100%);

  --ink:       #1b1530;
  --ink-soft:  #36304c;
  --body:      #5b5675;
  --muted:     #8a85a1;
  --bg:        #f6f3fb;
  --panel:     #ffffff;
  --line:      #e8e3f1;
  --line-soft: #f0ecf6;

  --danger:    #d8456c;
  --ok:        #1f9d6b;

  --serif: "Playfair Display", "Iowan Old Style", "Apple Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Sora", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --maxw: 1180px;
  --pad:  clamp(20px, 5vw, 48px);
  --hdr-h: 78px;

  --sh-soft: 0 30px 70px -34px rgba(40, 20, 80, .35), 0 10px 30px -18px rgba(40, 20, 80, .18);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--body);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3 { color: var(--ink); line-height: 1.1; letter-spacing: -.02em; font-weight: 700; }
::selection { background: rgba(138, 43, 226, .16); }

/* ---------- Helpers ---------- */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.skip-link {
  position: absolute; left: 16px; top: -60px;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px;
  z-index: 300; transition: top .2s ease;
}
.skip-link:focus { top: 14px; }

/* ---------- Pale canvas auras ---------- */
.aura { position: fixed; inset: 0; z-index: -2; pointer-events: none; overflow: hidden; }
.aura::before, .aura::after { content: ""; position: absolute; border-radius: 50%; filter: blur(90px); }
.aura::before {
  width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  top: -16vh; right: -10vw;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 106, 0, .14), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(138, 43, 226, .12), transparent 62%);
  opacity: .9;
}
.aura::after {
  width: 56vw; height: 56vw; max-width: 700px; max-height: 700px;
  bottom: -18vh; left: -14vw;
  background: radial-gradient(circle, rgba(0, 123, 255, .12), transparent 64%);
  opacity: .85;
}

/* =====================================================================
   HEADER — minimal (mirrors homepage)
   ===================================================================== */
.site-hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--hdr-h);
  display: flex; align-items: center;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-hdr.is-scrolled {
  background: rgba(246, 243, 251, .72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 rgba(40, 20, 80, .06);
}
.site-hdr__inner {
  width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand__logo-wrap { position: relative; display: inline-flex; flex: none; isolation: isolate; }
/* colour glows that follow the orbit nodes (no blob, no halo) */
.brand__logo-wrap::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 122%; height: 122%;
  background:
    radial-gradient(circle at 24% 26%, rgba(255, 106, 0, .30), transparent 26%),
    radial-gradient(circle at 76% 26%, rgba(0, 123, 255, .26), transparent 26%),
    radial-gradient(circle at 26% 76%, rgba(138, 43, 226, .26), transparent 26%),
    radial-gradient(circle at 76% 76%, rgba(255, 196, 0, .24), transparent 26%);
  filter: blur(7px);
}
.brand__logo {
  position: relative;
  width: 52px; height: 52px; flex: none;
  object-fit: contain;
  filter: saturate(1.12) drop-shadow(0 2px 5px rgba(40, 20, 80, .14));
}
.brand__name {
  font-weight: 600; font-size: .96rem; letter-spacing: .24em;
  text-transform: uppercase; color: var(--ink-soft);
  white-space: nowrap;
}
.site-hdr__back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .92rem; font-weight: 600; color: var(--muted);
  transition: color .2s ease;
}
.site-hdr__back svg { width: 18px; height: 18px; }
.site-hdr__back:hover { color: var(--ink); }

/* =====================================================================
   BUTTONS (mirrors homepage)
   ===================================================================== */
.pill {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font: inherit; font-weight: 600; cursor: pointer;
  border: 0; border-radius: 999px;
  color: #fff; background: var(--grad);
  box-shadow: 0 16px 34px -14px rgba(138, 43, 226, .55), 0 6px 16px -8px rgba(0, 123, 255, .45);
  transition: transform .2s ease, box-shadow .28s ease, filter .2s ease;
}
.pill:hover { transform: translateY(-2px); box-shadow: 0 22px 44px -16px rgba(138, 43, 226, .62), 0 10px 22px -10px rgba(0, 123, 255, .5); }
.pill:focus-visible { outline: 3px solid rgba(0, 123, 255, .5); outline-offset: 3px; }
.pill:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.pill--lg { padding: 18px 34px; font-size: 1.06rem; }
.pill--full { width: 100%; }
.pill__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .25);
}

/* =====================================================================
   HERO
   ===================================================================== */
.c-hero {
  text-align: center;
  padding: calc(var(--hdr-h) + clamp(48px, 10vh, 110px)) var(--pad) clamp(20px, 4vw, 40px);
  max-width: 880px; margin: 0 auto;
}
.c-eyebrow {
  display: inline-block;
  font-size: .76rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 22px;
}
.c-hero__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -.025em;
  max-width: 16ch; margin-inline: auto;
}
.c-hero__lede {
  margin: clamp(22px, 3vw, 32px) auto 0;
  max-width: 50ch;
  font-size: clamp(1.04rem, 1.5vw, 1.24rem);
  color: var(--body);
}

/* =====================================================================
   BODY — form + aside
   ===================================================================== */
.c-body { padding: clamp(28px, 5vw, 56px) var(--pad) clamp(72px, 12vw, 140px); }
.c-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

/* ---- Form panel (single elegant glass panel, not a card grid) ---- */
.c-form-wrap {
  position: relative;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 24px;
  padding: clamp(24px, 3.5vw, 44px);
  box-shadow: var(--sh-soft);
}
/* soft colour glow behind the form panel */
.c-form-wrap::before {
  content: ""; position: absolute; z-index: -1; inset: -2px;
  border-radius: inherit; pointer-events: none;
  background:
    radial-gradient(40% 60% at 0% 0%, rgba(255, 106, 0, .12), transparent 70%),
    radial-gradient(40% 60% at 100% 100%, rgba(0, 123, 255, .12), transparent 70%);
  filter: blur(22px);
}
.c-form__heading {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.12;
}
.c-form__reassure {
  margin: 12px 0 26px;
  font-size: 1rem; color: var(--muted);
  max-width: 46ch;
}

/* ---- Fields ---- */
.c-form { display: flex; flex-direction: column; gap: 18px; }
.c-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.c-field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.c-field > label {
  font-size: .86rem; font-weight: 600; color: var(--ink-soft); letter-spacing: .01em;
}
.c-field .opt { color: var(--muted); font-weight: 500; }
.c-field .req { color: var(--connect); }

.c-input, .c-select, .c-textarea {
  width: 100%;
  font: inherit; color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.c-input::placeholder, .c-textarea::placeholder { color: #b3aec4; }
.c-textarea { resize: vertical; min-height: 130px; line-height: 1.55; }

.c-select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a85a1' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 42px; cursor: pointer;
}
.c-select[data-empty="true"] { color: #b3aec4; } /* placeholder look until chosen */

.c-input:focus, .c-select:focus, .c-textarea:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--connect) 55%, var(--line));
  box-shadow: 0 0 0 4px rgba(138, 43, 226, .12);
}
.c-input[aria-invalid="true"], .c-select[aria-invalid="true"], .c-textarea[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(216, 69, 108, .12);
}
.c-field__err { font-size: .8rem; font-weight: 500; color: var(--danger); display: none; }
.c-field.is-invalid .c-field__err { display: block; }

/* ---- Honeypot (visually hidden, off-screen, NOT display:none so bots fill it) ---- */
.hp {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* ---- Form-level error + success ---- */
.c-alert {
  border-radius: 14px; padding: 14px 16px; font-size: .95rem; line-height: 1.5;
  display: flex; gap: 10px; align-items: flex-start;
}
.c-alert[hidden] { display: none; }
.c-alert__icon { flex: none; margin-top: 2px; }
.c-alert--error {
  background: rgba(216, 69, 108, .08);
  border: 1px solid rgba(216, 69, 108, .32);
  color: #a82f53;
}
.c-form__actions { margin-top: 6px; }
.c-form__foot {
  margin-top: 14px; font-size: .82rem; color: var(--muted); text-align: center;
}

/* success panel that replaces the form */
.c-success { text-align: center; padding: clamp(20px, 4vw, 40px) 4px; }
.c-success[hidden] { display: none; }
.c-success__mark {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px;
  display: grid; place-items: center; color: #fff; background: var(--grad);
  box-shadow: 0 16px 34px -14px rgba(138, 43, 226, .55);
}
.c-success__mark svg { width: 30px; height: 30px; }
.c-success__title { font-family: var(--serif); font-weight: 600; font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.c-success__body { margin: 12px auto 0; max-width: 42ch; color: var(--body); }

/* =====================================================================
   ASIDE — contact details + what happens next
   ===================================================================== */
.c-aside { display: flex; flex-direction: column; gap: clamp(26px, 4vw, 40px); padding-top: 6px; }
.c-aside__label {
  font-size: .74rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}

/* contact details */
.c-contact { display: flex; flex-direction: column; gap: 14px; }
.c-contact__item { display: flex; align-items: center; gap: 13px; }
.c-contact__ic {
  flex: none; width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center; color: var(--connect);
  background: rgba(138, 43, 226, .08);
  border: 1px solid rgba(138, 43, 226, .14);
}
.c-contact__ic svg { width: 19px; height: 19px; }
.c-contact__k { font-size: .76rem; color: var(--muted); }
.c-contact__v { font-weight: 600; color: var(--ink); font-size: 1rem; }
.c-contact__v:hover { color: var(--connect); }
.c-contact__note { margin-top: 4px; font-size: .9rem; color: var(--muted); }

/* what happens next (text list with gradient numerals — not boxy cards) */
.c-steps { display: flex; flex-direction: column; gap: 18px; }
.c-step { display: flex; gap: 14px; align-items: flex-start; }
.c-step__n {
  flex: none; font-family: var(--serif); font-weight: 700; font-size: 1.15rem; line-height: 1.2;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  width: 1.4em; text-align: center;
}
.c-step__t { color: var(--ink-soft); font-size: .98rem; }
.c-step__t b { color: var(--ink); font-weight: 600; }

/* =====================================================================
   FOOTER — light editorial (mirrors homepage)
   ===================================================================== */
.site-foot {
  position: relative; text-align: center;
  padding: clamp(48px, 8vw, 88px) var(--pad) clamp(34px, 5vw, 52px);
  border-top: 1px solid var(--line);
}
.site-foot__inner { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.site-foot__logo-wrap { position: relative; display: inline-flex; isolation: isolate; margin-bottom: 4px; }
.site-foot__logo-wrap::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  left: 50%; top: 48%; transform: translate(-50%, -50%);
  width: clamp(104px, 11vw, 138px); height: clamp(104px, 11vw, 138px);
  background:
    radial-gradient(circle at 27% 27%, rgba(255, 106, 0, .20), transparent 24%),
    radial-gradient(circle at 73% 27%, rgba(0, 123, 255, .18), transparent 24%),
    radial-gradient(circle at 28% 73%, rgba(138, 43, 226, .18), transparent 24%),
    radial-gradient(circle at 73% 73%, rgba(255, 196, 0, .17), transparent 24%);
  filter: blur(6px);
  opacity: .82;
}
.site-foot__logo {
  position: relative;
  width: clamp(220px, 26vw, 360px); height: auto; object-fit: contain;
  filter: saturate(1.08) brightness(1.02) drop-shadow(0 2px 5px rgba(40, 20, 80, .08));
}
.site-foot__verbs {
  font-weight: 600; font-size: .82rem; letter-spacing: .12em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.site-foot__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; margin-top: 4px; }
.site-foot__links a { color: var(--muted); font-size: .92rem; transition: color .2s ease; }
.site-foot__links a:hover { color: var(--ink); }
.site-foot__copy { margin-top: 8px; font-size: .82rem; color: var(--muted); }

/* =====================================================================
   REVEAL (degradeable — see <noscript> override in the page head)
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 920px) {
  .c-grid { grid-template-columns: minmax(0, 1fr); gap: clamp(28px, 7vw, 44px); }
  .c-aside { order: 2; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .brand__name { font-size: .8rem; letter-spacing: .14em; }
  .brand__logo { width: 44px; height: 44px; }
  .site-hdr__back span { display: none; } /* keep just the arrow on tiny screens */
  .c-row { grid-template-columns: 1fr; }
}

/* =====================================================================
   REDUCED MOTION
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .12s !important; }
}

/* =====================================================================
   ENQUIRY v2 — header actions + theme toggle (mirrors homepage)
   ===================================================================== */
.site-hdr__actions { display: inline-flex; align-items: center; gap: 14px; }

.theme-toggle {
  position: relative;
  width: 46px; height: 38px; flex: none;
  border: 1px solid rgba(255,255,255,.72); border-radius: 999px;
  background: rgba(255,255,255,.58);
  color: var(--ink-soft); cursor: pointer;
  box-shadow: 0 12px 28px -18px rgba(40,20,80,.42), inset 0 1px 0 rgba(255,255,255,.72);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}
.theme-toggle:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -20px rgba(40,20,80,.5); }
.theme-toggle:focus-visible { outline: 3px solid rgba(0,123,255,.45); outline-offset: 3px; }
.theme-toggle__icon { position: absolute; inset: 0; display: grid; place-items: center; transition: opacity .22s ease, transform .22s ease; }
.theme-toggle__icon svg { width: 18px; height: 18px; }
.theme-toggle__icon--moon { opacity: 0; transform: translateY(5px) scale(.88); }
html[data-theme="dark"] .theme-toggle__icon--sun { opacity: 0; transform: translateY(-5px) scale(.88); }
html[data-theme="dark"] .theme-toggle__icon--moon { opacity: 1; transform: none; }

/* =====================================================================
   ENQUIRY v2 — guided form sections
   ===================================================================== */
/* sections manage their own rhythm, so drop the flat form gap */
.c-form { gap: 0; }

.c-sec { display: flex; flex-direction: column; gap: 16px; }
.c-sec + .c-sec {
  margin-top: clamp(22px, 3.4vw, 32px);
  padding-top: clamp(22px, 3.4vw, 32px);
  border-top: 1px solid var(--line);
}
.c-sec__head { display: flex; align-items: center; gap: 12px; }
.c-sec__n {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; font-size: .82rem; color: #fff;
  background: var(--grad);
  box-shadow: 0 10px 20px -10px rgba(138,43,226,.55);
}
.c-sec__title { font-family: var(--sans); font-weight: 600; font-size: 1.08rem; color: var(--ink); letter-spacing: -.01em; }

#formError { margin-top: clamp(20px, 3vw, 28px); }
.c-form__actions { margin-top: clamp(20px, 3vw, 28px); }

/* ---- Multi-select chips (premium, accessible checkbox group) ---- */
.c-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.c-chip { position: relative; display: inline-flex; }
.c-chip input {
  position: absolute; opacity: 0; width: 1px; height: 1px; margin: 0; pointer-events: none;
}
.c-chip__box {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 15px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--panel);
  color: var(--ink-soft); font-size: .9rem; font-weight: 600;
  cursor: pointer; user-select: none;
  transition: border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.c-chip__box::before {
  content: ""; flex: none; width: 8px; height: 8px; border-radius: 50%;
  background: color-mix(in srgb, var(--muted) 42%, transparent);
  transition: background .2s ease, box-shadow .2s ease;
}
.c-chip__box:hover { border-color: color-mix(in srgb, var(--connect) 36%, var(--line)); color: var(--ink); }
.c-chip input:checked + .c-chip__box {
  border-color: color-mix(in srgb, var(--connect) 52%, var(--line));
  background: color-mix(in srgb, var(--connect) 10%, var(--panel));
  color: var(--ink);
}
.c-chip input:checked + .c-chip__box::before {
  background: var(--grad);
  box-shadow: 0 0 0 3px rgba(138,43,226,.16);
}
.c-chip input:focus-visible + .c-chip__box { outline: 3px solid rgba(0,123,255,.45); outline-offset: 2px; }

/* ---- Textarea meta row + live counter ---- */
.c-field__meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.c-count { font-size: .8rem; color: var(--muted); margin-left: auto; }
.c-count.is-ok { color: var(--ok); font-weight: 600; }

/* =====================================================================
   ENQUIRY v2 — live recommendation card (aside)
   ===================================================================== */
.c-reco {
  position: relative; overflow: hidden;
  padding: 22px 22px 20px; border-radius: 18px;
  background: rgba(255,255,255,.6); border: 1px solid var(--line);
  box-shadow: 0 22px 54px -36px rgba(40,20,80,.45);
}
.c-reco[hidden] { display: none; }
.c-reco::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(138,43,226,.12), transparent 70%),
    radial-gradient(60% 80% at 0% 100%, rgba(255,106,0,.10), transparent 70%);
}
.c-reco__name { font-family: var(--serif); font-weight: 700; line-height: 1.08; font-size: clamp(1.5rem, 2.4vw, 1.95rem); margin-top: 4px; }
.c-reco__sub { margin-top: 10px; font-size: .9rem; color: var(--muted); }

/* =====================================================================
   THANK-YOU — smart summary
   ===================================================================== */
.ty-reco[hidden], .ty-told[hidden], .ty-generic[hidden] { display: none; }
.ty-reco__title { font-family: var(--serif); font-weight: 600; font-size: clamp(1.3rem, 2.2vw, 1.7rem); color: var(--ink); margin-top: 4px; }
.ty-reco__name {
  font-family: var(--serif); font-weight: 700; line-height: 1.04;
  font-size: clamp(2rem, 4.4vw, 3rem); margin-top: 8px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ty-reco__note { margin-top: 12px; color: var(--body); max-width: 46ch; }

.ty-told { margin-top: clamp(26px, 4vw, 38px); padding-top: clamp(24px, 3.5vw, 32px); border-top: 1px solid var(--line); }
.ty-told__list { display: flex; flex-direction: column; gap: 14px; }
.ty-told__list li { display: flex; gap: 14px; align-items: baseline; }
.ty-told__k {
  flex: none; width: 132px;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}
.ty-told__v { color: var(--ink); font-weight: 500; min-width: 0; }

.ty-note {
  margin-top: clamp(26px, 4vw, 36px); padding-top: clamp(22px, 3vw, 28px);
  border-top: 1px solid var(--line);
  font-size: .96rem; color: var(--muted); font-style: italic;
}
.ty-actions { margin-top: clamp(22px, 3vw, 30px); }

/* =====================================================================
   DARK MODE (mirrors homepage quality)
   ===================================================================== */
html[data-theme="dark"] {
  --ink:       #f7f3ff;
  --ink-soft:  #e7e1f3;
  --body:      #c7c1d5;
  --muted:     #938ca8;
  --bg:        #06070b;
  --panel:     #14141d;
  --line:      rgba(255,255,255,.12);
  --line-soft: rgba(255,255,255,.07);
  --sh-soft: 0 34px 90px -50px rgba(0,0,0,1), 0 0 0 1px rgba(255,255,255,.05);
  color-scheme: dark;
}
html[data-theme="dark"] .site-hdr.is-scrolled {
  background: rgba(6,7,11,.72);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}
html[data-theme="dark"] .theme-toggle {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
  color: #f7f3ff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 50px -36px rgba(0,0,0,1);
}
html[data-theme="dark"] .c-form-wrap {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.10);
}
html[data-theme="dark"] .c-form-wrap::before {
  background:
    radial-gradient(40% 60% at 0% 0%, rgba(255,106,0,.16), transparent 70%),
    radial-gradient(40% 60% at 100% 100%, rgba(0,123,255,.16), transparent 70%);
}
html[data-theme="dark"] .c-input,
html[data-theme="dark"] .c-select,
html[data-theme="dark"] .c-textarea {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
  color: var(--ink);
}
html[data-theme="dark"] .c-input::placeholder,
html[data-theme="dark"] .c-textarea::placeholder { color: #7c7790; }
html[data-theme="dark"] .c-select[data-empty="true"] { color: #7c7790; }
html[data-theme="dark"] .c-chip__box {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
}
html[data-theme="dark"] .c-chip input:checked + .c-chip__box {
  background: color-mix(in srgb, var(--connect) 26%, rgba(255,255,255,.04));
  border-color: color-mix(in srgb, var(--connect) 58%, transparent);
}
html[data-theme="dark"] .c-reco {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.10);
}
html[data-theme="dark"] .c-contact__ic {
  background: rgba(138,43,226,.18);
  border-color: rgba(138,43,226,.30);
  color: #c79cff;
}
html[data-theme="dark"] .c-alert--error {
  background: rgba(216,69,108,.12);
  border-color: rgba(216,69,108,.40);
  color: #ff9bb6;
}

/* dark + small-screen tidy for the thank-you "you told us" rows */
@media (max-width: 480px) {
  .ty-told__list li { flex-direction: column; gap: 4px; }
  .ty-told__k { width: auto; }
}
