/* ==========================================================================
   SAWFISH — homepage styles
   Tokens mirrored 1:1 from the Framer project (color + text styles).
   Breakpoints: Desktop ≥1200, Tablet 810–1199, Phone ≤809 (Framer: 1400/810/390)
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* text */
  --text-neutral: #141f1a;
  --text-secondary: #454f4a;
  --white: #ffffff;

  /* backgrounds */
  --bg-primary: #ffffff;
  --bg-secondary: #f7f7f7;
  --bg-alt: #060606;          /* near-black sections */
  --dark: #101011;
  --cream: #eeeceb;
  --cream-500: #f2ecdf;

  /* brand */
  --mint-300: #cafaf4;
  --mint-400: #8ef4e8;
  --mint-500: #71e0d3;
  --mint-600: #5cb5ab;
  --teal-dark: #1d5b59;
  --deep-green: #126849;

  /* misc accents */
  --orange: #fb6704;
  --lime: #a2ee3a;
  --pink: #e848ba;
  --purple: #5a01f6;

  /* lines */
  --border: #ebebeb;
  --border-strong: #141f1a;

  /* layout */
  --maxw: 1400px;
  --pad-x: 40px;

  /* fonts */
  --f-display: 'Henrietta', 'Cossette Titre', Georgia, serif;      /* Heading 1 */
  --f-serif: 'Cossette Titre', Georgia, serif;                     /* Heading 2–5 */
  --f-grotesk: 'TASA Explorer', 'Figtree', system-ui, sans-serif;  /* body-large, buttons */
  --f-body: 'Figtree', system-ui, -apple-system, sans-serif;       /* body, menu */
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-weight: 500;
  color: var(--text-neutral);
  background: var(--bg-primary);
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Type primitives ---------- */
.h1 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(44px, 6.4vw, 80px);
  line-height: 1.04;
  letter-spacing: 0;
  margin: 0;
}
.h2 {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0;
}
.h3 {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}
.h5 {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}
.body-lg {
  font-family: var(--f-grotesk);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.18;
  letter-spacing: -0.04em;
  margin: 0;
}
.body { font-family: var(--f-body); font-weight: 500; font-size: 20px; line-height: 1.2; margin: 0; }
.body-2 { font-family: var(--f-body); font-weight: 500; font-size: 18px; line-height: 1.2; margin: 0; }
.muted { color: var(--text-secondary); }

/* ---------- Buttons ----------
   Sawfish CTA: dark fill, white text, white border with a thicker BOTTOM
   border (key-cap look). On hover it inverts (white fill / dark text) and
   the arrow rotates to point diagonally up-right. */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-grotesk);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.4;
  padding: 6px 20px;
  border-radius: 6px;
  border: 2px solid #ffffff;
  border-bottom-width: 4px;
  background: transparent;
  color: #ffffff;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn .arrow { display: inline-block; font-size: 24px; line-height: 1; transition: transform .2s ease; }
/* all arrow glyphs use TASA Explorer at max weight */
.arrow, .step__arrow { font-family: var(--f-grotesk); font-weight: 1000; }
.btn:hover { background: #ffffff; color: var(--text-neutral); border-color: #ffffff; }
.btn:hover .arrow { transform: rotate(-45deg); }
.btn:active { transform: translateY(2px); border-bottom-width: 3px; }

/* modifiers are now aliases of the primary dark style (all CTAs sit on dark) */
.btn--light, .btn--ghost { background: transparent; color: #ffffff; border-color: #ffffff; }
.btn--light:hover, .btn--ghost:hover { background: #ffffff; color: var(--text-neutral); border-color: #ffffff; }

/* link with underline + arrow (Let's get chopping CTA) */
.text-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-grotesk); font-weight: 600; font-size: 18px; letter-spacing: -0.02em;
  border-bottom: 2px solid currentColor; padding-bottom: 4px;
}
.text-cta .arrow { display: inline-block; transition: transform .2s ease; }
.text-cta:hover .arrow { transform: rotate(-45deg); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad-x); }
.section { width: 100%; max-width: var(--maxw); margin-inline: auto; }

/* =========================================================================
   NAVBAR
   ========================================================================= */
.nav {
  position: fixed; top: 14px; left: 14px; right: 14px; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 26px;
  background: rgba(8, 8, 8, 0.8);
  backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  border-radius: 12px;
}
.nav__logo { width: 156px; display: block; }
.nav__logo img { width: 100%; height: auto; display: block; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-family: var(--f-body); font-weight: 700; font-size: 18px; color: #ffffff;
  opacity: 1; transition: opacity .15s ease;
}
.nav__links a:hover { opacity: .55; }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav__burger span { width: 24px; height: 2px; background: #fff; display: block; transition: .2s; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  width: 100%;
  min-height: 620px;
  height: 67.5vw;
  max-height: 1280px;
  overflow: hidden;
  background: #1a130f;
  display: flex;
  align-items: center;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.15) 45%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}
.hero__video { cursor: pointer; }
.hero__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding: 0 var(--pad-x);
}
.hero__content { max-width: 56%; display: flex; flex-direction: column; gap: 34px; align-items: flex-start; }
.hero__wordmark { width: min(468px, 80%); height: auto; }
.hero__headgroup { display: flex; flex-direction: column; gap: 18px; }
.hero h1 { color: #fff; max-width: 100%; }
.hero__sub { color: #fff; }
.hero__btns { display: flex; gap: 18px; flex-wrap: wrap; }

/* enlarged video player */
.video-modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,.94);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.video-modal.is-open { display: flex; }
.video-modal__video { width: min(100%, 1180px); max-height: 88vh; background: #000;
  border-radius: 6px; outline: none; }
.video-modal__close {
  position: absolute; top: 20px; right: 24px;
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.6);
  color: #fff; font-size: 30px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.video-modal__close:hover { background: rgba(255,255,255,.28); }

/* =========================================================================
   INTRO / TESTIMONIAL / DASHBOARD  (near-black)
   ========================================================================= */
.dark-band { background: var(--bg-alt); color: #fff; }
.intro { padding: 120px 0 0; }

.quote-hero {
  width: 100%; max-width: 80%; margin-inline: auto;
  display: flex; gap: 40px; align-items: flex-start;
  padding-inline: var(--pad-x);
}
.quote-hero__photo {
  width: 240px; height: 280px; flex: none;
  object-fit: cover; border-radius: 2px;
}
.quote-hero__body { display: flex; flex-direction: column; gap: 20px; }
.quote-hero__body .h1 { color: #fff; font-size: clamp(40px, 6vw, 80px); }
.quote-hero__meta { display: flex; flex-direction: column; gap: 6px; color: #fff; }
.stars { display: flex; gap: 8px; }
.stars svg { width: 18px; height: 18px; }

.dash {
  width: 100%; padding: 40px;
}
.dash img { width: 100%; height: auto; border-radius: 2px; }

.intro-grid {
  display: flex; gap: 40px; justify-content: space-between; align-items: flex-start;
  padding: 40px;
}
.intro-grid__text { max-width: 50%; color: #fff; }
.intro-badges {
  flex: none; max-width: 320px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}

/* integration badge — SVG already includes the white rounded box */
.badge { aspect-ratio: 1; }
.badge img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* =========================================================================
   ONBOARDING STEPS (accordion) — inside intro band
   ========================================================================= */
.onboard {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  padding: 20px 40px 80px;
  align-items: center;
}
.steps { display: flex; flex-direction: column; }
.step {
  border-top: 1px solid rgba(255,255,255,.18);
  padding: 16px 0;
}
.step:first-child { border-top: none; }
.step:not(.is-open) { padding-bottom: 0; }
.step:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.step__head {
  display: flex; align-items: center; gap: 18px; width: 100%; text-align: left; color: #fff;
}
.step__num { font-family: var(--f-serif); font-weight: 700; font-size: clamp(28px,4vw,40px); line-height: 1.2; letter-spacing: -0.01em; opacity: .9; min-width: 64px; }
.step__title { font-family: var(--f-serif); font-weight: 700; font-size: clamp(28px,4vw,40px); line-height: 1.2; letter-spacing: -0.01em; flex: 1; transition: opacity .2s; }
.step__arrow { margin-left: auto; font-size: 24px; line-height: 1; opacity: 0; transition: opacity .2s, transform .2s; }
.step__desc {
  font-family: var(--f-body); font-weight: 700; font-size: 20px; line-height: 24px;
  color: #FFFFFF; max-height: 0; overflow: hidden;
  padding-left: 88px; transition: max-height .35s ease, margin .35s ease, opacity .3s ease;
  opacity: 0;
}
.step.is-open .step__title { opacity: 1; }
.step:not(.is-open) .step__title { opacity: .45; }
.step.is-open .step__arrow { opacity: 1; }
.step.is-open .step__desc { max-height: 200px; opacity: 1; margin-top: 14px; }
.onboard__media {
  width: 100%; aspect-ratio: 3/4; max-height: 520px;
  border-radius: 4px; overflow: hidden; background: #222;
}
.onboard__media img { width: 100%; height: 100%; object-fit: cover; }

/* "Let's get chopping" CTA band */
.chopping {
  padding: 80px 40px;
  display: flex; flex-direction: column; align-items: flex-end; gap: 24px; text-align: right;
}
.chopping .h1 { color: #fff; }

/* =========================================================================
   FEATURE BLOCKS (cream paper, hairline grid)
   ========================================================================= */
.features { display: flex; flex-direction: column; scroll-margin-top: 96px; }
.feature-paper {
  background-color: var(--cream-500);
  background-size: cover; background-position: center;
  border-bottom: 2px solid var(--border-strong);
}
.feature-row-2 { display: grid; grid-template-columns: 1fr 1fr; max-width: 1400px; margin-inline: auto; }
.feature-cell { padding: 48px 40px; display: flex; flex-direction: column; gap: 36px; }
.feature-cell--divider { border-right: 2px solid var(--border-strong); }

.feature-top { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 48px 40px; align-items: start; max-width: 1400px; margin-inline: auto; }
.feature-top__media { display: flex; flex-direction: column; gap: 40px; }
.feature-illus { width: 100%; max-width: 100%; height: auto; }
.feature-illus--lg { max-width: 100%; }

.feature-side { display: flex; flex-direction: column; gap: 36px; }
.checklist { display: flex; flex-direction: column; }
.check {
  display: flex; align-items: center; gap: 18px;
  font-family: var(--f-serif); font-weight: 700; font-size: clamp(24px,4vw,32px); letter-spacing: -0.01em;
  padding: 16px 0; border-bottom: 1.5px solid var(--border-strong);
}
.check:first-child { border-top: none; }
.check svg { flex: none; width: 30px; height: 30px; }

/* =========================================================================
   CREDITGUARD (near-black)
   ========================================================================= */
.creditguard { padding: 80px 40px; max-width: 100%; }
.aussie { max-width: 100%; }
.full-width { max-width: 100%; }
.creditguard__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.creditguard__left { display: flex; flex-direction: column; gap: 24px; }
.creditguard__left .h3 { color: #fff; }
.cg-logo { width: 100%; max-width: 420px; height: auto; }
.creditguard__right { display: flex; flex-direction: column; gap: 28px; }
.check--dark { color: #fff; border-color: rgba(255,255,255,.25); }
.check--dark:first-child { border-top-color: rgba(255,255,255,.25); }
.numbered { display: flex; flex-direction: column; gap: 16px; }
.numbered li { display: flex; align-items: center; gap: 16px; color: #fff; }
.num-badge {
  width: 52px; height: 52px; flex: none; border-radius: 50%;
  border: 3.5px solid #ffffff; display: flex; align-items: center; justify-content: center;
  font-family: var(--f-body); font-weight: 700; font-size: 32px; line-height: 1; color: #fff;
}
.numbered li span:last-child { font-family: var(--f-grotesk); font-weight: 700; font-size: 24px; letter-spacing: -0.02em; }

/* =========================================================================
   BUILT FOR AUSSIE BUSINESS
   ========================================================================= */
.aussie__photo {
  position: relative; width: 100%; min-height: 360px; height: 45vw; max-height: 900px;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 48px;
}
.aussie__photo .h1 { color: #fff; max-width: 760px; text-align: center; font-size: clamp(48px, 9vw, 96px); font-weight: 900; line-height: 1.1; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.aussie__lead { padding: 40px; }
.aussie__lead .body-lg { max-width: 640px; font-size: 24px; line-height: 26.4px; letter-spacing: -0.96px; }

/* logo ticker */
.ticker { overflow: hidden; padding: 40px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.ticker__track { display: flex; gap: 96px; width: max-content; animation: ticker 26s linear infinite; animation-direction: reverse; align-items: center; }
.ticker img { height: 80px; width: auto; opacity: 1; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================================
   RESULTS / TESTIMONIALS (teal cutting mat)
   ========================================================================= */
.results {
  background-color: var(--teal-dark);
  background-size: 1320px; background-repeat: repeat;
  padding: 60px; display: flex; flex-direction: column; align-items: center; gap: 48px;
}
.results__title { color: #fff; text-align: center; opacity: .9; }
.tcards { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; width: 100%; }
.tcard {
  flex: 1 1 0; min-width: 0; max-width: 440px;
  background: var(--mint-300); border-radius: 2px;
  padding: 14px; display: flex; flex-direction: column; gap: 18px;
}
.tcard__photo { width: 100%; aspect-ratio: 7 / 6; height: auto; object-fit: cover; border-radius: 2px; }
.tcard__quote { font-family: var(--f-grotesk); font-weight: 700; font-size: 24px; line-height: 1.18; letter-spacing: -0.02em; color: var(--text-neutral); }
.tcard__name { font-family: var(--f-grotesk); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; color: var(--text-neutral); }
.tcard__role { font-family: var(--f-body); font-weight: 500; font-size: 16px; color: var(--text-neutral); }
.tcard .stars svg { width: 22px; height: 22px; }
.tcard > div:not(.stars) { display: flex; flex-direction: column; gap: 2px; }
.tcard--white { background: #fafafa; box-shadow: 0 18px 50px rgba(0,0,0,.18); }
.tcard--white .tcard__qmark { font-family: var(--f-serif); font-weight: 700; font-size: 40px; line-height: .6; }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq { background: var(--bg-primary); padding: 80px 40px; }
.faq__inner { display: grid; grid-template-columns: 462px 1fr; gap: 48px; align-items: start; }
.faq__title { color: var(--text-neutral); }
.faq__list { display: flex; flex-direction: column; }
.faq__list--center { max-width: 880px; margin-inline: auto; width: 100%; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  width: 100%; text-align: left; padding: 24px 0;
  font-family: var(--f-serif); font-weight: 900; font-size: clamp(28px, 5vw, 40px); letter-spacing: -0.4px; line-height: 1.2;
  color: var(--text-neutral);
}
.faq-q__icon { flex: none; width: 22px; height: 22px; position: relative; }
.faq-q__icon::before, .faq-q__icon::after {
  content: ""; position: absolute; background: var(--text-neutral); transition: transform .25s ease, opacity .25s ease;
}
.faq-q__icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-q__icon::after { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.faq-item.is-open .faq-q__icon::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; }
.faq-a__inner {
  font-family: var(--f-body); font-weight: 700; font-size: 20px; line-height: 24px; color: var(--text-secondary);
  padding-bottom: 24px; max-width: 60ch;
}
.faq-item.is-open .faq-a { max-height: 560px; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: var(--bg-alt); color: #fff; padding: 64px 40px 48px; }
.footer__wordmark { width: 100%; max-width: 1320px; margin: 0 auto 40px; }
.footer__wordmark img { width: 100%; height: auto; }
.footer__rule { border: 0; border-top: 1px solid rgba(255,255,255,.18); margin: 0 0 32px; }
.footer__cols { display: flex; gap: 80px; align-items: flex-start; padding: 0 0 64px 48px; }
.footer__col { display: flex; flex-direction: column; gap: 14px; }
.footer__col a { font-family: var(--f-body); font-weight: 900; font-size: 18px; opacity: .9; }
.footer__col a:hover { opacity: .55; }
.footer__social { margin-left: auto; display: flex; gap: 18px; align-items: center; }
.footer__social a { opacity: .8; }
.footer__social a:hover { opacity: 1; }
.footer__social svg { width: 18px; height: 18px; }

/* =========================================================================
   RESPONSIVE — Wide desktop
   ========================================================================= */

/* =========================================================================
   RESPONSIVE — Tablet
   ========================================================================= */
@media (max-width: 1199px) {
  :root { --pad-x: 32px; }
  .hero__content { max-width: 70%; }
  .intro-grid__text { max-width: 60%; }
}

@media (max-width: 980px) {
  .onboard { grid-template-columns: 1fr; gap: 32px; }
  .creditguard__grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-top { grid-template-columns: 1fr; gap: 32px; }
  .faq__inner { grid-template-columns: 1fr; gap: 24px; }
}

/* =========================================================================
   RESPONSIVE — Phone
   ========================================================================= */
@media (max-width: 809px) {
  :root { --pad-x: 22px; }

  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: flex; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; gap: 18px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(6,6,6,.96); padding: 24px var(--pad-x);
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .hero { height: auto; min-height: 0; padding: 120px 0 64px; max-height: none; }
  .hero__content { max-width: 100%; gap: 28px; }
  .hero h1 { max-width: 100%; }
  .hero__overlay { background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.55)); }

  .intro { padding: 64px 0; }
  .quote-hero { flex-direction: column; max-width: 100%; gap: 22px; }
  .quote-hero__photo { width: 160px; height: 190px; }
  .dash { padding: 24px var(--pad-x); }

  .intro-grid { flex-direction: column; gap: 28px; padding: 24px var(--pad-x); }
  .intro-grid__text { max-width: 100%; }
  .intro-badges { max-width: 100%; grid-template-columns: repeat(4, 1fr); }

  .onboard { padding: 8px var(--pad-x) 56px; }
  .chopping { padding: 56px var(--pad-x); align-items: flex-start; text-align: left; }

  .feature-top { padding: 36px var(--pad-x); gap: 28px; }
  .feature-row-2 { grid-template-columns: 1fr; }
  .feature-cell { padding: 36px var(--pad-x); }
  .feature-cell--divider { border-right: none; border-bottom: 2px solid var(--border-strong); }

  .creditguard { padding: 56px var(--pad-x); }
  .aussie__photo { min-height: 360px; padding: 24px var(--pad-x); }
  .aussie__lead { padding: 28px var(--pad-x); }

  .results { padding: 48px var(--pad-x); }
  /* swipeable carousel instead of a vertical stack */
  .tcards {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 var(--pad-x);
    -webkit-overflow-scrolling: touch;
    margin-inline: calc(var(--pad-x) * -1);
    padding-inline: var(--pad-x);
  }
  .tcards::-webkit-scrollbar { display: none; }
  .tcard {
    flex: 0 0 85%;
    width: 85%;
    scroll-snap-align: center;
  }

  .faq { padding: 56px var(--pad-x); }
  .footer { padding: 48px var(--pad-x) 36px; }
  .footer__cols { flex-wrap: wrap; gap: 32px 48px; }
  .footer__social { margin-left: 0; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
  * { scroll-behavior: auto; }
}

/* =========================================================================
   PAGE BANNER + CONTACT  (contact.html)
   ========================================================================= */
.page-banner {
  position: relative; min-height: 460px;
  background-size: cover; background-position: center;
  display: flex; align-items: center; overflow: hidden;
  padding: 140px 0 70px;
}
.page-banner__overlay { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.3) 60%, rgba(0,0,0,.45) 100%); }
.page-banner__inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad-x); }
.banner-title { font-family: var(--f-serif); font-weight: 700; font-size: clamp(52px, 8vw, 96px);
  line-height: 1.04; letter-spacing: -0.02em; color: #fff; margin: 0; }
/* same display face as the homepage hero (Henrietta Condensed) */
.banner-title--display { font-family: var(--f-display); font-weight: 600; letter-spacing: 0; }

.contact { background: var(--bg-primary); padding: 90px 0 110px; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad-x); }
.contact__left { display: flex; flex-direction: column; gap: 20px; }
.contact__lead { font-family: var(--f-grotesk); font-weight: 700; font-size: 24px; line-height: 1.25;
  letter-spacing: -0.02em; color: var(--text-neutral); max-width: 28ch; margin: 0; }

.contact__form { display: flex; flex-direction: column; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--f-body); font-weight: 700; font-size: 16px; color: var(--text-neutral); }
.field input, .field textarea {
  font-family: var(--f-body); font-weight: 500; font-size: 16px; color: var(--text-neutral);
  padding: 14px 16px; border: 2px solid #cfcfcf; border-radius: 0; background: #fff; width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: #9c9c9c; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--text-neutral); }
.field textarea { resize: vertical; min-height: 150px; }
.form-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px; align-self: flex-start;
  font-family: var(--f-grotesk); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; line-height: 1.4;
  padding: 6px 20px; border-radius: 6px;
  border: 2px solid var(--text-neutral); border-bottom-width: 6px;
  background: transparent; color: var(--text-neutral); cursor: pointer;
  transition: background .2s ease, color .2s ease; margin-top: 8px;
}
.form-btn .arrow { font-family: var(--f-grotesk); font-weight: 1000; font-size: 24px; line-height: 1;
  display: inline-block; transition: transform .2s ease; }
.form-btn:hover { background: var(--text-neutral); color: #fff; }
.form-btn:hover .arrow { transform: rotate(-45deg); }

@media (max-width: 980px) {
  .contact__grid { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 809px) {
  .page-banner { min-height: 320px; padding: 110px 0 50px; }
  .contact { padding: 56px 0 72px; }
}

/* =========================================================================
   PRICING  (pricing.html)
   ========================================================================= */
.pricing-intro { background-color: var(--cream-500);
  background-image: url('../assets/img/lMvYksRdZpqQtB0RvLZeDsroM.jpg'); background-size: cover; background-position: center;
  padding: 74px 0 44px; border-bottom: 2px solid var(--border-strong); }
.pricing-intro__inner { max-width: 1400px; margin-inline: auto; padding-inline: var(--pad-x);
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.pricing-intro__inner .h3 { max-width: 12ch; }
.pricing-intro__text { display: flex; flex-direction: column; gap: 16px; }

.pricing { background-color: var(--cream-500);
  background-image: url('../assets/img/lMvYksRdZpqQtB0RvLZeDsroM.jpg'); background-size: cover; background-position: center;
  padding: 48px 0 100px; }
.pricing__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  max-width: 1400px; margin-inline: auto; padding-inline: var(--pad-x); align-items: start; }
.price-card { padding: 0; }
.price-card__title { font-family: var(--f-serif); font-weight: 700; font-size: clamp(26px,3vw,32px);
  letter-spacing: -0.01em; line-height: 1.2; margin: 0; color: var(--text-neutral); }
.price-card__note { font-family: var(--f-body); font-weight: 500; font-size: 14px;
  color: var(--text-secondary); margin: 6px 0 0; }
.price-card__rule { border: 0; border-top: 2px solid var(--border-strong); margin: 22px 0; }
.price-group + .price-group { margin-top: 26px; }
.price-group__label { font-family: var(--f-body); font-weight: 700; font-size: 13px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--text-secondary); margin-bottom: 4px; }
.price-row { display: flex; justify-content: space-between; gap: 24px; align-items: baseline;
  padding: 18px 0 0; border-bottom: 2px solid var(--border-strong); }
.price-row__label { font-family: var(--f-body); font-weight: 500; font-size: 16px; line-height: 1.3; color: var(--text-neutral); }
.price-row__fee { font-family: var(--f-grotesk); font-weight: 700; font-size: 16px; letter-spacing: -0.02em;
  line-height: 1.3; text-align: right; min-width: 42%; color: var(--text-neutral); }

.enterprise { background-color: var(--teal-dark);
  background-image: url('../assets/img/58Foum2yNftAH3LushhpmH4vTFA.png'); background-size: 1320px; background-repeat: repeat;
  padding: 88px 40px; }
.enterprise__inner { max-width: 820px; margin-inline: auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 24px; }
.enterprise .h3 { color: #fff; }
.enterprise__text { color: #fff; max-width: 40ch; }

@media (max-width: 860px) {
  .pricing__grid { grid-template-columns: 1fr; gap: 22px; }
  .pricing-intro__inner { grid-template-columns: 1fr; gap: 22px; }
  .pricing-intro__inner .h3 { max-width: none; }
}
@media (max-width: 809px) {
  .pricing-intro { padding: 52px 0 32px; }
  .pricing { padding: 36px 0 64px; }
  .enterprise { padding: 60px var(--pad-x); }
  .price-row { flex-direction: column; gap: 3px; align-items: flex-start; }
  .price-row__fee { text-align: left; min-width: 0; }
}

/* =========================================================================
   GETTING STARTED  (getting-started.html)
   ========================================================================= */
.gs-intro { background: var(--bg-primary); padding: 82px 0 26px; }
.gs-intro__inner { max-width: 1400px; margin-inline: auto; padding-inline: var(--pad-x); }
.gs-intro__inner .body-lg { max-width: 820px; }

.gs-steps { background: var(--bg-primary); padding: 24px 0 96px; }
.gs-steps__inner { max-width: 1400px; margin-inline: auto; padding-inline: var(--pad-x); display: flex; flex-direction: column; }
.gs-step { display: grid; grid-template-columns: 92px 1fr; gap: 28px; padding: 46px 0;
  border-top: 2px solid var(--border-strong); align-items: start; }
.gs-step:first-child { border-top: none; padding-top: 8px; }
.gs-step__num { font-family: var(--f-serif); font-weight: 700; font-size: clamp(40px,5vw,56px);
  line-height: 1; letter-spacing: -0.02em; color: var(--text-neutral); }
.gs-step__body { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.gs-step__title { font-family: var(--f-serif); font-weight: 700; font-size: clamp(26px,3.4vw,36px);
  line-height: 1.12; letter-spacing: -0.01em; color: var(--text-neutral); margin: 0; }
.gs-step__text { font-family: var(--f-body); font-weight: 500; font-size: 18px; line-height: 1.5;
  color: var(--text-secondary); margin: 0; max-width: 62ch; }
.gs-step__text strong { color: var(--text-neutral); font-weight: 700; }
.gs-substeps { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; width: 100%; margin-top: 4px; }
.gs-sub { background: var(--cream-500); border: 2px solid var(--border-strong); padding: 22px 24px;
  display: flex; flex-direction: column; gap: 10px; }
.gs-sub__label { font-family: var(--f-grotesk); font-weight: 700; font-size: 20px; letter-spacing: -0.03em; color: var(--text-neutral); }
.gs-sub__text { font-family: var(--f-body); font-weight: 500; font-size: 16px; line-height: 1.5; color: var(--text-secondary); margin: 0; }
.gs-sub ol { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.gs-sub li { font-family: var(--f-body); font-weight: 500; font-size: 16px; line-height: 1.5; color: var(--text-secondary); }
.gs-sub li strong, .gs-sub__text strong { color: var(--text-neutral); font-weight: 700; }
.gs-sub__shot { width: 100%; height: auto; display: block; margin-top: 6px;
  border: 1px solid var(--border); border-radius: 4px; background: #fff; }
.gs-note { font-family: var(--f-body); font-weight: 700; font-size: 16px; line-height: 1.45;
  color: var(--text-neutral); background: var(--mint-300); padding: 14px 18px; border-radius: 4px; max-width: 62ch; }

@media (max-width: 809px) {
  .gs-intro { padding: 52px 0 16px; }
  .gs-steps { padding: 14px 0 64px; }
  .gs-step { grid-template-columns: 1fr; gap: 10px; padding: 32px 0; }
  .gs-substeps { grid-template-columns: 1fr; }
}

/* =========================================================================
   LEGAL  (terms / privacy) — black bg, white text, no banner
   ========================================================================= */
.legal { background: var(--bg-alt); color: #fff; padding: 150px 0 100px; }
.legal__inner { max-width: 920px; margin-inline: auto; padding-inline: var(--pad-x); }
.legal__title { font-family: var(--f-serif); font-weight: 700; font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05; letter-spacing: -0.02em; color: #fff; margin: 0 0 8px; }
.legal__updated { font-family: var(--f-body); font-weight: 500; font-size: 15px;
  color: rgba(255,255,255,.55); margin: 0 0 44px; }
.legal h2 { font-family: var(--f-serif); font-weight: 700; font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2; letter-spacing: -0.01em; color: #fff; margin: 44px 0 14px; }
.legal p { font-family: var(--f-body); font-weight: 500; font-size: 18px; line-height: 1.65;
  color: rgba(255,255,255,.82); margin: 0 0 18px; max-width: 72ch; }
.legal ul { margin: 0 0 18px; padding-left: 22px; display: flex; flex-direction: column; gap: 9px; max-width: 72ch; }
.legal li { font-family: var(--f-body); font-weight: 500; font-size: 18px; line-height: 1.6; color: rgba(255,255,255,.82); }
.legal a { color: #fff; text-decoration: underline; }
.legal a:hover { color: var(--mint-300); }

@media (max-width: 809px) {
  .legal { padding: 120px 0 64px; }
  .legal p, .legal li { font-size: 16px; }
}
