/* ==========================================================================
   Trade Marketing Lab — shared design system
   Layout study inspired by the structure of openworklabs.com
   Palette, type scale and component rhythm are TML's own implementation.
   ========================================================================== */

/* ------------------------------ Tokens ---------------------------------- */
:root {
  --ink: #011627;
  --ink-soft: #102638;
  --page: #fcfdfe;
  --tonal: #f0f4f9;
  --body: #4b5563;
  --muted: #6b7280;
  --faint: #9ca3af;
  --border: #e5e7eb;
  --border-soft: #e8edf3;
  --rule: #f1f5f9;
  --blue: #2563eb;
  --blue-wash: #eff6ff;
  --status: #059669;
  --status-dot: #10b981;
  --on-ink: #f7f7f4;

  --sans: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco,
    Consolas, "Liberation Mono", "Courier New", monospace;
  --pixel: "FK Raster Roman Compact Smooth", var(--sans);

  --shell: 1176px;
  --gutter: 24px;
  --radius-card: 24px;
  --radius-soft: 12px;
  --radius-pill: 9999px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-card: 0 8px 24px rgba(1, 22, 39, 0.05);
  --shadow-lift: 0 12px 32px rgba(1, 22, 39, 0.09);
}

/* ------------------------------ Reset ----------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4, p, dl, dd, dt, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: -80px;
  z-index: 60;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ------------------------------ Layout ---------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { margin-top: 88px; }
@media (min-width: 900px) { .section { margin-top: 120px; } }

/* ------------------------------ Type ------------------------------------ */
.mono,
.eyebrow,
.pill-tag {
  font-family: var(--mono);
}

.eyebrow {
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--body);
}
@media (min-width: 640px) { .eyebrow { font-size: 12px; } }

.hero-title {
  font-size: clamp(2.4rem, 4.4vw, 3.25rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.h2 {
  font-size: clamp(1.85rem, 4vw, 2.25rem);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.h2 span { display: block; }

.h3 {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--body);
  max-width: 34rem;
}
@media (min-width: 900px) { .lede { font-size: 18px; } }

.copy {
  font-size: 16px;
  line-height: 25px;
  color: var(--body);
  max-width: 640px;
}

.copy-sm {
  font-size: 14px;
  line-height: 22px;
  color: var(--body);
}

.tiny {
  font-size: 13px;
  line-height: 20px;
  color: var(--muted);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 860px) {
  .section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.section-head .kicker {
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--muted);
}
.section-head .aside {
  flex-shrink: 0;
}
.section-head .aside p {
  max-width: 360px;
  font-size: 14.5px;
  line-height: 22px;
  color: var(--body);
}
@media (min-width: 860px) { .section-head .aside p { text-align: right; } }

/* ------------------------------ Buttons --------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--on-ink);
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.15s var(--ease), border-color 0.15s var(--ease),
    transform 0.1s var(--ease), opacity 0.15s var(--ease);
}
.btn:hover { background: var(--ink-soft); border-color: var(--ink-soft); }
.btn:active { transform: scale(0.98); }

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

.btn--sm { height: 36px; padding: 0 16px; font-size: 14px; }
.btn--lg { height: 50px; padding: 0 26px; }
.btn--block { width: 100%; }

.btn .arrow {
  transition: transform 0.15s var(--ease);
  display: inline-block;
}
.btn:hover .arrow { transform: translateX(3px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: border-color 0.15s var(--ease);
}
.link-arrow:hover { border-color: var(--ink); }

/* ------------------------------ Banner ---------------------------------- */
.concept-banner {
  background: var(--ink);
  color: #dbe4ee;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 9px 18px;
}
.concept-banner strong { color: #fff; font-weight: 500; }

/* ------------------------------ Header ---------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(252, 253, 254, 0.82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--border);
  background: rgba(252, 253, 254, 0.94);
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 68px;
  padding-block: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.brand-name {
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.brand-name em {
  font-style: normal;
  color: var(--faint);
  font-weight: 400;
}

.nav {
  display: none;
  align-items: center;
  gap: 26px;
  padding-left: 34px;
  font-size: 14px;
}
.nav a { color: var(--muted); transition: color 0.15s var(--ease); }
.nav a:hover { color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}
.header-actions .btn--ghost { display: none; }

@media (min-width: 1024px) {
  .nav { display: flex; }
  .header-actions .btn--ghost { display: inline-flex; }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: #fff;
  cursor: pointer;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  padding: 8px var(--gutter) 20px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  padding: 13px 0;
  font-size: 16px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
}
.mobile-nav .btn { margin-top: 16px; }

/* --------------------------- Wordmark ----------------------------------- */
.wordmark {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
  padding-block: 26px 30px;
  font-family: var(--pixel);
  font-weight: 400;
  font-size: clamp(3.2rem, 21.5vw, 14rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  user-select: none;
  text-rendering: optimizeSpeed;
}
.wordmark .dot {
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: -0.08em;
}
@media (min-width: 900px) {
  .wordmark { padding-block: 32px 56px; }
}

/* ------------------------------ Hero ------------------------------------ */
.hero {
  display: grid;
  align-items: start;
  gap: 40px;
  padding-bottom: 8px;
}
@media (min-width: 1024px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
    gap: 48px;
  }
}

.hero-lede { margin-top: 24px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.hero-terms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
}
.hero-terms .sep { color: var(--faint); }

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 12px;
  color: var(--muted);
}
.hero-note .flag-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: var(--ink);
}

/* --------------------------- Panel card --------------------------------- */
.panel {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 20px;
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.panel-title { font-size: 15px; line-height: 1.35; color: var(--ink); }
.panel-sub { margin-top: 4px; font-size: 13px; line-height: 1.6; color: var(--muted); }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: #ecfdf5;
  color: var(--status);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.status-pill::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--status-dot);
}

.pill-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 7px;
  border-radius: var(--radius-pill);
  background: var(--blue-wash);
  color: var(--blue);
  font-size: 9.5px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Fake search / AI answer widget inside the hero panel */
.query-box {
  margin-top: 16px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-soft);
  background: var(--page);
  padding: 12px;
}
.query-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink);
}
.query-line .caret {
  width: 7px; height: 15px;
  background: var(--ink);
  animation: blink 1.1s steps(2, start) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.result-list { margin-top: 14px; display: grid; gap: 10px; }
.result {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: #fff;
}
.result.is-you {
  border-color: #bfdbfe;
  background: var(--blue-wash);
}
.result-rank {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--faint);
  padding-top: 2px;
  min-width: 16px;
}
.result.is-you .result-rank { color: var(--blue); font-weight: 600; }
.result-name { font-size: 13.5px; line-height: 1.4; color: var(--ink); }
.result-meta { font-size: 11.5px; line-height: 1.5; color: var(--muted); }
.result.is-you .result-meta { color: #1d4ed8; }

/* --------------------------- Stats row ---------------------------------- */
.stats {
  display: grid;
  gap: 22px;
  margin-top: 48px;
  padding-block: 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 700px) {
  .stats { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .stat + .stat {
    border-left: 1px solid var(--border);
    padding-left: 22px;
  }
  .stat:not(:last-child) { padding-right: 22px; }
}
.stat-value {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
}
.stat-label {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

/* --------------------------- Jump links --------------------------------- */
.jump-row {
  display: grid;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 700px) { .jump-row { grid-template-columns: repeat(3, 1fr); } }
.jump-row a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  font-size: 13px;
  color: var(--body);
  border-bottom: 1px solid var(--border);
  transition: color 0.15s var(--ease);
}
.jump-row a:last-child { border-bottom: 0; }
.jump-row a:hover { color: var(--ink); }
@media (min-width: 700px) {
  .jump-row a {
    border-bottom: 0;
    padding: 18px 24px;
    border-right: 1px solid var(--border);
  }
  .jump-row a:first-child { padding-left: 0; }
  .jump-row a:last-child { border-right: 0; padding-right: 0; }
}
.jump-row svg { flex-shrink: 0; }

/* --------------------------- Card grids --------------------------------- */
.grid-cards {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 700px) { .grid-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-cards--4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1000px) { .grid-cards--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  border-radius: var(--radius-card);
  background: var(--tonal);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.card p { font-size: 14.5px; line-height: 22px; color: var(--body); }
.card .card-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted);
}

.icon-chip {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  font-size: 19px;
  line-height: 1;
  transition: transform 0.18s var(--ease);
}
.card:hover .icon-chip { transform: translateY(-2px) rotate(6deg); }

/* --------------------------- Compare table ------------------------------ */
.compare-wrap { margin-top: 40px; }

.compare {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.compare th,
.compare td {
  padding: 18px 20px;
  vertical-align: top;
  border-bottom: 1px solid var(--border-soft);
}
.compare thead th {
  padding-top: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.compare thead th:nth-child(2) { color: var(--faint); }
.compare thead th:nth-child(3) { color: var(--ink); }
.compare tbody th {
  width: 34%;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
}
.compare .them { color: var(--muted); font-size: 14.5px; line-height: 1.5; }
.compare .us { color: var(--ink); font-size: 14.5px; line-height: 1.5; }
.compare .us-cell { background: rgba(37, 99, 235, 0.035); }
.compare tbody tr:last-child th,
.compare tbody tr:last-child td { border-bottom: 0; }

.compare th:first-child,
.compare td:first-child { padding-left: 0; }
.compare th:last-child,
.compare td:last-child { padding-right: 0; }

@media (max-width: 819px) {
  .compare thead { display: none; }
  .compare, .compare tbody, .compare tr, .compare th, .compare td { display: block; width: auto; }
  .compare tr {
    border-bottom: 1px solid var(--border-soft);
    padding-block: 18px;
  }
  .compare tbody th { width: auto; padding: 0 0 12px; border: 0; font-weight: 500; }
  .compare td { border: 0; padding: 0; }
  .compare .them { margin-bottom: 12px; }
  .compare td::before {
    display: block;
    margin-bottom: 4px;
    font-family: var(--mono);
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--faint);
  }
  .compare td.them::before { content: "Most agencies"; }
  .compare td.us::before { content: "Trade Marketing Lab"; color: var(--blue); }
  .compare--four td:nth-of-type(1)::before { content: "Starter · $1,499"; }
  .compare--four td:nth-of-type(2)::before { content: "Launch · $500 + $299/mo"; color: var(--blue); }
  .compare--four td:nth-of-type(3)::before { content: "Domination · $1,999"; }
  .compare .us-cell {
    background: transparent;
    border-left: 2px solid #bfdbfe;
    padding-left: 12px;
  }
}

/* Four-column variant (feature breakdown on the pricing page) */
.compare--four tbody th { width: 22%; }
.compare--four thead th { font-size: 9.5px; }
.compare--four th,
.compare--four td { padding: 16px 14px; }
.compare--four tbody td:last-child { border-left: 1px solid var(--border-soft); }

/* ----------------------------- Pricing ---------------------------------- */
.plans {
  display: grid;
  gap: 16px;
  margin-top: 40px;
  align-items: start;
}
@media (min-width: 900px) { .plans { grid-template-columns: repeat(3, 1fr); } }

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: #fff;
  padding: 26px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    border-color 0.2s var(--ease);
}
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

.plan--featured {
  border-color: var(--ink);
  box-shadow: var(--shadow-lift);
}
@media (min-width: 900px) { .plan--featured { margin-top: -12px; padding-bottom: 30px; } }

.plan-flag {
  position: absolute;
  top: -11px;
  left: 26px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.plan-name { font-size: 15px; color: var(--muted); }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}
.plan-price .unit { font-size: 15px; font-weight: 400; letter-spacing: 0; color: var(--muted); }
.plan-terms { font-size: 13px; color: var(--muted); margin-top: -8px; }
.plan hr { border: 0; border-top: 1px solid var(--border-soft); margin: 0; }

.plan-features { display: grid; gap: 10px; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
}
.plan-features svg { flex-shrink: 0; margin-top: 3px; color: var(--status); }
.plan .btn { margin-top: auto; }

.plans-foot {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  font-size: 14px;
  color: var(--body);
}
.plans-foot .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: #fff;
  font-size: 13.5px;
  color: var(--ink);
}
.plans-foot .chip b { font-weight: 500; }

/* ----------------------------- Trades ----------------------------------- */
.trades {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.trade {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: #fff;
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color 0.15s var(--ease), transform 0.15s var(--ease);
}
.trade:hover { border-color: var(--faint); transform: translateY(-1px); }
.trade span[aria-hidden] { font-size: 16px; }

/* --------------------------- Testimonial -------------------------------- */
.quote {
  margin-top: 40px;
  border-radius: var(--radius-card);
  background: var(--ink);
  color: #e8eef5;
  padding: 34px;
  display: grid;
  gap: 24px;
}
@media (min-width: 900px) {
  .quote { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 40px; padding: 44px; }
}
.quote blockquote {
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #fff;
}
.quote figcaption { font-size: 14px; line-height: 1.6; color: #9fb2c6; }
.quote figcaption b { display: block; color: #fff; font-weight: 500; }
.quote .quote-kpis { display: grid; gap: 14px; align-content: start; }
.quote .quote-kpis div {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 12px;
  font-size: 13.5px;
  color: #9fb2c6;
}
.quote .quote-kpis b { color: #fff; font-weight: 500; font-size: 20px; display: block; letter-spacing: -0.02em; }

/* ------------------------------- FAQ ------------------------------------ */
.faq-list {
  margin-top: 36px;
  display: grid;
  gap: 0;
}
@media (min-width: 860px) {
  .faq-list { grid-template-columns: repeat(2, 1fr); column-gap: 48px; align-content: start; }
}
.faq-item { border-top: 1px solid var(--border); }
.faq-item > summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 14px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary .plus {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
}
.faq-item > summary .plus::before,
.faq-item > summary .plus::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1.5px;
  background: var(--muted);
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease);
}
.faq-item > summary .plus::after { transform: rotate(90deg); }
.faq-item[open] > summary .plus::after { transform: rotate(0deg); }
.faq-item[open] > summary .plus::before,
.faq-item[open] > summary .plus::after { background: var(--ink); }
.faq-item > summary:hover .plus::before,
.faq-item > summary:hover .plus::after { background: var(--ink); }
.faq-item .answer {
  padding-bottom: 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--body);
  max-width: 46rem;
}

/* ------------------------------- CTA ------------------------------------ */
.cta {
  margin-top: 88px;
  border-radius: var(--radius-card);
  background: var(--tonal);
  padding: 38px 28px;
  text-align: center;
}
@media (min-width: 900px) { .cta { margin-top: 120px; padding: 64px 48px; } }
.cta h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 300;
  line-height: 1.14;
  letter-spacing: -0.03em;
}
.cta p {
  margin: 18px auto 0;
  max-width: 560px;
  font-size: 16px;
  line-height: 25px;
  color: var(--body);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.cta-note { margin-top: 18px; font-size: 12.5px; color: var(--muted); }

/* ----------------------------- Footer ----------------------------------- */
.site-footer {
  margin-top: 88px;
  border-top: 1px solid var(--border);
  padding-block: 44px 56px;
}
@media (min-width: 900px) { .site-footer { margin-top: 120px; } }

.footer-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)); gap: 48px; }
}
.footer-brand p {
  margin-top: 14px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 340px;
}
.footer-col h3 {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--faint);
}
.footer-col ul { margin-top: 14px; display: grid; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--body);
  transition: color 0.15s var(--ease);
}
.footer-col a:hover { color: var(--ink); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--muted);
}
.footer-bottom .badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-bottom .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: #fff;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --------------------------- Sub-page bits ------------------------------ */
.page-head {
  padding-top: 24px;
  display: grid;
  gap: 22px;
}
@media (min-width: 900px) {
  .page-head { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 48px; align-items: end; }
}
.breadcrumbs {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
}
.breadcrumbs a:hover { color: var(--ink); }

/* Form */
.form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: #fff;
  padding: 26px;
  box-shadow: var(--shadow-card);
}
.field { display: grid; gap: 7px; }
.field label { font-size: 13.5px; font-weight: 500; color: var(--ink); }
.field .hint { font-size: 12px; color: var(--muted); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--page);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 13px;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(1, 22, 39, 0.07);
}
.form .form-note { font-size: 12.5px; line-height: 1.6; color: var(--muted); }
.form .row { display: grid; gap: 16px; }
@media (min-width: 640px) { .form .row { grid-template-columns: 1fr 1fr; } }

.contact-grid {
  display: grid;
  gap: 32px;
  margin-top: 40px;
  align-items: start;
}
@media (min-width: 950px) { .contact-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: 56px; } }

.info-list { display: grid; gap: 22px; }
.info-list > div { border-top: 1px solid var(--border); padding-top: 16px; }
.info-list dt {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--faint);
}
.info-list dd { margin-top: 6px; font-size: 15px; line-height: 1.6; color: var(--ink); }
.info-list dd a { border-bottom: 1px solid var(--border); }
.info-list dd a:hover { border-color: var(--ink); }

/* --------------------------- Reveal on scroll --------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ------------------------------- Print ---------------------------------- */
@media print {
  .site-header, .concept-banner, .cta-actions, .nav-toggle { display: none; }
  body { background: #fff; }
}
