/* ============================================================
   VividCharts — Book a Demo
   Page-specific styles. Inherits tokens + components from styles.css.
   ============================================================ */

/* ---------- Stripped landing nav ---------- */
.nav.lp .nav-inner { padding-top: 18px; padding-bottom: 18px; }
.nav.lp .lp-talk {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14.5px; font-weight: 600; color: var(--ink-2);
}
.nav.lp .lp-talk svg { width: 16px; height: 16px; color: var(--brand-strong); }
.nav.lp .lp-talk a { color: var(--ink); border-bottom: 1px solid var(--line-strong); padding-bottom: 1px; transition: border-color .2s var(--ease), color .2s var(--ease); }
.nav.lp .lp-talk a:hover { color: var(--brand-strong); border-color: var(--brand); }
@media (max-width: 560px) { .nav.lp .lp-talk .lp-talk-pre { display: none; } }

/* ============================================================
   HERO — split: value left, scheduler right
   ============================================================ */
.demo-hero { position: relative; padding: 56px 0 84px; overflow: hidden; }
.demo-hero .hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.demo-hero .hero-bg .glow {
  position: absolute; right: -120px; top: -160px; width: 760px; height: 560px;
  background: radial-gradient(ellipse at center, rgba(63,193,199,.20), rgba(63,193,199,0) 62%);
  filter: blur(6px);
}
.demo-hero .hero-bg .grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 70% 0%, #000 25%, transparent 72%);
  mask-image: radial-gradient(ellipse 70% 70% at 70% 0%, #000 25%, transparent 72%);
  opacity: .5;
}
body.bg-plain .demo-hero .hero-bg .grid { display: none; }
body.bg-plain .demo-hero .hero-bg .glow { display: none; }
body.bg-glow .demo-hero .hero-bg .grid { display: none; }

/* Traveling sparks ride the grid lines — match the grid's right-weighted mask,
   and only when the Grid background is on. */
.demo-hero .grid-dots {
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 70% 0%, #000 25%, transparent 72%);
  mask-image: radial-gradient(ellipse 70% 70% at 70% 0%, #000 25%, transparent 72%);
}
body.bg-glow .demo-hero .grid-dots,
body.bg-plain .demo-hero .grid-dots { display: none; }
.demo-hero .wrap { position: relative; z-index: 1; }

.demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 540px);
  gap: 56px; align-items: start;
}
body.sched-left .demo-grid { grid-template-columns: minmax(440px, 540px) minmax(0, 1fr); }
body.sched-left .demo-hero-left { order: 2; }
body.sched-left .scheduler-wrap { order: 1; }

/* ---- Left: value + proof ---- */
.demo-hero-left { padding-top: 14px; }
.demo-hero-left h1 {
  font-size: clamp(34px, 4.4vw, 56px);
  max-width: 15ch; margin: 20px 0 0;
}
.demo-hero-left h1 .accent { color: var(--brand); }
.demo-hero-left .lead {
  font-size: clamp(16px, 1.4vw, 19px); color: var(--ink-2);
  max-width: 46ch; margin: 22px 0 0; line-height: 1.55;
}

.expect {
  margin: 30px 0 0; display: flex; flex-direction: column; gap: 14px;
  max-width: 44ch;
}
.expect .ex-row { display: flex; gap: 13px; align-items: flex-start; }
.expect .ex-ic {
  width: 26px; height: 26px; border-radius: 50%; flex: none; margin-top: 1px;
  background: var(--brand-tint); color: var(--brand-strong);
  display: grid; place-items: center;
}
.expect .ex-ic svg { width: 15px; height: 15px; }
.expect .ex-row span { font-size: 15.5px; color: var(--ink); font-weight: 500; line-height: 1.45; }
.expect .ex-row b { font-weight: 700; }

.hero-proof {
  margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.hero-proof .stars { display: inline-flex; gap: 2px; color: var(--brand); }
.hero-proof .stars svg { width: 16px; height: 16px; }
.hero-proof .pf { display: flex; flex-direction: column; gap: 3px; }
.hero-proof .pf b { font-size: 14px; font-weight: 700; color: var(--ink); }
.hero-proof .pf span { font-size: 12.5px; color: var(--ink-3); font-weight: 500; }
.hero-proof .pf-sep { width: 1px; align-self: stretch; background: var(--line); }

.hero-quote {
  margin-top: 26px; max-width: 46ch;
  border-left: 2px solid var(--brand); padding-left: 18px;
}
.hero-quote p { font-size: 15.5px; color: var(--ink); line-height: 1.5; font-style: italic; }
.hero-quote .qby { margin-top: 10px; font-size: 12.5px; color: var(--ink-3); font-weight: 600; font-style: normal; }

/* ============================================================
   SCHEDULER CARD
   ============================================================ */
.scheduler-wrap { position: relative; }
.scheduler {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.sch-head {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px; border-bottom: 1px solid var(--line);
  background: var(--light-cream);
}
.sch-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--brand); color: var(--brand-fg);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  box-shadow: 0 0 0 3px var(--white), 0 0 0 4px var(--line);
}
.sch-head .sh-title { font-family: var(--font-display); font-weight: 700; font-size: 16.5px; color: var(--ink); }
.sch-head .sh-meta { display: flex; align-items: center; gap: 14px; margin-top: 5px; flex-wrap: wrap; }
.sch-head .sh-meta span { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--ink-3); }
.sch-head .sh-meta svg { width: 14px; height: 14px; color: var(--ink-3); }

.sch-progress { display: flex; gap: 5px; padding: 0 22px; margin-top: -1px; }
.sch-progress i { flex: 1; height: 3px; border-radius: 3px; background: var(--line); transition: background .3s var(--ease); }
.sch-progress i.on { background: var(--brand); }

.sch-body { padding: 20px 22px 24px; }

/* ---- HubSpot Meetings embed nested in the card body ---- */
.sch-embed-body { padding: 0; }
.sch-embed-body .meetings-iframe-container { min-height: 640px; }
.sch-embed-body .meetings-iframe-container iframe { display: block; width: 100%; border: 0; }
.sch-embed-fallback { padding: 24px; color: var(--ink-2); font-size: 14px; }

/* ---- Pick view: calendar + slots ---- */
.sch-pick { display: grid; grid-template-columns: 1fr 188px; gap: 22px; }
.sch-pick.no-date { grid-template-columns: 1fr; }

.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal-month { font-family: var(--font-display); font-weight: 700; font-size: 15.5px; color: var(--ink); }
.cal-nav { display: flex; gap: 6px; }
.cal-arrow {
  width: 30px; height: 30px; border-radius: var(--r-sm);
  border: 1px solid var(--line-strong); background: var(--white);
  display: grid; place-items: center; color: var(--ink-2); cursor: pointer; padding: 0;
  transition: background .16s var(--ease), border-color .16s var(--ease), color .16s var(--ease);
}
.cal-arrow svg { width: 16px; height: 16px; }
.cal-arrow:hover:not([disabled]) { background: var(--brand-tint); border-color: var(--brand); color: var(--brand-strong); }
.cal-arrow[disabled] { opacity: .35; cursor: default; }

.cal-dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 6px; }
.cal-dow span { text-align: center; font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day {
  position: relative; aspect-ratio: 1 / 1;
  border: 0; background: transparent; border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 13.5px; font-weight: 600; color: var(--ink-3);
  display: grid; place-items: center; padding: 0;
}
.cal-day.empty { visibility: hidden; }
.cal-day.avail { color: var(--ink); background: var(--brand-tint); cursor: pointer; transition: background .14s var(--ease), color .14s var(--ease), transform .14s var(--ease); }
.cal-day.avail:hover { background: var(--brand-tint-2); transform: translateY(-1px); }
.cal-day.avail::after {
  content: ""; position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--brand);
}
.cal-day.sel { background: var(--brand); color: var(--brand-fg); }
.cal-day.sel::after { background: var(--brand-fg); }
.cal-day.off { color: var(--line-strong); cursor: default; }
.cal-day.today:not(.sel) { box-shadow: inset 0 0 0 1px var(--line-strong); }

.cal-legend { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 12px; color: var(--ink-3); font-weight: 500; }
.cal-legend .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }

/* slots column */
.slots-col { display: flex; flex-direction: column; min-width: 0; }
.slots-date { font-size: 12.5px; font-weight: 700; color: var(--ink); margin-bottom: 10px; letter-spacing: .01em; }
.slots {
  display: flex; flex-direction: column; gap: 8px;
  max-height: 230px; overflow-y: auto; padding-right: 4px;
  scrollbar-width: thin;
}
.slot {
  border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  background: var(--white); color: var(--ink);
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  padding: 11px 14px; text-align: center; cursor: pointer;
  transition: border-color .14s var(--ease), background .14s var(--ease), color .14s var(--ease);
  letter-spacing: .01em;
}
.slot:hover { border-color: var(--brand); background: var(--brand-tint); color: var(--brand-strong); }
.slot.taken { opacity: .4; cursor: default; text-decoration: line-through; }
.slot.taken:hover { border-color: var(--line-strong); background: var(--white); color: var(--ink); }

.slots-empty {
  border: 1px dashed var(--line-strong); border-radius: var(--r-md);
  padding: 26px 18px; text-align: center; color: var(--ink-3);
  font-size: 13.5px; font-weight: 500; line-height: 1.5;
  display: grid; place-items: center; gap: 10px; min-height: 180px;
}
.slots-empty svg { width: 26px; height: 26px; color: var(--line-strong); }

/* ---- Confirm view ---- */
.sch-confirm { animation: sch-fade .3s var(--ease) both; }
@keyframes sch-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.confirm-when {
  display: flex; align-items: center; gap: 13px;
  background: var(--brand-tint); border: 1px solid #BDEBEC;
  border-radius: var(--r-md); padding: 15px 17px; margin-bottom: 20px;
}
.confirm-when .cw-ic { width: 36px; height: 36px; border-radius: var(--r-sm); background: var(--brand); color: var(--brand-fg); display: grid; place-items: center; flex: none; }
.confirm-when .cw-ic svg { width: 19px; height: 19px; }
.confirm-when b { display: block; font-size: 15px; font-weight: 700; color: var(--ink); }
.confirm-when span { display: block; font-size: 13px; color: var(--ink-2); margin-top: 2px; }

.sch-field { margin-bottom: 14px; }
.sch-field label { display: block; font-size: 12.5px; font-weight: 700; color: var(--ink); margin-bottom: 7px; letter-spacing: .01em; }
.sch-field label .opt { font-weight: 500; color: var(--ink-3); text-transform: none; letter-spacing: 0; }
.sch-input {
  width: 100%; border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  background: var(--white); color: var(--ink);
  font-family: var(--font-body); font-size: 15.5px; font-weight: 500;
  padding: 13px 14px; outline: 0;
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.sch-input::placeholder { color: var(--ink-3); }
.sch-input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(63,193,199,.22); }
.sch-input.is-invalid { border-color: #E86A60; box-shadow: 0 0 0 3px rgba(232,106,96,.2); }
.sch-err { display: flex; align-items: center; gap: 7px; margin-top: 9px; font-size: 13px; font-weight: 600; color: #C03C31; }
.sch-err[hidden] { display: none; }
.sch-err svg { width: 14px; height: 14px; flex: none; }

.sch-actions { display: flex; gap: 10px; margin-top: 20px; }
.sch-actions .btn { flex: 1; justify-content: center; }
.sch-back {
  flex: none !important; width: auto;
  background: transparent; border: 1px solid var(--line-strong); color: var(--ink-2);
  padding-left: 16px; padding-right: 16px;
}
.sch-back:hover { background: var(--white); border-color: var(--ink); transform: none; box-shadow: none; }
.sch-fine { margin-top: 14px; font-size: 12px; color: var(--ink-3); font-weight: 500; line-height: 1.5; display: flex; gap: 7px; align-items: flex-start; }
.sch-fine svg { width: 14px; height: 14px; color: var(--brand); flex: none; margin-top: 1px; }

/* ---- Done view ---- */
.sch-done { text-align: center; padding: 18px 8px 12px; animation: sch-fade .35s var(--ease) both; }
.sch-done .done-ic {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 18px;
  background: var(--brand); color: var(--brand-fg); display: grid; place-items: center;
  box-shadow: 0 0 0 6px var(--brand-tint);
}
.sch-done .done-ic svg { width: 30px; height: 30px; }
.sch-done h3 { font-size: 23px; }
.sch-done .done-when {
  margin: 16px auto 0; max-width: 320px;
  border: 1px solid var(--line); border-radius: var(--r-md); padding: 14px 16px;
  font-size: 14.5px; color: var(--ink); font-weight: 600; line-height: 1.5;
}
.sch-done .done-when .dw-em { display: block; font-weight: 500; color: var(--ink-3); font-size: 13px; margin-top: 4px; }
.sch-done .done-sub { font-size: 14px; color: var(--ink-2); margin: 18px auto 0; max-width: 38ch; line-height: 1.5; }
.sch-done .done-cal { display: flex; gap: 10px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
.sch-done .done-cal button {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid var(--line-strong); background: var(--white); color: var(--ink);
  border-radius: var(--r-sm); padding: 9px 14px; cursor: pointer;
  font-family: var(--font-body); font-size: 12.5px; font-weight: 700;
  transition: border-color .16s var(--ease), background .16s var(--ease);
}
.sch-done .done-cal button:hover { border-color: var(--brand); background: var(--brand-tint); }
.sch-done .done-cal svg { width: 15px; height: 15px; }

.sched-tz { margin-top: 12px; text-align: center; font-size: 12px; color: var(--ink-3); font-weight: 500; }
.sched-tz svg { width: 13px; height: 13px; vertical-align: -2px; margin-right: 4px; }

@media (max-width: 980px) {
  .demo-grid { grid-template-columns: 1fr; gap: 40px; }
  body.sched-left .demo-grid { grid-template-columns: 1fr; }
  body.sched-left .demo-hero-left { order: 1; }
  body.sched-left .scheduler-wrap { order: 2; }
  .demo-hero-left h1 { max-width: 18ch; }
  .demo-hero-left .lead, .expect, .hero-quote { max-width: none; }
}
/* On phones, get the calendar up fast: drop the rating row + pull-quote
   (proof still lives in the trust bar / voices band below). */
@media (max-width: 700px) {
  .demo-hero { padding-top: 36px; }
  .demo-grid { gap: 30px; }
  .demo-hero-left .hero-proof,
  .demo-hero-left .hero-quote { display: none; }
  .expect { margin-top: 24px; }
}
@media (max-width: 540px) {
  .sch-pick { grid-template-columns: 1fr; }
  .slots { max-height: none; }
  .sch-body { padding: 18px 16px 20px; }
  .sch-head { padding: 16px; }
}

/* ============================================================
   LOGO TRUST BAR (reuses .trust from styles.css; tighten top)
   ============================================================ */

/* ============================================================
   "WHAT YOU'LL GET" — 3-up
   ============================================================ */
.get-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); margin-top: 52px; }
.get-card { padding: 36px 32px 36px 0; border-right: 1px solid var(--line); }
.get-card:last-child { border-right: none; padding-right: 0; }
.get-card:not(:first-child) { padding-left: 32px; }
.get-card .gic { width: 46px; height: 46px; border-radius: var(--r-sm); background: var(--brand-tint); color: var(--brand); display: grid; place-items: center; margin-bottom: 18px; }
.get-card .gic svg { width: 23px; height: 23px; }
.get-card h3 { font-size: 20px; }
.get-card p { color: var(--ink-2); margin-top: 11px; font-size: 15px; line-height: 1.55; }
@media (max-width: 820px) {
  .get-grid { grid-template-columns: 1fr; }
  .get-card { border-right: none; border-bottom: 1px solid var(--line); padding: 28px 0; }
  .get-card:not(:first-child) { padding-left: 0; }
  .get-card:last-child { border-bottom: none; }
}

/* ============================================================
   ADJECTIVES + REVIEW (ivory band)
   ============================================================ */
.voices { background: var(--light-cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.voices-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.voices .v-quote .stars { display: flex; gap: 4px; color: var(--brand); margin-bottom: 20px; }
.voices .v-quote .stars svg { width: 20px; height: 20px; }
.voices .v-quote blockquote {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(22px, 2.6vw, 32px); line-height: 1.25; letter-spacing: -0.02em;
  color: var(--ink); max-width: 20ch;
}
.voices .v-quote blockquote .hl { color: var(--brand); }
.voices .v-quote .by { margin-top: 24px; display: flex; align-items: center; gap: 13px; }
.voices .v-quote .av { width: 44px; height: 44px; border-radius: 50%; background: var(--brand-tint); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: var(--brand-strong); }
.voices .v-quote .by .nm { font-weight: 700; font-size: 14.5px; }
.voices .v-quote .by .rl { font-size: 12.5px; color: var(--ink-3); }

.adj-head { font-size: 12.5px; font-weight: 700; letter-spacing: var(--tracking-caps); text-transform: uppercase; color: var(--ink-3); margin-bottom: 18px; }
.adj-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.adj-chip {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); background: var(--white); border-radius: 999px;
  padding: 10px 18px; font-size: 14.5px; font-weight: 600; color: var(--ink);
  transition: border-color .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
}
.adj-chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); flex: none; }
.adj-chip:hover { border-color: var(--brand); color: var(--brand-strong); transform: translateY(-2px); }
.adj-chip.lg { font-size: 16px; padding: 12px 22px; }
@media (max-width: 860px) { .voices-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   SECONDARY OFFER — not ready to book
   ============================================================ */
.secondary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 48px; }
.sec-card {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; background: var(--white);
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.sec-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand); }
.sec-card .sic { width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--light-cream); color: var(--ink); display: grid; place-items: center; margin-bottom: 18px; }
.sec-card:hover .sic { background: var(--brand-tint); color: var(--brand); }
.sec-card .sic svg { width: 22px; height: 22px; }
.sec-card h3 { font-size: 20px; }
.sec-card p { color: var(--ink-2); margin-top: 10px; font-size: 14.5px; line-height: 1.55; flex: 1; }
.sec-card .sec-link { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: var(--tracking-caps); text-transform: uppercase; color: var(--brand-strong); }
.sec-card .sec-link svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.sec-card:hover .sec-link svg { transform: translateX(3px); }
@media (max-width: 720px) { .secondary-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { margin-top: 44px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: transparent; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; text-align: left;
  font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ink);
}
.faq-q .fq-plus { position: relative; width: 18px; height: 18px; flex: none; }
.faq-q .fq-plus::before, .faq-q .fq-plus::after {
  content: ""; position: absolute; background: var(--brand-strong); border-radius: 2px;
  transition: transform .26s var(--ease), opacity .26s var(--ease);
}
.faq-q .fq-plus::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-q .fq-plus::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item.open .fq-plus::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s var(--ease); }
.faq-a-inner { padding: 0 4px 26px; color: var(--ink-2); font-size: 15.5px; line-height: 1.6; max-width: 70ch; }
.faq-item.open .faq-a { max-height: 240px; }

/* ============================================================
   PROOF DENSITY tweak — minimal hides supporting bands
   ============================================================ */
body.proof-minimal #voices,
body.proof-minimal #faq { display: none; }

/* ============================================================
   CONTACT MODAL
   ============================================================ */
.modal-scrim {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(35, 34, 45, .55);
  display: grid; place-items: center; padding: 24px;
  animation: scrim-in .2s var(--ease) both;
}
.modal-scrim[hidden] { display: none; }
@keyframes scrim-in { from { opacity: 0; } to { opacity: 1; } }
.contact-modal {
  position: relative; width: 100%; max-width: 520px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  padding: 36px 36px 30px; max-height: calc(100vh - 48px); overflow-y: auto;
  animation: modal-in .26s var(--ease) both;
}
@keyframes modal-in { from { opacity: 0; transform: translateY(14px) scale(.99); } to { opacity: 1; transform: none; } }
.cm-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: var(--r-sm);
  border: 1px solid var(--line); background: var(--white); color: var(--ink-2);
  display: grid; place-items: center; cursor: pointer; padding: 0;
  transition: background .16s var(--ease), border-color .16s var(--ease), color .16s var(--ease);
}
.cm-close svg { width: 18px; height: 18px; }
.cm-close:hover { background: var(--brand-tint); border-color: var(--brand); color: var(--brand-strong); }
.cm-body .eyebrow { margin-bottom: 14px; }
.cm-body h3 { font-size: 26px; }
.cm-intro { color: var(--ink-2); font-size: 15px; line-height: 1.55; margin-top: 12px; }
#contactForm { margin-top: 22px; }
.cm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cm-textarea { resize: vertical; min-height: 86px; line-height: 1.5; font-family: var(--font-body); }
.cm-submit { width: 100%; justify-content: center; margin-top: 18px; }
.cm-done { text-align: center; padding: 8px 0 4px; }
.cm-done .done-ic {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 18px;
  background: var(--brand); color: var(--brand-fg); display: grid; place-items: center;
  box-shadow: 0 0 0 6px var(--brand-tint);
}
.cm-done .done-ic svg { width: 30px; height: 30px; }
.cm-done .cm-intro { max-width: 36ch; margin-left: auto; margin-right: auto; }
@media (max-width: 480px) {
  .contact-modal { padding: 30px 22px 24px; }
  .cm-row { grid-template-columns: 1fr; }
}

/* Minimal footer now provided by the shared partial in minimal mode
   (.footer-minimal in styles.css) — VIV-4892. Bespoke .lp-footer removed. */
