/* =====================================================
   RESET & TOKENS
   ===================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Backgrounds */
  --bg:          #f5f4f0;       /* warm off-white */
  --bg-card:     #ffffff;
  --bg-alt:      #f0efe9;
  --bg-dark:     #111110;

  /* Accents */
  --gold:        #B8860B;
  --gold-light:  #D4A017;
  --gold-bg:     rgba(184,134,11,0.08);
  --gold-border: rgba(184,134,11,0.25);
  --blue:        #1a56f0;
  --blue-light:  #4477ff;
  --blue-bg:     rgba(26,86,240,0.07);
  --green:       #16a34a;
  --red:         #dc2626;
  --orange:      #ea580c;

  /* Text */
  --ink:         #111110;
  --ink2:        #3a3a38;
  --muted:       #777770;
  --muted2:      #aaaaaa;

  /* Borders */
  --border:      #e2e0d8;
  --border2:     #d0cec6;

  /* Radii */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

a { text-decoration: none; color: inherit; }

/* =====================================================
   HELPERS
   ===================================================== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
  text-transform: uppercase;
}
.section-tag--lg {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  margin-bottom: 20px;
}
.color-green { color: var(--green); font-weight: 600; }
.logo-dot { color: var(--gold); }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn--dark {
  background: var(--ink);
  color: #fff;
}
.btn--dark:hover {
  background: #2a2a28;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.btn--light {
  background: var(--bg-card);
  color: var(--ink2);
  border: 1px solid var(--border2);
}
.btn--light:hover {
  background: var(--bg-alt);
  border-color: var(--border2);
}
.btn--lg {
  font-size: 1rem;
  padding: 15px 36px;
}

/* =====================================================
   NAVBAR
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s;
}
.nav.scrolled {
  background: rgba(245,244,240,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav__wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav__links {
  display: flex;
  gap: 28px;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--ink); }
.nav__btn {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: 50px;
  padding: 9px 20px;
  transition: all 0.2s;
}
.nav__btn:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 130px 80px 80px;
  max-width: 1280px;
  margin: 0 auto;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink2);
  margin-bottom: 28px;
}
.hero__pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(22,163,74,0.6);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero__h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 22px;
}
.hero__h1-accent {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--gold);
}
.hero__lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 490px;
}
.hero__cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero__kpi-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 0;
  width: fit-content;
  overflow: hidden;
}
.hero__kpi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0 28px;
}
.hero__kpi strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hero__kpi span {
  font-size: 0.7rem;
  color: var(--muted);
  white-space: nowrap;
}
.hero__kpi-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

/* HERO MOCKUP CARD */
.hero__card-wrap {
  position: relative;
}
.hero__mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  overflow: hidden;
}
.mockup__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.mockup__dots {
  display: flex;
  gap: 6px;
}
.mockup__dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border2);
}
.mockup__dots span:nth-child(1) { background: #ff6058; }
.mockup__dots span:nth-child(2) { background: #ffbd2e; }
.mockup__dots span:nth-child(3) { background: #28c840; }
.mockup__title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}
.mockup__body {
  padding: 20px;
}
.mockup__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 12px;
  border-radius: var(--r-sm);
  font-size: 0.88rem;
}
.mockup__row--highlight {
  background: var(--bg-alt);
  margin-bottom: 4px;
}
.mockup__row-label { color: var(--muted); }
.mockup__row-val { font-weight: 700; color: var(--ink); }
.mockup__row-val--green { color: var(--green); }
.mockup__row-val--blue  { color: var(--blue); }
.mockup__divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}
.mockup__cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mockup__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
}
.mockup__status svg { fill: var(--green); }
.mockup__btn {
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}
.mockup__btn:hover { background: #333; }

/* Floating badges */
.hero__float {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 9px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink2);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  animation: float 4s ease-in-out infinite;
}
.hero__float--1 { top: -16px; right: 20px; animation-delay: 0s; }
.hero__float--2 { bottom: 40px; right: -20px; animation-delay: 1.2s; }
.hero__float--3 { bottom: -16px; left: 20px; animation-delay: 0.6s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* =====================================================
   TRUST BAR
   ===================================================== */
.trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 40px;
}
.trust-bar__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-bar__label {
  font-size: 0.88rem;
  color: var(--muted);
}
.trust-bar__label strong { color: var(--ink); }
.trust-bar__stars {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--gold-light);
}
.trust-bar__stars span { color: var(--muted); font-size: 0.82rem; }

/* =====================================================
   FEATURES
   ===================================================== */
.features {
  padding: 110px 0;
}
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.feature:last-child { margin-bottom: 0; }
.feature--rtl { direction: rtl; }
.feature--rtl > * { direction: ltr; }

.feature__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 14px;
}
.feature__h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--ink);
}
.feature__h2 em {
  font-style: normal;
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--gold);
}
.feature__text p {
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 20px;
}
.feature__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink2);
}
.feature__list li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23B8860B' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

/* FEATURE CARDS */
.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
}
.feat-card--alt {
  background: var(--bg-alt);
}
.feat-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.feat-card__note {
  font-size: 0.75rem;
  color: var(--muted2);
  margin-top: 16px;
  text-align: center;
}

/* Bar chart */
.feat-bar-wrap { display: flex; flex-direction: column; gap: 12px; }
.feat-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
}
.feat-bar-row > span:first-child {
  width: 110px;
  flex-shrink: 0;
  color: var(--muted);
  font-size: 0.78rem;
}
.feat-bar-row > span:last-child {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.82rem;
  white-space: nowrap;
}
.feat-bar {
  flex: 1;
  height: 8px;
  background: var(--bg-alt);
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.feat-bar--empty { border: 1px dashed var(--border2); }
.feat-bar__fill {
  height: 100%;
  border-radius: 50px;
  transition: width 1s ease;
}
.feat-bar__fill--full    { width: 100%; background: linear-gradient(90deg, var(--blue), var(--blue-light)); }
.feat-bar__fill--partial { width: 62%; background: linear-gradient(90deg, var(--blue), #88aaff); }
.feat-bar__fill--zero    { width: 0%; }

/* Mini timeline */
.timeline-mini { display: flex; flex-direction: column; gap: 0; }
.tl-mini-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 20px;
  position: relative;
}
.tl-mini-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 9px; top: 20px;
  width: 2px; bottom: 0;
  background: var(--border);
}
.tl-mini-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 2px solid var(--border2);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.tl-mini-dot--gold {
  background: var(--gold-bg);
  border-color: var(--gold);
}
.tl-mini-item--done .tl-mini-dot {
  background: var(--ink);
  border-color: var(--ink);
}
.tl-mini-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.tl-mini-item span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Tax compare */
.tax-compare { display: flex; flex-direction: column; gap: 16px; }
.tax-item {}
.tax-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 6px;
}
.tax-bar-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tax-bar {
  height: 10px;
  border-radius: 50px;
  min-width: 6px;
}
.tax-bar--red    { background: #fca5a5; }
.tax-bar--orange { background: #fed7aa; }
.tax-bar--green  { background: #bbf7d0; }
.tax-bar-wrap span {
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
}

/* =====================================================
   PROZESS
   ===================================================== */
.prozess {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.prozess__head {
  text-align: center;
  margin-bottom: 60px;
}
.prozess__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--ink);
}
.prozess__sub {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.prozess__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.step-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  transition: all 0.25s;
}
.step-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
.step-card--gold {
  background: linear-gradient(145deg, rgba(184,134,11,0.06) 0%, var(--bg) 100%);
  border-color: var(--gold-border);
}
.step-card--gold:hover { border-color: var(--gold); }
.step-card__num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted2);
  margin-bottom: 14px;
}
.step-card--gold .step-card__num { color: var(--gold); }
.step-card__icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink2);
  margin-bottom: 16px;
}
.step-card--gold .step-card__icon {
  background: var(--gold-bg);
  border-color: var(--gold-border);
  color: var(--gold);
}
.step-card h3 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.35;
}
.step-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials {
  padding: 110px 0;
}
.testimonials__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 50px;
  color: var(--ink);
}
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.testi-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: border-color 0.2s;
}
.testi-card:hover { border-color: var(--border2); }
.testi-card--featured {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.testi-card--dark {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.testi-card--dark blockquote { color: rgba(255,255,255,0.75); }
.testi-card--dark .testi-author strong { color: #fff; }
.testi-card--dark .testi-author span { color: rgba(255,255,255,0.5); }
.testi-stars {
  color: var(--gold-light);
  font-size: 0.95rem;
  margin-bottom: 18px;
  letter-spacing: 2px;
}
.testi-card--featured .testi-stars { color: var(--gold-light); }
blockquote {
  font-size: 0.94rem;
  line-height: 1.78;
  color: var(--muted);
  margin-bottom: 24px;
  font-style: normal;
}
.testi-card--featured blockquote { color: rgba(255,255,255,0.75); }
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-author strong { display: block; font-size: 0.9rem; color: var(--ink); }
.testi-author span   { font-size: 0.78rem; color: var(--muted); }
.testi-card--featured .testi-author strong { color: #fff; }
.testi-card--featured .testi-author span { color: rgba(255,255,255,0.5); }
.testi-author--sm { margin-top: 18px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, #2244cc 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.testi-avatar--sm { width: 34px; height: 34px; font-size: 0.7rem; }

/* =====================================================
   FAQ
   ===================================================== */
.faq-section {
  padding: 110px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.faq-section__head {
  margin-bottom: 48px;
}
.faq-section__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 780px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg);
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--border2); background: var(--bg-card); }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.faq-chevron {
  flex-shrink: 0;
  color: var(--muted2);
  transition: transform 0.3s;
  display: flex;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--ink); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 22px;
}
.faq-answer.open {
  max-height: 260px;
  padding: 0 22px 20px;
}
.faq-answer p {
  font-size: 0.89rem;
  color: var(--muted);
  line-height: 1.72;
}

/* =====================================================
   FINAL CTA
   ===================================================== */
.cta-final {
  padding: 120px 0;
}
.cta-final__inner {
  text-align: center;
}
.cta-final__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  background: var(--gold-bg);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.cta-final__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--ink);
}
.cta-final__sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.75;
}
.cta-final__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}
.cta-final__chips span {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink2);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 0;
}
.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}
.footer__logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.footer__brand p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 320px;
  margin-bottom: 18px;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
}
.footer__nav, .footer__legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav strong, .footer__legal strong {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer__nav a, .footer__legal a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer__nav a:hover, .footer__legal a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 40px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  max-width: 1120px;
  margin: 0 auto;
}

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* =====================================================
   HERO VIDEO PLACEHOLDER
   ===================================================== */
.hero__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: url('https://img.youtube.com/vi/cYN6APVzhm0/maxresdefault.jpg') center / cover no-repeat, linear-gradient(135deg, #111827 0%, #1a2744 60%, #0f2255 100%);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(196,155,84,0.25);
  cursor: pointer;
}
.hero__video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 30, 0.45);
}
.hero__video-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.hero__video-play {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 12px rgba(196,155,84,0.15), 0 8px 24px rgba(196,155,84,0.4);
  animation: pulse-gold 2.4s ease-in-out infinite;
  padding-left: 4px;
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 12px rgba(196,155,84,0.15), 0 8px 24px rgba(196,155,84,0.4); }
  50%       { box-shadow: 0 0 0 20px rgba(196,155,84,0.06), 0 8px 32px rgba(196,155,84,0.5); }
}
.hero__video-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
  margin: 0;
}

/* Desktop: limit width to match text column */
@media (min-width: 1025px) {
  .hero__video {
    max-width: 100%;
  }
}

/* Mobile: full width, shown prominently */
@media (max-width: 1024px) {
  .hero__video {
    max-width: 100%;
    margin-bottom: 28px;
  }
}
@media (max-width: 700px) {
  .hero__video {
    border-radius: var(--r-lg);
    margin-bottom: 24px;
  }
  .hero__video-play {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 110px 40px 60px; text-align: center; }
  .hero__card-wrap { display: none; }
  .hero__lead { margin: 0 auto 32px; }
  .hero__cta-row { justify-content: center; }
  .hero__kpi-row { margin: 0 auto; }
  .feature { grid-template-columns: 1fr; gap: 40px; }
  .feature--rtl { direction: ltr; }
  .prozess__steps { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .nav__links { display: none; }
  .hero { padding: 100px 24px 50px; }
  .container { padding: 0 24px; }
  .features { padding: 70px 0; }
  .feature { margin-bottom: 60px; }
  .prozess__steps { grid-template-columns: 1fr; }
  .hero__kpi-row { flex-direction: column; width: 100%; padding: 16px 24px; }
  .hero__kpi-sep { width: 60px; height: 1px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: 1; }
  .cta-final__chips { flex-direction: column; align-items: center; }
}

/* =====================================================
   NAV – CTA GOLD VARIANT
   ===================================================== */
.nav__btn--cta {
  background: var(--gold);
  color: #fff !important;
  border-color: var(--gold);
}
.nav__btn--cta:hover {
  background: #9a6e09;
  border-color: #9a6e09;
}

/* =====================================================
   GOLD CTA BUTTON (rausstechend)
   ===================================================== */
.btn--cta {
  background: linear-gradient(135deg, #b8880e 0%, var(--gold-light) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(184,134,11,0.35);
}
.btn--cta:hover {
  background: linear-gradient(135deg, #9a6e09 0%, #c4920f 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184,134,11,0.5);
  color: #fff;
}
.btn--pulse {
  animation: ctaPulse 2.5s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(184,134,11,0.35); }
  50% { box-shadow: 0 6px 36px rgba(184,134,11,0.65), 0 0 0 8px rgba(184,134,11,0.1); }
}

/* =====================================================
   ② IDENTIFICATION – CHECKBOX STYLE
   ===================================================== */
.identification {
  padding: 56px 0 52px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ident__inner { max-width: 600px; margin: 0 auto; }
.ident__h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 32px;
  color: var(--ink);
}
.ident__checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.ident__check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--ink2);
  line-height: 1.45;
}
.ident__check-icon {
  width: 22px; height: 22px;
  background: var(--gold-bg);
  border: 1.5px solid var(--gold-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
}
.ident__note {
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  border-left: 3px solid var(--gold-border);
  padding-left: 16px;
  line-height: 1.65;
  margin-top: 20px;
  margin-bottom: 0;
}
/* Confirmation block */
.ident__confirm {
  background: var(--gold-bg);
  border: 1.5px solid var(--gold-border);
  border-radius: var(--r-xl);
  padding: 24px 28px;
}
.ident__confirm-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.ident__confirm-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.ident__confirm-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink2);
}
.ident__confirm-icon {
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
}
.ident__confirm-verdict {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  border-top: 1px solid var(--gold-border);
  padding-top: 14px;
}

/* =====================================================
   ③ PROBLEM – VS COMPARISON
   ===================================================== */
.problem-section {
  padding: 56px 0 52px;
}
.problem__h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--ink);
  text-align: center;
}
.problem__lead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.75;
  text-align: center;
}
.problem__vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}
.problem__vs-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 32px;
}
.problem__vs-block--de {
  border-color: var(--gold-border);
  background: linear-gradient(145deg, rgba(184,134,11,0.04) 0%, var(--bg-card) 100%);
}
.problem__vs-flag { font-size: 1rem; font-weight: 700; color: var(--ink2); margin-bottom: 14px; }
.problem__vs-price {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.04em;
  margin-bottom: 4px;
  line-height: 1;
}
.problem__vs-block--de .problem__vs-price { color: var(--gold); }
.problem__vs-label { font-size: 0.8rem; color: var(--muted); margin-bottom: 14px; }
.problem__vs-ek {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink2);
  padding: 8px 12px;
  background: var(--bg-alt);
  border-radius: var(--r-sm);
  margin-bottom: 14px;
  border: 1px solid var(--border);
}
.problem__vs-block--de .problem__vs-ek {
  background: var(--gold-bg);
  border-color: var(--gold-border);
  color: var(--gold);
}
.problem__vs-verdict { font-size: 0.85rem; font-weight: 700; }
.problem__vs-verdict--bad { color: var(--red); }
.problem__vs-verdict--good { color: var(--green); }
.problem__vs-divider {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted2);
  letter-spacing: 0.1em;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* =====================================================
   ④ AGITATION
   ===================================================== */
.agitation {
  background: var(--ink);
  padding: 56px 0 52px;
}
.agitation__inner { max-width: 780px; margin: 0 auto; }
.agitation__tag { color: rgba(255,255,255,0.3); }
.agitation__h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 32px;
}
.agitation__h2 em {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--gold-light);
}
.agitation__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.78;
  margin-bottom: 20px;
  max-width: 680px;
}
.agitation__text--highlight {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 1.05rem;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin-top: 8px;
}
.agitation__stat-row {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 24px 0;
  margin-top: 48px;
  width: fit-content;
}
.agitation__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 36px;
}
.agitation__stat strong {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
}
.agitation__stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  max-width: 180px;
  line-height: 1.4;
}
.agitation__stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* =====================================================
   ⑤ SOLUTION
   ===================================================== */
.solution {
  padding: 56px 0 52px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.solution::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(184,134,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.solution__icon-row {
  margin-bottom: 16px;
}
.solution__icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-md);
  font-size: 1.3rem;
}
.solution__inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 1; }
.solution__h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 20px;
}
.solution__h2 em {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--gold);
}
.solution__text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 40px;
}
.solution__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.solution__pillar {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 22px;
}
.solution__pillar-num {
  width: 32px; height: 32px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}
.solution__pillar h3 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.solution__pillar p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.65;
}

/* =====================================================
   ⑥ HERO'S JOURNEY
   ===================================================== */
.heros-journey {
  padding: 56px 0 52px;
}
/* 2-column layout: photo | text */
.hj__layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
}
.hj__photo-col {
  flex-shrink: 0;
}
.hj__photo-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.hj__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hj__inner {
  position: relative;
}
.hj__quote-mark { display: none; }
.hj__h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.hj__story { position: relative; z-index: 1; }
.hj__story p {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.82;
  margin-bottom: 20px;
}
.hj__sig {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hj__avatar {
  width: 44px; height: 44px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.hj__sig strong { display: block; font-size: 0.9rem; color: var(--ink); margin-bottom: 2px; }
.hj__sig span { font-size: 0.78rem; color: var(--muted); }

/* =====================================================
   ⑦ PROOF STATS
   ===================================================== */
.proof__stats {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 0;
  margin-bottom: 48px;
  width: fit-content;
}
.proof__stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 32px;
}
.proof__stat strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.proof__stat span {
  font-size: 0.72rem;
  color: var(--muted);
  max-width: 140px;
  line-height: 1.4;
}
.proof__stat-sep {
  width: 1px; height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* =====================================================
   ⑧ FUTURE PROJECTION
   ===================================================== */
.future {
  padding: 100px 0;
  background: linear-gradient(160deg, rgba(184,134,11,0.05) 0%, var(--bg) 60%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.future__inner { max-width: 960px; margin: 0 auto; }
.future__tag { color: var(--gold); }
.future__h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 16px;
}
.future__h2 em {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--gold);
}
.future__lead {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 540px;
}
.future__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.future__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  transition: border-color 0.2s, transform 0.2s;
}
.future__card:hover {
  border-color: var(--gold-border);
  transform: translateY(-2px);
}
.future__card-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: block;
}
.future__card h3 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.future__card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}
.future__cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.future__cta-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

/* =====================================================
   OFFER HEAD (⑨)
   ===================================================== */
.offer__head {
  text-align: center;
  margin-bottom: 70px;
}
.offer__h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 12px;
}
.offer__sub {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.65;
}

/* =====================================================
   ⑩ CTA MID
   ===================================================== */
.cta-mid {
  padding: 100px 0;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cta-mid__inner { text-align: center; }
.cta-mid__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  border: 1px solid rgba(184,134,11,0.35);
  background: rgba(184,134,11,0.1);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.cta-mid__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #fff;
}
.cta-mid__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

/* =====================================================
   ⑪ URGENCY
   ===================================================== */
.urgency {
  padding: 44px 0;
  background: #fffbeb;
  border-top: 1px solid rgba(234,88,12,0.18);
  border-bottom: 1px solid rgba(234,88,12,0.18);
}
.urgency__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}
.urgency__icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.urgency__text { flex: 1; min-width: 280px; }
.urgency__text h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.urgency__text p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.65;
}

/* =====================================================
   ⑫ RISK REVERSAL
   ===================================================== */
.risk-reversal {
  padding: 64px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.rr__inner { max-width: 900px; margin: 0 auto; }
.rr__h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 44px;
}
.rr__h2 em {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--gold);
}
.rr__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.rr__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.rr__check {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--green) 0%, #22c55e 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.rr__item h3 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.rr__item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* =====================================================
   ⑬ BONUS
   ===================================================== */
.bonus {
  padding: 64px 0;
  background: linear-gradient(160deg, rgba(184,134,11,0.06) 0%, var(--bg) 70%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--border);
}
.bonus__inner { max-width: 820px; margin: 0 auto; }
.bonus__badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 24px;
}
.bonus__h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 18px;
}
.bonus__h2 em {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--gold);
}
.bonus__text {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 32px;
  max-width: 700px;
}
.bonus__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bonus__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-md);
}
.bonus__item > span {
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.bonus__item p {
  font-size: 0.88rem;
  color: var(--ink2);
  line-height: 1.6;
}
.bonus__item strong {
  font-weight: 700;
  color: var(--ink);
}

/* =====================================================
   ⑨ SERVICES DARK GRID (ANGEBOT)
   ===================================================== */
.services {
  background: var(--ink);
  padding: 96px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.services__head {
  text-align: center;
  margin-bottom: 64px;
}
.services__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(184,134,11,0.35);
  background: rgba(184,134,11,0.1);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 20px;
}
.services__title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 14px;
}
.services__title em {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--gold-light);
}
.services__sub {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.72;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}
/* first 4 cards: 3 columns each → 4×3 = 12 */
.svc-card:nth-child(-n+4) { grid-column: span 3; }
/* last 3 cards: 4 columns each → 3×4 = 12 */
.svc-card:nth-child(n+5)  { grid-column: span 4; }

.svc-card {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-xl);
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.22s, background 0.22s, transform 0.22s;
}
.svc-card:hover {
  border-color: var(--gold-light);
  background: rgba(212,160,23,0.14);
  transform: translateY(-4px);
}
.svc-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.svc-card__num {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gold-light);
}
.svc-card__icon {
  font-size: 1.5rem;
  line-height: 1;
  color: rgba(255,255,255,0.5);
}
.svc-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 2px;
}
.svc-card__desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
  flex: 1;
}

/* =====================================================
   RESPONSIVE – NEW SECTIONS
   ===================================================== */
@media (max-width: 1024px) {
  .hj__layout { grid-template-columns: 260px 1fr; gap: 40px; }
  .future__cards { grid-template-columns: repeat(2, 1fr); }
  .solution__pillars { grid-template-columns: repeat(2, 1fr); }
  .agitation__stat-row { width: 100%; }
  .proof__stats { width: 100%; flex-wrap: wrap; }
  .proof__stat { padding: 12px 24px; }
  .problem__vs { grid-template-columns: 1fr; gap: 12px; max-width: 500px; }
  .problem__vs-divider { display: none; }
  /* services: 2 columns on tablet */
  .svc-card:nth-child(-n+4),
  .svc-card:nth-child(n+5) { grid-column: span 6; }
}
@media (max-width: 700px) {
  /* Über mich: stack on mobile */
  .uebermich-grid { grid-template-columns: 1fr !important; }
  .uebermich-cards { grid-template-columns: 1fr !important; }
  .uebermich-text { padding-right: 0 !important; }
  /* Meine Geschichte: stack on mobile */
  .hj__layout { grid-template-columns: 1fr; gap: 32px; }
  .hj__photo-wrap { aspect-ratio: 4 / 3; max-width: 360px; margin: 0 auto; }
  .future__cards { grid-template-columns: 1fr; }
  .solution__pillars { grid-template-columns: 1fr; }
  .rr__grid { grid-template-columns: 1fr; }
  .agitation__stat-row { flex-direction: column; align-items: flex-start; padding: 20px 24px; gap: 20px; width: 100%; }
  .agitation__stat-sep { width: 40px; height: 1px; }
  .proof__stats { flex-direction: column; padding: 20px 24px; gap: 4px; width: 100%; }
  .proof__stat-sep { width: 40px; height: 1px; }
  .future__cta { flex-direction: column; align-items: flex-start; }
  .urgency__inner { padding: 0 24px; }
  .urgency__inner .btn { width: 100%; justify-content: center; }
  .hj__quote-mark { display: none; }
  .cta-mid__sub { padding: 0 8px; }
  .problem__vs { grid-template-columns: 1fr; max-width: 100%; }
  .problem__vs-block { padding: 22px 22px; }
  .problem__vs-price { font-size: 1.5rem; }
  .ident__inner { max-width: 100%; }
  /* services: 1 column on mobile */
  .svc-card:nth-child(-n+4),
  .svc-card:nth-child(n+5) { grid-column: span 12; }
  .services__grid { padding: 0 20px; }
}
