/* ====================================
   KANAL-FLIEGER – 1:1 Lovable Design
   ==================================== */

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

:root {
  /* Exact Lovable colors from CSS vars */
  --bg:        #131920;   /* oklch(16% .012 240) */
  --surface:   #1a2230;   /* oklch(21% .012 240) */
  --surface2:  #1e2838;   /* oklch(26% .012 240) */
  --border:    rgba(255,255,255,0.10);
  --fg:        #f5f6f7;   /* oklch(97% .005 240) */
  --fg-muted:  #8b9cb5;   /* oklch(72% .012 240) */
  --green:     #4ade80;   /* oklch(72% .18 142) */
  --green-dk:  #22c55e;   /* oklch(65% .2 142)  */
  --green-bg:  rgba(74,222,128,0.10);
  --green-brd: rgba(74,222,128,0.25);
  --red:       #f87171;   /* oklch(62% .22 25)  */
  --red-bg:    rgba(248,113,113,0.10);
  --blue-bg:   rgba(96,165,250,0.15);
  --radius:    0.75rem;
  --shadow:    0 4px 24px rgba(0,0,0,0.30);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.40);
}

html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif; background: var(--bg); color: var(--fg); line-height: 1.6; }

/* ---- UTILS ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.mt-48 { margin-top: 48px; }
.w-full { width: 100%; display: block; text-align: center; }
.mt-auto { margin-top: auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius); font-family: inherit;
  font-size: 15px; font-weight: 600; text-decoration: none; cursor: pointer;
  border: 1.5px solid transparent; transition: all 0.2s ease; white-space: nowrap;
}
.btn-green  { background: var(--green); color: #0f1a10; border-color: var(--green); }
.btn-green:hover { background: var(--green-dk); border-color: var(--green-dk); transform: translateY(-1px); }
.btn-dark   { background: var(--surface2); color: var(--fg); border-color: var(--border); }
.btn-dark:hover { border-color: var(--green); color: var(--green); }
.btn-outline-nav { background: transparent; color: var(--fg); border-color: var(--border); }
.btn-outline-nav:hover { border-color: var(--green); color: var(--green); }
.btn-outline-dark { background: transparent; color: var(--fg-muted); border-color: var(--border); }
.btn-outline-dark:hover { border-color: var(--green); color: var(--green); }
.btn-outline-footer { background: transparent; color: var(--fg-muted); border-color: var(--border); }
.btn-outline-footer:hover { color: var(--green); border-color: var(--green); }
.btn-lg { padding: 15px 32px; font-size: 16px; }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--green); color: #0f1a10;
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 24px; font-size: 13px; font-weight: 600;
}
.topbar-left { display: flex; align-items: center; gap: 8px; }
.topbar-dot { width: 8px; height: 8px; background: #0f1a10; border-radius: 50%; display: inline-block; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ opacity:1; } 50%{ opacity:0.5; } }
.topbar-right { display: flex; gap: 24px; }
.topbar-right a { color: #0f1a10; text-decoration: none; font-weight: 700; }
.topbar-right a:hover { opacity: 0.75; }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(19,25,32,0.95); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 20px; padding: 14px 24px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-img { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; background: #111; }
.logo-name { font-size: 18px; font-weight: 800; color: var(--fg); display: block; line-height: 1.1; }
.logo-sub  { font-size: 11px; color: var(--fg-muted); display: block; }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a { padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--fg-muted); text-decoration: none; transition: all 0.2s; }
.nav-links a:hover { color: var(--fg); background: var(--surface2); }
.nav-cta { display: flex; gap: 10px; flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--fg); border-radius: 2px; }
.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 12px 24px 16px; border-top: 1px solid var(--border); }
.mobile-menu a { padding: 10px 14px; border-radius: 8px; font-weight: 500; color: var(--fg-muted); text-decoration: none; }
.mobile-menu.open { display: flex; }

/* ---- HERO ---- */
.hero {
  padding: 80px 0 80px;
  background: radial-gradient(ellipse at 80% 0%, rgba(74,222,128,0.12) 0%, transparent 60%),
              linear-gradient(180deg, var(--bg) 0%, #0e1a14 100%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-bg); border: 1px solid var(--green-brd);
  color: var(--green); padding: 6px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.8px;
  margin-bottom: 24px;
}
.badge-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; animation: pulse 1.5s infinite; }
.hero-title { font-size: clamp(38px, 5vw, 62px); font-weight: 900; line-height: 1.08; margin-bottom: 20px; }
.text-green { color: var(--green); }
.hero-desc { font-size: 17px; color: var(--fg-muted); margin-bottom: 28px; max-width: 560px; }
.hero-desc strong { color: var(--fg); font-weight: 700; }
.hero-checks { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin-bottom: 36px; }
.hero-checks li { font-size: 14px; font-weight: 500; color: var(--fg-muted); display: flex; align-items: center; gap: 8px; }
.check-icon { color: var(--green); font-size: 16px; font-weight: 700; flex-shrink: 0; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-meta { display: flex; gap: 24px; font-size: 13px; color: var(--fg-muted); }

/* Notfall Box */
.notfall-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px; box-shadow: var(--shadow-lg);
}
.notfall-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.notfall-icon { font-size: 36px; background: var(--red-bg); width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.notfall-label { font-size: 12px; font-weight: 700; color: var(--red); letter-spacing: 1px; margin-bottom: 4px; }
.notfall-title { font-size: 20px; font-weight: 800; color: var(--fg); }
.notfall-desc { font-size: 14px; color: var(--fg-muted); margin-bottom: 20px; line-height: 1.6; }
.notfall-cta {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 20px; text-decoration: none; margin-bottom: 16px;
  transition: all 0.2s;
}
.notfall-cta:hover { border-color: var(--green); background: var(--green-bg); }
.notfall-cta-inner { display: flex; align-items: center; gap: 14px; }
.notfall-cta-label { font-size: 12px; color: var(--fg-muted); margin-bottom: 2px; }
.notfall-cta-number { font-size: 22px; font-weight: 800; color: var(--fg); }
.notfall-arrow { font-size: 20px; color: var(--green); }
.notfall-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.notfall-stat { background: var(--surface2); border-radius: 10px; padding: 14px; text-align: center; }
.stat-val { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.stat-label { font-size: 12px; color: var(--fg-muted); }

/* ---- SECTIONS ---- */
.section { padding: 88px 0; }
.section-surface { background: var(--surface); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--green); margin-bottom: 14px;
}
.section-header h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 16px; color: var(--fg); }
.section-header p { font-size: 16px; color: var(--fg-muted); max-width: 600px; margin: 0 auto; }

/* ---- GRID ---- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ---- CARDS ---- */
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 28px; transition: all 0.2s;
}
.card:hover { border-color: var(--green-brd); box-shadow: 0 0 0 1px var(--green-brd); transform: translateY(-3px); }
.card-icon-wrap { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.card-icon-wrap.green { background: var(--green-bg); }
.card-icon-wrap.red { background: var(--red-bg); }
.card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--fg); }
.card p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* ---- WARN CARDS ---- */
.warn-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 24px;
  transition: all 0.2s;
}
.warn-card:hover { border-color: var(--green-brd); }
.warn-card.warn-red { border-color: rgba(248,113,113,0.2); }
.warn-icon-wrap { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.warn-icon-wrap.blue { background: var(--blue-bg); }
.warn-icon-wrap.red { background: var(--red-bg); }
.warn-card h3 { font-size: 16px; font-weight: 700; color: var(--fg); margin-bottom: 6px; }
.warn-card p { font-size: 14px; color: var(--fg-muted); }



/* ---- WHY CARDS ---- */
.why-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 14px;
  padding: 24px; transition: all 0.2s;
}
.why-card:hover { border-color: var(--green-brd); }
.why-icon { font-size: 28px; margin-bottom: 14px; width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.why-icon.green-icon { background: var(--green-bg); }
.why-card h3 { font-size: 16px; font-weight: 700; color: var(--fg); margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--fg-muted); }

/* ---- CHECK LIST ---- */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.check-list li { font-size: 14px; color: var(--fg-muted); padding-left: 20px; position: relative; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* ---- PRICE CARDS ---- */
.price-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 32px; display: flex; flex-direction: column; gap: 16px; transition: all 0.2s;
}
.price-card.price-highlight { border-color: var(--green-brd); background: var(--green-bg); }
.price-tag { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--fg-muted); }
.price-tag.price-tag-green { color: var(--green); }
.price-card h3 { font-size: 20px; font-weight: 800; color: var(--fg); }
.price-card > p { font-size: 14px; color: var(--fg-muted); }
.price-note { text-align: center; margin-top: 28px; font-size: 14px; color: var(--fg-muted); font-style: italic; }



/* ---- STEPS ---- */
.steps { display: flex; align-items: center; gap: 0; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 32px; flex: 1; }
.step-num { font-size: 36px; font-weight: 900; color: var(--green); margin-bottom: 12px; line-height: 1; }
.step h3 { font-size: 17px; font-weight: 700; color: var(--fg); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--fg-muted); }
.step-line { width: 40px; height: 1px; background: var(--green-brd); flex-shrink: 0; }

/* ---- REGION ---- */
.region-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 8px; }
.region-tags span {
  background: var(--bg); border: 1px solid var(--border);
  color: var(--fg-muted); padding: 8px 18px; border-radius: 50px; font-size: 14px; font-weight: 500;
  transition: all 0.2s; cursor: default;
}
.region-tags span:hover { border-color: var(--green); color: var(--green); }

/* ---- CTA BANNER ---- */
.cta-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 88px 0; text-align: center; }
.cta-section .section-tag { display: block; margin-bottom: 12px; }
.cta-section h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: var(--fg); margin-bottom: 16px; }
.cta-section p { font-size: 17px; color: var(--fg-muted); max-width: 560px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.cta-stars { font-size: 14px; color: var(--fg-muted); display: flex; align-items: center; justify-content: center; gap: 8px; }
.cta-stars span { font-size: 14px; color: var(--fg-muted); }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-left .section-tag { display: block; margin-bottom: 12px; }
.contact-left h2 { font-size: 34px; font-weight: 800; margin-bottom: 12px; }
.contact-left > p { color: var(--fg-muted); margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 18px; text-decoration: none; transition: all 0.2s; }
.contact-item:hover { border-color: var(--green-brd); }
.ci-icon { font-size: 22px; width: 44px; height: 44px; background: var(--green-bg); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--fg-muted); margin-bottom: 4px; }
.ci-val { font-size: 15px; font-weight: 600; color: var(--fg); }
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.form-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--fg-muted); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  padding: 12px 14px; color: var(--fg); font-family: inherit; font-size: 15px; outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); }
.form-group select option { background: var(--surface); }
.form-success { background: var(--green-bg); border: 1px solid var(--green-brd); border-radius: 8px; padding: 14px; color: var(--green); font-size: 14px; margin-top: 12px; }

/* ---- FAQ ---- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-q { width: 100%; background: var(--bg); color: var(--fg); padding: 18px 22px; text-align: left; font-size: 16px; font-weight: 600; font-family: inherit; cursor: pointer; border: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: background 0.2s; }
.faq-q:hover { background: var(--surface); }
.faq-q.active { color: var(--green); background: var(--green-bg); }
.faq-q span { font-size: 12px; transition: transform 0.3s; flex-shrink: 0; }
.faq-q.active span { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; background: var(--surface); color: var(--fg-muted); font-size: 15px; line-height: 1.7; }
.faq-a.open { max-height: 200px; padding: 16px 22px 20px; }
.faq-footer { text-align: center; margin-top: 40px; }
.faq-footer p { color: var(--fg-muted); margin-bottom: 14px; }

/* ---- FOOTER ---- */
.footer { background: #0c1119; border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; background: #111; }
.footer-name { font-size: 16px; font-weight: 800; color: var(--fg); }
.footer-brand p { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }
.footer-grid h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--fg); margin-bottom: 16px; }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-grid ul li, .footer-grid ul li a { font-size: 14px; color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
.footer-grid ul li a:hover { color: var(--green); }
.footer-btns { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; text-align: center; font-size: 13px; color: var(--fg-muted); }

/* ---- FLOATING BTN ---- */
.float-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: var(--green); color: #0f1a10;
  padding: 14px 22px; border-radius: 50px; font-size: 15px; font-weight: 700;
  text-decoration: none; box-shadow: 0 4px 24px rgba(74,222,128,0.4);
  opacity: 0; transform: translateY(16px);
  transition: all 0.3s; pointer-events: none;
}
.float-btn.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.float-btn:hover { background: var(--green-dk); box-shadow: 0 8px 32px rgba(74,222,128,0.5); transform: translateY(-2px); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { max-width: 480px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: column; gap: 12px; }
  .step-line { width: 1px; height: 30px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero-checks { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-left { display: none; }
  .cta-btns { flex-direction: column; align-items: center; }
  .contact-left h2 { font-size: 26px; }
}

/* ---- ICON COLORS (Font Awesome 6) ---- */
/* FA icons use currentColor; color is set on the wrapper */
.card-icon-wrap.green  { color: var(--green); }
.card-icon-wrap.red    { color: var(--red); }
.warn-icon-wrap.blue   { color: #60a5fa; }
.warn-icon-wrap.red    { color: var(--red); }
.why-icon.green-icon   { color: var(--green); }
.notfall-icon          { color: var(--red); }
