/* ---------- Brand tokens ---------- */
:root {
  --green: #12ad2b;
  --green-soft: #e6f7ea;
  --green-tint: #d3f0d9;
  --blue: #0069b4;
  --blue-soft: #e2f0fa;
  --blue-tint: #c9e2f3;
  --orange: #ff6600;
  --orange-soft: #fff0e6;
  --orange-tint: #ffd9bf;

  --ink: #0e1320;
  --ink-2: #243049;
  --muted: #5b667d;
  --soft: #8a93a7;

  --paper: #fdfcf9;
  --paper-2: #ffffff;
  --line: rgba(14, 19, 32, 0.08);
  --line-strong: rgba(14, 19, 32, 0.16);

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --shadow-1: 0 8px 30px -10px rgba(14, 19, 32, 0.12);
  --shadow-2: 0 30px 80px -30px rgba(0, 105, 180, 0.28);

  --container: 1200px;
  --serif: "Instrument Serif", "Times New Roman", serif;
}

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

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

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

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

a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--ink);
}

h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.15rem; }

p { margin: 0; color: var(--muted); }

ul, ol { margin: 0; padding: 0; list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

/* ---------- Background mesh / decorations ---------- */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(45vw 45vw at 12% -8%, rgba(18, 173, 43, 0.10), transparent 60%),
    radial-gradient(50vw 50vw at 95% 5%, rgba(0, 105, 180, 0.10), transparent 60%),
    radial-gradient(40vw 40vw at 80% 90%, rgba(255, 102, 0, 0.07), transparent 60%),
    var(--paper);
}

/* Decorative vorm shapes — positioned anchors */
.vorm {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.vorm img { display: block; width: 100%; height: 100%; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.btn--sm { padding: 10px 16px; font-size: 0.85rem; }
.btn--lg { padding: 17px 30px; font-size: 1rem; }

.btn--primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 24px -10px rgba(18, 173, 43, 0.55);
}
.btn--primary:hover {
  transform: translateY(-1px);
  background: #0e9523;
  box-shadow: 0 14px 30px -10px rgba(18, 173, 43, 0.7);
}

.btn--secondary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 24px -10px rgba(0, 105, 180, 0.55);
}
.btn--secondary:hover {
  transform: translateY(-1px);
  background: #005a9c;
}

.btn--ghost {
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  background: rgba(253, 252, 249, 0.75);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(253, 252, 249, 0.9);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand__mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
}
.brand__mark img { width: 100%; height: 100%; object-fit: contain; }
.brand__text {
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.brand__text em {
  font-style: normal;
  color: var(--green);
}

.nav__links {
  display: flex;
  gap: 32px;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink-2);
}
.nav__links a { position: relative; }
.nav__links a:hover { color: var(--green); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { display: flex; align-items: center; gap: 12px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  border-radius: 8px;
}
.nav__toggle span {
  width: 22px; height: 2px; background: var(--ink); display: block; border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  z-index: 1;
}
.hero__copy {
  text-align: center;
}

/* Hero vorm decorations */
.hero .vorm--1 { top: 30px; left: -60px; width: 220px; height: 220px; opacity: 0.85; }
.hero .vorm--2 { top: 120px; right: -50px; width: 180px; height: 180px; opacity: 0.85; }
.hero .vorm--3 { top: 360px; left: 4%; width: 70px; height: 70px; opacity: 0.95; }
.hero .vorm--4 { top: 410px; right: 6%; width: 90px; height: 90px; opacity: 0.95; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-1);
}
.pill__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.hero__title {
  font-size: clamp(2.4rem, 5.8vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  max-width: 920px;
  margin: 0 auto;
  color: var(--ink);
}
.grad-text {
  color: var(--green);
  font-style: italic;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.accent-blue { color: var(--blue); }
.accent-orange { color: var(--orange); }

.hero__lead {
  max-width: 640px;
  margin: 24px auto 0;
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__trust {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink-2);
  font-weight: 500;
}
.trust-badge svg { color: var(--blue); }

/* Hero visual — avatar */
.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
}
.hero__avatar {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(18, 173, 43, 0.2));
  animation: avatar-float 4s ease-in-out infinite;
}
@keyframes avatar-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Hero preview */
.hero__preview {
  grid-column: 1 / -1;
  position: relative;
  margin: 80px auto 0;
  width: 100%;
  max-width: 880px;
  height: 380px;
  z-index: 2;
}

.preview-card {
  position: absolute;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
}

.preview-card--main {
  inset: 0;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.preview-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.preview-card__dots { display: flex; gap: 6px; }
.preview-card__dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(14, 19, 32, 0.10);
}
.preview-card__dots span:nth-child(1) { background: var(--orange); }
.preview-card__dots span:nth-child(2) { background: #f5cd3a; }
.preview-card__dots span:nth-child(3) { background: var(--green); }
.preview-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}
.preview-card__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--green);
  background: var(--green-soft);
  padding: 6px 12px;
  border-radius: 999px;
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.preview-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.preview-row {
  display: grid;
  grid-template-columns: 180px 1fr 80px;
  align-items: center;
  gap: 16px;
  font-size: 0.88rem;
}
.preview-row__label { color: var(--ink-2); font-weight: 500; }
.preview-row__bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(14, 19, 32, 0.06);
  overflow: hidden;
}
.preview-row__bar i {
  display: block; height: 100%;
  background: var(--green);
  border-radius: 999px;
}
.preview-row:nth-child(2) .preview-row__bar i { background: var(--blue); }
.preview-row:nth-child(3) .preview-row__bar i { background: var(--orange); }
.preview-row:nth-child(4) .preview-row__bar i { background: var(--green); }
.preview-row__val { color: var(--ink); font-weight: 600; text-align: right; font-size: 0.83rem; }

.preview-card--alert {
  top: -28px;
  right: -32px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
}
.alert-icon {
  width: 38px; height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #fff;
}
.alert-title { font-size: 0.92rem; font-weight: 600; color: var(--ink); }
.alert-sub { font-size: 0.78rem; color: var(--muted); }

.preview-card--time {
  bottom: -32px;
  left: -32px;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: float 7s ease-in-out infinite reverse;
}
.time-num {
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--green);
  letter-spacing: -0.03em;
  font-family: var(--serif);
  font-style: italic;
  line-height: 1;
}
.time-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Stats ---------- */
.stats {
  padding: 60px 0 40px;
  position: relative;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stat {
  position: relative;
  padding: 36px 32px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.stat:nth-child(1) { background: linear-gradient(135deg, var(--green-soft), var(--paper-2)); }
.stat:nth-child(2) { background: linear-gradient(135deg, var(--blue-soft), var(--paper-2)); }
.stat:nth-child(3) { background: linear-gradient(135deg, var(--orange-soft), var(--paper-2)); }
.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-1);
}
.stat__num {
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  color: var(--ink);
  justify-content: center;
}
.stat:nth-child(1) .stat__num { color: var(--green); }
.stat:nth-child(2) .stat__num { color: var(--blue); }
.stat:nth-child(3) .stat__num { color: var(--orange); }
.stat__num span { font-size: 1.6rem; margin-left: 2px; }
.stat__label {
  margin-top: 14px;
  color: var(--ink-2);
  font-size: 0.97rem;
  font-weight: 500;
  text-align: center;
}

/* ---------- Section heads ---------- */
.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head--left { text-align: left; margin: 0; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.eyebrow--blue { color: var(--blue); }
.eyebrow--orange { color: var(--orange); }
.section-sub {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

/* ---------- Steps ---------- */
.steps {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.steps .vorm--bg { top: 80px; right: -120px; width: 320px; height: 320px; opacity: 0.5; }

.steps__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.steps__list .step:first-child {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--green-soft), var(--paper-2));
}
.step {
  padding: 32px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-1);
  border-color: var(--line-strong);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: #fff;
  background: var(--green);
  margin-bottom: 16px;
  line-height: 1;
}
.step:nth-child(2) .step__num { background: var(--blue); }
.step:nth-child(3) .step__num { background: var(--orange); }
.step:nth-child(4) .step__num { background: var(--blue); }
.step:nth-child(5) .step__num { background: var(--green); }

.step h3 { margin-bottom: 8px; font-size: 1.15rem; }
.step p { font-size: 0.96rem; color: var(--muted); }

/* ---------- Features ---------- */
.features {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.features .vorm--bg-1 { top: 200px; left: -100px; width: 260px; height: 260px; opacity: 0.5; }
.features .vorm--bg-2 { bottom: 100px; right: -80px; width: 200px; height: 200px; opacity: 0.5; }

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.feature {
  padding: 36px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-1);
  border-color: var(--line-strong);
}
.feature__icon {
  width: 80px; height: 80px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green);
  margin: 0 auto;
  margin-bottom: 22px;
}
.feature__icon[data-color="blue"]   { background: var(--blue-soft); color: var(--blue); }
.feature__icon[data-color="orange"] { background: var(--orange-soft); color: var(--orange); }
.feature__icon[data-color="green"]  { background: var(--green-soft); color: var(--green); }

.feature h3 { margin-bottom: 10px; font-size: 1.2rem; }
.feature p { font-size: 0.96rem; color: var(--muted); }

/* ---------- Loop / ContractStrateeg ---------- */
.loop {
  padding: 100px 0;
}
.loop__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 64px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.loop__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 70% at 100% 0%, rgba(0, 105, 180, 0.10), transparent 60%),
    radial-gradient(40% 70% at 0% 100%, rgba(18, 173, 43, 0.10), transparent 60%);
  pointer-events: none;
}
.loop__copy { position: relative; z-index: 1; }
.loop__copy h2 { margin-bottom: 18px; }
.loop__copy p { margin-bottom: 24px; }

.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checklist li {
  position: relative;
  padding-left: 32px;
  color: var(--ink);
  font-size: 0.97rem;
  font-weight: 500;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 1px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.loop__visual {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.loop-arrow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.loop-node {
  position: relative;
  z-index: 2;
  padding: 10px 24px;
  background: var(--paper-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  min-width: 180px;
}
.loop-node--a {
  transform: translateY(-35px);
  border-top: 4px solid var(--green);
}
.loop-node--b {
  transform: translateY(56px);
  border-top: 4px solid var(--blue);
}
.loop-node__title { font-weight: 700; margin-bottom: 4px; color: var(--ink); }
.loop-node__desc { font-size: 0.82rem; color: var(--muted); }

/* ---------- Security ---------- */
.security {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.security .vorm--bg { bottom: 60px; left: -100px; width: 240px; height: 240px; opacity: 0.45; }

.security__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}
.security-card {
  padding: 28px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
}
.security-card::before {
  content: "";
  position: absolute;
  left: 28px; top: 28px;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--blue-soft);
  z-index: 0;
}
.security-card:nth-child(2)::before { background: var(--green-soft); }
.security-card:nth-child(3)::before { background: var(--orange-soft); }
.security-card:nth-child(4)::before { background: var(--blue-soft); }
.security-card h3,
.security-card p { position: relative; z-index: 1; }
.security-card h3 { margin-bottom: 8px; font-size: 1.05rem; margin-top: 44px; }
.security-card p { font-size: 0.92rem; }
.security-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-1);
  border-color: var(--line-strong);
}

/* ---------- newsletter ---------- */
.newsletter {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.08;
}
.newsletter-text h2 { margin-top: 8px; font-size: 30px; }
.newsletter-text p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.newsletter-form input {
  font-family: inherit;
  font-size: 15px;
  padding: 16px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--bg-soft);
  transition: border-color 0.2s, background 0.2s;
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
}
.newsletter-form button { padding: 16px 24px; }

/* ---------- FAQ ---------- */
.faq { padding: 100px 0; }
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item[open] {
  border-color: var(--green);
  box-shadow: 0 6px 24px -10px rgba(18, 173, 43, 0.25);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(14, 19, 32, 0.06);
  position: relative;
  flex-shrink: 0;
  transition: background .25s ease;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 11px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .25s ease, background .25s ease;
}
.faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-item__icon { background: var(--green); }
.faq-item[open] .faq-item__icon::before,
.faq-item[open] .faq-item__icon::after { background: #fff; }
.faq-item[open] .faq-item__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-item p {
  padding: 0 24px 22px;
  color: var(--muted);
}

/* ---------- CTA band ---------- */
.cta-band { padding: 40px 0 120px; }
.cta-card {
  position: relative;
  padding: 80px 56px;
  text-align: center;
  border-radius: var(--radius-xl);
  background: var(--green);
  color: #fff;
  overflow: hidden;
}
.cta-card .vorm {
  opacity: 0.4;
}
.cta-card .vorm--cta-1 { top: -40px; right: -40px; width: 220px; height: 220px; }
.cta-card .vorm--cta-2 { bottom: -60px; left: -60px; width: 240px; height: 240px; }
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  letter-spacing: -0.035em;
}
.cta-card p {
  max-width: 580px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
}
.cta-card .btn--primary {
  background: #fff;
  color: var(--green);
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.25);
}
.cta-card .btn--primary:hover {
  background: #f4f4f4;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 72px 0 32px;
  background: var(--paper-2);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer__col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  color: var(--ink-2);
  padding: 5px 0;
  font-size: 0.93rem;
  font-weight: 500;
}
.footer__col a:hover { color: var(--green); }
.footer__col--brand { max-width: 320px; }
.footer__col--brand p {
  margin-top: 14px;
  font-size: 0.93rem;
  color: var(--muted);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--soft);
}
.footer__socials { display: flex; gap: 12px; }
.footer__socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink-2);
  padding: 0;
}
.footer__socials a:hover {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}
.block_bg_green{
  background-image: url(assets/block_bg_green.png);
  background-repeat: no-repeat;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav__links {
    position: absolute;
    inset: 100% 0 auto 0;
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 20px;
    background: var(--paper);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .nav__links a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
  }
  .nav__links a:last-child { border-bottom: none; }
  .nav__links a::after { display: none; }
  .nav.is-open .nav__links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__toggle { display: flex; }

  .hero { padding-top: 70px; }
  .hero__inner { grid-template-columns: 1fr; gap: 24px; }
  .hero__visual { max-width: 200px; margin: 0 auto; order: -1; }
  .hero__preview { display: none; }
  .hero .vorm { display: none; }

  .stats__grid { grid-template-columns: 1fr; }
  .stat { padding: 28px; }
  .stat__num { font-size: 2.8rem; }

  .steps__list { grid-template-columns: 1fr; }
  .steps__list .step:first-child { grid-column: auto; }

  .features__grid { grid-template-columns: 1fr; }

  .loop__inner {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    gap: 36px;
  }
  .loop__visual { display: none; }

  .security__grid { grid-template-columns: repeat(2, 1fr); }

  .faq__inner { grid-template-columns: 1fr; gap: 32px; }

  .cta-card { padding: 56px 28px; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__col--brand { grid-column: 1 / -1; max-width: none; }
  .footer__bottom { flex-direction: column; gap: 14px; }
}

@media (max-width: 520px) {
  .security__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__title { font-size: 2.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
