/* ==========================================================================
   EvenFee — marketing site styles
   Framework-free, hand-authored CSS. No build step, no runtime dependencies.
   Design tokens live in :root so the whole palette/scale is editable in one place.
   ========================================================================== */

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

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video, canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; }

/* ----- Design tokens ------------------------------------------------------- */
:root {
  /* Brand palette — trustworthy fintech: deep indigo/navy + recovery-green accent */
  --brand-900: #0b1526;
  --brand-800: #14264f;
  --brand-700: #1e3a8a;
  --brand-600: #2563eb;
  --brand-500: #3b82f6;
  --brand-050: #eff4ff;

  --accent-700: #047857;
  --accent-600: #059669;
  --accent-500: #10b981;
  --accent-100: #d1fae5;
  --accent-050: #ecfdf5;

  /* Neutrals (slate) */
  --ink:     #0b1526;  /* headings */
  --body:    #3a4a61;  /* paragraph text */
  --muted:   #64748b;  /* secondary text */
  --line:    #e2e8f0;  /* borders */
  --line-2:  #eef2f7;
  --surface: #ffffff;
  --soft:    #f7f9fc;  /* tinted section bg */
  --soft-2:  #eef3fb;

  /* Typography */
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, "Noto Sans", sans-serif;

  /* Spacing & shape */
  --container: 1120px;
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(11, 21, 38, .06), 0 1px 3px rgba(11, 21, 38, .07);
  --shadow:    0 6px 16px -6px rgba(11, 21, 38, .12), 0 10px 30px -10px rgba(11, 21, 38, .12);
  --shadow-lg: 0 18px 50px -12px rgba(20, 38, 79, .28);

  --ring: 0 0 0 3px rgba(37, 99, 235, .35);
}

/* ----- Base ---------------------------------------------------------------- */
body {
  font-family: var(--font-sans);
  color: var(--body);
  background: var(--surface);
  line-height: 1.65;
  font-size: 1.0625rem;
}

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 1.4rem + 3.0vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 1.1rem + 2.1vw, 2.4rem); }
h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; }

p { text-wrap: pretty; }

a { text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

strong { color: var(--ink); font-weight: 700; }

/* ----- Layout helpers ------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding-block: clamp(56px, 4vw + 40px, 104px); }
.section--soft { background: var(--soft); border-block: 1px solid var(--line-2); }

.section__head { max-width: 720px; margin-bottom: 44px; }
.section__head.center { margin-inline: auto; text-align: center; }
.section__head p { margin-top: 14px; font-size: 1.125rem; color: var(--muted); }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: 14px;
}

.lead { font-size: 1.2rem; color: var(--muted); }
.muted { color: var(--muted); }

/* ----- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: .8em 1.4em;
  border-radius: var(--radius-pill);
  font-weight: 650;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(180deg, var(--brand-600), #1f57d6);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(37, 99, 235, .65);
}
.btn--primary:hover { box-shadow: 0 12px 26px -8px rgba(37, 99, 235, .7); }

.btn--ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { border-color: #cbd5e1; }

.btn--light {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
}
.btn--light:hover { background: rgba(255, 255, 255, .2); }

.btn--lg { padding: .95em 1.7em; font-size: 1.0625rem; }
.btn--block { width: 100%; }

/* ----- Chips & badges ------------------------------------------------------ */
.chip {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  padding: .4em .8em;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: .85rem;
  font-weight: 600;
  color: var(--body);
  box-shadow: var(--shadow-sm);
}
.chip svg { width: 15px; height: 15px; color: var(--accent-600); flex: none; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  padding: .28em .7em;
  border-radius: var(--radius-pill);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge--soft { background: var(--brand-050); color: var(--brand-700); }
.badge--accent { background: var(--accent-050); color: var(--accent-700); }
.badge--warn { background: #fff7ed; color: #b45309; }

/* ----- Header / nav -------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(11, 21, 38, .5);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 70px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.brand:hover { text-decoration: none; }
.brand__mark { width: 30px; height: 30px; border-radius: 9px; flex: none; box-shadow: var(--shadow-sm); }
.brand__name b { color: var(--brand-700); }

.nav__links {
  display: none;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
}
.nav__links a {
  display: inline-block;
  padding: .5em .8em;
  border-radius: 10px;
  font-weight: 550;
  font-size: .97rem;
  color: var(--body);
}
.nav__links a:hover { background: var(--soft-2); color: var(--ink); text-decoration: none; }

.nav__cta { display: none; align-items: center; gap: 10px; }

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  cursor: pointer;
}
.nav__toggle svg { width: 22px; height: 22px; color: var(--ink); }
.nav__toggle .icon-close { display: none; }
.nav__toggle[aria-expanded="true"] .icon-open { display: none; }
.nav__toggle[aria-expanded="true"] .icon-close { display: block; }

/* Mobile menu panel */
.nav__panel {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding: 14px 0 22px;
}
.nav__panel.is-open { display: block; }
.nav__panel ul { list-style: none; padding: 0; display: grid; gap: 2px; }
.nav__panel a {
  display: block;
  padding: .8em .4em;
  border-radius: 10px;
  font-weight: 600;
  color: var(--ink);
}
.nav__panel a:hover { background: var(--soft-2); text-decoration: none; }
.nav__panel .btn { margin-top: 14px; }

@media (min-width: 880px) {
  .nav__links, .nav__cta { display: flex; }
  .nav__toggle { display: none; }
  .nav__panel { display: none !important; }
}

/* ----- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 460px at 78% -8%, rgba(37, 99, 235, .10), transparent 60%),
    radial-gradient(760px 420px at 2% 6%, rgba(16, 185, 129, .08), transparent 55%),
    var(--surface);
  border-bottom: 1px solid var(--line-2);
}
.hero__grid {
  display: grid;
  gap: 44px;
  padding-block: clamp(46px, 5vw, 88px);
  align-items: center;
}
.hero h1 { margin-top: 18px; }
.hero__sub { margin-top: 20px; font-size: 1.2rem; color: var(--muted); max-width: 36ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__micro {
  margin-top: 18px;
  font-size: .92rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.hero__micro span { display: inline-flex; align-items: center; gap: .4em; }
.hero__micro svg { width: 16px; height: 16px; color: var(--accent-600); }

@media (min-width: 940px) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; gap: 56px; }
  .hero__sub { font-size: 1.28rem; }
}

/* Hero mock "audit" card */
.mock {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  max-width: 440px;
  margin-inline: auto;
}
.mock__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mock__title { display: inline-flex; align-items: center; gap: .55em; font-weight: 700; color: var(--ink); }
.mock__title .dot { width: 26px; height: 26px; border-radius: 8px; background: linear-gradient(135deg, var(--brand-700), var(--brand-600)); }
.mock__sku { margin-top: 16px; font-size: .85rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.mock__row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; margin-top: 10px;
  background: var(--soft);
}
.mock__row .label { font-size: .82rem; color: var(--muted); }
.mock__row .val { font-weight: 700; color: var(--ink); display: inline-flex; align-items: center; gap: .4em; }
.mock__row .val .pin { width: 9px; height: 9px; border-radius: 50%; }
.pin--warn { background: #f59e0b; }
.pin--ok { background: var(--accent-500); }
.mock__dims { font-size: .82rem; color: var(--muted); margin-top: 12px; font-variant-numeric: tabular-nums; }
.mock__result {
  margin-top: 14px; padding: 14px; border-radius: 12px;
  background: var(--accent-050); border: 1px solid var(--accent-100); color: var(--accent-700);
  font-weight: 650; display: flex; align-items: center; gap: .6em; font-size: .95rem;
}
.mock__result svg { width: 20px; height: 20px; flex: none; }
.mock__foot { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: .74rem; font-weight: 650; color: var(--muted);
  background: var(--soft-2); padding: .35em .7em; border-radius: var(--radius-pill);
}

/* ----- Trust strip --------------------------------------------------------- */
.trustbar {
  border-block: 1px solid var(--line-2);
  background: var(--surface);
}
.trustbar__inner {
  display: flex; flex-wrap: wrap; gap: 12px 22px;
  align-items: center; justify-content: center;
  padding-block: 22px;
}
.trustbar__item {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .92rem; font-weight: 600; color: var(--body);
}
.trustbar__item svg { width: 18px; height: 18px; color: var(--accent-600); flex: none; }

/* ----- Generic card grids -------------------------------------------------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 680px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: #d7e0ee; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 1rem; }

.icon-box {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--brand-050); color: var(--brand-700);
  margin-bottom: 16px;
}
.icon-box svg { width: 24px; height: 24px; }
.icon-box--accent { background: var(--accent-050); color: var(--accent-700); }

/* Problem section */
.problem__points { margin-top: 28px; display: grid; gap: 14px; }
.problem__point { display: flex; gap: 14px; align-items: flex-start; }
.problem__point .num {
  flex: none; width: 30px; height: 30px; border-radius: 9px;
  display: grid; place-items: center; font-weight: 800; font-size: .9rem;
  background: #fff1f2; color: #be123c;
}
.problem__point h3 { font-size: 1.05rem; }
.problem__point p { color: var(--muted); font-size: .98rem; margin-top: 2px; }
.problem__media { display: flex; align-items: center; justify-content: center; }

@media (min-width: 940px) {
  .split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
}

/* Steps */
.step { position: relative; }
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-600));
  color: #fff; font-weight: 800; margin-bottom: 16px;
  box-shadow: 0 8px 18px -8px rgba(37, 99, 235, .6);
}

/* ----- Security (dark band) ----------------------------------------------- */
.security {
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(37, 99, 235, .3), transparent 55%),
    radial-gradient(700px 460px at 5% 110%, rgba(16, 185, 129, .18), transparent 55%),
    linear-gradient(160deg, #0b1526, #14264f);
  color: #cdd8ec;
}
.security h2 { color: #fff; }
.security .section__head p { color: #aab8d4; }
.security__list { display: grid; gap: 18px; }
@media (min-width: 760px) { .security__list { grid-template-columns: repeat(2, 1fr); gap: 20px 36px; } }
.sec-item { display: flex; gap: 14px; align-items: flex-start; }
.sec-item__ic {
  flex: none; width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center;
  background: rgba(16, 185, 129, .14); color: #6ee7b7;
  border: 1px solid rgba(110, 231, 183, .25);
}
.sec-item__ic svg { width: 21px; height: 21px; }
.sec-item h3 { color: #fff; font-size: 1.05rem; margin-bottom: 4px; }
.sec-item p { color: #aab8d4; font-size: .97rem; }
.security__cta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.security a.inline-link { color: #93c5fd; font-weight: 650; }

/* ----- Pricing ------------------------------------------------------------- */
.price-grid { display: grid; gap: 22px; }
@media (min-width: 760px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
.price-card { display: flex; flex-direction: column; }
.price-card .icon-box { margin-bottom: 14px; }
.price-card ul { list-style: none; padding: 0; margin-top: 16px; display: grid; gap: 10px; }
.price-card li { display: flex; gap: 10px; align-items: flex-start; color: var(--body); font-size: .98rem; }
.price-card li svg { width: 19px; height: 19px; color: var(--accent-600); flex: none; margin-top: 2px; }
.price-note {
  margin-top: 28px; text-align: center; color: var(--muted); font-size: .98rem;
  max-width: 640px; margin-inline: auto;
}

/* ----- FAQ ----------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 0 20px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s ease;
}
.faq details[open] { border-color: #cdd9ee; }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 700;
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chevron {
  flex: none; width: 22px; height: 22px; color: var(--brand-600);
  transition: transform .2s ease;
}
.faq details[open] summary .chevron { transform: rotate(180deg); }
.faq details p { color: var(--muted); padding-bottom: 18px; margin-top: -4px; }

/* ----- CTA band ------------------------------------------------------------ */
.cta-band {
  background: linear-gradient(135deg, var(--brand-700), var(--brand-600));
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 64px);
  text-align: center;
  color: #eaf1ff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 240px at 50% -30%, rgba(255,255,255,.25), transparent 60%);
  pointer-events: none;
}
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { margin: 14px auto 0; max-width: 560px; position: relative; }
.cta-band .hero__actions { justify-content: center; position: relative; }

/* ----- Footer -------------------------------------------------------------- */
.site-footer {
  background: var(--brand-900);
  color: #9fb0cc;
  padding-block: 56px 36px;
  font-size: .95rem;
}
.footer__grid { display: grid; gap: 32px; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; } }
.footer__brand .brand { color: #fff; }
.footer__brand .brand__name b { color: #93c5fd; }
.footer__brand p { margin-top: 14px; max-width: 34ch; color: #8595b3; }
.footer h4 {
  color: #c7d3e8; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 14px; font-weight: 700;
}
.footer ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer a { color: #9fb0cc; }
.footer a:hover { color: #fff; }
.footer__bottom {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.10);
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
}
.footer__legal { font-size: .82rem; color: #6f7f9d; max-width: 70ch; line-height: 1.6; }

/* ----- Legal / prose pages ------------------------------------------------- */
.page-hero {
  background: linear-gradient(160deg, #0b1526, #14264f);
  color: #cdd8ec;
  padding-block: clamp(48px, 6vw, 84px);
}
.page-hero h1 { color: #fff; }
.page-hero p { margin-top: 14px; color: #aab8d4; max-width: 70ch; }
.page-hero .badge { margin-bottom: 16px; }

.prose { max-width: 760px; margin-inline: auto; }
.prose h2 {
  font-size: 1.4rem; margin-top: 44px; margin-bottom: 12px;
  padding-top: 8px;
}
.prose h2:first-of-type { margin-top: 8px; }
.prose h3 { margin-top: 26px; margin-bottom: 8px; font-size: 1.08rem; }
.prose p { margin-top: 12px; color: var(--body); }
.prose ul, .prose ol { margin-top: 12px; padding-left: 22px; color: var(--body); }
.prose li { margin-top: 8px; }
.prose li::marker { color: var(--brand-600); }
.prose a { color: var(--brand-600); font-weight: 600; }
.prose strong { color: var(--ink); }

.callout {
  border: 1px solid var(--accent-100);
  background: var(--accent-050);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-top: 20px;
}
.callout p { margin-top: 0; color: var(--accent-700); font-weight: 600; }

.data-table {
  width: 100%; border-collapse: collapse; margin-top: 16px; font-size: .96rem;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.data-table th, .data-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.data-table th { background: var(--soft); color: var(--ink); font-weight: 700; font-size: .9rem; }
.data-table tr:last-child td { border-bottom: 0; }

.toc {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--soft); padding: 18px 22px; margin-bottom: 8px;
}
.toc strong { display: block; margin-bottom: 8px; color: var(--ink); }
.toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 28px; }
.toc a { color: var(--brand-600); font-weight: 550; }
@media (max-width: 600px) { .toc ol { columns: 1; } }

/* ----- 404 ----------------------------------------------------------------- */
.notfound { min-height: 62vh; display: grid; place-items: center; text-align: center; }
.notfound .code { font-size: 4rem; font-weight: 800; color: var(--brand-600); letter-spacing: -.04em; }

/* ----- Accessibility ------------------------------------------------------- */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--brand-700); color: #fff; padding: 10px 16px; border-radius: 10px;
  z-index: 100; transition: top .15s ease; font-weight: 600;
}
.skip-link:focus { top: 12px; text-decoration: none; }

:where(a, button, summary, [tabindex]):focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 8px;
}

.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;
}

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

/* Utility */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.nowrap { white-space: nowrap; }

/* ----- Contact section + form -------------------------------------------- */
.contact {
  background: linear-gradient(135deg, var(--brand-700), var(--brand-600));
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 56px);
  color: #eaf1ff;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 30px;
}
@media (min-width: 900px) {
  .contact { grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
}
.contact__intro h2 { color: #fff; }
.contact__intro p { margin-top: 14px; color: #dbe5fb; max-width: 46ch; }
.contact__list { list-style: none; padding: 0; margin-top: 22px; display: grid; gap: 12px; }
.contact__list li { display: flex; gap: 10px; align-items: center; color: #eaf1ff; font-weight: 550; }
.contact__list svg { width: 20px; height: 20px; color: #6ee7b7; flex: none; }

.contact__card {
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 32px);
  box-shadow: var(--shadow-lg);
}

.form__row { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form label { font-weight: 650; color: var(--ink); font-size: .95rem; }
.form .opt { color: var(--muted); font-weight: 500; }
.form input,
.form textarea {
  width: 100%;
  padding: .72em .85em;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-size: 1rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form input:focus,
.form textarea:focus { outline: none; border-color: var(--brand-500); box-shadow: var(--ring); }
.form textarea { resize: vertical; min-height: 104px; }
.form__hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.form button[type="submit"] { margin-top: 4px; }
.form__fineprint { margin-top: 14px; font-size: .85rem; color: var(--muted); text-align: center; }
.form__fineprint a { color: var(--brand-600); font-weight: 600; }
.form__error { margin-top: 14px; color: #be123c; font-weight: 600; font-size: .9rem; text-align: center; }
.form__success { text-align: center; padding: 24px 8px; }
.form__success svg { width: 50px; height: 50px; color: var(--accent-600); margin: 0 auto 12px; }
.form__success h3 { color: var(--ink); font-size: 1.25rem; }
.form__success p { color: var(--muted); margin-top: 8px; }
