/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --green:        #22c55e;
  --green-dark:   #16a34a;
  --green-glow:   rgba(34,197,94,0.18);
  --blue:         #3b82f6;
  --blue-glow:    rgba(59,130,246,0.14);
  --font-head:    'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --radius:       14px;
  --radius-lg:    20px;
}

/* Dark theme (default) */
:root,
[data-theme="dark"] {
  --bg:           #080e1a;
  --bg-card:      #0f1724;
  --bg-card-2:    #131e2e;
  --text:         #f1f5f9;
  --text-sub:     #94a3b8;
  --text-muted:   #64748b;
  --border:       rgba(255,255,255,0.07);
  --border-green: rgba(34,197,94,0.35);
  --hero-orb-1:   rgba(59,130,246,.18);
  --hero-orb-2:   rgba(34,197,94,.1);
  --shield-glow:  rgba(59,130,246,.25);
  --gradient-card: linear-gradient(135deg,rgba(255,255,255,.04),transparent);
  --how-bg:       rgba(255,255,255,.015);
  --final-cta-bg: linear-gradient(180deg, rgba(34,197,94,.06) 0%, transparent 100%);
  --check-bar-track: rgba(255,255,255,.07);
  --icon-blue-bg:   rgba(59,130,246,.15);
  --icon-green-bg:  rgba(34,197,94,.12);
  --icon-teal-bg:   rgba(20,184,166,.12);
  --icon-indigo-bg: rgba(99,102,241,.12);
  --check-icon-bg:  rgba(34,197,94,.12);
  --hero-tag-bg:    rgba(34,197,94,.12);
  --badge-shadow:   0 8px 24px rgba(0,0,0,.4);
  --card-shadow:    0 16px 48px rgba(34,197,94,.1);
  --popular-bg:     linear-gradient(160deg, rgba(34,197,94,.06), var(--bg-card));
  --nav-scrolled-bg: rgba(8,14,26,.92);
  --mobile-nav-bg: rgba(8,14,26,.97);
}

/* Light theme */
[data-theme="light"] {
  --bg:           #ecf1eb;
  --bg-card:      #ffffff;
  --bg-card-2:    #f1f5f9;
  --text:         #0f172a;
  --text-sub:     #475569;
  --text-muted:   #64748b;
  --border:       rgba(0,0,0,0.08);
  --border-green: rgba(34,197,94,0.5);
  --hero-orb-1:   rgba(59,130,246,.12);
  --hero-orb-2:   rgba(34,197,94,.08);
  --shield-glow:  rgba(59,130,246,.15);
  --gradient-card: linear-gradient(135deg,rgba(0,0,0,.02),transparent);
  --how-bg:       rgba(0,0,0,.02);
  --final-cta-bg: linear-gradient(180deg, rgba(34,197,94,.08) 0%, transparent 100%);
  --check-bar-track: rgba(0,0,0,.08);
  --icon-blue-bg:   rgba(59,130,246,.1);
  --icon-green-bg:  rgba(34,197,94,.08);
  --icon-teal-bg:   rgba(20,184,166,.08);
  --icon-indigo-bg: rgba(99,102,241,.08);
  --check-icon-bg:  rgba(34,197,94,.1);
  --hero-tag-bg:    rgba(34,197,94,.1);
  --badge-shadow:   0 8px 24px rgba(0,0,0,.1);
  --card-shadow:    0 16px 48px rgba(0,0,0,.08);
  --popular-bg:     linear-gradient(160deg, rgba(34,197,94,.08), var(--bg-card));
  --nav-scrolled-bg: rgba(255,255,255,.95);
  --mobile-nav-bg: rgba(255,255,255,.98);
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
input, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
}
button, input, textarea, select {
  touch-action: manipulation;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ─── LAYOUT ─────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 6rem 0; }
.hero + section { padding-top: 0; }

/* ─── SKIP NAV ───────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--green); color: #000; padding: .5rem 1rem;
  border-radius: 4px; font-weight: 600; z-index: 999;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ─── NAVIGATION ─────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 0;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: var(--nav-scrolled-bg);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  display: flex; align-items: center; gap: .65rem;
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 800;
  letter-spacing: -.02em;
}
.nav__logo img {
  height: 42px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex; align-items: center; gap: 2rem;
}
.nav__links a {
  font-size: .9rem; font-weight: 500; color: var(--text-sub);
  transition: color .2s;
}
.nav__links a:hover { color: var(--text); }
.nav__links a.active { color: var(--green); font-weight: 600; }
.nav__links a.btn { color: var(--text); }
.nav__burger { display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: .5rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav__burger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* ─── THEME TOGGLE ───────────────────────────────────── */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s, transform .15s;
  color: var(--text);
}
.theme-toggle:hover {
  border-color: var(--border-green);
  transform: scale(1.05);
}
.theme-toggle:active { transform: scale(0.95); }
.theme-toggle svg {
  width: 20px;
  height: 20px;
}
.theme-toggle .sun-icon { display: none; }
.theme-toggle .moon-icon { display: block; }
[data-theme="light"] .theme-toggle .sun-icon { display: block; }
[data-theme="light"] .theme-toggle .moon-icon { display: none; }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.6rem; border-radius: 8px;
  font-family: var(--font-body); font-size: .95rem; font-weight: 600;
  transition: transform .15s, filter .15s, box-shadow .15s;
  border: none; line-height: 1;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.08); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  box-shadow: 0 4px 20px rgba(34,197,94,.3);
}
.btn-primary:hover { box-shadow: 0 6px 28px rgba(34,197,94,.45); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--border-green); }
.btn-large { padding: .9rem 2rem; font-size: 1.05rem; border-radius: 10px; }

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  padding: 10rem 0 7rem;
  position: relative; overflow: hidden;
}
.hero__orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(90px);
}
.hero__orb--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--hero-orb-1) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.hero__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--hero-orb-2) 0%, transparent 70%);
  bottom: -100px; left: -100px;
}
.hero__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem; position: relative; z-index: 1;
}
.hero__tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--hero-tag-bg); border: 1px solid var(--border-green);
  color: var(--green); font-size: .8rem; font-weight: 600;
  padding: .35rem .85rem; border-radius: 100px;
  letter-spacing: .04em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero__tag-dot {
  width: 6px; height: 6px; background: var(--green);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--green); }
.hero__sub {
  font-size: 1.15rem; color: var(--text-sub);
  max-width: 460px; margin-bottom: 2.5rem; line-height: 1.6;
}
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__stats {
  display: flex; gap: 2.5rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.hero__stat-n {
  font-family: var(--font-head); font-size: 1.8rem;
  font-weight: 800; color: var(--green);
}
.hero__stat-l { font-size: .8rem; color: var(--text-muted); margin-top: .2rem; }

/* Hero shield illustration */
.hero__visual {
  position: relative; display: flex;
  align-items: center; justify-content: center;
}
.shield-wrap {
  position: relative; animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
.shield-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(circle, var(--shield-glow) 0%, transparent 65%);
  border-radius: 50%; animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,100% { opacity: .7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.shield-img {
  width: 280px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 40px var(--shield-glow));
}

/* Orbiting badges */
.badge {
  position: absolute; background: var(--bg-card);
  border: 1px solid var(--border-green); border-radius: 10px;
  padding: .6rem 1rem; font-size: .78rem; font-weight: 600;
  color: var(--green); white-space: nowrap;
  box-shadow: var(--badge-shadow);
  z-index: 100;
  animation: badge-float 8s ease-in-out infinite;
}
.badge--id   { top: 8%; right: -10%; animation-delay: 0s; }
.badge--aml  { bottom: 20%; left: -8%; animation-delay: 2.5s; }
.badge--pass { bottom: 5%; right: 2%; animation-delay: 1.2s; }
@keyframes badge-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.badge-dot { display: inline-block; width: 6px; height: 6px; background: var(--green); border-radius: 50%; margin-right: .4rem; }

/* ─── TRUST BAR ──────────────────────────────────────── */
.trust { padding: 3.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust__label {
  text-align: center; font-size: .85rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 2rem;
}
.trust__logos {
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
@media (max-width: 640px) {
  .trust__logos { gap: 1.5rem; }
  .trust__logo { font-size: 0.8rem; }
}
.trust__logo {
  color: var(--text-muted); font-size: .9rem; font-weight: 600;
  letter-spacing: .05em; opacity: .55; transition: opacity .2s;
}
.trust__logo:hover { opacity: 1; }

/* ─── SECTION HEADER ─────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 {
  font-family: var(--font-head); font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  letter-spacing: -.03em; margin-bottom: .75rem;
}
.section-header p { color: var(--text-sub); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ─── FEATURES ───────────────────────────────────────── */
.features { background: transparent; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.features__grid__3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  /*padding: 1.5rem;*/
  /*text-align: center;*/
  position: relative; overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: var(--gradient-card);
  pointer-events: none;
}
.feature-card:hover {
  border-color: var(--border-green);
  transform: translateY(-5px);
  box-shadow: var(--card-shadow);
}
.feature-icon {
  width: 60px; height: 60px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; font-size: 1.6rem;
}
.feature-icon--blue  { background: var(--icon-blue-bg); }
.feature-icon--green { background: var(--icon-green-bg); }
.feature-icon--teal  { background: var(--icon-teal-bg); }
.feature-icon--indigo{ background: var(--icon-indigo-bg); }
.feature-card h3 { font-weight: 600; font-size: 1.05rem; margin-bottom: .5rem; }
.feature-card p  { font-size: .88rem; color: var(--text-sub); line-height: 1.6; }

/* ─── HOW IT WORKS ───────────────────────────────────── */
.how { background: var(--how-bg); }
.how__steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-bottom: 3.5rem;
}
.how-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  position: relative; overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  text-align: center;
}
.how-step:hover {
  border-color: var(--border-green);
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
}
.how-step__icon {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.how-step__icon-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
}
.how-step__num {
  color: var(--green);
  font-weight: 700;
}
.how-step h3 { font-weight: 700; font-size: 1.1rem; margin-bottom: .75rem; }
.how-step p  { font-size: .88rem; color: var(--text-sub); line-height: 1.6; }
.how__cta { text-align: center; }

/* ─── COMPLIANCE CHECKS ──────────────────────────────── */
.checks__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.checks__list { display: flex; flex-direction: column; gap: .75rem; }
.check-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.1rem 1.25rem;
  transition: border-color .2s;
}
.check-item:hover { border-color: var(--border-green); }
.check-item__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--check-icon-bg); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.check-item h4 { font-size: .95rem; font-weight: 600; margin-bottom: .15rem; }
.check-item p  { font-size: .82rem; color: var(--text-sub); }
.checks__visual {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; position: relative;
}
.score-ring {
  display: flex; flex-direction: column; align-items: center;
  padding: 1.5rem 0; margin-bottom: 1.5rem;
}
.score-ring__label { font-size: .8rem; color: var(--text-muted); margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .06em; }
.score-ring__num {
  font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: var(--green);
}
.score-ring__sub { font-size: .8rem; color: var(--text-sub); }
.check-bars { display: flex; flex-direction: column; gap: .75rem; }
.check-bar__top { display: flex; justify-content: space-between; font-size: .8rem; margin-bottom: .35rem; }
.check-bar__label { color: var(--text-sub); }
.check-bar__val { color: var(--green); font-weight: 600; }
.check-bar__track {
  height: 6px; background: var(--check-bar-track); border-radius: 6px; overflow: hidden;
}
.check-bar__fill {
  height: 100%; border-radius: 6px;
  background: linear-gradient(90deg, var(--green), #3b82f6);
}

/* ─── PRICING ────────────────────────────────────────── */
.pricing__cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
  margin-bottom: 3rem;
}
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.25rem 2rem;
  position: relative; overflow: hidden; transition: border-color .25s, transform .25s;
}
.pricing-card:hover { border-color: var(--border-green); transform: translateY(-4px); }
.pricing-card--popular {
  border-color: var(--border-green);
  background: var(--popular-bg);
}
.popular-badge {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: var(--green); color: #000;
  font-size: .7rem; font-weight: 700; padding: .25rem .65rem;
  border-radius: 100px; letter-spacing: .05em; text-transform: uppercase;
}
.pricing-card__name { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .75rem; }
.pricing-card__price {
  font-family: var(--font-head); font-size: 2.5rem; font-weight: 800;
  margin-bottom: .25rem; color: var(--text);
}
.pricing-card__price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing-card__desc { font-size: .85rem; color: var(--text-sub); margin-bottom: 1.75rem; }
.pricing-card__divider { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }
.pricing-features { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.pricing-feature {
  display: flex; align-items: center; gap: .65rem;
  font-size: .88rem; color: var(--text-sub);
}
.pricing-feature--on  { color: var(--text); }
.pricing-feature__icon { font-size: .9rem; flex-shrink: 0; }
.pricing-feature__icon--check { color: var(--green); }
.pricing-feature__icon--x { color: var(--text-muted); }

/* ─── TESTIMONIALS ───────────────────────────────────── */
.testimonials__grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.testimonial {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: border-color .25s;
}
.testimonial:hover { border-color: var(--border-green); }
.testimonial__stars { color: var(--green); font-size: 1rem; margin-bottom: 1rem; }
.testimonial__text { font-size: .92rem; color: var(--text-sub); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: .85rem; }
.testimonial__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem; color: #fff; flex-shrink: 0;
}
.testimonial__name  { font-weight: 600; font-size: .88rem; }
.testimonial__role  { font-size: .78rem; color: var(--text-muted); }

/* ─── FINAL CTA ──────────────────────────────────────── */
.final-cta {
  text-align: center;
  background: var(--final-cta-bg);
  border-top: 1px solid var(--border);
}
.final-cta h2 {
  font-family: var(--font-head); font-size: clamp(2rem,4vw,3rem);
  font-weight: 800; letter-spacing: -.03em; margin-bottom: 1rem;
}
.final-cta p { color: var(--text-sub); margin-bottom: 2.5rem; font-size: 1.05rem; }
.final-cta__ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.final-cta__small { margin-top: 1.25rem; font-size: .82rem; color: var(--text-muted); }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.footer__nav {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: 0.9rem;
  color: var(--text-sub);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--green); }
.footer__copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.footer__brand img {
  height: 80px;
}
@media (max-width: 768px) {
  .footer__brand img { height: 60px; }
}
.footer__name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}
.footer__tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  flex: 1;
}
.footer__socials {
  display: flex;
  gap: 0.75rem;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-sub);
  transition: border-color 0.2s, color 0.2s;
}
.social-btn:hover { border-color: var(--border-green); color: var(--green); }
.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__legal a:hover { color: var(--text); }

/* ─── ANIMATIONS ─────────────────────────────────────── */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
[data-reveal].visible { opacity: 1; transform: translateY(0); }
[data-reveal-group] > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-reveal-group].visible > *:nth-child(1) { transition-delay:0ms }
[data-reveal-group].visible > *:nth-child(2) { transition-delay:80ms }
[data-reveal-group].visible > *:nth-child(3) { transition-delay:160ms }
[data-reveal-group].visible > *:nth-child(4) { transition-delay:240ms }
[data-reveal-group].visible > * { opacity:1; transform:translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal],[data-reveal-group]>*{ opacity:1!important;transform:none!important;transition:none!important; }
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2,1fr); }
  .features__grid__3 { grid-template-columns: repeat(2,1fr); }
  .checks__inner  { grid-template-columns: 1fr; }
  .checks__visual { display: none; }
  .footer__grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .signup__grid { grid-template-columns: 1fr; gap: 2rem; }
  .signup__carousel { order: -1; }
  .contact__grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact__info { order: -1; }
}
@media (max-width: 768px) {
  section { padding: 3rem 0; }
  .container { padding: 0 1rem; }
  .hero { padding: 6rem 0 3rem; }
  .hero__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__visual { order: -1; }
  .shield-img { width: 200px; max-width: 60vw; }
  .badge { font-size: .7rem; padding: .4rem .8rem; }
  .badge--id   { top: 5%; right: 5%; }
  .badge--aml  { bottom: 25%; left: 5%; }
  .badge--pass { bottom: 5%; right: 15%; }
  .how__steps { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .features__grid__3 { grid-template-columns: 1fr; }
  .pricing__cards { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--mobile-nav-bg);
    backdrop-filter: blur(20px);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    gap: 0.75rem;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .nav__links.open { display: flex; }
  .nav__burger { display: flex; }
  .nav__links a,
  .nav__links button {
    padding: 0.75rem 0;
    font-size: 1rem;
  }
  .nav__actions { margin-top: 0.5rem; }
  .nav__actions a { width: 100%; justify-content: center; }
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  .footer__left { align-items: center; }
  .footer__nav { justify-content: center; }
  .footer__right { align-items: center; }
  .hero__stats { flex-direction: row; flex-wrap: wrap; gap: 1rem; justify-content: center; }
  .hero__stat-n { font-size: 1.4rem; }
  .hero__sub { font-size: 1rem; }
  .section-header { margin-bottom: 2rem; }
  .section-header h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
  .section-header p { font-size: 0.95rem; }
  .how-step { padding: 1.75rem 1.5rem; }
  .how-step__icon { font-size: 3rem; }
  .how-step__icon-img { width: 60px; height: 60px; }
  .feature-card { padding: 1.5rem; }
  .feature-icon { width: 50px; height: 50px; font-size: 1.4rem; }
  .pricing-card { padding: 1.75rem; }
  .pricing-card__price { font-size: 2rem; }
  .testimonial { padding: 1.5rem; }
  .final-cta h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .final-cta p { font-size: 0.95rem; }
  .btn { padding: 0.65rem 1.4rem; font-size: 0.9rem; }
  .btn-large { padding: 0.8rem 1.6rem; font-size: 1rem; }
  .hero__ctas { justify-content: center; }
  .final-cta__ctas { flex-direction: column; align-items: center; }
  .final-cta__ctas .btn { width: 100%; max-width: 280px; }
  input, select, textarea {
    font-size: 16px;
    min-height: 44px;
  }
  .theme-toggle {
    width: 44px;
    height: 44px;
  }
  .theme-toggle svg {
    width: 22px;
    height: 22px;
  }
  .social-btn {
    width: 44px;
    height: 44px;
  }
  .check-item { padding: 1rem; }
}

@media (max-width: 480px) {
  .hero { padding: 5rem 0 2rem; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.5rem); }
  .badge { display: none; }
  .shield-img { width: 160px; }
  .nav__logo img { height: 36px; }
  .section-header h2 { font-size: 1.5rem; }
  .how-step { padding: 1.5rem; }
  .feature-card { padding: 1.25rem; }
  .feature-icon { width: 44px; height: 44px; font-size: 1.2rem; }
  .btn-large { padding: 0.75rem 1.25rem; font-size: 0.95rem; }
  .final-cta { padding: 3rem 0; }
  .final-cta h2 { font-size: 1.5rem; }
  .pricing-card { padding: 1.5rem; }
  .pricing-card__price { font-size: 1.75rem; }
  .testimonial { padding: 1.25rem; }
  .footer__nav { flex-direction: column; gap: 0.75rem; }
  .footer__legal { flex-direction: column; gap: 0.5rem; align-items: center; }
}

/* ─── CUSTOM ─────────────────────────────────────────── */
.primary-color {
  color: var(--green);
}