/* =========================================================================
   Uyanik Webdesign – Gastro-Landingpage (BIZ-3)
   Selbst-enthalten: KEINE externen Fonts/CDN/Tracker (DSGVO-sauber).
   Design an den Flyer angelehnt (../flyers/flyer-a5.html).
   ========================================================================= */

/* ---- Poppins, lokal selbst-gehostet (kein CDN, DSGVO-sauber) ---- */
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 400;
             font-display: swap; src: url('fonts/poppins-400.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 500;
             font-display: swap; src: url('fonts/poppins-500.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 600;
             font-display: swap; src: url('fonts/poppins-600.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 700;
             font-display: swap; src: url('fonts/poppins-700.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 800;
             font-display: swap; src: url('fonts/poppins-800.woff2') format('woff2'); }

:root {
    --bg: #f6f6f4;
    --surface: #ffffff;
    --ink: #1a1a1a;
    --ink-soft: #1d1d1f;
    --muted: #6b7280;
    --line: #e8e8e4;
    --green: #16a34a;
    --green-dark: #15803d;
    --green-tint: #e9f7ef;
    --green-line: #c6e9d4;
    --red: #dc2626;
    --red-dark: #b91c1c;
    --red-tint: #fef2f2;
    --red-line: #fbd5d5;
    --dark: #1a1a1a;
    --logo-bg: #111111;
    --radius: 16px;
    --radius-sm: 12px;
    --shadow: 0 1px 2px rgba(17, 17, 17, .04), 0 8px 24px rgba(17, 17, 17, .05);
    --shadow-lg: 0 10px 40px rgba(17, 17, 17, .10);
    --maxw: 1160px;
    --font: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: var(--font);
    color: var(--ink-soft);
    background: var(--bg);
    line-height: 1.55;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

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

/* ---- Icons ---- */
.ic { width: 24px; height: 24px; flex: none; stroke: currentColor; fill: none;
      stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.ic-lg { width: 28px; height: 28px; }

/* =======================  Header  ======================= */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(246, 246, 244, .82);
    backdrop-filter: saturate(1.4) blur(10px);
    -webkit-backdrop-filter: saturate(1.4) blur(10px);
    border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
/* ---- Brand / LieferUP-Logo (Original) ---- */
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; flex: none; }
.brand-emblem { width: 42px; height: 42px; border-radius: 12px; overflow: hidden; display: block;
                box-shadow: 0 5px 14px rgba(46, 195, 106, .32); flex: none; }
.brand-emblem svg { width: 100%; height: 100%; display: block; }
.lieferup-wordmark { font-family: var(--font); font-weight: 600; font-size: 26px; line-height: 1;
                     letter-spacing: -.02em; color: #0E1B12; white-space: nowrap; }
.lieferup-wordmark .up { position: relative; font-weight: 800; color: #2EC36A; }
.lieferup-wordmark .up svg { position: absolute; left: -.085em; top: -.09em;
                             width: .46em; height: .65em; fill: #2EC36A; }
.brand:hover .brand-emblem { box-shadow: 0 6px 18px rgba(46, 195, 106, .42); }
/* PNG-Wortmarke im Header (transparent freigestellt) */
.brand-logo { height: 34px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--muted); text-decoration: none; font-size: 14.5px; font-weight: 500; }
.nav a:hover { color: var(--ink); }
.nav .btn { color: #fff; }

/* Hamburger-Toggle: nur mobil sichtbar (Nav-Links weichen dort dem Off-Canvas-Menü) */
.nav-toggle { display: none; align-items: center; justify-content: center; width: 38px; height: 38px;
              border: 1px solid var(--line); border-radius: 10px; background: var(--surface);
              color: var(--ink); cursor: pointer; flex: none; padding: 0; }
.nav-toggle .ic { width: 20px; height: 20px; }
.nav-toggle[aria-expanded="true"] { border-color: var(--green-line); color: var(--green); }

/* Off-Canvas-Panel: klappt unter dem (sticky) Header auf, Basiszustand versteckt */
.mobile-nav { display: none; position: absolute; top: 100%; left: 0; right: 0;
              background: var(--surface); border-bottom: 1px solid var(--line);
              box-shadow: var(--shadow-lg); flex-direction: column; padding: 4px 20px 12px; }
.mobile-nav-links a { display: block; padding: 13px 0; color: var(--ink-soft); text-decoration: none;
                       font-size: 15.5px; font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-nav-links a:last-child { border-bottom: none; }
.mobile-nav .btn-primary { width: 100%; justify-content: center; margin-top: 14px; }

/* =======================  Buttons  ======================= */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: inherit; font-size: 15px; font-weight: 600; text-decoration: none;
    padding: 12px 20px; border-radius: 999px; border: 1px solid transparent;
    cursor: pointer; transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
    white-space: nowrap;
}
.btn .ic { width: 18px; height: 18px; }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 6px 18px rgba(22, 163, 74, .28); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: #d5d5cf; transform: translateY(-1px); }
.btn-light { background: rgba(255,255,255,.14); color: #fff; }
.btn-light:hover { background: rgba(255,255,255,.22); }

/* =======================  Section scaffolding  ======================= */
section { padding: 60px 0; }
.eyebrow { font-size: 13px; font-weight: 600; letter-spacing: .06em; color: var(--green); text-transform: uppercase; }
.lab { font-size: 12px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); }
h1, h2, h3 { color: var(--ink); line-height: 1.12; letter-spacing: -.01em; }
.section-head { max-width: 640px; margin-bottom: 34px; }
.section-head h2 { font-size: clamp(26px, 4vw, 34px); font-weight: 800; margin-top: 10px; }
.section-head p { color: var(--muted); font-size: 16.5px; margin-top: 12px; }

/* =======================  Hero  ======================= */
.hero { padding: 24px 0 40px; overflow: hidden; min-height: calc(100vh - 68px);
        display: flex; align-items: center; }
.hero > .wrap { width: 100%; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
             align-items: center; gap: 48px; }
.hero-copy { min-width: 0; }
.hero h1 { font-size: clamp(38px, 5.4vw, 58px); font-weight: 800; margin: 14px 0 0; }
.hero .sub { color: var(--muted); font-size: clamp(16px, 2.2vw, 19px); margin-top: 18px; max-width: 560px; }
.hero .sub strong { color: var(--ink); font-weight: 600; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.trust { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 26px; color: var(--muted); font-size: 14px; }
.trust span { display: inline-flex; align-items: center; gap: 7px; }
.trust .ic { width: 17px; height: 17px; color: var(--green); }

/* pill */
.pill { display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--line);
        background: var(--surface); border-radius: 999px; padding: 7px 14px; font-size: 13px;
        color: var(--muted); font-weight: 500; }

/* =======================  Hero-Geräte-Szene  ======================= */
.hero-visual { min-width: 0; display: flex; justify-content: center; }
.device-scene { position: relative; width: 100%; max-width: 660px; height: 520px;
                --brand: #2EC36A; }

/* ---- Bodenschatten ---- */
.scene-shadow { position: absolute; left: 6%; right: 4%; bottom: 30px; height: 46px;
                background: radial-gradient(ellipse at center, rgba(15,27,18,.18), rgba(15,27,18,0) 70%);
                filter: blur(2px); z-index: 0; }

/* ---- 0 % Provision Badge ---- */
.zero-badge { position: absolute; left: -28px; top: -38px; z-index: 6;
              width: 162px; height: 162px; border-radius: 50%;
              background: radial-gradient(circle at 32% 28%, #46d67f, var(--brand) 70%);
              color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center;
              box-shadow: 0 16px 34px rgba(46,195,106,.42); text-align: center;
              border: 4px solid #fff; }
.zb-num { display: inline-flex; align-items: baseline; font-weight: 800; font-size: 62px; line-height: .9; letter-spacing: -.02em; }
.zb-pct { font-size: 33px; font-weight: 700; }
/* Türkisch: Prozentzeichen vor die Zahl (%0 statt 0%) — reine Reihenfolge per CSS */
html[lang="tr"] .zb-num { flex-direction: row-reverse; }
.zb-cap { font-size: 14px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; margin-top: 5px; }

/* ---- gemeinsame Screen-UI-Bausteine ---- */
.ui-top { display: flex; align-items: center; gap: 5px; padding: 7px 10px; background: #f1f2f0;
          border-bottom: 1px solid #e4e6e2; }
.ui-dot { width: 7px; height: 7px; border-radius: 50%; background: #cdd0cb; }
.ui-dot:nth-child(1){ background:#ff6058; } .ui-dot:nth-child(2){ background:#ffbe2e; } .ui-dot:nth-child(3){ background:#2ac93f; }
.ui-addr { margin-left: 8px; font-size: 9.5px; color: #9aa098; background: #fff; border-radius: 5px;
           padding: 3px 10px; flex: 1; }

/* ---- MacBook (aufrecht) ---- */
.macbook { position: absolute; right: 0; top: 40px; width: 470px; z-index: 3; }
.mb-lid { background: #1c1f1d; border-radius: 14px; padding: 9px; box-shadow: 0 20px 46px rgba(15,27,18,.24); }
.mb-screen { background: #f8f9fa; border-radius: 6px; overflow: hidden; aspect-ratio: 16 / 10.4; }

/* ---- Desktop-Admin-Dashboard (im MacBook) ---- */
.adm-page { height: calc(100% - 28px); display: grid; grid-template-columns: 31% 1fr; background: #f5f6f8; }
.adm-side { background: #16181c; padding: 11px 9px; display: flex; flex-direction: column; gap: 12px; }
.adm-brand { display: flex; align-items: center; gap: 6px; }
.adm-logo { width: 22px; height: 22px; border-radius: 6px; background: var(--brand); color: #063018; flex: none;
            font-size: 8px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.adm-brand b { font-size: 8.5px; font-weight: 700; color: #fff; }
.adm-nav { display: flex; flex-direction: column; gap: 3px; }
.adm-nav span { display: flex; align-items: center; gap: 6px; font-size: 8px; font-weight: 600; color: #9aa1aa;
                padding: 5px 7px; border-radius: 7px; }
.adm-nav span i { width: 8px; height: 8px; border-radius: 3px; background: #3a4048; flex: none; }
.adm-nav span.on { background: rgba(46,195,106,.16); color: #fff; }
.adm-nav span.on i { background: var(--brand); }
.adm-main { padding: 11px 12px; display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.adm-head { display: flex; align-items: center; justify-content: space-between; }
.adm-eyebrow { display: block; font-size: 6.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); }
.adm-htxt b { font-size: 13px; font-weight: 800; color: #12151a; }
.adm-live { font-size: 6.5px; font-weight: 800; color: #16a34a; background: #e7f7ee; border: 1px solid #c9ecd7;
            padding: 3px 7px; border-radius: 999px; }
.adm-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.adm-stat { background: #fff; border: 1px solid #e8eaee; border-radius: 9px; padding: 8px; }
.adm-stat b { display: block; font-size: 11.5px; font-weight: 800; color: #12151a; }
.adm-stat i { font-size: 6.5px; font-style: normal; color: #8b919b; }
.adm-stat.green { background: var(--brand); border-color: var(--brand); }
.adm-stat.green b, .adm-stat.green i { color: #fff; }
.adm-orders { background: #fff; border: 1px solid #e8eaee; border-radius: 10px; padding: 9px; flex: 1; min-height: 0;
              display: flex; flex-direction: column; gap: 6px; }
.adm-oh { display: flex; align-items: baseline; justify-content: space-between; }
.adm-oh b { font-size: 8.5px; font-weight: 800; color: #12151a; }
.adm-oh span { font-size: 6.5px; color: #9aa1aa; }
.adm-orow { display: flex; align-items: center; gap: 7px; padding: 5px 6px; border-radius: 8px; background: #f7f8fa; }
.adm-oid { font-size: 7.5px; font-weight: 800; color: #12151a; flex: none; }
.adm-odesc { flex: 1; min-width: 0; font-size: 7px; color: #6b727c; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.adm-oamt { font-size: 7.5px; font-weight: 800; color: #12151a; flex: none; }
.adm-obadge { flex: none; font-size: 6px; font-weight: 800; padding: 2px 6px; border-radius: 999px; }
.adm-obadge.ok { color: #16794a; background: #e7f7ee; }
.adm-obadge.new { color: #b45309; background: #fef1dc; }
.mb-base { position: relative; height: 13px; margin: 0 auto; width: 508px; max-width: none;
           background: linear-gradient(180deg, #d9dcd7, #b7bcb5); border-radius: 0 0 10px 10px;
           left: 50%; transform: translateX(-50%); box-shadow: 0 10px 18px rgba(15,27,18,.14); }
.mb-notch { position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 72px; height: 5px;
            background: #a7aca5; border-radius: 0 0 6px 6px; }

/* ---- iPhone (leicht gedreht, Admin) ---- */
.iphone { position: absolute; right: 4px; bottom: 24px; width: 178px; z-index: 5;
          transform: rotate(8deg); }
.ip-frame { position: relative; background: #141715; border-radius: 26px; padding: 7px;
            box-shadow: 0 22px 40px rgba(15,27,18,.30); }
.ip-island { position: absolute; left: 50%; top: 12px; transform: translateX(-50%); z-index: 2;
             width: 40px; height: 11px; background: #000; border-radius: 8px; }
.ip-ui { background: #fff; border-radius: 20px; overflow: hidden; aspect-ratio: 9 / 18.5;
         display: flex; flex-direction: column; }
/* ---- Mobile-Bestellseite (Musterfirma) ---- */
.mo-status { display: flex; justify-content: space-between; align-items: center;
             font-size: 8px; font-weight: 800; color: #fff; padding: 7px 12px 2px;
             background: #1c2a20; }
.mo-sig { width: 20px; height: 7px; border-radius: 3px; background: rgba(255,255,255,.55); }
.mo-hero { position: relative; display: flex; flex-direction: column; gap: 4px;
           padding: 4px 12px 16px;
           background: linear-gradient(155deg,#1c2a20 0%, #16351f 55%, #0f2417 100%); }
.mo-open { display: inline-flex; align-self: flex-start; align-items: center; gap: 3px;
           font-size: 7px; font-weight: 800; color: #d6f5e2;
           background: rgba(46,195,106,.22); border: 1px solid rgba(46,195,106,.5);
           padding: 2px 7px; border-radius: 999px; }
.mo-title { font-size: 17px; line-height: 1.06; font-weight: 900; color: #fff; letter-spacing: -.02em; }
.mo-tag { font-size: 7.5px; color: rgba(255,255,255,.72); font-weight: 600; }
.mo-pills { display: flex; gap: 5px; margin-top: 3px; }
.mo-pills em { font-size: 7px; font-style: normal; font-weight: 700; color: #eafff2;
               background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
               padding: 2px 6px; border-radius: 999px; }
.mo-card { display: flex; align-items: center; gap: 7px; margin: -10px 12px 0;
           background: #fff; border: 1px solid #eceee9; border-radius: 11px;
           padding: 7px 9px; box-shadow: 0 8px 18px rgba(15,27,18,.10); position: relative; z-index: 2; }
.mo-logo { flex: none; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center;
           font-size: 9px; font-weight: 900; color: #fff; background: var(--brand); }
.mo-info { display: flex; flex-direction: column; gap: 1px; }
.mo-info b { font-size: 9.5px; font-weight: 800; color: #16211a; }
.mo-info i { font-size: 7px; font-style: normal; color: #8b918a; }
.mo-cats { display: flex; gap: 6px; padding: 11px 12px 6px; }
.mo-cats em { font-size: 8px; font-style: normal; font-weight: 700; color: #8b918a; }
.mo-cats em.on { color: #16211a; position: relative; }
.mo-cats em.on::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
                        height: 2px; border-radius: 2px; background: var(--brand); }
.mo-menu { display: flex; flex-direction: column; gap: 7px; padding: 2px 12px 12px; }
.mo-dish { display: flex; align-items: center; gap: 8px; }
.mo-thumb { flex: none; width: 30px; height: 30px; border-radius: 8px; }
.mo-thumb.t1 { background: linear-gradient(135deg,#ffd27a,#ff9d5c); }
.mo-thumb.t2 { background: linear-gradient(135deg,#ff9d8a,#e0574f); }
.mo-dl { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.mo-dl b { font-size: 9px; font-weight: 800; color: #16211a; }
.mo-dl i { font-size: 7px; font-style: normal; color: #8b918a; }
.mo-add { flex: none; width: 20px; height: 20px; border-radius: 7px; display: grid; place-items: center;
          font-size: 13px; font-weight: 700; color: #fff; background: var(--brand);
          box-shadow: 0 4px 9px rgba(46,195,106,.4); }

/* ---- Sunmi-Drucker (andere Richtung, am Boden) ---- */
.printer { position: absolute; left: 6px; bottom: 12px; width: 156px; z-index: 4;
           transform: rotate(-10deg); }
.pr-receipt { position: relative; margin: 0 auto -6px; width: 108px; background: #fff;
              border-radius: 4px 4px 2px 2px; padding: 9px 9px 12px;
              box-shadow: 0 10px 20px rgba(15,27,18,.16);
              -webkit-mask-image: radial-gradient(circle at 4px 100%, transparent 3px, #000 3px);
              display: flex; flex-direction: column; gap: 5px; }
.rc-title { font-size: 7.5px; font-weight: 800; letter-spacing: .06em; color: #1a1f1a; text-align: center; }
.rc-sub { font-size: 5.5px; font-weight: 600; letter-spacing: .04em; color: #8a8f8a; text-align: center; margin-top: -2px; }
.rc-line { height: 5px; border-radius: 3px; background: #e2e4df; }
.rc-line.short { width: 58%; }
.rc-dash { border-top: 1.5px dashed #cdd0cb; height: 0; margin: 2px 0; }
.rc-ok { display: flex; align-items: center; justify-content: center; gap: 4px; font-size: 7.5px;
         font-weight: 800; color: var(--brand); }
.rc-ok .ic { width: 9px; height: 9px; color: var(--brand); stroke-width: 3; }
.pr-body { position: relative; background: linear-gradient(180deg, #2b302d, #191c1a); border-radius: 12px;
           height: 64px; box-shadow: 0 16px 30px rgba(15,27,18,.30); }
.pr-slot { position: absolute; left: 12%; right: 12%; top: 8px; height: 4px; border-radius: 3px;
           background: #0b0d0c; }
.pr-led { position: absolute; right: 12px; bottom: 10px; width: 6px; height: 6px; border-radius: 50%;
          background: var(--brand); box-shadow: 0 0 6px var(--brand); }
.pill .ic { width: 16px; height: 16px; }

/* =======================  Comparison stats  ======================= */
.stats { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
        padding: 26px 24px; text-align: center; box-shadow: var(--shadow); }
.stat.good { border-color: var(--green-line); background: linear-gradient(180deg, #fff, #f6fdf9); }
.stat.bad { border-color: var(--red-line); background: linear-gradient(180deg, #fff, #fef7f7); }
.stat .cap { font-size: 13.5px; color: var(--muted); font-weight: 500; }
.stat.good .cap { color: var(--green-dark); }
.stat.bad .cap { color: var(--red-dark); }
.stat .big { font-size: clamp(40px, 7vw, 54px); font-weight: 800; line-height: 1.05; margin: 6px 0 2px; }
/* Animierter Zähler (0→14): Zahl + %-Span als Flex, damit Türkisch die
   Reihenfolge tauschen kann (%14 statt 14%). Kennzahl bewusst eng (kein Abstand
   Zahl↔%) — wie alle großen Display-Zahlen. */
.big-counter { display: flex; align-items: baseline; justify-content: center; }
html[lang="tr"] .big-counter { flex-direction: row-reverse; }
.stat.good .big { color: var(--green); }
.stat.bad .big { color: var(--red); }
.stat .sub { font-size: 13px; color: var(--muted); }

/* Badge (Statt bisher / Bei uns): Icon per align-items:center exakt auf Textlinie */
.cmp-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700;
             letter-spacing: .05em; text-transform: uppercase; line-height: 1; border-radius: 999px;
             padding: 5px 12px; margin-bottom: 12px; border: 1px solid; background: var(--surface); }
.cmp-badge .ic { width: 12px; height: 12px; stroke-width: 2.5; }
.stat.bad .cmp-badge { color: var(--red); border-color: var(--red-line); }
.stat.good .cmp-badge { color: var(--green-dark); border-color: var(--green-line); }

/* VS-Kreis an der Nahtstelle beider Karten (nur im 2-Spalten-Layout) */
.cmp-vs { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
          width: 34px; height: 34px; border-radius: 50%; background: var(--dark); color: #fff;
          display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700;
          border: 3px solid var(--bg); }

/* =======================  Highlight-Leiste (4 Punkte)  ======================= */
.strip { display: grid; grid-template-columns: repeat(4, 1fr);
         background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
         box-shadow: var(--shadow); overflow: hidden; }
.strip-item { text-align: center; padding: 26px 18px; border-left: 1px solid var(--line); }
.strip-item:first-child { border-left: 0; }
.strip-num { font-size: clamp(28px, 4.4vw, 40px); font-weight: 800; line-height: 1; color: var(--ink);
             letter-spacing: -.02em; }
.strip-num.green { color: var(--green); }
.strip-num .k { color: var(--ink); }
.strip-label { margin-top: 9px; font-size: 13.5px; color: var(--muted); font-weight: 500; }

/* =======================  Advantages hexagon  ======================= */
#vorteile .section-head { margin-left: auto; margin-right: auto; text-align: center; }
.hexagon { position: relative; width: min(680px, 100%); aspect-ratio: 1 / 1; margin: 26px auto 8px; }
.hex-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.hex-outline { fill: none; stroke: var(--line); stroke-width: 1.2; vector-effect: non-scaling-stroke; }
.hex-spoke { stroke: var(--line); stroke-width: 1.2; vector-effect: non-scaling-stroke; transition: stroke .3s ease; }
.hex-spoke.active, .hex-spoke.hover { stroke: var(--green); stroke-width: 2; }

.hex-center { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
              width: min(50%, 236px); text-align: center; display: flex; flex-direction: column; gap: 6px;
              background: var(--green-tint); border: 1px solid var(--green-line); border-radius: 16px;
              padding: 20px 18px; box-shadow: var(--shadow); z-index: 2; }
.hex-center .hc-t { font-weight: 700; font-size: 18px; line-height: 1.25; color: var(--green-dark); }
.hex-center .hc-s { font-size: 13px; line-height: 1.35; color: var(--muted); }

.hex-node { position: absolute; transform: translate(-50%, -50%); width: 168px; z-index: 3;
            display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center;
            background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
            padding: 14px 12px; box-shadow: var(--shadow); cursor: pointer; font-family: inherit;
            transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.hex-node:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.hex-node .ic { width: 28px; height: 28px; color: var(--green); }
.hex-node .hn-t { font-weight: 600; font-size: 15px; line-height: 1.25; color: var(--ink); }
.hex-node .hn-s { display: block; font-size: 13px; line-height: 1.35; color: var(--muted);
                  max-height: 0; opacity: 0; margin-top: 0; overflow: hidden;
                  transition: max-height .38s ease, opacity .3s ease, margin-top .38s ease; }
.hex-node:hover, .hex-node.active { border-color: var(--green); box-shadow: 0 8px 22px rgba(22, 163, 74, .22); }
.hex-node:hover .hn-s, .hex-node.active .hn-s { max-height: 6em; opacity: 1; margin-top: 4px; }
.hex-node:hover .ic, .hex-node.active .ic { color: var(--green-dark); }

/* =======================  Feature tiles  ======================= */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.tile { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
        padding: 26px 16px; text-align: center; box-shadow: var(--shadow); }
.tile .ic { width: 30px; height: 30px; color: var(--green); margin: 0 auto; }
.tile .t { font-size: 15px; font-weight: 600; color: var(--ink); margin-top: 12px; }
.tile .s { font-size: 12.5px; color: var(--muted); margin-top: 4px; }

/* Grüne, gebrandete Leistungs-Sektion mit dezentem Icon-Muster im Hintergrund */
.svc-section { position: relative; overflow: hidden;
               background: linear-gradient(160deg, var(--green) 0%, var(--green-dark) 60%, #0d5227 100%); }
.svc-section .wrap { position: relative; z-index: 1; }
.svc-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.svc-bg svg { display: block; width: 100%; height: 100%; }
.svc-section .section-head { margin-left: auto; margin-right: auto; text-align: center; }
.svc-section .eyebrow { color: rgba(255, 255, 255, .85); }
.svc-section h2 { color: #fff; }
.svc-section .section-head p { color: rgba(255, 255, 255, .85); }
.svc-section .tile { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .22);
                     backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
                     box-shadow: 0 12px 30px rgba(0, 0, 0, .14); }
.svc-section .tiles .tile { transition: transform .3s ease, background-color .3s ease, border-color .3s ease, box-shadow .3s ease; }
.svc-section .tiles .tile:hover { transform: translateY(-4px); background: rgba(255, 255, 255, .2);
                                  border-color: rgba(255, 255, 255, .45);
                                  box-shadow: 0 18px 40px rgba(0, 0, 0, .22); }
.svc-section .tile .ic { color: #fff; }
.svc-section .tile .t { color: #fff; }
.svc-section .tile .s { color: rgba(255, 255, 255, .82); }

/* =======================  Steps (scroll-driven)  ======================= */
/* Zentrierte Timeline: Linie mittig, Karten wechseln links/rechts. */
.steps-flow { position: relative; max-width: 860px; margin: 34px auto 0; }
.steps-line { position: absolute; left: 50%; transform: translateX(-50%); top: 0; height: 0; width: 3px;
              background: var(--ink); border-radius: 3px; overflow: hidden; }
.steps-line-fill { position: absolute; left: 0; top: 0; width: 100%; height: 0; background: var(--green); }

.step-row { position: relative; display: grid; grid-template-columns: 1fr 46px 1fr;
            align-items: center; gap: 22px; padding: 16px 0; }
.step-row .num { grid-column: 2; grid-row: 1; justify-self: center; z-index: 2;
                 width: 40px; height: 40px; border-radius: 999px; background: var(--ink); color: #fff;
                 display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px;
                 transition: background .35s ease, box-shadow .35s ease; }
.step-card { grid-column: 3; grid-row: 1; background: var(--surface); text-align: center;
             border: 2px solid var(--line); border-radius: var(--radius); padding: 22px 24px;
             box-shadow: var(--shadow); transition: border-color .35s ease, box-shadow .35s ease; }
.step-row:nth-of-type(even) .step-card { grid-column: 1; }
.step-card h3 { font-size: 17px; font-weight: 700; margin: 0 0 6px; }
.step-card p { color: var(--muted); font-size: 14.5px; }
.step-row.reached .step-card { border-color: var(--green); box-shadow: 0 10px 26px rgba(22, 163, 74, .16); }
.step-row.reached .num { background: var(--green); box-shadow: 0 0 0 4px var(--green-tint); }

/* Etwas Scroll-Weg pro Schritt, damit sich die Linie sichtbar füllt – aber kompakt. */
.steps-flow.steps-animated .step-row { min-height: 220px; }

/* =======================  Pricing value card  ======================= */
.price-card { max-width: 640px; margin: 0 auto; text-align: center;
              background: var(--surface); border: 1px solid var(--green-line); border-radius: 22px;
              padding: 46px 40px; box-shadow: var(--shadow); }
.price-card .eyebrow { display: inline-block; }
.price-card h2 { font-size: clamp(24px, 3.6vw, 32px); font-weight: 800; margin-top: 4px; }
.price-amount { display: flex; align-items: baseline; justify-content: center; gap: 10px; margin: 20px 0 6px; }
.price-amount .pa-value { font-size: clamp(46px, 8.5vw, 68px); font-weight: 800; line-height: 1;
                          color: var(--green); letter-spacing: -1.5px; }
.price-amount .pa-per { font-size: 17px; font-weight: 600; color: var(--muted); }
.price-sub { color: var(--muted); font-size: 14.5px; }
.price-card .btn { margin-top: 30px; }
.price-fine { color: var(--muted); font-size: 12.5px; line-height: 1.55;
              max-width: 420px; margin: 22px auto 0; opacity: .85; }

/* =======================  Example band (Gewinn-Erinnerung)  ======================= */
.example { max-width: 760px; margin: 0 auto; text-align: center;
           background: var(--green-tint); border: 1px solid var(--green-line); border-radius: var(--radius);
           padding: 28px 32px; }
.example .lab { color: var(--green-dark); }
.example p { font-size: clamp(16px, 2.4vw, 20px); color: #374151; margin-top: 8px; line-height: 1.5; }
.example strong { color: var(--ink); font-weight: 700; }
.example .hl { color: var(--green); font-weight: 700; }

/* =======================  CTA band  ======================= */
/* reines Schwarz (statt --dark), damit der schwarze Hintergrund des Logo-PNGs randlos verschmilzt */
.cta-band { background: #000; border-radius: 24px; padding: 44px 46px 46px; color: #fff;
            display: grid; grid-template-columns: 1fr auto; align-items: center;
            column-gap: 40px; row-gap: 40px; }
.cta-brand { grid-column: 1 / -1; display: flex; align-items: center;
             padding-bottom: 28px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
/* Höhe inkl. Logo-Eigenrand (~40 %), damit die sichtbare Wortmarke wie zuvor ~46 px groß wirkt */
.cta-logo { height: 76px; width: auto; display: block; }
.cta-band h2 { color: #fff; font-size: clamp(24px, 3.6vw, 32px); font-weight: 700; max-width: 460px; }
.cta-band p { color: #c8c8c4; margin-top: 12px; font-size: 15.5px; }
.cta-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 22px; }
/* beide Buttons gleich breit: Container schrumpft auf den breiteren (WhatsApp), der Anruf-Button füllt ihn aus */
.cta-btns { display: inline-flex; flex-direction: column; align-items: stretch; gap: 12px; }
.btn-wa, .btn-call { display: inline-flex; align-items: center; justify-content: center; gap: 9px;
                      font-size: 15px; font-weight: 500; padding: 12px 20px; border-radius: 10px;
                      text-decoration: none; }
/* dunkler Text auf WhatsApp-Gruen statt weiss — sonst faellt der Kontrast unter WCAG AA */
.btn-wa { background: #25D366; color: #0b3d1f; }
.btn-wa:hover { background: #1fb959; }
.btn-call { background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16); color: #f3f3f1; }
.btn-call:hover { background: rgba(255, 255, 255, .14); }
.btn-wa .ic, .btn-call .ic { color: inherit; }
.cta-links { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.cta-links a { display: inline-flex; align-items: center; gap: 10px; color: #f3f3f1;
               text-decoration: none; font-size: 15.5px; font-weight: 500; }
.cta-links a:hover { color: #fff; }
.cta-links .ic { color: var(--green); }
.cta-qr { flex: none; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12);
          border-radius: 16px; padding: 18px; width: 180px;
          display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cta-qr-head { display: inline-flex; align-items: center; gap: 7px; color: #25D366; font-size: 13px; font-weight: 500; }
.cta-qr-head .ic { width: 17px; height: 17px; color: #25D366; }
.cta-qr img { width: 132px; height: 132px; border-radius: 10px; background: #fff; padding: 8px; }
.cta-qr span { font-size: 12px; color: #c8c8c4; text-align: center; line-height: 1.35; }

/* =======================  Footer  ======================= */
.site-footer { border-top: 1px solid var(--line); padding: 30px 0 40px; margin-top: 20px; }
.site-footer .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.site-footer .cr { color: var(--muted); font-size: 13.5px; }
.site-footer nav { display: flex; gap: 22px; }
.site-footer nav a { color: var(--muted); text-decoration: none; font-size: 13.5px; }
.site-footer nav a:hover { color: var(--ink); }

/* =======================  Legal pages  ======================= */
.legal { padding: 46px 0 60px; }
.legal .wrap { max-width: 780px; }
.legal .back { display: inline-flex; align-items: center; gap: 7px; color: var(--muted);
               text-decoration: none; font-size: 14px; font-weight: 500; margin-bottom: 24px; }
.legal .back:hover { color: var(--ink); }
.legal h1 { font-size: clamp(28px, 5vw, 38px); font-weight: 800; margin-bottom: 8px; }
.legal h2 { font-size: 19px; font-weight: 700; margin: 30px 0 8px; }
.legal p, .legal li { color: #374151; font-size: 15.5px; margin-bottom: 10px; }
.legal a { color: var(--green-dark); }
.legal strong { color: var(--ink); }
.legal .note { background: var(--green-tint); border: 1px solid var(--green-line);
               border-radius: var(--radius-sm); padding: 14px 16px; font-size: 14px; color: #374151; }
.legal .updated { color: var(--muted); font-size: 13.5px; margin-top: 30px; }

/* =======================  Language switcher  ======================= */
.langsel { position: relative; flex: none; }
.lang-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
    padding: 8px 12px; font-family: inherit; font-size: 13.5px; font-weight: 600;
    color: var(--ink); line-height: 1; cursor: pointer;
    transition: border-color .12s ease;
}
.lang-btn:hover { border-color: #d5d5cf; }
.lang-btn .ic { width: 16px; height: 16px; color: var(--muted); }
.lang-btn .chev { width: 14px; height: 14px; transition: transform .15s ease; }
.lang-btn[aria-expanded="true"] .chev { transform: rotate(180deg); }

.lang-menu {
    position: absolute; top: calc(100% + 8px); right: 0; min-width: 186px;
    max-height: min(70vh, 460px); overflow-y: auto;
    background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
    box-shadow: var(--shadow-lg); padding: 6px; z-index: 60; display: none;
}
.lang-menu.open { display: block; }
.lang-menu button {
    display: flex; align-items: center; gap: 10px;
    width: 100%; background: none; border: 0; border-radius: 9px; padding: 9px 11px;
    font-family: inherit; font-size: 14px; color: var(--ink); text-align: left; cursor: pointer;
}
.lang-menu button:hover { background: var(--bg); }
.lang-menu button[aria-current="true"] { font-weight: 600; }
.lang-menu button .flag { font-size: 15px; line-height: 1; width: 1.4em; text-align: center; flex: none; }
.lang-menu button .name { flex: 1; }
/* Wo Emoji-Flaggen nicht als Fahne rendern (z. B. Windows): ausblenden, Name bleibt */
.no-flags .lang-menu button .flag { display: none; }
.lang-menu button .tick { width: 16px; height: 16px; color: var(--green); opacity: 0; flex: none; }
.lang-menu button[aria-current="true"] .tick { opacity: 1; }

/* =======================  FAQ  ======================= */
.faq-list { display: grid; gap: 12px; }
.faq-item {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
    box-shadow: var(--shadow); overflow: hidden;
}
.faq-item summary {
    list-style: none; cursor: pointer; padding: 20px 22px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    font-size: 16.5px; font-weight: 600; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }
.faq-item summary .chev { width: 20px; height: 20px; color: var(--green); flex: none; transition: transform .2s ease; }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item .ans { padding: 0 22px 20px; color: #374151; font-size: 15px; line-height: 1.6; }
.faq-item .ans strong { color: var(--ink); font-weight: 700; }
/* Quellen-Nachweis unter Antworten mit konkreten Anbieter-Zahlen */
.faq-item .ans:has(+ .faq-src) { padding-bottom: 8px; }
.faq-item .faq-src { padding: 0 22px 18px; color: var(--muted); font-size: 13px; }
.faq-item .faq-src a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.faq-item .faq-src a:hover { color: var(--green); }

/* =======================  RTL (Arabisch)  ======================= */
[dir="rtl"] .section-head,
[dir="rtl"] .hero .sub,
[dir="rtl"] .adv .t, [dir="rtl"] .adv .s,
[dir="rtl"] .price .plist li,
[dir="rtl"] .faq-item summary, [dir="rtl"] .faq-item .ans, [dir="rtl"] .faq-item .faq-src,
[dir="rtl"] .example p { text-align: right; }
/* Sprachmenü öffnet linksbündig unter dem Toggle */
[dir="rtl"] .lang-menu { right: auto; left: 0; }
/* Marke, Kontaktzeilen und Zahlen bleiben in Leserichtung LTR */
[dir="rtl"] .logo span, [dir="rtl"] .cta-links a, [dir="rtl"] .btn-call, [dir="rtl"] .cta-qr-head,
[dir="rtl"] .stat .big { direction: ltr; }

/* =======================  Responsive  ======================= */
@media (max-width: 980px) {
    /* Hero stapeln: Text oben, Geräte-Szene darunter zentriert */
    .hero { min-height: 0; padding: 32px 0 40px; }
    .hero-grid { grid-template-columns: 1fr; gap: 26px; }
    .hero .sub { max-width: none; }
    .hero-visual { order: 2; }
    .device-scene { margin: 6px auto 0; }
}
@media (max-width: 860px) {
    .tiles { grid-template-columns: repeat(2, 1fr); }
    .strip { grid-template-columns: repeat(2, 1fr); }
    .strip-item:nth-child(odd) { border-left: 0; }
    .strip-item:nth-child(3), .strip-item:nth-child(4) { border-top: 1px solid var(--line); }
    .price { grid-template-columns: 1fr; padding: 30px; gap: 24px; }
    .cta-band { padding: 30px 26px 34px; grid-template-columns: 1fr; }
    .cta-brand { padding-bottom: 22px; }
    .cta-logo { height: 58px; }
    /* auf dem eigenen Handy tippt man den WhatsApp-Link direkt an — QR-Scan waere dort unnoetig */
    .cta-qr { display: none; }
    .cta-actions { align-items: stretch; }
    .cta-btns { width: 100%; }
    .btn-wa, .btn-call { width: 100%; }
}
@media (max-width: 560px) {
    section { padding: 46px 0; }
    .hero { padding: 32px 0 26px; }
    /* Geräte-Szene proportional verkleinern, damit sie auf schmale Screens passt */
    .device-scene { transform: scale(.56); transform-origin: top center; height: 300px; }
    .nav .nav-link { display: none; }
    /* Nav-Links weichen dem Hamburger-Menü — sonst blieben Vorteile/Leistungen/Preis/FAQ unerreichbar */
    .nav-toggle { display: inline-flex; }
    .mobile-nav.open { display: flex; }
    /* Header kompakter, damit Logo + Button auf schmalen Screens mit Rand passen */
    .site-header .wrap { height: 60px; }
    .logo { padding: 8px 12px; }
    .logo span { font-size: 12.5px; letter-spacing: .1em; }
    .nav { gap: 10px; }
    /* CTA zieht ins Mobile-Menü um (siehe .mobile-nav .btn-primary) — Kopfzeile bleibt schlank */
    .nav > .btn-primary { display: none; }
    /* Sprachumschalter auf schmalen Screens kompakt (Chevron weg, Pfeil bleibt) */
    .lang-btn { padding: 8px 10px; }
    .lang-btn .chev { display: none; }
    .stats { grid-template-columns: 1fr; }
    /* gestapeltes Layout: VS-Kreis per order an die Nahtstelle zwischen die Karten setzen
       (statt der 50/50%-Position aus dem 2-Spalten-Layout, die hier sonst mittig in einer Karte läge) */
    .stat.bad { order: 1; }
    .cmp-vs { position: static; transform: none; order: 2; margin: -9px auto; }
    .stat.good { order: 3; }
    .hexagon { width: 100%; }
    .hex-node { width: 104px; padding: 8px 6px; gap: 3px; }
    .hex-node .ic { width: 20px; height: 20px; }
    .hex-node .hn-t { font-size: 11px; }
    .hex-node .hn-s { font-size: 10px; }
    .hex-center { width: 42%; padding: 10px 8px; }
    .hex-center .hc-t { font-size: 12px; }
    /* Mobil: klassische Timeline links, Karten rechts (kein Wechsel-Layout) */
    .step-row { grid-template-columns: 40px 1fr; gap: 14px; }
    .steps-line { left: 20px; transform: none; }
    .step-row .num { grid-column: 1; }
    .step-card, .step-row:nth-of-type(even) .step-card { grid-column: 2; text-align: left; }
    .steps-flow.steps-animated .step-row { min-height: 200px; }
    .price-card { padding: 34px 22px; }
    .tiles { grid-template-columns: 1fr 1fr; }
    .faq-item summary { padding: 16px; font-size: 15px; gap: 12px; }
    .faq-item .ans { padding: 0 16px 16px; }
}

/* ===== Scroll-Reveal (dynamische Einblendung beim Scrollen) ===== */
html.reveal-on .rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .72s cubic-bezier(.16,.84,.44,1),
              transform .72s cubic-bezier(.16,.84,.44,1);
  transition-delay: calc(var(--rv-d, 0) * 1ms);
  will-change: opacity, transform;
}
html.reveal-on .rv.rv-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html.reveal-on .rv { opacity: 1; transform: none; transition: none; }
}
