/* ===== Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
    --bg: #020817;
    --bg-2: #050c24;
    --panel: rgba(255,255,255,.03);
    --border: rgba(255,255,255,.08);
    --text: #ffffff;
    --muted: #9eb1d1;
    --green: #10A37F;
    --green-2: #00FF9A;
    --green-3: #7CFFB4;
    --gold: #FFD700;
    --gold-2: #FFB800;
    --red: #DD0000;
    --gold-flag: #FFCC00;
    --black-flag: #000000;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }

h1, h2, h3 { margin: 0 0 12px; font-weight: 800; letter-spacing: -.01em; }
h2 { font-size: clamp(26px, 4vw, 40px); text-align: center; margin-bottom: 18px; }
h3 { font-size: 18px; }
p { margin: 0 0 10px; color: #c9d4ea; }
.muted { color: var(--muted); }
.gold { color: var(--gold); }

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 22px 0 36px;
    background:
        radial-gradient(900px 700px at 80% 30%, rgba(20,80,60,.35), transparent 60%),
        radial-gradient(800px 600px at 10% 80%, rgba(8,30,80,.5), transparent 60%),
        linear-gradient(180deg, #020817 0%, #050c24 100%);
    overflow: hidden;
    min-height: 100vh;
}

/* Brandenburg Gate silhouette */
.bg-gate {
    position: absolute;
    top: 6%;
    left: 20%;
    width: 60%;
    max-width: 700px;
    height: 70%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 500' fill='none'><g opacity='0.18'><rect x='40' y='420' width='520' height='40' fill='%23a89976'/><rect x='80' y='110' width='440' height='320' fill='%23867659'/><rect x='100' y='160' width='60' height='270' fill='%23695b40'/><rect x='180' y='160' width='60' height='270' fill='%23695b40'/><rect x='260' y='160' width='80' height='270' fill='%23695b40'/><rect x='360' y='160' width='60' height='270' fill='%23695b40'/><rect x='440' y='160' width='60' height='270' fill='%23695b40'/><rect x='60' y='90' width='480' height='30' fill='%237a6b4d'/><rect x='75' y='75' width='450' height='20' fill='%23695b40'/><g transform='translate(255 20)'><rect x='0' y='30' width='90' height='40' fill='%237a6b4d'/><rect x='15' y='10' width='15' height='25' fill='%236b5d40'/><rect x='35' y='5' width='20' height='30' fill='%236b5d40'/><rect x='60' y='10' width='15' height='25' fill='%236b5d40'/></g></g></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    filter: blur(.5px);
    z-index: 0;
}

/* German flag diagonal */
.bg-flag {
    position: absolute;
    right: -10%;
    top: 0;
    bottom: 0;
    width: 320px;
    background: linear-gradient(
        180deg,
        var(--black-flag) 0%,
        var(--black-flag) 33.3%,
        var(--red) 33.3%,
        var(--red) 66.6%,
        var(--gold-flag) 66.6%,
        var(--gold-flag) 100%
    );
    transform: skewX(-12deg);
    opacity: .5;
    filter: blur(1px);
    z-index: 1;
}

.bg-glow { display: none; }

.topline {
    display: flex; align-items: center; justify-content: space-between;
    padding: 4px 0 18px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { display: inline-flex; padding: 6px 10px; background: #002a1f; border-radius: 12px; }
.brand-name { font-size: 28px; font-weight: 800; letter-spacing: .5px; }

.de-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 16px; background: rgba(0,0,0,.55);
    border: 1px solid rgba(255,255,255,.18); border-radius: 14px;
    font-weight: 800; font-size: 13px; line-height: 1.1;
    backdrop-filter: blur(8px);
}
.de-badge.sm { padding: 6px 12px; font-size: 12px; }
.de-flag { display: inline-flex; flex-direction: column; width: 24px; height: 18px; border-radius: 3px; overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,.4); }
.de-flag span { display: block; flex: 1; }
.de-flag span:nth-child(1) { background: var(--black-flag); }
.de-flag span:nth-child(2) { background: var(--red); }
.de-flag span:nth-child(3) { background: var(--gold-flag); }

.hero-grid {
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px;
    align-items: center; padding-top: 24px;
}

.hero-text h1 {
    font-size: clamp(40px, 8.5vw, 96px);
    line-height: .98;
    margin: 0 0 22px;
    letter-spacing: -.02em;
    text-transform: uppercase;
    font-weight: 900;
    text-shadow: 0 4px 24px rgba(0,0,0,.55);
}
.hero-text h1 .line { display: block; }

.features { display: flex; flex-direction: column; gap: 12px; margin: 22px 0 26px; max-width: 540px; }
.feature {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 18px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
}
.feature .ic {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border: 1px solid rgba(16,163,127,.55); border-radius: 50%;
    background: rgba(16,163,127,.1);
    flex-shrink: 0;
}
.feature .ft { font-weight: 700; font-size: 18px; letter-spacing: .02em; line-height: 1.1; }
.feature .ft-strong { font-size: 22px; font-weight: 900; }

/* CTA Button */
.cta {
    position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    width: 100%; max-width: 540px;
    padding: 20px 26px; margin: 4px 0 18px;
    color: #ffffff;
    background: #10A37F;
    border-radius: 14px;
    font-weight: 800; font-size: clamp(18px, 2.4vw, 22px);
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #0d8a6b;
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
    cursor: pointer;
    transition: transform .12s ease, background .15s ease;
}
.cta:hover { background: #0d8a6b; transform: translateY(-1px); }
.cta:active { transform: translateY(1px); }
.cta.md { max-width: 460px; padding: 16px 22px; font-size: 17px; margin-top: 10px; }
.cta.lg { max-width: 620px; padding: 24px 28px; font-size: clamp(20px, 2.6vw, 24px); }

/* Stores */
.stores { display: flex; gap: 10px; margin: 6px 0 12px; flex-wrap: wrap; }
.store {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 14px; background: #000; color: #fff;
    border-radius: 12px; border: 1px solid rgba(255,255,255,.14);
    min-width: 158px;
}
.store small { display: block; font-size: 10px; color: #c9d4ea; opacity: .85; line-height: 1; margin-bottom: 3px; }
.store strong { font-size: 16px; font-weight: 700; line-height: 1; }

.trust {
    display: inline-flex; align-items: center; gap: 8px;
    color: #c9d4ea; font-size: 12px; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    margin-top: 10px;
}

/* Phone mockup */
.hero-phone { display: flex; justify-content: center; align-items: center; perspective: 1000px; }
.phone {
    position: relative; width: 320px; height: 660px;
    background: #0a0f1c; border: 12px solid #0c1224;
    border-radius: 44px;
    box-shadow:
        0 30px 80px rgba(0,0,0,.6),
        0 0 0 2px rgba(255,255,255,.06);
    overflow: hidden;
    transform: rotate(-4deg);
    transition: transform .4s ease;
}
.phone:hover { transform: rotate(0deg) scale(1.02); }
.phone-notch {
    position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
    width: 120px; height: 24px; background: #000; border-radius: 14px;
    z-index: 3;
}
.phone-screen {
    position: relative; width: 100%; height: 100%;
    background: linear-gradient(180deg, #0e1830 0%, #0a1228 100%);
    padding: 36px 14px 12px; display: flex; flex-direction: column;
}
.ph-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 6px 14px; color: #fff; font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.ph-burger { width: 18px; height: 2px; background: #fff; box-shadow: 0 6px 0 #fff, 0 -6px 0 #fff; }
.ph-title { font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.dot-online { width: 8px; height: 8px; background: #10A37F; border-radius: 50%; }
.ph-edit { opacity: .9; }
.ph-msgs { flex: 1; padding: 12px 4px; overflow: hidden; display: flex; flex-direction: column; gap: 10px; }
.msg { font-size: 12px; line-height: 1.35; max-width: 88%; }
.msg.user {
    align-self: flex-end; padding: 10px 12px; border-radius: 16px 16px 4px 16px;
    background: linear-gradient(160deg, #0a4d3a, #0a3b2d); color: #d8ffea;
}
.msg.bot { display: flex; gap: 6px; align-items: flex-start; }
.msg.bot .av { width: 22px; height: 22px; border-radius: 50%; background: #10A37F; flex-shrink: 0; }
.msg.bot .bb { padding: 10px 12px; border-radius: 16px 16px 16px 4px; background: rgba(255,255,255,.06); color: #e6ecff; }
.ph-input {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 14px; margin: 6px -6px 0;
    background: rgba(255,255,255,.05); color: #97a4c3;
    border-radius: 24px; font-size: 12px;
}
.ph-input .send { width: 28px; height: 28px; border-radius: 50%; background: #10A37F; position: relative; }
.ph-input .send::after { content: ''; position: absolute; left: 9px; top: 8px; width: 10px; height: 10px; border-top: 2px solid #fff; border-right: 2px solid #fff; transform: rotate(45deg); }

/* ===== Social Proof ===== */
.proof {
    padding: 30px 0; background: linear-gradient(180deg, #050c24 0%, #0a1230 100%);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.pp { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
.pp > div { padding: 10px 6px; }
.pp strong { display: block; font-size: clamp(20px, 3vw, 30px); font-weight: 900; color: #fff; }
.pp span { color: var(--muted); font-size: 13px; }

/* ===== Countdown ===== */
.countdown-sec { padding: 50px 0 30px; text-align: center; }
.countdown { display: inline-flex; gap: 14px; margin: 18px 0; }
.c-cell {
    min-width: 78px; padding: 14px 6px;
    background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
}
.c-cell .num { display: block; font-size: clamp(28px, 5vw, 40px); font-weight: 900; color: #fff; line-height: 1; }
.c-cell small { display: block; color: var(--muted); font-size: 11px; margin-top: 6px; text-transform: uppercase; letter-spacing: .15em; }

/* ===== Benefits ===== */
.benefits { padding: 60px 0; }
.b-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.b-card {
    padding: 22px; border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
    border: 1px solid var(--border);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.b-card:hover { transform: translateY(-3px); border-color: rgba(16,163,127,.5); }
.b-ic {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(16,163,127,.12); border: 1px solid rgba(16,163,127,.35);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}
.b-card h3 { margin: 8px 0 6px; }
.b-card p { font-size: 14.5px; color: #b8c4dd; margin: 0; }

/* ===== How ===== */
.how { padding: 50px 0; background: linear-gradient(180deg, transparent, rgba(0,0,0,.25)); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 26px; }
.step {
    padding: 24px; border-radius: 18px; text-align: center;
    background: linear-gradient(180deg, rgba(16,163,127,.05), transparent);
    border: 1px solid rgba(16,163,127,.25);
}
.s-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 50px; height: 50px; border-radius: 50%;
    background: #10A37F;
    color: #fff; font-size: 22px; font-weight: 800; margin-bottom: 12px;
}
.step p { font-size: 14.5px; color: #b8c4dd; }

/* ===== Reviews ===== */
.reviews { padding: 60px 0; }
.r-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 26px; }
.r-card {
    padding: 22px; border-radius: 18px;
    background: rgba(255,255,255,.03); border: 1px solid var(--border);
}
.r-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 8px; }
.r-card p { font-size: 15px; color: #d6deef; }
.r-author { display: flex; align-items: center; gap: 10px; margin-top: 14px; font-size: 13px; color: var(--muted); }
.r-author .verified { color: #7CFFB4; margin-left: auto; font-size: 12px; }
.ava {
    width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800; color: #fff; font-size: 14px;
}
.ava-1 { background: linear-gradient(135deg, #FF6B6B, #C70039); }
.ava-2 { background: linear-gradient(135deg, #4ECDC4, #1A535C); }
.ava-3 { background: linear-gradient(135deg, #FFD93D, #FF6B35); }
.ava-4 { background: linear-gradient(135deg, #A8E6CF, #3D5A80); }

/* ===== FAQ ===== */
.faq { padding: 50px 0 60px; max-width: 820px; margin: 0 auto; }
.faq .container > details {
    border: 1px solid var(--border); border-radius: 14px;
    padding: 14px 18px; margin: 10px 0;
    background: rgba(255,255,255,.02);
    transition: border-color .2s ease;
}
.faq details[open] { border-color: rgba(16,163,127,.4); background: rgba(16,163,127,.04); }
.faq summary { cursor: pointer; font-weight: 700; padding-right: 30px; position: relative; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 0; top: -2px; font-size: 22px; color: var(--green-3); transition: transform .2s ease; }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin: 10px 0 0; color: #b8c4dd; font-size: 14.5px; }

/* ===== Final CTA ===== */
.final { padding: 60px 0 90px; }
.final-box {
    position: relative;
    padding: 40px 28px;
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(180deg, rgba(16,163,127,.08), rgba(0,0,0,.25));
    border: 1px solid rgba(255,255,255,.1);
    overflow: hidden;
}
.final-box .de-badge { margin: 0 auto 16px; }
.final-box h2 { font-size: clamp(26px, 4.5vw, 42px); margin-bottom: 8px; }
.final-box .trust { margin-top: 14px; justify-content: center; }
.final-box .cta { margin: 18px auto 0; }

.confirm-page {
    min-height: 100vh;
    background:
        radial-gradient(900px 700px at 80% 30%, rgba(20,80,60,.35), transparent 60%),
        radial-gradient(800px 600px at 10% 80%, rgba(8,30,80,.5), transparent 60%),
        linear-gradient(180deg, #020817 0%, #050c24 100%);
}
.confirm-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
}
.confirm-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 42px 30px;
    border-radius: 24px;
    text-align: center;
    background: linear-gradient(180deg, rgba(16,163,127,.08), rgba(0,0,0,.28));
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.confirm-brand {
    justify-content: center;
    margin-bottom: 22px;
}
.confirm-icon {
    width: 84px;
    height: 84px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #10A37F;
    border-radius: 50%;
    margin-bottom: 20px;
}
.confirm-card h1 {
    font-size: clamp(34px, 7vw, 58px);
    line-height: 1;
    margin-bottom: 14px;
}
.confirm-subtitle {
    max-width: 620px;
    margin: 0 auto 24px;
    color: #c9d4ea;
    font-size: 17px;
}
.confirm-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 24px 0;
}
.confirm-meta div {
    padding: 14px 10px;
    border-radius: 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
}
.confirm-meta strong {
    display: block;
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 5px;
}
.confirm-meta span {
    color: #fff;
    font-weight: 800;
}
.confirm-cta {
    margin: 10px auto 16px;
}
.confirm-note {
    color: var(--muted);
    font-size: 13px;
    margin: 0;
}

/* ===== Footer ===== */
.footer { padding: 30px 0 100px; border-top: 1px solid var(--border); background: #020817; }
.footer .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer p { margin: 0; color: var(--muted); font-size: 13px; }
.footer nav { display: flex; gap: 18px; }
.footer a { color: var(--muted); text-decoration: none; font-size: 13px; }
.footer a:hover { color: #fff; }

/* ===== Sticky CTA (mobile) ===== */
.sticky-cta {
    position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 100;
    display: none; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 18px;
    background: #10A37F;
    color: #fff; font-weight: 800; text-decoration: none; font-size: 16px;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0,0,0,.4);
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; gap: 28px; padding-top: 8px; }
    .hero-phone { order: 2; margin-top: -8px; }
    .hero-text { order: 1; }
    .phone { transform: rotate(0); width: 260px; height: 540px; border-width: 10px; }
    .bg-gate { width: 90%; left: 5%; opacity: .55; }
    .bg-flag { right: -20%; width: 240px; opacity: .35; }
    .b-grid, .steps, .r-grid { grid-template-columns: 1fr; }
    .pp { grid-template-columns: repeat(2, 1fr); }
    .sticky-cta { display: inline-flex; }
    .footer { padding-bottom: 110px; }
    .footer .container { flex-direction: column; text-align: center; }
    .hero-text h1 { font-size: clamp(36px, 12vw, 64px); line-height: 1; }
}

@media (max-width: 540px) {
    .topline { flex-direction: row; gap: 8px; }
    .brand-name { font-size: 22px; }
    .de-badge { padding: 6px 10px; font-size: 11px; }
    .de-flag { width: 20px; height: 14px; }
    .features { gap: 10px; }
    .feature { padding: 12px 14px; }
    .feature .ft { font-size: 14px; }
    .feature .ft-strong { font-size: 16px; }
    .cta { padding: 18px 18px; }
    .confirm-card { padding: 34px 18px; }
    .confirm-meta { grid-template-columns: 1fr; }
    .countdown { gap: 8px; }
    .c-cell { min-width: 64px; padding: 12px 4px; }
    .stores { gap: 8px; }
    .store { min-width: 140px; padding: 8px 12px; }
    .phone { width: 260px; height: 540px; border-width: 10px; }
}

