/* ==============================================
   VORRAT — Landing Page (landing.css)
   v2.5.4 — Infographic-first redesign
   @copyright (C) jens-richter.com
   @license Proprietary
   ============================================== */

body.landing { background: var(--v-white); overflow-x: hidden; }

/* --- Section utilities --- */
.l-section { padding: 100px 0; position: relative; }
.l-section-alt { background: var(--v-gray-50); }
.l-section-green { background: var(--v-green-800); color: var(--v-green-100); }
.l-section-green h2, .l-section-green h3 { color: var(--v-white); }
.l-section-info { background: var(--v-bg-info); }

.l-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--v-font-display); font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--v-green-500); margin-bottom: 14px;
}
.l-label::before {
  content: ''; width: 32px; height: 3px;
  background: var(--v-orange-500); border-radius: 2px;
}
.l-section-green .l-label { color: var(--v-green-300); }
.l-section-green .l-label::before { background: var(--v-orange-400); }

.l-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.l-head p { margin-top: 14px; font-size: 1.05rem; color: var(--v-gray-600); }
.l-section-green .l-head p { color: var(--v-green-200); }

h1, h2, h3, h4 {
  font-family: var(--v-font-display);
  font-weight: 700; line-height: 1.12;
  color: var(--v-green-800);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); letter-spacing: -.025em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -.015em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

/* ==============================================
   NAVIGATION
   ============================================== */
.l-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.l-nav.scrolled { border-bottom-color: var(--v-gray-200); box-shadow: var(--v-shadow-xs); }
.l-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--v-max-w); margin: 0 auto; padding: 0 var(--v-pad);
  height: 64px;
}
.l-nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--v-font-display); font-weight: 700;
  font-size: 1.25rem; color: var(--v-green-700);
}
.l-nav-logo svg { width: 30px; height: 30px; }
.l-nav-links { display: flex; align-items: center; gap: 28px; }
.l-nav-links a {
  font-size: .9rem; font-weight: 500; color: var(--v-gray-600);
  transition: color .2s; position: relative;
}
.l-nav-links a:hover { color: var(--v-green-600); }
.l-nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--v-orange-500);
  transition: width .25s;
}
.l-nav-links a:hover::after { width: 100%; }

/* Mobile nav */
.l-nav-toggle {
  display: none; width: 44px; height: 44px;
  align-items: center; justify-content: center;
}
.l-nav-hamburger { width: 22px; height: 2px; background: var(--v-green-700); border-radius: 2px; position: relative; transition: .3s; }
.l-nav-hamburger::before, .l-nav-hamburger::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 2px;
  background: var(--v-green-700); border-radius: 2px; transition: .3s;
}
.l-nav-hamburger::before { top: -7px; }
.l-nav-hamburger::after { top: 7px; }

.l-nav-toggle.open .l-nav-hamburger { background: transparent; }
.l-nav-toggle.open .l-nav-hamburger::before { top: 0; transform: rotate(45deg); }
.l-nav-toggle.open .l-nav-hamburger::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 768px) {
  .l-nav-links {
    position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
    flex-direction: column; align-items: center; justify-content: center; gap: 36px;
    opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s;
    z-index: 99;
  }
  .l-nav-links.open { opacity: 1; visibility: visible; }
  .l-nav-links a { font-size: 1.2rem; }
  .l-nav-toggle { display: flex; }
}

/* ==============================================
   HERO — KAMPAGNE
   ============================================== */
.l-hero {
  padding: 140px 0 100px;
  background: var(--v-green-800);
  position: relative; overflow: hidden;
  color: var(--v-green-100);
}
.l-hero::before {
  content: ''; position: absolute; top: -180px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  border: 60px solid rgba(255,255,255,.03); pointer-events: none;
}
.l-hero::after {
  content: ''; position: absolute; bottom: -120px; left: -60px;
  width: 350px; height: 350px; border-radius: 50%;
  background: rgba(242,140,40,.06); pointer-events: none;
}

.l-hero-campaign {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 2;
}
.l-hero-content { }
.l-hero h1 {
  margin-bottom: 24px; color: var(--v-white);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
}
.l-hero h1 em {
  font-style: normal; color: var(--v-orange-400);
  display: block;
}
.l-hero-sub {
  font-size: 1.1rem; color: var(--v-green-200);
  margin-bottom: 20px; max-width: 480px; line-height: 1.75;
}
.l-hero-price {
  font-family: var(--v-font-display); font-weight: 700;
  font-size: 1.05rem; color: var(--v-orange-400);
  margin-bottom: 36px; letter-spacing: .01em;
}
.l-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.l-hero .v-btn-primary { background: var(--v-orange-500); font-size: 1rem; padding: 15px 32px; }
.l-hero .v-btn-primary:hover { background: var(--v-orange-600); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(242,140,40,.35); }
.l-hero .v-btn-secondary { color: var(--v-white); border-color: rgba(255,255,255,.25); background: transparent; }
.l-hero .v-btn-secondary:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.45); }

/* --- Infographic comparison --- */
.l-hero-compare {
  display: flex; align-items: center; gap: 20px;
  justify-content: center;
}
.l-hero-compare-card {
  text-align: center; padding: 32px 20px;
  border-radius: var(--v-r-xl);
  flex: 1; max-width: 200px;
}
.l-hero-compare-loss {
  background: rgba(220,53,69,.12);
  border: 2px solid rgba(220,53,69,.2);
}
.l-hero-compare-win {
  background: rgba(242,140,40,.12);
  border: 2px solid rgba(242,140,40,.25);
}

.l-hero-compare-circle {
  width: 130px; height: 130px; margin: 0 auto 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  gap: 2px; position: relative;
}
.l-hero-compare-circle.loss {
  background: rgba(220,53,69,.15);
  box-shadow: 0 8px 32px rgba(220,53,69,.25);
  border: 3px solid rgba(220,53,69,.3);
}
.l-hero-compare-circle.win {
  background: linear-gradient(135deg, var(--v-orange-500) 0%, var(--v-orange-600) 100%);
  box-shadow: 0 12px 40px rgba(242,140,40,.4);
}
.l-hero-compare-circle.win::before {
  content: ''; position: absolute; inset: -8px;
  border-radius: 50%; border: 3px solid rgba(242,140,40,.3);
}

.l-hero-compare-val {
  font-family: var(--v-font-display); font-weight: 800;
  line-height: 1;
}
.l-hero-compare-circle.loss .l-hero-compare-val {
  font-size: 2.8rem; color: var(--v-red-500);
}
.l-hero-compare-circle.win .l-hero-compare-val {
  font-size: 3.8rem; color: var(--v-white);
}

.l-hero-compare-unit {
  font-family: var(--v-font-display); font-weight: 700;
  align-self: flex-start; margin-top: 12px;
}
.l-hero-compare-circle.loss .l-hero-compare-unit {
  font-size: 1.2rem; color: rgba(220,53,69,.7);
}
.l-hero-compare-circle.win .l-hero-compare-unit {
  font-size: 1.5rem; color: rgba(255,255,255,.75);
}

.l-hero-compare-label {
  font-family: var(--v-font-display); font-weight: 700;
  font-size: 1rem; margin-bottom: 4px;
}
.l-hero-compare-loss .l-hero-compare-label { color: rgba(220,53,69,.9); }
.l-hero-compare-win .l-hero-compare-label { color: var(--v-orange-400); }

.l-hero-compare-detail {
  font-size: .82rem; line-height: 1.4;
}
.l-hero-compare-loss .l-hero-compare-detail { color: rgba(220,53,69,.55); }
.l-hero-compare-win .l-hero-compare-detail { color: var(--v-green-300); }

.l-hero-compare-vs {
  width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.35);
}
.l-hero-compare-vs svg { width: 36px; height: 36px; }

@media (max-width: 900px) {
  .l-hero-campaign { grid-template-columns: 1fr; text-align: center; }
  .l-hero-sub { margin-left: auto; margin-right: auto; }
  .l-hero-actions { justify-content: center; }
  .l-hero-compare { margin-top: 40px; }
}
@media (max-width: 500px) {
  .l-hero-compare { flex-direction: column; gap: 12px; }
  .l-hero-compare-vs { transform: rotate(90deg); }
  .l-hero-compare-card { max-width: 240px; width: 100%; }
}

/* ==============================================
   PROBLEM SECTION — Infographic
   ============================================== */
.l-problem { padding: 100px 0; background: var(--v-white); }
.l-problem-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.l-infographic { display: flex; flex-direction: column; gap: 18px; }
.l-info-row {
  display: grid; grid-template-columns: 140px 1fr 56px;
  gap: 14px; align-items: center;
}
.l-info-label {
  font-family: var(--v-font-display); font-weight: 600;
  font-size: .92rem; color: var(--v-green-800); text-align: right;
  display: flex; align-items: center; justify-content: flex-end; gap: 8px;
}
.l-info-label svg { width: 24px; height: 24px; color: var(--v-green-600); flex-shrink: 0; }
.l-info-bar-wrap {
  height: 40px; background: var(--v-green-50);
  border-radius: 0 8px 8px 0; overflow: hidden;
  border: 1px solid var(--v-green-100);
}
.l-info-bar {
  height: 100%; background: linear-gradient(90deg, var(--v-green-600), var(--v-green-500));
  border-radius: 0 8px 8px 0; width: 0;
  transition: width 1.4s cubic-bezier(.22,1,.36,1);
}
.l-info-percent {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--v-orange-500); color: var(--v-white);
  font-family: var(--v-font-display); font-weight: 700; font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(242,140,40,.3);
}

.l-problem-text h2 { margin-bottom: 20px; }
.l-problem-text h3 { margin-bottom: 6px; }
.l-problem-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px;
}
.l-problem-stat {
  background: var(--v-green-800); border-radius: var(--v-r-md);
  padding: 24px; position: relative; overflow: hidden;
}
.l-problem-stat::after {
  content: ''; position: absolute; top: -20px; right: -20px;
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.l-problem-stat-n {
  font-family: var(--v-font-display); font-weight: 800;
  font-size: 2rem; color: var(--v-orange-400); line-height: 1.1;
}
.l-problem-stat-l { font-size: .85rem; color: var(--v-green-200); margin-top: 6px; line-height: 1.4; }
.l-problem-source {
  margin-top: 24px; font-size: .75rem; color: var(--v-gray-500);
  border-top: 1px solid var(--v-gray-200); padding-top: 14px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .l-problem-grid { grid-template-columns: 1fr; }
  .l-info-row { grid-template-columns: 110px 1fr 48px; gap: 10px; }
  .l-info-label { font-size: .82rem; }
  .l-info-percent { width: 46px; height: 46px; font-size: .85rem; }
}
@media (max-width: 500px) {
  .l-info-row { grid-template-columns: 1fr; gap: 6px; }
  .l-info-label { justify-content: flex-start; }
  .l-info-bar-wrap { height: 32px; }
  .l-problem-stats { grid-template-columns: 1fr; }
}

/* ==============================================
   SOLUTION — Before/After story
   ============================================== */
.l-solution { padding: 100px 0; background: var(--v-green-25); }
.l-solution-grid {
  display: grid; grid-template-columns: 1fr 80px 1fr;
  gap: 24px; align-items: stretch; margin-top: 48px;
}
.l-solution-box {
  border-radius: var(--v-r-lg); padding: 36px 28px;
  position: relative; overflow: hidden;
}
.l-solution-before {
  background: var(--v-white); border: 2px dashed var(--v-gray-300);
}
.l-solution-after {
  background: var(--v-white); border: 2px solid var(--v-green-300);
  box-shadow: 0 4px 24px rgba(26,92,57,.08);
}
.l-solution-box h3 { margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.l-solution-box h3 svg { width: 24px; height: 24px; }
.l-solution-before h3 { color: var(--v-gray-600); }
.l-solution-after h3 { color: var(--v-green-600); }

.l-solution-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--v-orange-500);
}
.l-solution-arrow svg { width: 44px; height: 44px; filter: drop-shadow(0 2px 8px rgba(242,140,40,.3)); }

/* Before items */
.l-chaos-items { display: flex; flex-direction: column; gap: 10px; }
.l-chaos-item {
  padding: 10px 14px; background: var(--v-gray-50);
  border-radius: var(--v-r-sm); font-size: .88rem;
  color: var(--v-gray-600); display: flex; align-items: center; gap: 8px;
  border-left: 3px solid var(--v-gray-300);
}
.l-chaos-item svg { width: 16px; height: 16px; color: var(--v-gray-400); flex-shrink: 0; }

/* After items */
.l-order-items { display: flex; flex-direction: column; gap: 10px; }
.l-order-item {
  padding: 10px 14px; background: var(--v-green-25);
  border-radius: var(--v-r-sm); font-size: .88rem;
  color: var(--v-green-700); display: flex; align-items: center; gap: 10px;
  border-left: 3px solid var(--v-green-400);
}
.l-order-item svg { width: 16px; height: 16px; color: var(--v-green-400); flex-shrink: 0; }
.l-order-item-badge {
  margin-left: auto; font-size: .72rem; font-weight: 600;
  padding: 3px 10px; border-radius: var(--v-r-full);
  background: var(--v-green-50); color: var(--v-green-600); white-space: nowrap;
}

@media (max-width: 800px) {
  .l-solution-grid { grid-template-columns: 1fr; }
  .l-solution-arrow { transform: rotate(90deg); padding: 8px 0; }
}

/* ==============================================
   APP DEMO — Phone Mockup
   ============================================== */
.l-demo { padding: 100px 0; background: var(--v-green-800); color: var(--v-green-100); }
.l-demo-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.l-demo-text h2 { color: var(--v-white); margin-bottom: 14px; }
.l-demo-text p { font-size: 1.05rem; color: var(--v-green-200); line-height: 1.7; margin-bottom: 28px; }
.l-demo-text .l-label { color: var(--v-green-300); }
.l-demo-text .l-label::before { background: var(--v-orange-400); }
.l-demo-features { display: flex; flex-direction: column; gap: 12px; }
.l-demo-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: .92rem; color: var(--v-green-200); font-weight: 500;
}
.l-demo-feat svg { width: 20px; height: 20px; color: var(--v-orange-400); flex-shrink: 0; }

.l-demo-visual { display: flex; justify-content: center; }

/* Live phone with iframe */
.l-phone-live {
  width: 300px; height: 600px;
  background: var(--v-gray-900);
  border-radius: 36px;
  border: 3px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.05);
  overflow: hidden; display: flex; flex-direction: column;
}
.l-phone-live .l-phone-notch {
  width: 110px; height: 26px; margin: 0 auto;
  background: var(--v-gray-900); border-radius: 0 0 14px 14px;
  flex-shrink: 0; position: relative; z-index: 2;
}
.l-phone-iframe-wrap {
  flex: 1; overflow: hidden;
  border-radius: 0 0 33px 33px;
  position: relative;
}
.l-phone-iframe {
  width: 375px; height: 750px;
  border: none; background: var(--v-white);
  transform: scale(0.784);
  transform-origin: top left;
}

/* Phone mockup (shared) */
.l-phone {
  width: 270px; background: var(--v-white);
  border-radius: 32px; border: 3px solid rgba(255,255,255,.15);
  box-shadow: 0 20px 60px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.05);
  overflow: hidden;
}
.l-phone-notch {
  width: 110px; height: 26px; margin: 0 auto;
  background: var(--v-gray-100); border-radius: 0 0 14px 14px;
}
.l-phone-screen { padding: 12px 14px 18px; background: var(--v-green-25); }
.l-phone-topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.l-phone-topbar-title {
  font-family: var(--v-font-display); font-weight: 700;
  font-size: .85rem; color: var(--v-green-800);
}
.l-phone-topbar-icon { width: 20px; height: 20px; color: var(--v-green-500); }
.l-phone-stats { display: flex; gap: 7px; margin-bottom: 12px; }
.l-phone-stat {
  flex: 1; background: var(--v-white); border-radius: var(--v-r-xs);
  padding: 8px 6px; text-align: center; box-shadow: var(--v-shadow-xs);
}
.l-phone-stat-n {
  font-family: var(--v-font-display); font-weight: 700;
  font-size: 1.15rem; color: var(--v-green-700); line-height: 1.2;
}
.l-phone-stat-l { font-size: .55rem; color: var(--v-gray-500); margin-top: 1px; }
.l-phone-list { display: flex; flex-direction: column; gap: 6px; }
.l-phone-item {
  display: flex; align-items: center; gap: 9px;
  background: var(--v-white); border-radius: var(--v-r-xs);
  padding: 9px 10px; box-shadow: var(--v-shadow-xs);
}
.l-phone-item-icon { width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.l-phone-item-icon svg { width: 16px; height: 16px; }
.l-phone-item-icon.green { background: var(--v-green-50); color: var(--v-green-500); }
.l-phone-item-icon.orange { background: var(--v-orange-50); color: var(--v-orange-500); }
.l-phone-item-icon.red { background: var(--v-red-100); color: var(--v-red-500); }
.l-phone-item-body { flex: 1; min-width: 0; }
.l-phone-item-name { font-size: .72rem; font-weight: 600; color: var(--v-gray-900); line-height: 1.2; }
.l-phone-item-meta { font-size: .58rem; color: var(--v-gray-500); }
.l-phone-item-days {
  font-family: var(--v-font-display); font-weight: 700;
  font-size: .7rem; padding: 3px 8px; border-radius: var(--v-r-full);
  white-space: nowrap;
}
.l-phone-item-days.green { background: var(--v-green-50); color: var(--v-green-600); }
.l-phone-item-days.orange { background: var(--v-orange-50); color: var(--v-orange-600); }
.l-phone-item-days.red { background: var(--v-red-100); color: var(--v-red-500); }
.l-phone-nav {
  display: flex; justify-content: space-around;
  margin-top: 14px; padding-top: 10px;
  border-top: 1px solid var(--v-gray-200);
}
.l-phone-nav-item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.l-phone-nav-item svg { width: 18px; height: 18px; color: var(--v-gray-400); }
.l-phone-nav-item.active svg { color: var(--v-green-600); }
.l-phone-nav-item span { font-size: .5rem; color: var(--v-gray-400); }
.l-phone-nav-item.active span { color: var(--v-green-600); font-weight: 600; }

@media (max-width: 900px) {
  .l-demo-grid { grid-template-columns: 1fr; text-align: center; }
  .l-demo-features { align-items: center; }
  .l-demo-visual { margin-top: 32px; }
}

/* ==============================================
   FEATURES — Cards
   ============================================== */
.l-features { padding: 100px 0; background: var(--v-white); }
.l-features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 800px) {
  .l-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .l-features-grid { grid-template-columns: 1fr; }
}
.l-feature-card {
  background: var(--v-white); border-radius: var(--v-r-lg);
  padding: 36px 24px; text-align: center;
  box-shadow: var(--v-shadow-sm);
  transition: transform .3s, box-shadow .3s;
  border: 1.5px solid var(--v-gray-100);
}
.l-feature-card:hover {
  transform: translateY(-6px); box-shadow: var(--v-shadow-lg);
  border-color: var(--v-green-200);
}
.l-feature-icon {
  width: 68px; height: 68px; margin: 0 auto 20px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.l-feature-icon svg { width: 30px; height: 30px; }
.l-feature-icon.green { background: var(--v-green-50); color: var(--v-green-600); border: 2px solid var(--v-green-100); }
.l-feature-icon.orange { background: var(--v-orange-50); color: var(--v-orange-500); border: 2px solid var(--v-orange-100); }
.l-feature-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.l-feature-card p { font-size: .9rem; color: var(--v-gray-600); line-height: 1.6; }

/* ==============================================
   HOW IT WORKS — 3 Steps (dark)
   ============================================== */
.l-steps { padding: 100px 0; background: var(--v-green-800); color: var(--v-green-100); }
.l-steps h2 { color: var(--v-white); }
.l-steps .l-label { color: var(--v-green-300); }
.l-steps .l-label::before { background: var(--v-orange-400); }
.l-steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; margin-top: 56px; position: relative;
}
.l-steps-grid::before {
  content: ''; position: absolute;
  top: 56px; left: 16%; right: 16%;
  height: 3px; background: rgba(255,255,255,.1);
  border-radius: 2px;
}
.l-step { text-align: center; position: relative; z-index: 2; }
.l-step-num {
  width: 76px; height: 76px; margin: 0 auto 22px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--v-font-display); font-weight: 800; font-size: 1.7rem;
  background: var(--v-orange-500); color: var(--v-white);
  box-shadow: 0 6px 24px rgba(242,140,40,.35);
  position: relative;
}
.l-step-num::after {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%; border: 2px solid rgba(242,140,40,.25);
}
.l-step h3 { margin-bottom: 8px; color: var(--v-white); }
.l-step p { font-size: .92rem; color: var(--v-green-200); max-width: 260px; margin: 0 auto; }

@media (max-width: 700px) {
  .l-steps-grid { grid-template-columns: 1fr; gap: 48px; }
  .l-steps-grid::before {
    top: 0; bottom: 0; left: 50%; width: 3px; height: auto; right: auto;
    transform: translateX(-50%);
  }
}

/* ==============================================
   INSTALL / PWA
   ============================================== */
.l-install { padding: 100px 0; background: var(--v-white); }
.l-install-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 48px;
}
.l-install-card {
  background: var(--v-green-25);
  border: 1.5px solid var(--v-green-100);
  border-radius: var(--v-r-lg); padding: 36px 24px;
  text-align: center; transition: border-color .3s, box-shadow .3s;
}
.l-install-card:hover { border-color: var(--v-green-300); box-shadow: var(--v-shadow-md); }
.l-install-card-icon {
  width: 60px; height: 60px; margin: 0 auto 18px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--v-green-600); color: var(--v-white);
}
.l-install-card-icon svg { width: 28px; height: 28px; }
.l-install-card h3 { margin-bottom: 8px; }
.l-install-card p { font-size: .9rem; color: var(--v-gray-600); line-height: 1.6; }

.l-install-note {
  margin-top: 40px; text-align: center;
  font-size: .92rem; color: var(--v-gray-500);
}

@media (max-width: 700px) {
  .l-install-grid { grid-template-columns: 1fr; }
}

/* ==============================================
   TRUST / PRIVACY
   ============================================== */
.l-trust { padding: 100px 0; background: var(--v-green-25); }
.l-trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.l-trust-item {
  display: flex; gap: 16px; padding: 28px;
  background: var(--v-white); border-radius: var(--v-r-md);
  border: 1.5px solid var(--v-green-100);
  transition: border-color .3s, box-shadow .3s;
}
.l-trust-item:hover { border-color: var(--v-green-300); box-shadow: var(--v-shadow-sm); }
.l-trust-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--v-green-600); color: var(--v-white);
}
.l-trust-icon svg { width: 22px; height: 22px; }
.l-trust-item h3 { font-size: 1rem; margin-bottom: 6px; }
.l-trust-item p { font-size: .88rem; color: var(--v-gray-600); line-height: 1.6; }

@media (max-width: 700px) {
  .l-trust-grid { grid-template-columns: 1fr; }
}

/* ==============================================
   CAMPAIGN — Warum 1 Euro?
   ============================================== */
.l-campaign {
  padding: 100px 0;
  background: var(--v-white);
  position: relative;
}
.l-campaign-inner {
  display: grid; grid-template-columns: 320px 1fr;
  gap: 60px; align-items: start;
}
.l-campaign-price {
  position: sticky; top: 100px;
  text-align: center; padding: 48px 24px;
  background: var(--v-green-800);
  border-radius: var(--v-r-xl);
  color: var(--v-white);
}
.l-campaign-coin {
  width: 160px; height: 160px; margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--v-orange-500) 0%, var(--v-orange-600) 100%);
  display: flex; align-items: center; justify-content: center;
  gap: 4px; position: relative;
  box-shadow: 0 12px 40px rgba(242,140,40,.4), inset 0 -4px 12px rgba(0,0,0,.15);
}
.l-campaign-coin::before {
  content: ''; position: absolute; inset: -8px;
  border-radius: 50%; border: 3px solid rgba(242,140,40,.3);
}
.l-campaign-coin::after {
  content: ''; position: absolute; inset: 8px;
  border-radius: 50%; border: 2px solid rgba(255,255,255,.15);
}
.l-campaign-coin-val {
  font-family: var(--v-font-display); font-weight: 800;
  font-size: 4.5rem; color: var(--v-white); line-height: 1;
}
.l-campaign-coin-cur {
  font-family: var(--v-font-display); font-weight: 700;
  font-size: 2rem; color: rgba(255,255,255,.8);
  align-self: flex-start; margin-top: 16px;
}
.l-campaign-tagline {
  font-family: var(--v-font-display); font-weight: 600;
  font-size: 1.15rem; line-height: 1.4;
  color: var(--v-green-200);
}

.l-campaign-story { }
.l-campaign-story h2 { margin-bottom: 16px; }
.l-campaign-sub {
  font-size: 1.05rem; color: var(--v-gray-600);
  line-height: 1.75; margin-bottom: 36px; max-width: 560px;
}
.l-campaign-points {
  display: flex; flex-direction: column; gap: 20px;
}
.l-campaign-point {
  display: flex; gap: 18px; padding: 20px 24px;
  background: var(--v-green-25);
  border-radius: var(--v-r-md);
  border-left: 4px solid var(--v-orange-500);
  transition: background .2s;
}
.l-campaign-point:hover { background: var(--v-green-50); }
.l-campaign-point-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--v-orange-500); color: var(--v-white);
  display: flex; align-items: center; justify-content: center;
}
.l-campaign-point-icon svg { width: 22px; height: 22px; }
.l-campaign-point h3 { margin-bottom: 4px; font-size: 1rem; }
.l-campaign-point p { font-size: .88rem; color: var(--v-gray-600); line-height: 1.6; }

.l-campaign-closing {
  margin-top: 32px; padding: 20px 24px;
  background: var(--v-green-800); color: var(--v-green-200);
  border-radius: var(--v-r-md);
  font-family: var(--v-font-display); font-weight: 600;
  font-size: 1.05rem; line-height: 1.5;
}

@media (max-width: 900px) {
  .l-campaign-inner { grid-template-columns: 1fr; gap: 40px; }
  .l-campaign-price { position: static; max-width: 320px; margin: 0 auto; }
}

/* ==============================================
   CTA BANNER
   ============================================== */
.l-cta {
  padding: 80px 0;
  background: var(--v-green-800);
  text-align: center; color: var(--v-white);
  position: relative; overflow: hidden;
}
.l-cta::before {
  content: ''; position: absolute; top: -60px; right: -40px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(242,140,40,.06); pointer-events: none;
}
.l-cta h2 { color: var(--v-white); margin-bottom: 14px; }
.l-cta p { font-size: 1.05rem; color: var(--v-green-200); margin-bottom: 28px; }
.l-cta .v-btn-primary { background: var(--v-orange-500); }
.l-cta .v-btn-primary:hover { background: var(--v-orange-600); }
.l-cta .v-btn-secondary { color: var(--v-white); border-color: rgba(255,255,255,.3); background: transparent; }
.l-cta .v-btn-secondary:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); }

/* ==============================================
   FOOTER
   ============================================== */
.l-footer {
  padding: 40px 0; background: var(--v-gray-900);
  color: var(--v-gray-400); font-size: .85rem;
}
.l-footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.l-footer-links { display: flex; gap: 24px; }
.l-footer-links a:hover { color: var(--v-white); }
.l-footer-copy { color: var(--v-gray-500); }

/* ==============================================
   ANIMATIONS
   ============================================== */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

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