:root {
  --navy: #0f1e36;
  --navy-2: #15294a;
  --sidebar: #3d5270;
  --primary: #6a9bc8;
  --primary-dark: #4a7faf;
  --accent: #0d9488;
  --accent-dark: #0b7a70;
  --bg: #f4f6fb;
  --bg-alt: #eef2f9;
  --white: #ffffff;
  --text: #1b2738;
  --muted: #5b6b82;
  --border: #e2e8f2;
  --shadow-sm: 0 1px 3px rgba(15, 30, 54, 0.08);
  --shadow-md: 0 8px 30px rgba(15, 30, 54, 0.10);
  --shadow-lg: 0 20px 60px rgba(15, 30, 54, 0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1400px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Promo banner ---------- */
.promo-banner {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 11px 16px;
  letter-spacing: 0.2px;
}
.promo-banner a {
  color: var(--white);
  text-decoration: underline;
  margin-left: 8px;
  font-weight: 700;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo img { height: 38px; width: auto; aspect-ratio: 1391 / 379; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav__links a {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.96rem;
}
.nav__links a:hover { color: var(--primary-dark); text-decoration: none; }
.nav__actions { display: flex; align-items: center; gap: 14px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.96rem;
  border-radius: 999px;
  padding: 12px 24px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--accent); color: var(--white); }
.btn--primary:hover { background: var(--accent-dark); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary-dark); }
.btn--light { background: var(--white); color: var(--navy); }
.btn--light:hover { box-shadow: var(--shadow-md); }
.btn--block { width: 100%; }
.btn--lg { padding: 15px 30px; font-size: 1.02rem; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.2s;
}

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(1200px 600px at 80% -10%, rgba(106,155,200,0.25), transparent 60%),
              linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
  padding: 80px 0 90px;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: rgba(13,148,136,0.10);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--accent); }
.hero h1 .accent--block {
  display: block;
  margin-top: 0.12em;
}
.hero p.lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 30px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.hero__note { font-size: 0.9rem; color: var(--muted); }
.hero__note strong { color: var(--text); }

/* Hero mockup */
.hero__visual { position: relative; }
.mockup {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.mockup__bar {
  display: flex; align-items: center; gap: 7px;
  padding: 14px 18px;
  background: var(--navy);
}
.mockup__bar span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.35); }
.mockup__bar span:nth-child(1){ background:#ff5f57; }
.mockup__bar span:nth-child(2){ background:#febc2e; }
.mockup__bar span:nth-child(3){ background:#28c840; }
.mockup__body { padding: 22px; background: var(--bg); }
.mockup__row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.mockup__row:last-child { margin-bottom: 0; }
.mockup__job { display: flex; flex-direction: column; gap: 3px; }
.mockup__job b { color: var(--navy); font-size: 0.98rem; }
.mockup__job small { color: var(--muted); }
.pill {
  font-size: 0.74rem; font-weight: 700; padding: 5px 12px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.4px;
}
.pill--new { background: rgba(106,155,200,0.18); color: var(--primary-dark); }
.pill--progress { background: rgba(254,188,46,0.20); color: #9a6b00; }
.pill--invoiced { background: rgba(13,148,136,0.16); color: var(--accent-dark); }

.float-badge {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 12px 16px;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
}
.float-badge .dot {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(13,148,136,0.14);
  color: var(--accent);
}
.float-badge--xero { bottom: -22px; left: -26px; }
.float-badge--ai { top: -22px; right: -18px; }
.float-badge .dot i { font-size: 18px; line-height: 1; color: inherit; }
.float-badge .dot i::before { color: inherit; }

/* ---------- Logos strip ---------- */
.trust {
  background: var(--white);
  padding: 28px 0 8px;
  text-align: center;
}
.trust p {
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 18px;
}
.trust__row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 40px;
  opacity: 0.75;
}
.trust__row span { font-weight: 800; color: var(--sidebar); font-size: 1.1rem; }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section--alt { background: var(--bg); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section__head .eyebrow { margin-bottom: 16px; }
.section__head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}
.section__head p { font-size: 1.12rem; color: var(--muted); }

/* ---------- Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.feature__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(106,155,200,0.18), rgba(13,148,136,0.16));
  margin-bottom: 18px;
  color: var(--accent-dark);
}
.feature__icon i { font-size: 26px; line-height: 1; color: inherit; }
.feature__icon i::before { color: inherit; }
.feature h3 { font-size: 1.18rem; color: var(--navy); margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 0.98rem; }

/* ---------- Split feature highlight ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split__media {
  background: linear-gradient(135deg, var(--navy) 0%, var(--sidebar) 100%);
  border-radius: 20px;
  padding: 34px;
  box-shadow: var(--shadow-lg);
}
.split__card {
  background: var(--white);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-sm);
}
.split__card:last-child { margin-bottom: 0; }
.split__card .ic {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(13,148,136,0.14); flex-shrink: 0;
  color: var(--accent-dark);
}
.split__card .ic i { font-size: 20px; line-height: 1; color: inherit; }
.split__card .ic i::before { color: inherit; }
.split__card b { display: block; color: var(--navy); }
.split__card small { color: var(--muted); }
.split h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--navy); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 16px; }
.checklist { list-style: none; margin-top: 22px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; color: var(--text); }
.checklist i {
  font-size: 22px; flex-shrink: 0; margin-top: 2px; line-height: 1;
  color: var(--accent);
}
.checklist i::before { color: var(--accent); }

/* ---------- Pricing ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}
.plan {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.plan--featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-md);
}
.plan__tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--white);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.6px;
  text-transform: uppercase; padding: 6px 14px; border-radius: 999px;
  white-space: nowrap;
}
.plan__name { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.plan__seats { color: var(--muted); font-size: 0.92rem; margin-bottom: 20px; }
.plan__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.plan__price .amount { font-size: 2.6rem; font-weight: 800; color: var(--navy); letter-spacing: -1.5px; }
.plan__price .cur { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.plan__price .per { color: var(--muted); font-size: 0.92rem; font-weight: 600; }
.plan__sub { color: var(--muted); font-size: 0.86rem; margin-bottom: 22px; min-height: 20px; }
.plan__price--contact .amount { font-size: 1.9rem; }
.plan__features { list-style: none; margin: 0 0 26px; flex-grow: 1; }
.plan__features li { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; color: var(--text); font-size: 0.94rem; border-top: 1px solid var(--border); }
.plan__features li:first-child { border-top: none; }
.plan__features i {
  font-size: 18px; flex-shrink: 0; margin-top: 3px; line-height: 1;
  color: var(--accent);
}
.plan__features i::before { color: var(--accent); }
.pricing__note { text-align: center; color: var(--muted); font-size: 0.88rem; margin-top: 30px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--sidebar) 100%);
  border-radius: 24px;
  padding: 60px 48px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 560px; margin: 0 auto 28px; }
.cta-band .hero__cta { justify-content: center; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.72);
  padding: 64px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 44px;
}
.footer__brand img { height: 40px; width: auto; aspect-ratio: 1391 / 379; margin-bottom: 16px; }
.footer__brand p { font-size: 0.94rem; max-width: 280px; }
.footer h4 { color: var(--white); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(255,255,255,0.72); font-size: 0.94rem; }
.footer ul a:hover { color: var(--white); text-decoration: none; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.86rem;
}

/* ---------- Legal page ---------- */
.legal { padding: 60px 0 90px; }
.legal__wrap { max-width: 820px; margin: 0 auto; }
.legal h1 { font-size: 2.4rem; color: var(--navy); font-weight: 800; margin-bottom: 8px; letter-spacing: -0.5px; }
.legal .updated { color: var(--muted); margin-bottom: 36px; }
.legal h2 { font-size: 1.35rem; color: var(--navy); font-weight: 700; margin: 36px 0 12px; }
.legal p, .legal li { color: var(--text); margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal li { margin-bottom: 8px; }
.legal__toc {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  margin-bottom: 40px;
}
.legal__toc h3 { color: var(--navy); font-size: 1rem; margin-bottom: 12px; }
.legal__toc ol { padding-left: 20px; columns: 2; }
.legal__toc li { margin-bottom: 6px; }
.legal__toc a { color: var(--accent-dark); }

/* ---------- Trial page ---------- */
.trial-page { background: var(--bg); }

.trial-hero {
  background: radial-gradient(900px 500px at 15% -20%, rgba(106,155,200,0.22), transparent 60%),
              linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
  padding: 56px 0 36px;
}
.trial-hero__inner { max-width: 720px; }
.trial-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.trial-hero .lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 600px;
}

.trial-main { padding: 24px 0 72px; }
.trial-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: start;
}

.trial-benefits__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 96px;
}
.trial-benefits h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.trial-benefits__intro {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 24px;
}
.trial-benefits__list {
  list-style: none;
  margin: 0 0 28px;
}
.trial-benefits__list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}
.trial-benefits__list li:first-child { border-top: none; padding-top: 0; }
.trial-benefits__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg-alt);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}
.trial-benefits__list strong {
  display: block;
  color: var(--navy);
  font-size: 0.98rem;
  margin-bottom: 3px;
}
.trial-benefits__list span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.trial-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.trial-highlight {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 10px;
  text-align: center;
}
.trial-highlight__num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}
.trial-highlight__num i { font-size: 1.2rem; }
.trial-highlight__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.3;
}
.trial-benefits__note {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.trial-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 34px;
  box-shadow: var(--shadow-lg);
}
.trial-form-card__head {
  margin-bottom: 26px;
}
.trial-form-card__head .eyebrow { margin-bottom: 14px; }
.trial-form-card__head h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.4px;
  margin-bottom: 6px;
}
.trial-form-card__head p {
  color: var(--muted);
  font-size: 0.96rem;
  margin: 0;
}

.trial-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.trial-alert[hidden] { display: none; }
.trial-alert i { flex-shrink: 0; margin-top: 2px; }
.trial-alert--success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.trial-alert--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.trial-form__section {
  border: none;
  padding: 0;
  margin: 0;
}
.trial-form__section + .trial-form__section {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
.trial-form__section legend {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: var(--navy);
  margin-bottom: 16px;
  padding: 0;
}
.trial-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(106,155,200,0.18), rgba(13,148,136,0.18));
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
  flex-shrink: 0;
}
.trial-form__hint {
  color: var(--muted);
  font-size: 0.88rem;
  margin: -8px 0 16px;
}
.trial-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.trial-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.trial-field:last-child { margin-bottom: 0; }
.trial-form__row .trial-field { margin-bottom: 16px; }
.trial-field span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}
.trial-field abbr {
  color: var(--accent);
  text-decoration: none;
  border: none;
  margin-left: 1px;
}
.trial-field input,
.trial-field select {
  font-family: var(--font);
  font-size: 0.96rem;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.trial-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  cursor: pointer;
  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='%235b6b82' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.trial-field input:hover,
.trial-field select:hover { border-color: #c7d2e3; }
.trial-field input:focus,
.trial-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.18);
}
.trial-field input::placeholder { color: #9aa7bb; }

.trial-password {
  position: relative;
  display: flex;
}
.trial-password input { flex: 1; padding-right: 46px; }
.trial-password__toggle {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 8px;
  line-height: 1;
}
.trial-password__toggle:hover { color: var(--accent-dark); }

.trial-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin: 26px 0 20px;
  cursor: pointer;
}
.trial-checkbox input {
  margin-top: 2px;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}
.trial-checkbox a { color: var(--accent-dark); font-weight: 600; }

.trial-form__reassure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
  margin: 14px 0 0;
}
.trial-form__reassure i { color: var(--accent); }

.trial-form__footer {
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  margin-bottom: 0;
}
.trial-form__footer a { color: var(--accent-dark); font-weight: 600; }

.trial-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.trial-steps { padding-top: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid, .split { grid-template-columns: 1fr; gap: 44px; }
  .hero__visual { max-width: 520px; margin: 0 auto; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .trial-grid { grid-template-columns: 1fr; }
  .trial-benefits__card { position: static; }
}
@media (max-width: 760px) {
  .nav__links, .nav__actions .btn--ghost { display: none; }
  .nav__actions .btn--primary {
    padding: 9px 14px;
    font-size: 0.84rem;
  }
  .nav__toggle { display: flex; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 20px 24px; gap: 18px; box-shadow: var(--shadow-md);
  }
  .section { padding: 64px 0; }
  .features { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 44px 24px; }
  .legal__toc ol { columns: 1; }
  .trial-form__row { grid-template-columns: 1fr; gap: 0; }
  .trial-highlights { grid-template-columns: repeat(3, 1fr); }
  .trial-form-card { padding: 26px 20px; }
  .trial-benefits__card { padding: 26px 20px; }
}
@media (max-width: 460px) {
  .footer__grid { grid-template-columns: 1fr; }
}
