/* ---------- Brand tokens ---------- */
:root {
  /* ContractStrateeg leads with blue (logo color), green as the bridge to TenderStrateeg */
  --blue: #0069b4;
  --blue-soft: #e2f0fa;
  --blue-tint: #c9e2f3;
  --blue-deep: #00568f;
  --green: #12ad2b;
  --green-soft: #e6f7ea;
  --green-tint: #d3f0d9;
  --orange: #ff6600;
  --orange-soft: #fff0e6;
  --orange-tint: #ffd9bf;
  --red: #d83a3a;
  --red-soft: #fdeaea;

  --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.32);

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

*,
*::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(50vw 50vw at 8% -5%, rgba(0, 105, 180, 0.12), transparent 60%),
    radial-gradient(45vw 45vw at 95% 8%, rgba(18, 173, 43, 0.08), transparent 60%),
    radial-gradient(40vw 40vw at 80% 92%, rgba(255, 102, 0, 0.06), transparent 60%),
    var(--paper);
}

.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(--blue);
  box-shadow: 0 10px 24px -10px rgba(0, 105, 180, 0.6);
}
.btn--primary:hover {
  transform: translateY(-1px);
  background: var(--blue-deep);
  box-shadow: 0 14px 30px -10px rgba(0, 105, 180, 0.75);
}

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

.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.92);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand__mark {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
}
.brand__logo { height: 32px; width: auto; }
.brand__logo img { height: 100%; width: auto; }
.brand__text {
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    font-weight: 700;
}
.brand__text em {
    font-style: normal;
    color: var(--blue);
}
.brand__mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.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(--blue); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  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: 80px 0 60px;
  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--1 { top: -40px; left: -100px; width: 280px; height: 280px; opacity: 0.6; }
.hero .vorm--2 { top: 60px; right: -90px; width: 220px; height: 220px; opacity: 0.55; }
.hero .vorm--3 { bottom: 80px; left: -40px; width: 90px; height: 90px; opacity: 0.85; }

.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(--blue);
  box-shadow: 0 0 12px var(--blue);
}

.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(--blue);
  font-style: italic;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  font-size: larger;
}
.accent-green { color: var(--green); font-style: italic; font-family: var(--serif); font-weight: 400; }
.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__hint {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--soft);
}

.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(0, 105, 180, 0.2));
  animation: avatar-float 4s ease-in-out infinite;
}
@keyframes avatar-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero__wheel {
  position: relative;
  width: 88%;
  filter: drop-shadow(0 30px 80px rgba(0, 105, 180, 0.18));
  animation: slow-spin 60s linear infinite;
  animation-direction: revert;
}
.hero__wheel img { width: 100%; height: auto; }
@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

.float-card {
  position: absolute;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
  padding: 14px 18px;
  z-index: 2;
}
.float-card--top {
  top: 6%;
  right: -4%;
  animation: float 6s ease-in-out infinite;
  display: flex;
  align-items: center;
  gap: 12px;
}
.float-card__icon {
  width: 38px; height: 38px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--blue);
  color: #fff;
  flex-shrink: 0;
}
.float-card__icon.is-orange { background: var(--orange); }
.float-card__icon.is-green { background: var(--green); }
.float-card__title { font-size: 0.92rem; font-weight: 600; color: var(--ink); }
.float-card__sub { font-size: 0.78rem; color: var(--muted); }

.float-card--side {
  left: -6%;
  top: 40%;
  animation: float 7s ease-in-out infinite reverse;
  display: flex;
  flex-direction: column;
  min-width: 180px;
}
.float-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  padding: 6px 0;
}
.float-card__row + .float-card__row { border-top: 1px solid var(--line); }
.float-card__row span:first-child { color: var(--ink-2); font-weight: 500; }
.float-card__row .ok { color: var(--green); font-weight: 600; }
.float-card__row .alert { color: var(--orange); font-weight: 600; }

.float-card--bottom {
  bottom: 4%;
  right: -2%;
  animation: float 8s ease-in-out infinite;
}
.float-card--bottom .float-card__title { font-family: var(--serif); font-style: italic; font-size: 1.8rem; color: var(--blue); line-height: 1; font-weight: 400; }
.float-card--bottom .float-card__sub { margin-top: 4px; }

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

/* ---------- Audience ---------- */
.audience {
  padding: 60px 0 20px;
}
.audience__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.audience-card {
  padding: 32px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-left: 4px solid var(--blue);
  transition: transform .3s ease, box-shadow .3s ease;
}
.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-1);
}
.audience-card:nth-child(2) { border-left-color: var(--green); }
.audience-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.audience-card p {
  font-size: 0.96rem;
  color: var(--muted);
}

/* ---------- Pains ---------- */
.pains {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.pains .vorm--bg { top: 40px; right: -120px; width: 320px; height: 320px; opacity: 0.35; }
.pains__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.pains__copy h2 { margin-bottom: 16px; }
.pains__copy p { font-size: 1rem; color: var(--muted); line-height: 1.7; }
.pains__copy p + p { margin-top: 14px; }
.pains__copy .pains__close {
  margin-top: 22px;
  font-weight: 600;
  color: var(--ink);
  font-size: 1.05rem;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pain-item {
  display: flex;
  gap: 14px;
  padding: 18px 22px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-sm);
  font-size: 0.97rem;
  color: var(--ink-2);
  align-items: flex-start;
  line-height: 1.5;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pain-item:hover {
  transform: translateX(2px);
  box-shadow: var(--shadow-1);
}
.pain-item::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

/* ---------- Stats ---------- */
.stats {
  padding: 60px 0 80px;
  position: relative;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.stat {
  position: relative;
  padding: 32px 26px;
  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(--blue-soft), var(--paper-2)); }
.stat:nth-child(2) { background: linear-gradient(135deg, var(--green-soft), var(--paper-2)); }
.stat:nth-child(3) { background: linear-gradient(135deg, var(--orange-soft), var(--paper-2)); }
.stat:nth-child(4) { background: linear-gradient(135deg, var(--blue-soft), var(--paper-2)); }
.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-1);
}
.stat__num {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--blue);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.stat:nth-child(2) .stat__num { color: var(--green); }
.stat:nth-child(3) .stat__num { color: var(--orange); }
.stat:nth-child(4) .stat__num { color: var(--blue); }
.stat__label {
  margin-top: 14px;
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
}

/* ---------- Section heads ---------- */
.section-head {
  max-width: 720px;
  margin: 0 auto 40px;
  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(--blue);
  margin-bottom: 14px;
}
.eyebrow--green { color: var(--green); }
.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; left: -120px; width: 320px; height: 320px; opacity: 0.4; }

.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(--blue-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(--blue);
  margin-bottom: 16px;
  line-height: 1;
}
.step:nth-child(2) .step__num { background: var(--green); }
.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:nth-child(6) .step__num { background: var(--orange); }

.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; right: -100px; width: 260px; height: 260px; opacity: 0.45; }
.features .vorm--bg-2 { bottom: 100px; left: -80px; width: 200px; height: 200px; opacity: 0.45; }

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.feature {
  padding: 32px;
  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: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
  margin-bottom: 22px;
}
.feature__icon[data-color="blue"]   { background: var(--blue-soft); color: var(--blue); }
.feature__icon[data-color="green"]  { background: var(--green-soft); color: var(--green); }
.feature__icon[data-color="orange"] { background: var(--orange-soft); color: var(--orange); }

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

/* ---------- Loop / Ecosystem ---------- */
.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(18, 173, 43, 0.10), transparent 60%),
    radial-gradient(40% 70% at 0% 100%, rgba(0, 105, 180, 0.12), 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(--blue);
  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: 190px;
}
.loop-node--a {
  transform: translateY(-40px);
  border-top: 4px solid var(--green);
}
.loop-node--b {
  transform: translateY(55px);
  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); }

/* ---------- Quotes / Social proof ---------- */
.quotes {
  padding: 80px 0;
}
.quotes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.quote {
  position: relative;
  padding: 36px 32px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.quote::before {
  content: "“";
  position: absolute;
  top: -10px; left: 18px;
  font-family: var(--serif);
  font-size: 6rem;
  color: var(--blue);
  opacity: 0.18;
  line-height: 1;
}
.quote:nth-child(2)::before { color: var(--green); }
.quote__text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 18px;
  position: relative;
}
.quote__attr {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}
.quote__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.quote:nth-child(2) .quote__avatar { background: var(--green-soft); color: var(--green); }

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

.security__grid {
  display: grid;
  grid-template-columns: repeat(3, 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__icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
  margin-bottom: 18px;
}
.security-card:nth-child(2) .security-card__icon { background: var(--green-soft); color: var(--green); }
.security-card:nth-child(3) .security-card__icon { background: var(--orange-soft); color: var(--orange); }
.security-card:nth-child(4) .security-card__icon { background: var(--blue-soft); color: var(--blue); }
.security-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.security-card p { font-size: 0.92rem; }
.security-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-1);
  border-color: var(--line-strong);
}

/* ---------- 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(--blue);
  box-shadow: 0 6px 24px -10px rgba(0, 105, 180, 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(--blue); }
.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(--blue);
  color: #fff;
  overflow: hidden;
}
.cta-card .vorm { opacity: 0.35; }
.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: 780px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  letter-spacing: -0.035em;
}
.cta-card p {
  max-width: 600px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
}
.cta-card .btn--primary {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.25);
}
.cta-card .btn--primary:hover {
  background: #f4f4f4;
}
.cta-card .cta-card__hint {
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

/* ---------- 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(--blue); }
.footer__col--brand { max-width: 320px; }
.footer__col--brand p {
  margin-top: 14px;
  font-size: 0.93rem;
  color: var(--muted);
}
.footer__col--brand .brand__logo { height: 36px; }

.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(--blue);
  border-color: var(--blue);
}

.block_bg_blue{
  background-image: url(assets/block_bg_blue.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: 1080px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}

@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: 50px; padding-bottom: 30px; }
  .hero__inner { grid-template-columns: 1fr; gap: 24px; }
  .hero__visual { max-width: 200px; margin: 0 auto; order: -1; }
  .hero .vorm { display: none; }
  .float-card--side { left: -10px; }
  .float-card--top { right: -10px; }
  .float-card--bottom { right: 0; }

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

  .pains__inner { grid-template-columns: 1fr; gap: 30px; }

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

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

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

  .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) {
  .stats__grid { grid-template-columns: 1fr; }
  .security__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__title { font-size: 2rem; }
  .float-card--top,
  .float-card--side,
  .float-card--bottom { display: none; }
}

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