.compliance { display: grid; grid-template-columns: 1fr 0.95fr; gap: 18px; align-items: center; }
.compliance__media img { width: 100%; height: 280px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-muted: #f5f7fb;
  --text: #0f172a;
  --muted: #4b5563;
  --line: #e5e7eb;
  --accent: #2563eb;
  --accent-strong: #1d4ed8;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  --radius: 16px;
  --radius-lg: 22px;
  --container: 1180px;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

.sr-only {
  position: absolute !important;
  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: -999px; top: 10px;
  background: #000; color: #fff; padding: 10px 12px; border-radius: 10px;
}
.skip-link:focus { left: 10px; z-index: 9999; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; }
.brand__mark {
  width: 44px; height: 44px; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.25);
}
.brand__text { display: flex; flex-direction: column; gap: 2px; }
.brand__name { font-size: 18px; }
.brand__tag { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

.nav { display: flex; align-items: center; }
.nav__toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff; color: var(--text);
}
.nav__toggleLines { display: block; width: 18px; height: 2px; background: var(--text); margin: 0 auto; position: relative; }
.nav__toggleLines::before, .nav__toggleLines::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--text); }
.nav__toggleLines::before { top: -6px; }
.nav__toggleLines::after { top: 6px; }

.nav__menu {
  display: flex; gap: 18px; align-items: center;
  list-style: none; padding: 0; margin: 0;
}
.nav__menu a { color: var(--muted); font-weight: 600; font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; }
.nav__menu a:hover { color: var(--text); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 18px; border-radius: 12px; border: 1px solid var(--line);
  background: #fff; color: var(--text); font-weight: 700; letter-spacing: 0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08); }
.btn--sm { padding: 11px 14px; font-size: 14px; }
.btn--primary { background: linear-gradient(135deg, var(--accent), var(--accent-strong)); color: #fff; border-color: transparent; box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28); }
.btn--primary:hover { transform: translateY(-2px); }
.btn--ghost { background: #f8fafc; color: var(--text); }
.btn--dark { background: #0f172a; color: #fff; border-color: #0f172a; box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18); }

.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 12px; border-radius: 999px; border: 1px solid var(--line);
  background: #f8fafc; color: var(--muted); font-weight: 700; text-transform: uppercase; font-size: 13px; letter-spacing: 0.04em;
}
.badge {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 6px 10px; border-radius: 999px; background: #e1e9ff; color: var(--accent-strong);
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}
.badge--accent { background: #e1e9ff; color: var(--accent-strong); }

.hero { padding: 96px 0 72px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 36px; align-items: center; }
.hero h1 { font-size: clamp(38px, 5vw, 48px); line-height: 1.05; margin: 16px 0 14px; }
.hero__sub { font-size: 18px; color: var(--muted); max-width: 60ch; }
.hero__cta { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.hero__badges { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.hero__panel { position: relative; }
.panelCard { border: 1px solid var(--line); background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.panelCard__image { width: 100%; height: auto; display: block; }

.trustStrip { background: #0f172a; color: #e2e8f0; padding: 24px 0; }
.trustStrip__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.trustStrip__item { padding: 12px; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 14px; background: rgba(255, 255, 255, 0.03); display: grid; gap: 8px; }
.trustStrip__image { width: 100%; height: 120px; object-fit: cover; border-radius: 12px; }
.trustStrip__item h3 { color: #fff; font-size: 18px; }
.trustStrip__item p { margin: 0; color: #cbd5e1; }

.section { padding: 96px 0; }
.section--muted { background: var(--surface-muted); border-block: 1px solid var(--line); }
.section__head { margin-bottom: 28px; }
.section__head h2 { font-size: 32px; }
.section__head p { margin: 10px 0 0; color: var(--muted); max-width: 70ch; font-size: 18px; }
.section__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px; align-items: start; }
.section__intro { display: flex; flex-direction: column; gap: 12px; }
.section__intro p { color: var(--muted); }
.section__head--left { margin-bottom: 20px; }

.grid { display: grid; gap: 18px; }
.cards { grid-template-columns: repeat(3, 1fr); }
.cards--two { grid-template-columns: repeat(2, 1fr); }
.cards--three { grid-template-columns: repeat(3, 1fr); }
.card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
}
.card__image { width: 100%; height: 160px; object-fit: cover; border-radius: 12px; margin: 0 0 12px; }
.card h3 { margin: 0 0 10px; font-size: 20px; }
.card p { margin: 0; color: var(--muted); }

.iconList { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 10px; color: var(--muted); }
.iconList li { position: relative; padding-left: 22px; }
.iconList li::before { content: ""; position: absolute; left: 0; top: 8px; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }

.note {
  margin-top: 16px;
  border: 1px dashed var(--line);
  background: #f8fafc;
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--muted);
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}
.step__num {
  width: 38px; height: 38px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}
.step h3 { margin: 12px 0 6px; font-size: 20px; }
.step p { margin: 0; color: var(--muted); }
.step__image { margin-top: 12px; width: 100%; height: 160px; object-fit: cover; border-radius: 12px; }

.callout {
  margin-top: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0.06));
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
}

.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.priceCard {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
  display: grid; gap: 12px;
}
.priceCard h3 { margin: 0; font-size: 22px; }
.priceCard__price { margin: 0; font-size: 32px; font-weight: 800; line-height: 1.1; }
.priceCard__price span { font-size: 14px; color: var(--muted); font-weight: 700; margin-left: 6px; }
.priceCard__list h4 { margin: 0 0 8px; font-size: 15px; color: var(--text); letter-spacing: 0.02em; }
.priceCard--featured { border-color: rgba(37, 99, 235, 0.35); box-shadow: 0 18px 38px rgba(37, 99, 235, 0.14); }
.priceCard--match {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0.04));
  border-style: dashed;
}
.priceCard--match .btn { justify-self: start; }

.areas { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 20px; align-items: start; }
.areas__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.miniCard {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}
.bullets { margin: 10px 0 0; padding-left: 18px; color: var(--muted); line-height: 1.7; }

.trustBox {
  border: 1px solid var(--line);
  background: #0f172a;
  color: #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.3);
  display: grid; gap: 12px;
}
.trustBox--image { grid-template-columns: 1fr 1.1fr; align-items: center; gap: 16px; }
.trustBox__media img { width: 100%; height: 220px; object-fit: cover; border-radius: 14px; }
.trustBox p { color: #cbd5e1; margin: 0; }
.trustBox__stats { margin-top: 8px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.stat { border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.06); border-radius: 14px; padding: 12px; }
.stat__num { font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: #fff; }
.stat__txt { color: #cbd5e1; font-size: 13px; margin-top: 4px; }

.contactGrid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 18px; align-items: start; }
.form {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}
.form label { display: block; font-weight: 700; font-size: 14px; color: var(--muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.04em; }
.form input, .form textarea, .form select {
  width: 100%; margin-top: 8px; border-radius: 12px; border: 1px solid var(--line);
  background: #f8fafc; color: var(--text); padding: 12px; font: inherit;
}
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form__row--tight { margin-top: 10px; align-items: center; }
.checkbox { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--muted); margin: 0; text-transform: uppercase; letter-spacing: 0.04em; }
.checkbox input { width: auto; margin: 0; }
.form__fineprint { color: var(--muted); font-size: 12px; line-height: 1.5; margin: 12px 0 0; }

.contactCard {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
  display: grid; gap: 12px;
}
.contactCard__image { width: 100%; height: 180px; object-fit: cover; border-radius: 12px; }
.contactCard p { color: var(--muted); margin: 0; }
.contactCard__actions { display: grid; gap: 10px; margin-top: 6px; }
.divider { height: 1px; background: var(--line); margin: 10px 0; }
.small { font-size: 14px; color: var(--muted); line-height: 1.6; }

.checklist { margin: 8px 0 0; padding: 0; list-style: none; color: var(--muted); }
.checklist li { padding-left: 24px; position: relative; margin: 8px 0; line-height: 1.5; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 6px; width: 14px; height: 14px; border-radius: 5px; background: linear-gradient(135deg, var(--accent), var(--accent-strong)); }

.footer {
  padding: 28px 0 18px;
  border-top: 1px solid var(--line);
  background: #0f172a;
  color: #e2e8f0;
}
.footer__inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; flex-wrap: wrap; }
.footer__brand { font-weight: 900; letter-spacing: 0.03em; }
.footer__sub { color: #cbd5e1; margin-top: 4px; }
.footer__links { display: flex; gap: 14px; flex-wrap: wrap; color: #cbd5e1; font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; }
.footer__links a:hover { color: #fff; }
.footer__legal { margin-top: 14px; color: #cbd5e1; font-size: 12px; }

.anchor { position: relative; top: -80px; display: block; height: 0; }

@media (max-width: 1024px) {
  .hero__grid, .section__grid, .areas, .contactGrid, .compliance { grid-template-columns: 1fr; }
  .hero__panel { order: -1; }
  .cards, .cards--two, .cards--three { grid-template-columns: 1fr 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .trustStrip__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trustBox--image { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav__menu {
    position: absolute; right: 20px; top: 68px; width: min(320px, calc(100vw - 40px));
    display: none; flex-direction: column; align-items: stretch; gap: 10px;
    padding: 14px; border: 1px solid var(--line); background: #fff; border-radius: 16px; box-shadow: var(--shadow);
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu a { padding: 10px; }

  .hero { padding: 78px 0 56px; }
  .trustStrip__grid { grid-template-columns: 1fr; }
  .cards, .cards--two, .cards--three, .steps { grid-template-columns: 1fr; }
  .areas__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .trustBox__media img { height: 180px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
}
