/* ==========================================================================
   Eng Sutra — landing page styles
   Converted from the Claude Design canvas export to plain static CSS.
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------- */
:root {
  --navy-900: #002448;
  --navy-800: #002E5D;
  --navy-700: #003D7C;
  --navy-600: #0052A6;
  --navy-500: #004D9B;
  --blue-500: #0066CF;
  --blue-300: #7FA6CE;
  --blue-200: #B0D0F0;
  --blue-100: #D9E8F8;
  --blue-050: #E6F0FA;
  --gray-050: #F6F9FC;
  --gold: #E4A802;
  --gold-dark: #CD9702;
  --gold-wash: rgba(228, 168, 2, 0.3);
  --white: #ffffff;

  --ok: #0F7A3D;
  --err: #C0392B;

  --font-ui: 'General Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: Inter, system-ui, -apple-system, 'Segoe UI', sans-serif;

  --radius: 8px;
  --radius-lg: 12px;

  --shadow-sm: 0 2px 6px rgba(77, 109, 172, 0.06);
  --shadow-lift: 0 14px 30px -8px rgba(0, 61, 124, 0.35), 0 4px 10px -2px rgba(0, 61, 124, 0.2);
  --shadow-card: 0 18px 36px -10px rgba(0, 61, 124, 0.28);

  --pad-x: 112px;
  --pad-y: 64px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--navy-700);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, p, figure { margin: 0; }
img { max-width: 100%; display: block; }
svg { flex-shrink: 0; }

a {
  color: var(--blue-500);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--navy-700); }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

.visually-hidden {
  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: 16px;
  top: -60px;
  z-index: 100;
  background: var(--navy-700);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; color: var(--white); }

/* --- Layout ------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: var(--white);
}

.section {
  padding: var(--pad-y) var(--pad-x);
}
.section--gray { background: var(--gray-050); }
.section--navy { background: var(--navy-700); }
.section--tight { padding-top: 40px; padding-bottom: 40px; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
.section-head--wide { max-width: 980px; margin: 0 auto; }
.section-head--narrow { max-width: 640px; margin: 0 auto; gap: 24px; }

.eyebrow {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.section-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.02em;
  color: var(--navy-700);
  text-wrap: balance;
}

.section-lede {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--navy-700);
  max-width: 900px;
  text-wrap: pretty;
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 14px 20px;
  border: 0;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  cursor: pointer;
  white-space: nowrap;
  transition: box-shadow .2s ease, transform .2s ease, background .2s ease, color .2s ease;
}

.btn--primary {
  background: var(--navy-700);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}

.btn--outline {
  background: var(--white);
  color: var(--navy-700);
  box-shadow: inset 0 0 0 1px var(--navy-700), var(--shadow-sm);
}
.btn--outline:hover {
  background: var(--gray-050);
  color: var(--navy-700);
  box-shadow: inset 0 0 0 1px var(--navy-700), 0 14px 30px -8px rgba(0, 61, 124, 0.3);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-700);
}
.btn--gold:hover {
  background: var(--gold-dark);
  color: var(--navy-700);
  box-shadow: 0 14px 30px -8px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.btn--soft {
  background: var(--blue-100);
  color: var(--navy-700);
}
.btn--soft:hover {
  background: var(--blue-200);
  color: var(--navy-700);
  box-shadow: 0 14px 30px -8px rgba(0, 61, 124, 0.3);
  transform: translateY(-2px);
}

.btn--sm {
  height: 36px;
  padding: 0 16px;
  font-size: 14px;
  line-height: 20px;
}

.btn--block { width: 100%; height: 48px; }

.btn[disabled],
.btn[aria-busy="true"] {
  background: var(--blue-300);
  cursor: default;
  transform: none;
  box-shadow: none;
}

/* --- Pills, badges, tags ------------------------------------------------ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 6px 14px;
  border-radius: 24px;
  background: var(--blue-100);
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: var(--navy-700);
}

.badge {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 6px 12px;
  border-radius: 24px;
  background: var(--gold-wash);
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: var(--gold-dark);
  white-space: nowrap;
}
.badge--blue { background: var(--blue-100); color: var(--blue-500); }
.badge--gold { color: var(--gold); }

.tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  align-self: stretch;
}
.tag {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 6px 12px;
  border-radius: var(--radius);
  background: var(--gold-wash);
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: var(--gold-dark);
}
.tag--gold { color: var(--gold); }

/* --- Header ------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 64px;
  background: var(--white);
  border-bottom: 1px solid #EEEEEE;
  padding: 0 108px;
  display: flex;
  align-items: center;
}

.header-inner {
  flex: 1;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}
.brand__mark { width: 31px; height: 40px; object-fit: cover; }
.brand__name {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.02em;
  color: var(--navy-700);
  white-space: nowrap;
}
.brand--footer .brand__name { color: var(--white); }

.nav {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}
.nav__link {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--navy-700);
}
.nav__link:hover { color: var(--blue-500); }

.header-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
  align-items: center;
  flex-shrink: 0;
}
.header-actions .link-login {
  display: flex;
  align-items: center;
  height: 36px;
  padding: 0 8px;
  font-weight: 500;
  font-size: 14px;
  color: var(--navy-700);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--navy-700);
  cursor: pointer;
}
.nav-toggle:hover { background: var(--gray-050); }

/* --- Hero --------------------------------------------------------------- */
.hero {
  padding: var(--pad-y) var(--pad-x);
  background: var(--white);
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}

.hero__copy {
  flex: 1 1 592px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.hero__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.02em;
  color: var(--navy-700);
  text-wrap: pretty;
}
.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__lede {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--navy-700);
  text-wrap: pretty;
}
.hero__lede strong { font-weight: 700; }

.hero__cta {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__media {
  flex: 1 1 592px;
  min-width: 0;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: stretch;
  height: 480px;
}
.hero__media-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}
.hero__tile {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 0;
}
.hero__tile--tall { flex: 1 1 100%; }
.hero__tile--short { flex: 0 0 205px; }
.hero__tile--grow { flex: 1; }
.hero__tile img { width: 100%; height: 100%; object-fit: cover; }

/* --- Trust bar ---------------------------------------------------------- */
.trustbar {
  background: var(--gray-050);
  padding: var(--pad-y) var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  text-align: center;
}
.trustbar__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: var(--navy-700);
}
.trustbar__sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--navy-700);
}

/* --- Feature blocks ----------------------------------------------------- */
.feature {
  padding: var(--pad-y) var(--pad-x);
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center;
}
.feature--reverse { flex-direction: row-reverse; }

.feature__copy {
  flex: 1 1 584px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.feature__media {
  flex: 1 1 572px;
  min-width: 0;
}
.feature__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  transition: filter .25s ease, transform .25s ease;
}
.feature__media img:hover {
  filter: drop-shadow(0 18px 34px rgba(0, 61, 124, 0.35));
  transform: translateY(-6px) scale(1.01);
}
.feature__media--on-navy img { background: var(--white); }
.feature__media--on-navy img:hover {
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.45));
}

/* Calculator block: small screenshot overlapping the large one */
.feature__media--stack {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 40px;
}
.feature__media--stack .shot-inset {
  position: absolute;
  right: -12px;
  bottom: 0;
  width: 50%;
  max-width: 288px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 18px 40px -10px rgba(0, 61, 124, 0.35);
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature__media--stack .shot-inset:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 52px -10px rgba(0, 61, 124, 0.45);
}

.feature__head {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  min-height: 48px;
}
.feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 200px;
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature__icon--gold { background: var(--gold-wash); }

.feature__kicker {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue-500);
  white-space: nowrap;
}

.feature__title {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.02em;
  color: var(--navy-700);
  text-wrap: pretty;
}

.feature__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--navy-700);
  text-wrap: pretty;
}

/* Dark variant */
.feature--on-navy .feature__kicker,
.feature--on-navy .feature__title { color: var(--white); }
.feature--on-navy .feature__text { color: var(--blue-100); }

/* --- Global expansion band ---------------------------------------------- */
.global-band {
  background: var(--gray-050);
  padding: var(--pad-y) var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}
.global-band__title {
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  max-width: 764px;
  text-wrap: balance;
}
.global-band__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--navy-700);
  max-width: 714px;
  text-wrap: pretty;
}

/* --- How it works ------------------------------------------------------- */
.steps {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  align-self: stretch;
}
.step {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.step__rail {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}
.step__line { flex: 1; height: 2px; background: var(--blue-100); }
.step__line--blank { background: transparent; }
.step__num {
  width: 40px;
  height: 40px;
  border-radius: 200px;
  background: var(--navy-700);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}
.step__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}
.step__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--navy-900);
}
.step__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--navy-500);
  text-wrap: pretty;
}

/* --- Reviews ------------------------------------------------------------ */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-self: stretch;
}
.review {
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--blue-200), var(--shadow-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  min-height: 248px;
}
.review__quote {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: var(--navy-700);
  text-wrap: pretty;
}
.review__person {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.review__avatar {
  width: 56px;
  height: 56px;
  border-radius: 200px;
  background: var(--blue-100);
  box-shadow: inset 0 0 0 1px var(--blue-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 18px;
  color: var(--navy-700);
  flex-shrink: 0;
}
.review__name {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--navy-900);
}
.review__role {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--navy-500);
}

/* --- Pricing ------------------------------------------------------------ */
.plans {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: stretch;
  align-self: stretch;
}
.plan {
  flex: 1 1 0;
  min-width: 0;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--blue-200);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  transition: box-shadow .25s ease, transform .25s ease;
}
.plan:hover {
  box-shadow: inset 0 0 0 1px var(--blue-500), var(--shadow-card);
  transform: translateY(-6px);
}
.plan--featured {
  box-shadow: inset 0 0 0 3px var(--blue-500),
              0 8px 24px -3px rgba(16, 24, 40, 0.05),
              0 8px 24px -3px rgba(16, 24, 40, 0.1);
}
.plan--featured:hover {
  box-shadow: inset 0 0 0 3px var(--blue-500), 0 22px 44px -10px rgba(0, 61, 124, 0.32);
  transform: translateY(-6px);
}
.plan__body { display: flex; flex-direction: column; gap: 24px; }
.plan__head {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
}
.plan__id { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.plan__name {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--navy-700);
}
.plan__price {
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}
.plan__meta {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--navy-600);
}
.plan__rule { height: 1px; background: var(--blue-200); }
.plan__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.plan__feature {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 24px;
  color: var(--navy-700);
}
.plan__feature svg { margin-top: 2px; }

/* --- FAQ ---------------------------------------------------------------- */
.faq {
  align-self: stretch;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px var(--blue-200);
  overflow: hidden;
  background: var(--white);
}
.faq__item { border-bottom: 1px solid var(--blue-200); }
.faq__item:last-child { border-bottom: 0; }

.faq__q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 20px 24px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: var(--navy-700);
}
.faq__q:hover { background: var(--gray-050); }

.faq__chevron {
  display: flex;
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq__q[aria-expanded="true"] .faq__chevron { transform: rotate(180deg); }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}
.faq__q[aria-expanded="true"] + .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--navy-600);
  padding: 0 24px 20px;
  text-wrap: pretty;
}

/* --- Contact ------------------------------------------------------------ */
.contact-grid {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: stretch;
  align-self: stretch;
  max-width: 1092px;
  margin: 0 auto;
  width: 100%;
}

.contact-card {
  flex: 0 0 408px;
  border-radius: var(--radius-lg);
  background: var(--blue-050);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.contact-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--blue-100);
  box-shadow: inset 0 0 0 1px var(--blue-500), var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-label {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--navy-700);
}
.contact-value {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 24px;
  color: var(--navy-700);
}
a.contact-value:hover { color: var(--blue-500); }

.socials {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}
.social {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.social:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -6px rgba(0, 61, 124, 0.3);
}

/* Form */
.form {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.form__fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form__row {
  display: flex;
  flex-direction: row;
  gap: 22px;
}
.field {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field__label {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--navy-700);
}
.input,
.textarea {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--blue-200);
  padding: 0 12px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--navy-700);
  background: var(--white);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.input { height: 40px; }
.textarea {
  height: 140px;
  padding: 12px;
  resize: vertical;
}
.input::placeholder,
.textarea::placeholder { color: var(--blue-300); }
.input:focus,
.textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(0, 102, 207, 0.15);
}
.input[aria-invalid="true"],
.textarea[aria-invalid="true"] { border-color: var(--err); }

.charcount {
  align-self: flex-end;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 20px;
  color: var(--navy-600);
}

.form__status {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 20px;
}
.form__status--ok { color: var(--ok); }
.form__status--err { color: var(--err); }
.form__status:empty { display: none; }

.form .btn {
  height: 40px;
  align-self: stretch;
}

/* --- Cookie banner ------------------------------------------------------ */
.cookie {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 60;
  width: min(520px, calc(100vw - 32px));
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--blue-200), 0 18px 40px -10px rgba(0, 61, 124, 0.35);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie[hidden] { display: none; }
.cookie__head {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie__icon {
  width: 36px;
  height: 36px;
  border-radius: 200px;
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cookie__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--navy-700);
}
.cookie__text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 22px;
  color: var(--navy-600);
}
.cookie__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie__actions .btn {
  flex: 1;
  height: 40px;
  font-size: 14px;
  padding: 0 12px;
}

/* --- Footer ------------------------------------------------------------- */
.site-footer {
  background: var(--navy-800);
  padding: 0 var(--pad-x);
}
.footer-inner {
  padding: var(--pad-y) 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.footer-top {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  flex: 0 1 372px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.footer-brand p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--white);
  text-wrap: pretty;
}
.footer-cols {
  flex: 0 1 800px;
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: space-between;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-col__title {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--blue-100);
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-link {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
  white-space: nowrap;
}
.footer-link:hover { color: var(--blue-100); }

.footer-bottom {
  border-top: 1px solid var(--blue-200);
  padding-top: 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--white);
}

/* --- Legal pages -------------------------------------------------------- */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--pad-y) 24px;
}
.legal__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.02em;
  color: var(--navy-700);
  margin-bottom: 8px;
}
.legal__updated {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 20px;
  color: var(--navy-500);
  margin-bottom: 40px;
}
.legal h2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: var(--navy-700);
  margin: 40px 0 12px;
}
.legal h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: var(--navy-700);
  margin: 24px 0 8px;
}
.legal p,
.legal li {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--navy-600);
  text-wrap: pretty;
}
.legal p { margin: 0 0 16px; }
.legal ul,
.legal ol { margin: 0 0 16px; padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 24px;
  font-family: var(--font-body);
  font-size: 15px;
}
.legal th,
.legal td {
  border: 1px solid var(--blue-200);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  color: var(--navy-600);
}
.legal th {
  background: var(--gray-050);
  font-weight: 600;
  color: var(--navy-700);
}
.legal__toc {
  border-radius: var(--radius-lg);
  background: var(--gray-050);
  box-shadow: inset 0 0 0 1px var(--blue-200);
  padding: 20px 24px;
  margin-bottom: 40px;
}
.legal__toc ul { margin: 0; padding-left: 20px; }

.table-scroll { overflow-x: auto; }

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 1240px) {
  :root { --pad-x: 48px; --pad-y: 56px; }
  .site-header { padding: 0 48px; }
  .hero { flex-direction: column; align-items: stretch; }
  .hero__copy { flex: none; }
  .hero__media { flex: none; height: 420px; }
  .contact-grid { gap: 40px; }
  .contact-card { flex: 0 0 340px; padding: 36px 28px; }
}

@media (max-width: 1000px) {
  .feature,
  .feature--reverse { flex-direction: column; align-items: stretch; gap: 32px; }
  .feature__copy,
  .feature__media { flex: none; }
  .feature__media--stack { padding-bottom: 56px; }
  .reviews { grid-template-columns: repeat(2, 1fr); }
  .plans { flex-wrap: wrap; }
  .plan { flex: 1 1 300px; }
  .steps { flex-wrap: wrap; row-gap: 32px; }
  .step { flex: 1 1 45%; }
  .contact-grid { flex-direction: column; }
  .contact-card { flex: none; }
  .footer-top { flex-direction: column; }
  .footer-cols { flex: none; width: 100%; }
}

@media (max-width: 860px) {
  .nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid #EEEEEE;
    box-shadow: 0 12px 24px -12px rgba(0, 61, 124, 0.3);
    padding: 8px 0;
  }
  .nav.is-open { display: flex; }
  .nav__link { padding: 12px 48px; font-size: 16px; }
  .nav-toggle { display: flex; }
  .header-actions .link-login { display: none; }
  .site-header { position: relative; }
}

@media (max-width: 720px) {
  :root { --pad-x: 20px; --pad-y: 44px; }
  .site-header { padding: 0 20px; }
  .nav__link { padding: 12px 20px; }

  .hero__title { font-size: 32px; line-height: 40px; }
  .hero__lede { font-size: 16px; line-height: 26px; }
  .hero__media { height: auto; flex-direction: column; }
  .hero__media-col { flex-direction: row; }
  .hero__tile img { object-position: center 25%; }
  .hero__tile--tall { height: 320px; }
  .hero__tile--short,
  .hero__tile--grow { flex: 1; height: 170px; }
  .hero__tile--short img,
  .hero__tile--grow img { object-position: center top; }

  .section-title,
  .global-band__title { font-size: 28px; line-height: 36px; }
  .feature__title { font-size: 26px; line-height: 34px; }
  .trustbar__title { font-size: 20px; line-height: 28px; }
  .trustbar__sub { font-size: 16px; line-height: 24px; }

  .reviews { grid-template-columns: 1fr; }
  .step { flex: 1 1 100%; }
  .step__rail { display: none; }
  .step__body { padding: 0; }
  .step::before {
    content: attr(data-step);
    width: 40px; height: 40px;
    border-radius: 200px;
    background: var(--navy-700);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 14px;
  }

  .form__row { flex-direction: column; gap: 24px; }
  .btn { width: 100%; }
  .hero__cta { flex-direction: column; align-items: stretch; width: 100%; }
  .cookie { left: 16px; right: 16px; bottom: 16px; width: auto; }
  .cookie__actions { flex-direction: column; }
  .footer-cols { flex-direction: column; gap: 32px; }
  .legal__title { font-size: 30px; line-height: 38px; }
}

/* --- Legal page extras -------------------------------------------------- */
.legal__lede {
  font-size: 18px !important;
  line-height: 30px !important;
  color: var(--navy-700) !important;
  margin-bottom: 20px !important;
}
.legal__note {
  border-left: 4px solid var(--gold);
  background: #FDF6E3;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 0 0 20px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  color: var(--navy-700);
}
.legal section { scroll-margin-top: 88px; }
.legal__toc ul { display: block; columns: 2; column-gap: 32px; }
.legal__toc li { margin-bottom: 8px; break-inside: avoid; }
@media (max-width: 720px) {
  .legal__toc ul { columns: 1; }
}
