*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

    :root {
      --green:     #8CC63F;
      --green-d:   #1c2b23;
      --green-bg:  #F3FAEC;
      --green-mid: #E7F3D5;
      --green-str: #CCE5A5;

      --text:   #111111;
      --text-2: #4B5563;
      --text-3: #6B7280;

      --bg:     #FFFFFF;
      --bg-2:   #FAFBF9;
      --bg-3:   #F3F5F2;

      --border: #E5E7EB;
      --border-2: #D1D5DB;

      --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
      --shadow:    0 1px 3px rgba(0,0,0,.06), 0 10px 30px -8px rgba(0,0,0,.09);
      --shadow-lg: 0 4px 6px rgba(0,0,0,.04), 0 20px 48px -12px rgba(0,0,0,.14);

      --r:    12px;
      --r-lg: 18px;
      --r-xl: 24px;
      --maxw: 1160px;
    }

    body {
      font-family: 'Manrope', system-ui, sans-serif;
      color: var(--text);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      padding-top: 78px;
    }

    .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

    /* ── NAV ─────────────────────────────────── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 10px 28px rgba(17,17,17,.045);
    }
    .nav-inner {
      max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
      height: 78px; display: flex; align-items: center; justify-content: space-between;
    }
    .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: 0; }
    .logo-img {
      width: 48px;
      height: 48px;
      object-fit: contain;
      display: block;
      flex-shrink: 0;
      filter: drop-shadow(0 4px 10px rgba(140,198,63,.18));
    }
    .logo-mark {
      width: 32px; height: 32px; border-radius: 9px;
      background: var(--text); display: grid; place-items: center;
    }
    .logo-mark span {
      width: 10px; height: 10px; border-radius: 50%; background: var(--green);
    }
    .logo-name { font-size: 19px; font-weight: 800; color: var(--text); letter-spacing: -.02em; white-space: nowrap; }
    .logo-sub  { font-size: 12px; font-weight: 500; color: var(--text-3); letter-spacing: .04em; text-transform: uppercase; }
    .nav-links { display: flex; align-items: center; gap: 24px; }
    .nav-link { font-size: 14px; font-weight: 600; color: var(--text-2); text-decoration: none; transition: color .15s; }
    .nav-link:hover { color: var(--text); }
    .nav-contact {
      display: flex;
      align-items: center;
      gap: 9px;
    }
    .nav-contact-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      min-height: 50px;
      border-radius: 999px;
      padding: 12px 19px;
      font-size: 15px;
      font-weight: 900;
      text-decoration: none;
      border: 1.5px solid var(--border-2);
      color: var(--text);
      background: rgba(255,255,255,.78);
      transition: transform .15s, border-color .15s, background .15s, color .15s, box-shadow .15s;
      white-space: nowrap;
    }
    .nav-contact-btn:hover { transform: translateY(-1px); border-color: var(--green); color: var(--green-d); box-shadow: var(--shadow-sm); }
    .nav-contact-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
    .nav-phone {
      position: relative;
      isolation: isolate;
      background: var(--green);
      border-color: var(--green);
      color: #fff;
      box-shadow: 0 8px 24px -8px rgba(140,198,63,.55);
    }
    .nav-phone:hover { background: var(--green-d); color: #fff; border-color: var(--green-d); }
    .nav-phone::before,
    .nav-phone::after {
      content: "";
      position: absolute;
      inset: -5px;
      z-index: -1;
      border-radius: inherit;
      border: 1px solid rgba(140,198,63,.48);
      opacity: 0;
      animation: phoneWave 2.2s ease-out infinite;
    }
    .nav-phone::after { animation-delay: .75s; }
    .phone-icon { animation: phoneRing 1.65s ease-in-out infinite; transform-origin: 50% 50%; }
    @keyframes phoneRing {
      0%, 54%, 100% { transform: rotate(0); }
      6% { transform: rotate(13deg); }
      12% { transform: rotate(-11deg); }
      18% { transform: rotate(9deg); }
      24% { transform: rotate(-7deg); }
      30% { transform: rotate(4deg); }
    }
    @keyframes phoneWave {
      0% { transform: scale(.96); opacity: .55; }
      70%, 100% { transform: scale(1.18); opacity: 0; }
    }
    .btn-pill {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 11px 22px; border-radius: 100px; border: none; cursor: pointer;
      font-family: inherit; font-size: 14px; font-weight: 700;
      text-decoration: none; transition: transform .12s, background .15s, box-shadow .15s;
      white-space: nowrap;
    }
    .btn-pill svg { width: 15px; height: 15px; }
    .btn-pill-green {
      background: var(--green); color: #fff;
      box-shadow: 0 8px 24px -8px rgba(140,198,63,.5);
    }
    .btn-pill-green:hover { background: var(--green-d); transform: translateY(-1px); }
    .btn-pill-outline {
      background: transparent; color: var(--text);
      border: 1.5px solid var(--border-2);
    }
    .btn-pill-outline:hover { border-color: var(--green); color: var(--green); }
    .btn-pill-dark {
      background: var(--text); color: #fff;
    }
    .btn-pill-dark:hover { background: #1f2937; transform: translateY(-1px); }

    /* ── HERO ────────────────────────────────── */
    .hero {
      position: relative;
      overflow: hidden;
      padding: 80px 0 32px;
      background: #fff;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url('background.png');
      background-repeat: no-repeat;
      background-position: right center;
      background-size: cover;
      opacity: .30;
      pointer-events: none;
    }
    .hero .wrap { position: relative; z-index: 1; }
    .hero-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
    .hero-mobile-google-wrap { display: none; }

    .hero-urgency {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--green-bg); border: 1px solid var(--green-str); border-radius: 100px;
      padding: 7px 14px; margin-bottom: 24px; font-size: 12.5px; font-weight: 800; color: var(--green-d);
    }
    .hero-urgency i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; box-shadow: 0 0 0 3px rgba(140,198,63,.16); }

    h1 {
      font-size: clamp(52px, 4.8vw, 60px);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -.04em;
      color: var(--text);
      margin-bottom: 22px;
    }
    h1 .script {
      font-family: inherit;
      font-weight: 900;
      font-style: normal;
      color: var(--green);
      letter-spacing: inherit;
      text-decoration: underline;
      text-decoration-color: var(--green);
      text-decoration-thickness: .12em;
      text-underline-offset: .12em;
    }

    .hero-sub {
      font-size: 17px; color: var(--text-2); line-height: 1.7;
      max-width: 560px; margin-bottom: 34px;
    }
    .hero-google-pill {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid #DADCE0;
      color: #202124;
      padding: 5px 12px 5px 8px;
      box-shadow: 0 1px 2px rgba(60,64,67,.12), 0 2px 8px rgba(60,64,67,.08);
      font-size: 12px;
      font-weight: 800;
      line-height: 1;
    }
    .hero-google-pill svg { width: 18px; height: 18px; flex-shrink: 0; }
    .hero-google-pill strong { font-size: 13px; font-weight: 900; color: #202124; }
    .hero-google-stars { color: #FBBC04; letter-spacing: .5px; font-size: 11px; line-height: 1; }
    .hero-google-reviews { color: #5F6368; font-weight: 700; }
    .hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
    .hero-cta-note {
      margin: -14px 0 22px;
      font-size: 12.5px;
      color: var(--text-2);
      font-weight: 800;
      line-height: 1.45;
    }
    .hero-lead-card {
      position: absolute;
      right: 1%;
      bottom: 7%;
      width: min(320px, 56%);
      background: rgba(255,255,255,.96);
      border-radius: 16px;
      box-shadow: 0 12px 40px rgba(0,0,0,.12);
      padding: 16px;
      color: var(--text);
      transform: rotate(-2deg);
      z-index: 5;
      backdrop-filter: blur(10px);
      animation: heroLeadIn .55s ease .12s both;
    }
    .hero-lead-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 4px;
      border-radius: 16px 16px 0 0;
      background: var(--green);
    }
    .hero-lead-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 10px;
      font-size: 12px;
      font-weight: 900;
      color: var(--green-d);
    }
    .hero-lead-head strong { color: var(--text-3); font-size: 11.5px; }
    .hero-lead-name { font-size: 14px; font-weight: 900; color: var(--text); margin-bottom: 7px; letter-spacing: -.02em; }
    .hero-lead-text { font-size: 13px; line-height: 1.45; color: var(--text-2); font-weight: 750; margin-bottom: 12px; }
    .hero-lead-check {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border-radius: 999px;
      background: var(--green-bg);
      color: var(--green-d);
      padding: 7px 10px;
      font-size: 11.5px;
      font-weight: 900;
    }
    @keyframes heroLeadIn {
      from { opacity: 0; transform: translateY(12px) rotate(-2deg); }
      to { opacity: 1; transform: translateY(0) rotate(-2deg); }
    }
    .hero-booking {
      display: inline-flex; align-items: center; gap: 12px;
      background: var(--bg); border: 1px solid var(--border); border-radius: var(--r);
      padding: 10px 14px; box-shadow: var(--shadow-sm); max-width: 280px;
    }
    .hero-booking-av {
      width: 36px; height: 36px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
      background: var(--green-mid); display: grid; place-items: center;
      font-size: 14px; font-weight: 800; color: var(--green-d);
    }
    .hero-booking-text .name { font-size: 13px; font-weight: 800; color: var(--text); }
    .hero-booking-text .sub {
      font-size: 12px; color: var(--green); font-weight: 700;
      display: flex; align-items: center; gap: 5px;
    }
    .hero-booking-text .sub i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
    /* Hero right – request panel */
    .panel {
      background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-xl);
      box-shadow: var(--shadow-lg); overflow: hidden;
    }
    .panel-head {
      padding: 16px 20px; border-bottom: 1px solid var(--border);
      display: flex; align-items: center; justify-content: space-between;
    }
    .panel-title { font-size: 12px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--text-3); }
    .panel-live { display: flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 800; color: var(--green); }
    .panel-live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(.7)} }
    .panel-body { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
    .req-card {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 13px 14px; background: var(--bg-2);
      border: 1px solid var(--border); border-radius: var(--r);
      transition: box-shadow .18s, border-color .18s;
    }
    .req-card:hover { box-shadow: var(--shadow); border-color: var(--green-str); }
    .req-time { font-size: 11.5px; font-weight: 800; color: var(--green); min-width: 38px; padding-top: 1px; }
    .req-info { flex: 1; }
    .req-name { font-size: 13.5px; font-weight: 800; color: var(--text); margin-bottom: 3px; }
    .req-detail { font-size: 12px; color: var(--text-2); line-height: 1.45; }
    .req-badge {
      flex-shrink: 0; font-size: 10px; font-weight: 800;
      color: var(--green-d); background: var(--green-mid);
      border: 1px solid var(--green-str); padding: 3px 9px; border-radius: 100px; white-space: nowrap;
    }
    .panel-stats {
      display: grid; grid-template-columns: repeat(3,1fr);
      border-top: 1px solid var(--border);
    }
    .pstat { padding: 14px 16px; border-right: 1px solid var(--border); }
    .pstat:last-child { border-right: none; }
    .pstat-l { font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--text-3); margin-bottom: 5px; }
    .pstat-v { font-size: 22px; font-weight: 800; color: var(--text); letter-spacing: -.03em; }
    .pstat-v small { font-size: 13px; color: var(--green); font-weight: 700; }
    .panel-google {
      display: flex; align-items: center; gap: 7px; padding: 11px 18px;
      border-top: 1px solid var(--border); text-decoration: none;
      transition: background .15s;
    }
    .panel-google:hover { background: var(--bg-2); }
    .panel-google svg { width: 14px; height: 14px; }
    .panel-google .stars { font-size: 11.5px; color: #F59E0B; letter-spacing: 1px; }
    .panel-google .txt { font-size: 11.5px; font-weight: 600; color: var(--text-2); }

    /* ── TRUST CARDS ─────────────────────────── */
    .trust {
      padding: 34px 0;
      background: #fff;
      margin-top: -24px;
      position: relative;
      z-index: 5;
    }
    .trust-grid {
      display: grid; grid-template-columns: repeat(4,1fr); gap: 14px;
    }
    .trust-item {
      position: relative;
      overflow: hidden;
      display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
      padding: 20px 18px;
      min-height: 148px;
      border-radius: 22px;
      background:
        linear-gradient(145deg, #FFFFFF 0%, #FBFDF8 100%);
      box-shadow: 0 18px 42px rgba(17,17,17,.06), 0 1px 0 rgba(255,255,255,.95) inset;
    }
    .trust-icon {
      width: 46px; height: 46px; border-radius: 15px;
      background: linear-gradient(145deg, #F3FAEC 0%, #FFFFFF 100%);
      box-shadow: 0 10px 22px rgba(140,198,63,.18), inset 0 1px 0 rgba(255,255,255,.95);
      display: grid; place-items: center; flex-shrink: 0;
      position: relative;
      z-index: 1;
    }
    .trust-icon svg { width: 22px; height: 22px; color: var(--green); }
    .trust-icon.google svg { width: 20px; height: 20px; color: initial; }
    .trust-copy { display: flex; flex-direction: column; gap: 5px; position: relative; z-index: 1; }
    .trust-num { font-size: 23px; font-weight: 900; color: var(--text); letter-spacing: -.045em; line-height: 1; }
    .trust-label { font-size: 12.5px; font-weight: 750; color: var(--text-2); line-height: 1.38; }

    /* ── PARTNER LOGOS ───────────────────────── */
    .partners { padding: 52px 0 42px; }
    .partners-label {
      text-align: center;
      font-size: clamp(25px, 3.4vw, 42px);
      font-weight: 900;
      letter-spacing: -.045em;
      line-height: 1.08;
      color: var(--text);
      max-width: 760px;
      margin: 0 auto 10px;
    }
    .partners-summary {
      text-align: center;
      margin: 0 auto 22px;
      max-width: 620px;
      font-size: 14px;
      line-height: 1.6;
      color: var(--text-2);
      font-weight: 700;
    }
    .partners-marquee {
      overflow: hidden;
      border-top: none;
      border-bottom: none;
      background: transparent;
      position: relative;
    }
    .partners-marquee::before,
    .partners-marquee::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 80px;
      z-index: 2;
      pointer-events: none;
    }
    .partners-marquee::before { left: 0; background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0) 100%); }
    .partners-marquee::after { right: 0; background: linear-gradient(270deg, #fff 0%, rgba(255,255,255,0) 100%); }
    .partners-track {
      display: flex;
      width: max-content;
      justify-content: flex-start;
      flex-wrap: nowrap;
      gap: 12px;
      padding: 10px 0;
      animation: partners-scroll 68s linear infinite;
      will-change: transform;
    }
    .partners-marquee:hover .partners-track { animation-play-state: paused; }
    @keyframes partners-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .partner-chip {
      display: inline-flex; align-items: center; gap: 10px;
      background: #ffffff; border: 1px solid rgba(140,198,63,0.14); border-radius: 99px;
      padding: 6px 17px 6px 6px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.03), 0 1px 3px rgba(0,0,0,0.02);
      min-height: 44px;
      white-space: nowrap;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .partner-chip:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.06), 0 2px 5px rgba(0,0,0,0.03);
    }
    .partner-chip-av {
      width: 32px; height: 32px; border-radius: 50%; background: rgba(0,0,0,0.02);
      display: grid; place-items: center; flex-shrink: 0;
      overflow: hidden;
      border: 1px solid rgba(0,0,0,0.04);
    }
    .partner-chip-logo {
      width: 100%; height: 100%; object-fit: contain; display: block; padding: 4px;
      background: #fff;
    }
    .partner-chip-text {
      font-size: 13.5px; font-weight: 600; color: #333333; letter-spacing: -0.01em;
    }
    @media (prefers-reduced-motion: reduce) {
      .partners-marquee { overflow-x: auto; }
      .partners-track { animation: none; }
      .partners-marquee::before,
      .partners-marquee::after { display: none; }
    }

    /* ── SECTIONS (generic) ──────────────────── */
    .section { padding: 96px 0; }
    .section-sm { padding: 72px 0; }
    .bg-2 { background: var(--bg-2); }
    .bg-green { background: var(--green-bg); }
    .bg-dark { background: #0F1409; }

    .eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
      color: var(--green); margin-bottom: 16px;
    }
    .sec-h {
      font-size: clamp(32px, 4vw, 54px); font-weight: 900;
      letter-spacing: -.04em; line-height: 1.05; color: var(--text); margin-bottom: 16px;
    }
    .sec-h .script {
      font-family: inherit;
      font-weight: inherit;
      font-style: normal;
      color: var(--green);
      letter-spacing: inherit;
      text-decoration: underline;
      text-decoration-color: var(--green);
      text-decoration-thickness: .11em;
      text-underline-offset: .12em;
    }
    .sec-sub { font-size: 16.5px; color: var(--text-2); line-height: 1.72; max-width: 520px; }
    .sec-head-center { text-align: center; }
    .sec-head-center .sec-sub { margin: 0 auto; }

    /* ── PROBLEM SECTION ─────────────────────── */
    .problem-section { background: #FFFFFF; }
    .problem-section .sec-sub { max-width: 720px; }
    .prob-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; }
    .prob-card {
      display: flex;
      flex-direction: column;
      border-radius: var(--r-lg); overflow: hidden;
      border: 1px solid #E6E8E4;
      transition: transform .18s, box-shadow .18s;
      background: #fff;
      box-shadow: 0 10px 28px rgba(17,17,17,.035);
    }
    .prob-card:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(17,17,17,.08); }
    .prob-card-ill {
      height: 300px;
      display: block;
      padding: 0;
      border-bottom: none;
    }
    .pc-1 .prob-card-ill,
    .pc-2 .prob-card-ill,
    .pc-3 .prob-card-ill {
      background:
        radial-gradient(circle at 82% 10%, rgba(140,198,63,.16), transparent 34%),
        linear-gradient(180deg, #FFFFFF 0%, #F8FAF6 100%);
    }
    .pc-1,
    .pc-2,
    .pc-3 { border-color: #E6E8E4; }
    .prob-card-body { padding: 18px 20px 22px; background: #fff; border-top: 1px solid #EEF1EC; }
    .prob-card-body h3 { font-size: 21px; font-weight: 900; color: var(--text); margin-bottom: 7px; letter-spacing: -.03em; }
    .prob-card-body p  { font-size: 14px; color: var(--text-2); line-height: 1.5; }

    .problem-svg {
      width: 100%;
      height: 100%;
      display: block;
      overflow: visible;
    }
    .problem-svg text { font-family: 'Manrope', system-ui, sans-serif; }

    .prob-visual { width: 100%; height: 100%; display: flex; flex-direction: column; gap: 12px; }
    .pv-topline {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: #4B5563;
    }
    .pv-alert {
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .04em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .pv-alert.warn { background: #F3EAD9; color: #7C5A2A; }
    .pv-alert.danger { background: rgba(252,232,232,.9); color: #9B1C1C; box-shadow: inset 0 0 0 1px rgba(155,28,28,.05); }

    .week-board {
      flex: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .week-column,
    .portal-board,
    .invoice-board {
      background: rgba(255,255,255,.94);
      border: 1px solid rgba(17,17,17,.075);
      border-radius: 14px;
      padding: 12px;
      box-shadow: 0 8px 20px rgba(17,17,17,.035);
    }
    .week-title { font-size: 10px; font-weight: 900; color: #4B5563; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px; }
    .week-slots { display: grid; gap: 6px; }
    .slot { height: 14px; border-radius: 4px; background: #E5E7EB; }
    .slot.full { background: #8CC63F; }
    .slot.partial { background: linear-gradient(90deg, #E8BA65 0 50%, #E5E7EB 50% 100%); }
    .slot.empty { background: #E5E7EB; }
    .slot.danger { background: #FDE8E8; border: 1px solid #F3B0B0; }

    .portal-board,
    .invoice-board { display: grid; gap: 10px; min-height: 142px; }
    .portal-board { position: relative; overflow: hidden; grid-template-rows: auto 1fr auto; align-items: center; padding: 14px; }
    .portal-story { font-size: 12px; font-weight: 900; color: #1c2b23; }
    .portal-split {
      display: grid;
      grid-template-columns: 1fr 34px 1.25fr;
      align-items: center;
      gap: 8px;
    }
    .lead-source {
      display: grid;
      place-items: center;
      min-height: 58px;
      border-radius: 14px;
      background: #fff;
      border: 1px solid #E5E7EB;
      box-shadow: 0 6px 16px rgba(17,17,17,.035);
      font-size: 13px;
      font-weight: 900;
      color: var(--text);
      text-align: center;
      line-height: 1.2;
    }
    .lead-source small { display: block; margin-top: 4px; font-size: 10px; font-weight: 900; color: #6B7280; text-transform: uppercase; letter-spacing: .06em; }
    .split-arrow { color: #E02424; font-size: 25px; font-weight: 900; text-align: center; }
    .competitor-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 5px; }
    .competitor-dot {
      min-height: 40px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: #fff;
      border: 1px solid #E5E7EB;
      font-size: 10px;
      font-weight: 900;
      color: #6B7280;
    }
    .competitor-dot.danger {
      color: #9B1C1C;
      background: #FCE8E8;
      border-color: #F3B0B0;
      box-shadow: inset 0 0 0 1px rgba(155,28,28,.04);
    }
    .portal-warning {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 999px;
      background: #FCE8E8;
      border: 1px solid #F3B0B0;
      color: #9B1C1C;
      padding: 7px 12px;
      font-size: 10.5px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .invoice-board { grid-template-columns: 1fr 26px 1fr; align-items: stretch; gap: 12px; }
    .bill-card,
    .result-card {
      border-radius: 10px;
      border: 1px solid #E5E7EB;
      background: #fff;
      padding: 13px;
      min-height: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .bill-head,
    .result-head { font-size: 10px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; color: #6B7280; }
    .bill-amount { font-size: 30px; font-weight: 900; color: var(--text); letter-spacing: -.04em; white-space: nowrap; }
    .result-arrow { align-self: center; text-align: center; color: #9B1C1C; font-size: 22px; font-weight: 900; }
    .result-value { font-size: 28px; font-weight: 900; color: #9B1C1C; letter-spacing: -.04em; line-height: 1; }
    .result-note { font-size: 11px; font-weight: 800; color: #6B7280; text-transform: uppercase; letter-spacing: .05em; }

    .simple-calendar,
    .portal-simple,
    .agency-chat {
      width: 100%;
      height: 100%;
      border-radius: 16px;
      background: #fff;
      border: 1px solid #E5E7EB;
      box-shadow: 0 12px 28px rgba(17,17,17,.055);
      padding: 14px;
    }
    .simple-calendar { display: grid; grid-template-rows: auto 1fr; gap: 12px; }
    .simple-calendar-head,
    .portal-headline,
    .chat-window-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 900;
      color: var(--text-3);
      text-transform: uppercase;
      letter-spacing: .08em;
    }
    .simple-calendar-head strong,
    .portal-headline strong,
    .chat-window-head strong { color: var(--text); font-size: 12px; letter-spacing: 0; text-transform: none; }
    .calendar-days { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
    .calendar-day {
      border-radius: 12px;
      background: var(--bg-2);
      border: 1px solid var(--border);
      padding: 9px 7px;
      display: grid;
      align-content: end;
      gap: 7px;
      min-height: 92px;
    }
    .calendar-day b { font-size: 10px; color: var(--text-3); }
    .cal-bar { height: 8px; border-radius: 999px; background: var(--green); }
    .cal-bar.short { width: 58%; background: #E6B85C; }
    .cal-empty { height: 34px; border: 1px dashed #CBD5E1; border-radius: 10px; background: #fff; display: grid; place-items: center; color: #9CA3AF; font-weight: 900; font-size: 18px; }
    .portal-simple { display: grid; grid-template-rows: auto 1fr auto; gap: 12px; }
    .portal-flow { display: grid; grid-template-columns: 1fr 40px 1.35fr; align-items: center; gap: 9px; }
    .portal-paid,
    .portal-competitors {
      border-radius: 14px;
      border: 1px solid var(--border);
      background: var(--bg-2);
      padding: 12px;
      min-height: 82px;
      display: grid;
      place-items: center;
      text-align: center;
    }
    .portal-paid strong { font-size: 21px; line-height: 1; color: var(--text); }
    .portal-paid span { font-size: 11px; font-weight: 900; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; }
    .portal-arrow { font-size: 24px; font-weight: 900; color: #9B1C1C; text-align: center; }
    .portal-competitors { grid-template-columns: repeat(5, 1fr); gap: 5px; }
    .portal-bubble { width: 27px; height: 27px; border-radius: 999px; display: grid; place-items: center; background: #fff; border: 1px solid #E5E7EB; font-size: 10px; font-weight: 900; color: var(--text-3); }
    .portal-bubble.you { color: #9B1C1C; background: #FFF2F2; border-color: #F1B7B7; }
    .portal-bottom { border-radius: 999px; background: #FFF7F2; border: 1px solid #F1D0B5; color: #7C3F10; padding: 7px 10px; font-size: 11px; font-weight: 900; text-align: center; }
    .agency-chat { display: grid; grid-template-rows: auto 1fr; gap: 12px; }
    .chat-messages { display: grid; gap: 8px; align-content: end; }
    .chat-msg {
      max-width: 86%;
      border-radius: 14px;
      padding: 10px 12px;
      font-size: 12px;
      line-height: 1.35;
      font-weight: 800;
    }
    .chat-msg.client { background: var(--green-bg); border: 1px solid var(--green-str); color: var(--green-d); justify-self: end; }
    .chat-msg.agency { background: #F3F4F6; border: 1px solid #E5E7EB; color: var(--text-2); justify-self: start; }
    .chat-status { font-size: 10.5px; color: #9B1C1C; font-weight: 900; justify-self: end; }

    .problem-receipt {
      width: 100%;
      height: 100%;
      border-radius: 16px;
      background: #fff;
      border: 1px solid #E5E7EB;
      box-shadow: 0 12px 28px rgba(17,17,17,.055);
      padding: 14px;
      display: grid;
      grid-template-rows: auto 1fr auto;
      gap: 12px;
    }
    .receipt-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 900;
      color: var(--text-3);
      text-transform: uppercase;
      letter-spacing: .08em;
    }
    .receipt-head strong { color: var(--text); font-size: 12px; text-transform: none; letter-spacing: 0; }
    .receipt-pill {
      border-radius: 999px;
      padding: 5px 8px;
      background: #FFF7F2;
      border: 1px solid #F1D0B5;
      color: #7C3F10;
      font-size: 10px;
      white-space: nowrap;
    }
    .receipt-main {
      border-radius: 14px;
      background: var(--bg-2);
      border: 1px solid var(--border);
      padding: 12px;
      display: grid;
      align-content: center;
      gap: 10px;
    }
    .receipt-line {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 9px 10px;
      border-radius: 11px;
      background: #fff;
      border: 1px solid #E5E7EB;
      font-size: 12px;
      font-weight: 850;
      color: var(--text-2);
    }
    .receipt-line strong { color: var(--text); font-size: 13px; }
    .receipt-line.bad strong,
    .receipt-line.bad span { color: #9B1C1C; }
    .receipt-line.good span { color: var(--green-d); }
    .receipt-bottom {
      border-radius: 999px;
      background: var(--green-bg);
      border: 1px solid var(--green-str);
      color: var(--green-d);
      padding: 7px 10px;
      text-align: center;
      font-size: 11px;
      font-weight: 900;
    }
    .receipt-bottom.danger {
      background: #FFF7F7;
      border-color: #F1B7B7;
      color: #9B1C1C;
    }

    /* ── MECHANISM ──────────────────────────── */
    .mechanism-section { background: var(--bg-2); }
    .mechanism-section .sec-sub { max-width: 720px; }
    .mechanism-system {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 52px;
      align-items: stretch;
    }
    .mechanism-card {
      position: relative;
      overflow: hidden;
      min-height: 430px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      box-shadow: var(--shadow);
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .mechanism-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 4px;
      background: var(--green);
      opacity: .35;
    }
    .mechanism-card.is-primary {
      border-color: rgba(140,198,63,.48);
      background:
        radial-gradient(circle at 86% 10%, rgba(140,198,63,.20), transparent 32%),
        #fff;
      box-shadow: 0 24px 54px rgba(28,43,35,.10), var(--shadow-sm);
    }
    .mechanism-card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
    .mechanism-step {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: var(--green-bg);
      border: 1px solid var(--green-str);
      color: var(--green-d);
      font-size: 12px;
      font-weight: 900;
    }
    .mechanism-tag {
      border-radius: 999px;
      background: var(--bg-2);
      border: 1px solid var(--border);
      color: var(--text-3);
      padding: 6px 10px;
      font-size: 10.5px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .mechanism-card.is-primary .mechanism-tag { background: var(--green-bg); border-color: var(--green-str); color: var(--green-d); }
    .mechanism-card h3 { font-size: 22px; font-weight: 900; letter-spacing: -.04em; line-height: 1.08; color: var(--text); }
    .mechanism-card p { font-size: 13.5px; color: var(--text-2); line-height: 1.6; font-weight: 700; }
    .search-mock,
    .filter-box,
    .output-mini {
      margin-top: auto;
      border: 1px solid var(--border);
      border-radius: 18px;
      background: var(--bg-2);
      padding: 14px;
    }
    .search-bar {
      display: flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 10px 12px;
      font-size: 12px;
      font-weight: 900;
      color: var(--text);
      box-shadow: var(--shadow-sm);
    }
    .search-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(140,198,63,.14); }
    .search-results { display: grid; gap: 8px; margin-top: 12px; }
    .search-result {
      border: 1px solid var(--border);
      background: #fff;
      border-radius: 13px;
      padding: 10px 11px;
    }
    .search-result strong { display: block; font-size: 12px; font-weight: 900; color: var(--green-d); margin-bottom: 3px; }
    .search-result span { display: block; font-size: 11px; font-weight: 800; color: var(--text-3); line-height: 1.35; }
    .filter-box { display: grid; gap: 10px; }
    .filter-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      border: 1px solid rgba(140,198,63,.26);
      background: #fff;
      border-radius: 13px;
      padding: 10px 11px;
      font-size: 12px;
      font-weight: 900;
      color: var(--text);
    }
    .filter-row span { color: var(--green-d); font-size: 11px; white-space: nowrap; }
    .filter-row.is-rejected {
      border-color: #F1B7B7;
      background: #FFF7F7;
      color: #9B1C1C;
    }
    .filter-row.is-rejected span { color: #9B1C1C; }
    .output-mini {
      background: #fff;
      box-shadow: var(--shadow-sm);
    }
    .output-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
    .output-head strong { font-size: 12px; font-weight: 900; color: var(--text); }
    .output-head span { border-radius: 999px; background: var(--green-bg); color: var(--green-d); padding: 5px 8px; font-size: 10px; font-weight: 900; white-space: nowrap; }
    .output-person { font-size: 15px; font-weight: 900; color: var(--text); letter-spacing: -.02em; margin-bottom: 6px; }
    .output-project { font-size: 13px; color: var(--text-2); line-height: 1.45; font-weight: 800; margin-bottom: 12px; }
    .output-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .output-field {
      border-radius: 11px;
      background: var(--bg-2);
      border: 1px solid var(--border);
      padding: 9px;
    }
    .output-field small { display: block; font-size: 9.5px; color: var(--text-3); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; }
    .output-field b { display: block; font-size: 11.5px; color: var(--text); line-height: 1.25; }
    .mechanism-rejects {
      margin-top: 16px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
    }
    .reject-chip {
      border-radius: 14px;
      background: #fff;
      border: 1px solid #F1B7B7;
      color: #9B1C1C;
      padding: 11px 12px;
      font-size: 12px;
      font-weight: 900;
      line-height: 1.35;
      box-shadow: var(--shadow-sm);
    }
    .mechanism-bottom {
      margin-top: 20px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 18px;
      align-items: center;
      max-width: 920px;
      margin-left: auto;
      margin-right: auto;
      background: #fff;
      border: 1px solid var(--green-str);
      border-radius: var(--r-lg);
      padding: 18px 20px;
      box-shadow: var(--shadow-sm);
    }
    .mechanism-bottom p { font-size: 14px; color: var(--text-2); line-height: 1.6; font-weight: 700; }
    .mechanism-bottom strong { color: var(--text); font-weight: 900; }

    /* ── FEATURES GRID ───────────────────────── */
    .feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 52px; }
    .feat-card {
      background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg);
      padding: 24px; transition: transform .18s, box-shadow .18s, border-color .18s;
      position: relative;
    }
    .feat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--green-str); }
    .feat-icon-wrap {
      width: 48px; height: 48px; border-radius: var(--r); background: var(--bg-2);
      display: grid; place-items: center; margin-bottom: 16px;
    }
    .feat-icon-wrap svg { width: 24px; height: 24px; color: var(--green); }
    .feat-card h3 { font-size: 16.5px; font-weight: 800; color: var(--text); margin-bottom: 8px; letter-spacing: -.02em; }
    .feat-card p  { font-size: 14px; color: var(--text-2); line-height: 1.68; }
    .feat-card.bonus { border-color: var(--green); background: var(--green-bg); }
    .feat-card.bonus h3 { color: var(--green-d); }
    .feat-card.is-secondary { display: none; }
    .bonus-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid var(--green-str);
      color: var(--green-d);
      padding: 5px 9px;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    /* ── CASES / RESULTS ─────────────────────── */
    .case-stage {
      margin-top: 52px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
    }
    .case-slider { position: relative; }
    .case-slide { display: none; grid-template-columns: .92fr 1.08fr; min-height: 0; }
    .case-slide.is-active { display: grid; }
    .case-story {
      background:
        radial-gradient(circle at 18% 12%, rgba(140,198,63,.22), transparent 34%),
        linear-gradient(135deg, #111 0%, #1c2b23 100%);
      color: #fff;
      padding: 0 0 26px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      gap: 20px;
    }
    .case-person {
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: stretch;
    }
    .case-person > div:last-child { padding: 0 28px; }
    .case-avatar {
      position: relative;
      width: 100%; height: clamp(245px, 24vw, 335px); border-radius: 0;
      background: rgba(255,255,255,.12);
      border: none;
      display: grid; place-items: center;
      overflow: hidden;
      box-shadow: 0 18px 42px rgba(0,0,0,.24);
    }
    .case-avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
    .case-proof-float {
      position: absolute;
      z-index: 4;
      background: rgba(255,255,255,.94);
      border: 1px solid rgba(140,198,63,.42);
      border-radius: 13px;
      box-shadow: 0 10px 26px rgba(17,17,17,.13);
      backdrop-filter: blur(10px);
      color: var(--text);
    }
    .case-proof-float {
      left: 18px;
      bottom: 18px;
      max-width: min(218px, calc(100% - 36px));
      padding: 8px 10px;
    }
    .case-proof-float strong {
      display: block;
      color: var(--green-d);
      font-size: 11.5px;
      font-weight: 900;
      letter-spacing: -.03em;
      margin-bottom: 2px;
    }
    .case-proof-float span {
      display: block;
      color: var(--text-2);
      font-size: 10.5px;
      font-weight: 850;
      line-height: 1.25;
    }
    .hero-image-wrap { position: relative; }
    #case-geldern .case-avatar {
      background: linear-gradient(135deg, #0f1a15 0%, #1c2b23 100%);
    }
    #case-geldern .case-avatar img {
      object-fit: cover;
      object-position: 38% 14%;
      transform: translateX(18px) scale(1.08);
      transform-origin: center top;
    }
    #case-bremen .case-avatar img,
    #case-hanhofen .case-avatar img { object-position: center 38%; }
    .case-avatar > span { font-size: 30px; font-weight: 900; letter-spacing: -.05em; color: var(--green); }
    .case-person-name { font-size: 22px; font-weight: 900; letter-spacing: -.03em; margin-bottom: 4px; }
    .case-person-meta { font-size: 13px; color: rgba(255,255,255,.72); line-height: 1.45; font-weight: 700; }
    .case-quote { font-size: clamp(17px, 1.8vw, 23px); line-height: 1.16; letter-spacing: -.035em; font-weight: 900; padding: 0 28px; }
    .case-quote-mark { color: var(--green); }
    .case-result {
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 20px;
    }
    .case-kicker { font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
    .case-result h3 { font-size: clamp(25px, 3vw, 38px); font-weight: 900; letter-spacing: -.045em; line-height: 1.02; margin-bottom: 10px; }
    .case-result-sub { font-size: 13.5px; color: var(--text-2); line-height: 1.58; max-width: 520px; }
    .case-metrics { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
    .case-metric {
      background: var(--bg-2);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 13px;
    }
    .case-metric .v { font-size: 28px; font-weight: 900; letter-spacing: -.045em; color: var(--text); line-height: 1; margin-bottom: 6px; }
    .case-metric .v.hi { color: var(--green-d); }
    .case-metric .l { font-size: 11px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; color: var(--text-3); line-height: 1.35; }
    .case-tabs-label {
      border-top: 1px solid var(--border);
      background: var(--bg-2);
      padding: 14px 16px 0;
      text-align: center;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--text-3);
    }
    .case-tabs {
      display: flex;
      justify-content: center;
      gap: 10px;
      padding: 12px 16px 16px;
      border-top: none;
      background: var(--bg-2);
    }
    .case-tab {
      border: 1px solid var(--border);
      border-radius: 999px;
      background: #fff;
      padding: 11px 16px;
      font-family: inherit;
      text-align: center;
      cursor: pointer;
      transition: background .15s, color .15s, border-color .15s, transform .15s;
    }
    .case-tab:hover { border-color: var(--green-str); transform: translateY(-1px); }
    .case-tab strong { display: block; font-size: 13px; font-weight: 900; color: var(--text); margin-bottom: 3px; }
    .case-tab span { display: block; font-size: 11.5px; color: var(--text-3); font-weight: 800; }
    .case-tab.is-active { background: var(--green-bg); border-color: var(--green); }
    .case-tab.is-active strong { color: var(--green-d); }
    .cases-note { text-align: center; margin-top: 24px; font-size: 13px; color: var(--text-3); }
    .cases-note strong { color: var(--text-2); }
    .case-method {
      max-width: 840px;
      margin: 28px auto 0;
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 12px;
    }
    .case-method div {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 14px;
      font-size: 12.5px;
      color: var(--text-2);
      line-height: 1.55;
    }
    .case-method strong { display: block; color: var(--text); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }

    /* ── ABLAUF ──────────────────────────────── */
    .ablauf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 52px; align-items: start; }
    .steps { display: flex; flex-direction: column; }
    .step { display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 26px 0; border-bottom: 1px solid var(--border); }
    .step:first-child { padding-top: 0; }
    .step:last-child { border-bottom: none; }
    .step-num {
      width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--border);
      display: grid; place-items: center; font-size: 15px; font-weight: 900;
      color: var(--text-3); flex-shrink: 0; transition: background .15s, border-color .15s, color .15s;
    }
    .step:hover .step-num { background: var(--green-mid); border-color: var(--green); color: var(--green-d); }
    .step-who { font-size: 10.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-top: 6px; }
    .step h3 { font-size: 18px; font-weight: 800; color: var(--text); letter-spacing: -.02em; margin-bottom: 8px; }
    .step p { font-size: 14px; color: var(--text-2); line-height: 1.7; }
    .step-chip { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 12px; font-weight: 700; color: var(--green-d); background: var(--green-bg); border-radius: 100px; padding: 4px 12px; }
    .step-chip svg { width: 12px; height: 12px; }
    .step-chip.gray { color: var(--text-2); background: var(--bg-2); }

    .timeline-card {
      background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-xl);
      padding: 32px; position: sticky; top: 88px;
    }
    .effort-card {
      background: linear-gradient(135deg, #111 0%, #1c2b23 100%);
      color: #fff;
      border-radius: var(--r-xl);
      padding: 28px;
      box-shadow: var(--shadow-lg);
      margin-bottom: 18px;
    }
    .effort-card small { display: block; color: var(--green); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; }
    .effort-card strong { display: block; font-size: clamp(34px, 4vw, 54px); letter-spacing: -.05em; line-height: 1; margin-bottom: 10px; }
    .effort-card p { color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.6; }
    .tl-title { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 24px; }
    .tl { display: flex; flex-direction: column; }
    .tl-row { display: grid; grid-template-columns: 14px 66px 1fr; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); align-items: start; }
    .tl-row:last-child { border-bottom: none; }
    .tl-dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--border); margin-top: 2px; }
    .tl-dot.on { background: var(--green); border-color: var(--green); box-shadow: 0 0 0 3px var(--green-bg); }
    .tl-day { font-size: 12px; font-weight: 800; color: var(--text-3); }
    .tl-text { font-size: 14px; color: var(--text-2); line-height: 1.5; }
    .tl-text strong { color: var(--text); font-weight: 800; }

    /* ── PRICING ─────────────────────────────── */
    .price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 52px; }
    .price-card {
      background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r-lg);
      padding: 28px; transition: transform .18s, box-shadow .18s, border-color .18s;
    }
    .price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--green); }
    .price-card.featured { border-color: var(--green); background: var(--green-bg); }
    .price-cat { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 8px; }
    .price-name { font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 16px; }
    .price-v { font-size: 36px; font-weight: 900; color: var(--text); letter-spacing: -.04em; line-height: 1; margin-bottom: 18px; }
    .price-v small { font-size: 16px; font-weight: 700; color: var(--text-2); }
    .price-card.featured .price-v { color: var(--green-d); }
    .price-note-small { font-size: 13px; color: var(--text-2); line-height: 1.6; }
    .price-section-note { max-width: 560px; margin: 24px auto 0; text-align: center; font-size: 14px; color: var(--text-2); line-height: 1.7; }
    .scarcity-banner {
      margin-top: 28px; background: var(--green-bg); border: 1px solid var(--green-str);
      border-left: 4px solid var(--green); border-radius: var(--r); padding: 16px 20px;
      display: flex; align-items: flex-start; gap: 12px;
    }
    .scarcity-banner svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; margin-top: 1px; }
    .scarcity-banner p { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.6; }
    .scarcity-banner strong { font-weight: 800; }
    .trust-compact {
      margin-top: 18px;
      border: 1px solid var(--border);
      border-radius: var(--r);
      background: var(--bg-2);
      padding: 14px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
      max-width: 860px;
      margin-left: auto;
      margin-right: auto;
    }
    .trust-compact div {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 10px;
      font-size: 12px;
      color: var(--text-2);
      line-height: 1.4;
    }
    .trust-compact strong { display: block; color: var(--text); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }

    .guarantee-box {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 250px 1fr;
      gap: 26px;
      align-items: center;
      background:
        radial-gradient(circle at 88% 10%, rgba(140,198,63,.22), transparent 34%),
        linear-gradient(135deg, #10140F 0%, #1c2b23 100%);
      border: 1.5px solid rgba(140,198,63,.40);
      border-left: 7px solid var(--green);
      border-radius: var(--r-xl);
      padding: 24px;
      max-width: 860px;
      margin: 0 auto 52px;
      box-shadow: var(--shadow-lg);
    }
    .guarantee-people {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .guarantee-people img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.16);
      box-shadow: 0 18px 38px rgba(0,0,0,.22);
      filter: saturate(.96) contrast(1.02);
    }
    .guarantee-people img:first-child { object-position: center 36%; }
    .guarantee-people img:last-child { object-position: 38% 14%; }
    .guarantee-kicker {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      background: rgba(140,198,63,.16);
      border: 1px solid rgba(140,198,63,.34);
      color: var(--green);
      padding: 6px 10px;
      font-size: 10.5px;
      font-weight: 900;
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .guarantee-box h3 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: #fff; margin-bottom: 12px; letter-spacing: -.05em; line-height: 1.03; }
    .guarantee-box p { font-size: 16px; color: rgba(255,255,255,.88); line-height: 1.62; font-weight: 700; }
    .guarantee-proof-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 0; }
    .guarantee-proof-row span {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.14);
      color: rgba(255,255,255,.90);
      padding: 7px 10px;
      font-size: 11px;
      font-weight: 900;
      white-space: nowrap;
    }
    .guarantee-box .fineprint { font-size: 12px; color: rgba(255,255,255,.58); line-height: 1.55; margin-top: 14px; font-weight: 700; }
    .roi-box {
      max-width: 860px;
      margin: 22px auto 0;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      background: #fff;
      padding: 20px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 16px;
      align-items: center;
      box-shadow: var(--shadow-sm);
    }
    .roi-box h3 { font-size: 17px; font-weight: 900; color: var(--text); margin-bottom: 6px; letter-spacing: -.02em; }
    .roi-box p { font-size: 13.5px; color: var(--text-2); line-height: 1.6; }
    .roi-math { font-size: 13px; font-weight: 900; color: var(--green-d); background: var(--green-bg); border: 1px solid var(--green-str); border-radius: 999px; padding: 9px 14px; white-space: nowrap; }

    /* ── FIT / EIGNUNG ───────────────────────── */
    .fit-decision { background: var(--bg-2); }
    .fit-decision-grid { display: grid; grid-template-columns: 1fr 1fr .9fr; gap: 18px; margin-top: 48px; }
    .fit-decision-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 28px;
      box-shadow: var(--shadow-sm);
    }
    .fit-decision-card.ok { border-color: var(--green-str); }
    .fit-decision-card.no { border-color: #F3B0B0; }
    .fit-decision-card h3 { font-size: 20px; font-weight: 900; color: var(--text); margin-bottom: 16px; letter-spacing: -.03em; }
    .fit-decision-card ul { list-style: none; display: grid; gap: 12px; }
    .fit-decision-card li { position: relative; padding-left: 28px; font-size: 14.5px; color: var(--text-2); line-height: 1.55; }
    .fit-decision-card li::before {
      position: absolute; left: 0; top: 1px;
      width: 19px; height: 19px; border-radius: 50%; display: grid; place-items: center;
      font-size: 11px; font-weight: 900;
    }
    .fit-decision-card.ok li::before { content: "✓"; background: var(--green-bg); color: var(--green-d); }
    .fit-decision-card.no li::before { content: "!"; background: #FCE8E8; color: #9B1C1C; }
    .fit-decision-note { max-width: 760px; margin: 22px auto 0; text-align: center; font-size: 14px; color: var(--text-2); line-height: 1.65; }
    .fit-contact-card {
      background: linear-gradient(135deg, #111 0%, #1c2b23 100%);
      color: #fff;
      border-radius: var(--r-lg);
      padding: 28px;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 20px;
    }
    .fit-contact-visual {
      border-radius: 18px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.14);
      padding: 16px;
      display: grid;
      gap: 10px;
    }
    .fit-contact-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: rgba(255,255,255,.08); border-radius: 12px; padding: 10px; font-size: 12px; font-weight: 900; }
    .fit-contact-row span { color: var(--green); }
    .fit-contact-card h3 { font-size: 20px; font-weight: 900; letter-spacing: -.03em; line-height: 1.15; }
    .fit-contact-card p { color: rgba(255,255,255,.72); font-size: 13.5px; line-height: 1.55; }

    /* ── REVIEWS ─────────────────────────────── */
    .rev-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 40px; }
    .gbadge {
      display: flex; align-items: center; gap: 12px;
      background: var(--bg); border: 1px solid var(--border); border-radius: var(--r);
      padding: 14px 20px; box-shadow: var(--shadow-sm); text-decoration: none;
      transition: border-color .15s, box-shadow .15s;
    }
    .gbadge:hover { border-color: var(--green); box-shadow: var(--shadow); }
    .gbadge svg { width: 28px; height: 28px; }
    .gbadge-score { font-size: 28px; font-weight: 900; color: var(--text); letter-spacing: -.04em; line-height: 1; }
    .gbadge-stars { color: #F59E0B; font-size: 13px; letter-spacing: 1.5px; margin-top: 3px; }
    .gbadge-label { font-size: 12px; color: var(--text-2); font-weight: 600; margin-top: 2px; }
    .rev-grid { display: flex; overflow-x: auto; gap: 16px; align-items: stretch; scroll-snap-type: x mandatory; padding: 4px 0 12px; }
    .rev-card {
      background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg);
      padding: 26px; transition: transform .18s, box-shadow .18s, border-color .18s;
      display: flex; flex-direction: column;
      flex: 0 0 min(360px, calc(100vw - 56px));
      scroll-snap-align: start;
    }
    .rev-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--green-str); }
    .rev-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
    .rev-av {
      width: 40px; height: 40px; border-radius: 50%; background: var(--green-mid);
      color: var(--green-d); font-weight: 900; font-size: 15px; display: grid; place-items: center;
      flex-shrink: 0;
    }
    .rev-name { font-size: 14.5px; font-weight: 800; color: var(--text); }
    .rev-meta { font-size: 12px; color: var(--text-2); margin-top: 2px; }
    .rev-stars { color: #F59E0B; font-size: 12px; letter-spacing: 1px; margin-top: 2px; }
    .rev-text { font-size: 14.5px; color: var(--text); line-height: 1.72; }
    .rev-verified {
      display: inline-flex; align-items: center; gap: 5px; margin-top: 14px;
      font-size: 11px; font-weight: 800; color: var(--green);
      background: var(--green-bg); padding: 4px 10px; border-radius: 6px;
      align-self: flex-start;
    }

    /* ── SECTION HEAD (left-aligned) ────────── */
    .sec-head { margin-bottom: 0; }
    .sec-head .sec-sub { max-width: 520px; }

    /* ── FAQ ─────────────────────────────────── */
    .faq-wrap { max-width: 760px; margin: 48px auto 0; }
    details.faq { border-bottom: 1px solid var(--border); }
    details.faq summary {
      list-style: none; padding: 22px 0; display: flex; align-items: center;
      justify-content: space-between; gap: 20px; cursor: pointer;
      font-size: 17px; font-weight: 800; color: var(--text); letter-spacing: -.02em;
      transition: color .15s;
    }
    details.faq summary::-webkit-details-marker { display: none; }
    details.faq summary:hover { color: var(--green); }
    .faq-icon {
      width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--border);
      display: grid; place-items: center; flex-shrink: 0;
      transition: transform .22s, border-color .2s, background .2s;
    }
    .faq-icon svg { width: 12px; height: 12px; color: var(--green); }
    details.faq[open] .faq-icon { transform: rotate(45deg); border-color: var(--green); background: var(--green-bg); }
    details.faq .faq-ans { font-size: 15px; color: var(--text-2); line-height: 1.76; padding: 0 60px 22px 0; }

    /* ── FAQ (Gewerke-Seiten-Variante) ───────── */
    .faq-list { max-width: 720px; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-q {
      list-style: none; padding: 22px 0; display: flex; align-items: center;
      justify-content: space-between; gap: 20px; cursor: pointer; width: 100%;
      font-size: 17px; font-weight: 800; color: var(--text); letter-spacing: -.02em;
      background: none; border: none; text-align: left; font-family: inherit;
      transition: color .15s;
    }
    .faq-q::after {
      content: "+"; flex-shrink: 0;
      width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--border);
      display: grid; place-items: center; font-size: 18px; font-weight: 400; color: var(--green);
      transition: transform .22s, border-color .2s, background .2s;
    }
    .faq-item[open] .faq-q::after { transform: rotate(45deg); border-color: var(--green); background: var(--green-bg); }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-q:hover { color: var(--green); }
    .faq-a { }
    .faq-a p { font-size: 15px; color: var(--text-2); line-height: 1.76; padding: 0 60px 22px 0; }

    /* ── CTA / FORM ──────────────────────────── */
    .cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
    .cta-points { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
    .cta-pt { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; font-weight: 600; color: var(--text-2); line-height: 1.5; }
    .cta-pt-ic {
      width: 22px; height: 22px; border-radius: 50%; background: var(--green-mid);
      display: grid; place-items: center; flex-shrink: 0; margin-top: 1px;
    }
    .cta-pt-ic svg { width: 11px; height: 11px; color: var(--green-d); }
    .form-card {
      background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-xl);
      padding: 38px; box-shadow: var(--shadow-lg);
    }
    .form-h { font-size: 24px; font-weight: 900; color: var(--text); letter-spacing: -.03em; margin-bottom: 5px; }
    .form-sub { font-size: 14px; color: var(--text-2); margin-bottom: 26px; }
    .form-step { font-size: 12.5px; font-weight: 700; color: var(--text-2); margin-bottom: 16px; }
    .fgrid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
    .field:last-of-type { margin-bottom: 0; }
    .field label { font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--text-2); }
    .field input, .field select {
      width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
      border-radius: var(--r); font-size: 15px; font-family: inherit;
      color: var(--text); background: var(--bg); outline: none;
      transition: border-color .15s, box-shadow .15s;
      -webkit-appearance: none;
      appearance: none;
    }
    .field input:focus, .field select:focus {
      border-color: var(--green); box-shadow: 0 0 0 3px rgba(140,198,63,.14);
    }
    .form-submit {
      width: 100%; background: var(--green); color: #fff;
      padding: 15px; border-radius: 100px; font-weight: 800; font-size: 15px;
      border: none; cursor: pointer; margin-top: 18px;
      transition: background .15s, transform .12s;
      box-shadow: 0 12px 28px -10px rgba(140,198,63,.5);
    }
    .form-submit:hover { background: var(--green-d); transform: translateY(-1px); }
    .form-submit:disabled { cursor: wait; opacity: .72; transform: none; }
    .form-error {
      display: none;
      border: 1px solid #F3B0B0;
      background: #FFF7F7;
      color: #9B1C1C;
      border-radius: var(--r);
      padding: 10px 12px;
      margin: -4px 0 16px;
      font-size: 12.5px;
      font-weight: 850;
      line-height: 1.45;
    }
    .form-error.is-visible { display: block; }
    .form-success {
      display: none;
      border: 1px solid var(--green-str);
      background: var(--green-bg);
      color: var(--green-d);
      border-radius: var(--r-lg);
      padding: 18px;
      margin-top: 18px;
      font-size: 14px;
      font-weight: 800;
      line-height: 1.55;
    }
    .form-success.is-visible { display: block; }
    .form-success strong { display: block; color: var(--text); font-size: 17px; font-weight: 900; margin-bottom: 5px; }
    .form-success-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
    .form-success-actions a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      padding: 9px 13px;
      font-size: 12px;
      font-weight: 900;
      text-decoration: none;
      border: 1px solid var(--green-str);
      color: var(--green-d);
      background: #fff;
    }
    .form-success-actions a:first-child { background: var(--green); color: #fff; border-color: var(--green); }
    .form-card.is-submitted .form-progress-meta,
    .form-card.is-submitted .form-progress,
    .form-card.is-submitted .multi-step-form { display: none; }
    .form-privacy {
      margin: 12px 0 0;
      font-size: 11.5px;
      color: var(--text-3);
      line-height: 1.5;
      font-weight: 700;
    }
    .form-privacy a { color: var(--green-d); font-weight: 900; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
    .form-next {
      margin-top: 10px;
      font-size: 12px;
      color: var(--text-2);
      text-align: center;
      font-weight: 700;
    }
    .form-safety {
      border: 1px solid var(--green-str);
      background: var(--green-bg);
      border-radius: var(--r);
      padding: 12px 14px;
      margin: -8px 0 18px;
      font-size: 13px;
      color: var(--green-d);
      line-height: 1.55;
      font-weight: 700;
    }
    .form-safety strong { font-weight: 900; color: var(--text); }
    .form-progress-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin: 18px 0 8px;
      font-size: 11.5px;
      font-weight: 900;
      color: var(--text-3);
      letter-spacing: .06em;
      text-transform: uppercase;
    }
    .form-progress-meta strong { color: var(--green-d); }
    .form-progress { display: grid; grid-template-columns: repeat(6, 1fr); gap: 7px; margin: 0 0 20px; }
    .form-progress span { height: 8px; border-radius: 999px; background: var(--bg-3); border: 1px solid var(--border); overflow: hidden; }
    .form-progress span.is-active { background: linear-gradient(90deg, var(--green) 0%, #A6D96B 100%); border-color: var(--green); box-shadow: 0 6px 14px rgba(140,198,63,.16); }
    .form-panel { display: none; }
    .form-panel.is-active { display: block; animation: formIn .18s ease; }
    @keyframes formIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
    .form-panel-title { font-size: 21px; font-weight: 900; color: var(--text); letter-spacing: -.04em; line-height: 1.12; margin: 0 0 6px; }
    .form-panel-hint { font-size: 13px; color: var(--text-2); line-height: 1.5; font-weight: 750; margin: 0 0 14px; }
    .form-options { display: grid; gap: 10px; margin-bottom: 14px; }
    .form-choice {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 12px;
      border: 1.5px solid var(--border);
      border-radius: var(--r);
      background: #fff;
      padding: 13px 14px;
      cursor: pointer;
      font-size: 14px;
      font-weight: 900;
      color: var(--text);
      box-shadow: 0 6px 16px rgba(17,17,17,.035);
      transition: border-color .15s, background .15s, transform .12s, box-shadow .15s;
    }
    .form-choice:hover,
    .form-choice.is-selected { border-color: var(--green); background: var(--green-bg); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(140,198,63,.13); }
    .form-choice small { display: block; color: var(--text-3); font-size: 11px; font-weight: 800; margin-top: 2px; }
    .form-choice-icon {
      width: 34px;
      height: 34px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: var(--bg-2);
      border: 1px solid var(--border);
      flex-shrink: 0;
      color: var(--green-d);
    }
    .form-choice-icon svg { width: 18px; height: 18px; display: block; }
    .form-choice.is-selected .form-choice-icon { background: #fff; border-color: var(--green-str); }
    .form-choice-copy { flex: 1; min-width: 0; }
    .form-choice.is-selected::after {
      content: "✓";
      width: 22px;
      height: 22px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: var(--green);
      color: #fff;
      font-size: 12px;
      font-weight: 900;
      flex-shrink: 0;
    }
    .form-actions-row { display: flex; gap: 10px; align-items: center; margin-top: 14px; }
    .form-back {
      flex: 0 0 auto;
      border: 1.5px solid var(--border);
      background: #fff;
      color: var(--text-2);
      border-radius: 999px;
      padding: 13px 18px;
      font-family: inherit;
      font-weight: 900;
      cursor: pointer;
    }
    .form-next-btn { margin-top: 0; flex: 1; }
    .form-chips { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; margin-top: 14px; }
    .fchip {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 11.5px; font-weight: 700; color: var(--text-2);
      background: var(--bg-2); border: 1px solid var(--border); border-radius: 100px;
      padding: 5px 12px;
    }
    .fchip svg { width: 11px; height: 11px; color: var(--green); }

    .roi-box,
    .trust-compact { display: none; }

    .fit-box {
      margin-top: 24px;
      border: 1px solid var(--border);
      background: var(--bg-2);
      border-radius: var(--r-lg);
      padding: 18px;
    }
    .fit-head { font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; }
    .fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .fit-col h4 { font-size: 14px; font-weight: 900; margin-bottom: 8px; }
    .fit-col ul { list-style: none; display: grid; gap: 7px; }
    .fit-col li { font-size: 13.5px; color: var(--text-2); line-height: 1.45; }

    /* ── FOOTER ──────────────────────────────── */
    .footer { background: var(--text); padding: 60px 0 28px; }
    .footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 26px; }
    .footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
    .footer-logo-img { width: 42px; height: 42px; object-fit: contain; display: block; flex-shrink: 0; filter: drop-shadow(0 4px 12px rgba(140,198,63,.20)); }
    .footer-logo-wrap .logo-name { color: #fff; }
    .footer-tag { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 280px; }
    .footer-col-t { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 16px; }
    .footer-col a, .footer-col p { display: block; font-size: 14px; color: rgba(255,255,255,.5); text-decoration: none; margin-bottom: 8px; line-height: 1.5; transition: color .15s; }
    .footer-col a:hover { color: rgba(255,255,255,.85); }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
    .footer-copy { font-size: 12.5px; color: rgba(255,255,255,.25); }
    .footer-legal { display: flex; gap: 18px; }
    .footer-legal a { font-size: 12.5px; color: rgba(255,255,255,.3); text-decoration: none; transition: color .15s; }
    .footer-legal a:hover { color: rgba(255,255,255,.65); }

    /* ── RESPONSIVE ──────────────────────────── */
    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr; gap: 48px; }
      .panel { max-width: 500px; }
      .ablauf-grid, .cta-grid { grid-template-columns: 1fr; gap: 40px; }
      .timeline-card { position: static; }
      .trust-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
    }
    @media (max-width: 768px) {
      .wrap, .nav-inner { padding: 0 18px; }
      body { padding-top: 74px; }
      .nav-inner { height: 74px; gap: 12px; }
      .nav-links .nav-link { display: none; }
      .logo { gap: 9px; }
      .logo-img { width: 44px; height: 44px; }
      .logo-name { font-size: 16.5px; }
      .nav-links { gap: 0; }
      .nav-contact { gap: 7px; }
      .nav-contact-btn {
        width: 48px;
        height: 48px;
        min-height: 48px;
        padding: 0;
      }
      .nav-contact-btn span { display: none; }
      .hero { padding: 52px 0 40px; }
      .hero::before { opacity: .18; background-position: center top; }
      .hero-grid { gap: 26px; }
      .hero-image-wrap { order: -1; padding-bottom: 0; margin: 0 0 22px; }
      .hero-mobile-google-wrap {
        display: flex;
        justify-content: center;
        order: -2;
        margin: 2px 0 14px;
      }
      .hero-copy { display: flex; flex-direction: column; }
      .hero-copy .hero-urgency { order: 1; align-self: flex-start; margin: 0 0 16px; }
      .hero-copy h1 { order: 2; }
      .hero-copy .hero-sub { order: 3; }
      .hero-copy .hero-cta-note { order: 4; margin: -8px 0 18px; }
      .hero-copy .hero-actions { order: 5; }
      h1 { font-size: clamp(34px, 9.5vw, 38px); line-height: 1.06; }
      .hero-sub { font-size: 15.5px; line-height: 1.62; margin-bottom: 24px; }
      .hero-google-pill { font-size: 11.5px; }
      .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
      .hero-actions .btn-pill { width: 100%; max-width: 100%; }
      .btn-pill { justify-content: center; }
      .trust { margin-top: -12px; }
      .trust-grid { grid-template-columns: repeat(2,1fr); }
      .trust { padding: 28px 0 34px; }
      .trust-item { min-height: 174px; padding: 20px 12px 18px; gap: 14px; align-items: center; justify-content: flex-start; text-align: center; border-radius: 20px; }
      .trust-copy { align-items: center; text-align: center; }
      .trust-icon { width: 58px; height: 58px; border-radius: 18px; }
      .trust-icon svg { width: 27px; height: 27px; }
      .trust-icon.google svg { width: 25px; height: 25px; }
      .trust-num { font-size: 22px; }
      .trust-label { font-size: 12px; font-weight: 800; }
      .partners-marquee::before,
      .partners-marquee::after { display: none; }
      .partners { padding: 60px 0 50px; }
      .partners-marquee { max-width: 100%; overflow: hidden; padding-bottom: 6px; }
      .partners-track { animation: partners-scroll 78s linear infinite; padding: 8px 0; }
      .partner-chip { padding: 6px 14px 6px 6px; }
      .prob-grid,
      .mechanism-system,
      .lead-fields,
      .mechanism-bottom,
      .case-method,
      .price-grid,
      .fit-decision-grid { grid-template-columns: 1fr; }
      .mechanism-section .section,
      .mechanism-section { padding-top: 64px; padding-bottom: 64px; }
      .mechanism-system { margin-top: 28px; gap: 12px; }
      .mechanism-card { min-height: auto; padding: 18px; gap: 14px; border-radius: 18px; }
      .mechanism-card h3 { font-size: 19px; line-height: 1.12; }
      .mechanism-card p { font-size: 12.8px; line-height: 1.52; }
      .mechanism-step { width: 34px; height: 34px; border-radius: 11px; font-size: 11px; }
      .mechanism-tag { font-size: 9.5px; padding: 5px 8px; }
      .search-mock,
      .filter-box,
      .output-mini { margin-top: 0; padding: 12px; border-radius: 15px; }
      .search-bar { font-size: 11.5px; padding: 9px 11px; }
      .search-result { padding: 9px 10px; }
      .filter-row { padding: 9px 10px; font-size: 11.5px; }
      .output-head { margin-bottom: 10px; }
      .output-person { font-size: 13.5px; }
      .output-project { font-size: 12px; margin-bottom: 10px; }
      .mechanism-rejects { grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
      .reject-chip { padding: 10px; font-size: 11.2px; border-radius: 12px; }
      .mechanism-system .system-panel { display: none; }
      .system-panel,
      .lead-output-panel { padding: 16px 14px; border-radius: 18px; }
      .route-list { gap: 8px; }
      .route-row { grid-template-columns: 34px 1fr; gap: 10px; padding: 10px; border-radius: 14px; }
      .route-num { width: 32px; height: 32px; border-radius: 10px; }
      .route-copy h3 { font-size: 14px; margin-bottom: 1px; }
      .route-copy p { display: none; }
      .route-chip { display: none; }
      .lead-output-head { padding-bottom: 10px; }
      .lead-card-preview { padding: 13px; border-radius: 15px; }
      .lead-card-title h3 { font-size: 18px; }
      .lead-field { min-height: auto; padding: 9px; }
      .lead-nope { display: none; }
      .feat-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 34px; }
      .feat-card { padding: 18px; display: grid; grid-template-columns: 42px 1fr; gap: 12px 14px; align-items: start; border-radius: 16px; }
      .feat-icon-wrap { width: 42px; height: 42px; margin: 0; grid-row: 1 / span 2; }
      .feat-card h3 { font-size: 15px; margin-bottom: 4px; padding-right: 58px; }
      .feat-card p { font-size: 12.8px; line-height: 1.48; }
      .bonus-badge { top: 12px; right: 12px; font-size: 9px; padding: 4px 7px; }
      .roi-box { grid-template-columns: 1fr; text-align: center; }
      .system-panel,
      .lead-output-panel { padding: 20px 18px; }
      .route-row { grid-template-columns: 42px 1fr; align-items: start; }
      .route-chip { grid-column: 2; justify-self: start; }
      .mechanism-bottom { text-align: center; }
      .mechanism-bottom .btn-pill { justify-self: center; }
      .case-slide.is-active { display: grid; grid-template-columns: 1fr; min-height: 0; }
      .case-story { padding: 0 0 24px; gap: 18px; }
      .case-result { padding: 22px 18px; gap: 20px; }
      .case-person { gap: 15px; }
      .case-person > div:last-child { padding: 0 16px; }
      .case-avatar { width: 100%; height: 230px; border-radius: 0; }
      #case-bremen .case-avatar img,
      #case-hanhofen .case-avatar img { object-position: center 18%; }
      #case-geldern .case-avatar img { object-fit: cover; object-position: 38% 10%; transform: translateX(14px) scale(1.08); transform-origin: center top; }
      .case-proof-float { left: 12px; bottom: 12px; max-width: min(210px, calc(100% - 24px)); padding: 8px 10px; border-radius: 12px; }
      .case-proof-float strong { font-size: 11px; margin-bottom: 2px; }
      .case-proof-float span { font-size: 10px; line-height: 1.25; }
      .case-quote { padding: 0 16px; font-size: clamp(16px, 4.7vw, 19px); line-height: 1.22; letter-spacing: -.03em; }
      .case-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
      .case-metric { padding: 11px; border-radius: 14px; }
      .case-metric .v { font-size: 21px; }
      .case-metric .l { font-size: 8.8px; }
      .case-method { display: none; }
      .case-result-sub { display: none; }
      .case-metric:nth-child(n+3) { display: block; }
      .case-tabs { justify-content: flex-start; overflow-x: auto; padding: 10px 14px 14px; scroll-snap-type: x mandatory; }
      .case-tab { flex: 0 0 178px; scroll-snap-align: center; padding: 10px 12px; }
      .case-card,
      .feat-card,
      .rev-card,
      .price-card,
      .prob-card { min-width: 0; }
      .week-board { grid-template-columns: 1fr; }
      .portal-split { grid-template-columns: 1fr; }
      .split-arrow { transform: rotate(90deg); }
      .competitor-grid { grid-template-columns: repeat(5, minmax(34px, 1fr)); }
      .invoice-board { grid-template-columns: 1fr; }
      .result-arrow { transform: rotate(90deg); }
      .prob-grid { gap: 18px; margin-top: 38px; }
      .prob-card-ill { height: 240px; min-height: 240px; padding: 0; }
      .prob-card-body { padding: 18px 18px 20px; }
      .prob-card-body h3 { font-size: 18px; margin-bottom: 6px; }
      .prob-card-body p { font-size: 13.5px; line-height: 1.5; }
      .calendar-days { gap: 5px; }
      .calendar-day { min-height: 72px; padding: 7px 5px; }
      .portal-flow { grid-template-columns: 1fr 28px 1.2fr; }
      .portal-bubble { width: 22px; height: 22px; }
      .problem-receipt { padding: 12px; gap: 9px; }
      .receipt-main { padding: 10px; gap: 8px; }
      .receipt-line { padding: 8px 9px; font-size: 11.5px; }
      .trust-compact { grid-template-columns: 1fr; }
      .rev-grid { display: flex; overflow-x: auto; gap: 12px; scroll-snap-type: x mandatory; padding-bottom: 6px; }
      .rev-card { flex: 0 0 82vw; scroll-snap-align: start; padding: 20px; }
      .fit-decision-grid { display: flex; overflow-x: auto; gap: 12px; scroll-snap-type: x mandatory; padding-bottom: 8px; margin-left: -18px; margin-right: -18px; padding-left: 18px; padding-right: 18px; }
      .fit-decision-card,
      .fit-contact-card { flex: 0 0 84vw; scroll-snap-align: start; padding: 20px; }
      .guarantee-box { grid-template-columns: 1fr; gap: 18px; padding: 18px; margin-bottom: 34px; }
      .guarantee-people { gap: 8px; }
      .guarantee-people img { height: 170px; border-radius: 15px; }
      .guarantee-box h3 { font-size: 29px; }
      .guarantee-box p { font-size: 14.5px; }
      .guarantee-proof-row { gap: 7px; }
      .guarantee-proof-row span { font-size: 10.5px; white-space: normal; }
      .price-grid { gap: 14px; margin-top: 34px !important; }
      .price-card { padding: 22px; }
      .price-v { font-size: 30px; }
      #ablauf .sec-head { text-align: center; }
      #ablauf .sec-sub { margin-left: auto; margin-right: auto; }
      .ablauf-grid { gap: 28px; margin-top: 34px; }
      .step { grid-template-columns: 42px 1fr; gap: 15px; padding: 20px 0; }
      .step-num { width: 34px; height: 34px; }
      .step h3 { font-size: 16px; margin-bottom: 5px; }
      .step p { font-size: 13px; line-height: 1.55; }
      .timeline-card { display: none; }
      .scarcity-banner { display: none; }
      body { padding-bottom: 0; }
      .footer-top { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .footer-legal { justify-content: center; }
      .section { padding: 72px 0; }
      .fgrid2 { grid-template-columns: 1fr; }
      .fit-grid { grid-template-columns: 1fr; }
      .form-card { padding: 28px 20px; }
      .form-actions-row { flex-direction: column; }
      .form-back,
      .form-next-btn { width: 100%; }
    }
    @media (max-width: 1024px) {
      .hero-image-wrap { padding-bottom: 24px; }
    }
    .hero-img {
      width: 100%;
      height: auto;
      display: block;
      transform: scale(1.6) translate(150px, 0px);
      transform-origin: right center;
    }
    @media (max-width: 1024px) {
      .hero-img {
        transform: scale(1.1) translateY(0);
        transform-origin: center center;
        max-width: 450px;
        margin: 0 auto;
      }
    }
    @media (max-width: 768px) {
      .hero-image-wrap { order: -1; padding-bottom: 0; margin: 0 0 22px; }
      .hero-lead-card {
        position: absolute;
        left: 12px;
        bottom: 10px;
        right: auto;
        width: min(238px, 72vw);
        margin: 0;
        padding: 10px 11px;
        border-radius: 14px;
        transform: rotate(-1.5deg);
        box-shadow: 0 10px 28px rgba(0,0,0,.13);
      }
      .hero-lead-card::before { height: 3px; border-radius: 14px 14px 0 0; }
      .hero-lead-head { font-size: 10.5px; margin-bottom: 6px; }
      .hero-lead-head strong { font-size: 10px; }
      .hero-lead-name { font-size: 11.5px; margin-bottom: 4px; }
      .hero-lead-text { font-size: 10.8px; line-height: 1.35; margin-bottom: 7px; }
      .hero-lead-check { padding: 5px 8px; font-size: 9.8px; gap: 5px; }
      @keyframes heroLeadIn {
        from { opacity: 0; transform: translateY(10px) rotate(-1.5deg); }
        to { opacity: 1; transform: translateY(0) rotate(-1.5deg); }
      }
    }
  
    
    /* --- NEW PROBLEM STYLES --- */
    .slot.empty, .slot.danger {
      background: repeating-linear-gradient(
        45deg,
        #FFF2F2,
        #FFF2F2 7px,
        #F9DADA 7px,
        #F9DADA 14px
      ) !important;
      border: 1px solid #EFA7A7 !important;
    }
    .result-arrow.danger {
      color: #E02424;
      font-weight: 900;
      transform: scale(1.5);
    }
    .result-value.massive-zero {
      font-size: 72px !important;
      color: #E02424 !important;
      line-height: 1;
      text-shadow: 0 2px 10px rgba(224,36,36,0.15);
    }
    @media (max-width: 768px) {
      .invoice-board .result-arrow.danger {
        justify-self: center;
        width: auto;
        transform: rotate(90deg);
      }
      .result-value.massive-zero { font-size: 64px !important; }
    }