/* ============================================================
   aetka Partnershop – Hauptstylesheet
   Design: Dark Navy + Electric Cyan + Orange Accents
   Font: Plus Jakarta Sans
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #080C14;
  --surface:    #0F172A;
  --surface2:   #1A2540;
  --surface3:   #232E48;
  --border:     rgba(255,255,255,0.07);
  --accent:     #00D4FF;
  --accent-dim: rgba(0,212,255,0.15);
  --orange:     #FF6B35;
  --orange-dim: rgba(255,107,53,0.15);
  --teal:       #22D3A0;
  --teal-dim:   rgba(34,211,160,0.15);
  --text:       #F0F4F8;
  --text-muted: #7A8BA0;
  --text-dim:   #4A5A6A;
  --radius:     14px;
  --radius-sm:  8px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.6);
  --transition: 0.25s ease;
  --header-h:   72px;
  --font:       'Plus Jakarta Sans', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  /* Verhindert automatische Schriftgrössen-Anpassung auf iOS/Android */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Accent color utility ─────────────────────────────────── */
.accent { color: var(--accent); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #0099CC);
  color: #080C14;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,212,255,0.35); }

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.2); }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: var(--accent-dim); }

.btn-header {
  background: var(--orange);
  color: #fff;
  padding: 10px 20px;
  font-size: 0.875rem;
}
.btn-header:hover { background: #e85a25; transform: translateY(-1px); }

/* ── Section shared ───────────────────────────────────────── */
.section { padding: 96px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--text), var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Nav Overlay ──────────────────────────────────────────── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.active { opacity: 1; pointer-events: all; }

/* ── Drawer ───────────────────────────────────────────────── */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: var(--surface);
  border-right: 1px solid var(--border);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding-bottom: 40px;
}
.drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--surface);
  z-index: 1;
}

.drawer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.drawer-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all var(--transition);
}
.drawer-close:hover { background: var(--surface2); color: var(--text); }

.drawer-section { padding: 20px 24px 0; }

.drawer-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.drawer-nav { display: flex; flex-direction: column; gap: 2px; }

.drawer-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}
.drawer-nav a:hover {
  background: var(--surface2);
  color: var(--text);
}

.brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.admin-link { color: var(--text-dim) !important; font-size: 0.8rem !important; }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 20px;
  z-index: 90;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(8,12,20,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  flex-shrink: 0;
}
.hamburger:hover { background: var(--surface2); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-right: auto;
}
.logo-main {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}
.logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.header-nav {
  display: flex;
  gap: 4px;
}
.header-nav a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.header-nav a:hover { color: var(--text); background: var(--surface2); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,12,20,0.3) 0%, rgba(8,12,20,0.1) 40%, rgba(8,12,20,0.7) 80%, #080C14 100%),
    linear-gradient(135deg, rgba(0,212,255,0.08) 0%, transparent 60%);
}

/* Hero fallback when no video */
.hero:not(:has(.hero-video[src])) .hero-media,
.hero-media:has(.hero-video source[src=""]) {
  background: radial-gradient(ellipse at 30% 50%, rgba(0,212,255,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(255,107,53,0.08) 0%, transparent 50%),
              var(--bg);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(255,107,53,0.15);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 30%, rgba(0,212,255,0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(240,244,248,0.7);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.75rem;
  z-index: 2;
  animation: fadeInUp 1s ease 1s both;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-dim);
  border-bottom: 2px solid var(--text-dim);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(4px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 32px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.ti-icon { font-size: 1.1rem; }

/* ── Brands Grid ──────────────────────────────────────────── */
.brands-section { background: var(--bg); }

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.brand-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.brand-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.brand-card:hover {
  border-color: rgba(0,212,255,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,212,255,0.1);
}
.brand-card:hover::before { opacity: 1; }

.brand-card-inner {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--surface2);
  color: var(--text-muted);
  border: 1px solid var(--border);
  align-self: flex-start;
}
.brand-badge.hot {
  background: rgba(255,107,53,0.12);
  color: var(--orange);
  border-color: rgba(255,107,53,0.25);
}
.brand-badge.new {
  background: rgba(0,212,255,0.1);
  color: var(--accent);
  border-color: rgba(0,212,255,0.25);
}
.brand-badge.deal {
  background: rgba(34,211,160,0.1);
  color: var(--teal);
  border-color: rgba(34,211,160,0.25);
}

.brand-logo-wrap {
  height: 56px;
  display: flex;
  align-items: center;
}
.brand-logo {
  max-height: 48px;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.brand-logo-fallback,
.brand-logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  transition: all var(--transition);
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.brand-link:hover { gap: 10px; color: #33DDFF; }
.brand-link span { transition: transform var(--transition); }
.brand-link:hover span { transform: translateX(4px); }

/* ── Promo Section ────────────────────────────────────────── */
.promo-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.promo-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 20px;
}

.promo-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.promo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: var(--shadow);
}

.promo-card--featured {
  border-color: rgba(0,212,255,0.2);
  background: linear-gradient(135deg, rgba(0,212,255,0.04) 0%, var(--surface2) 100%);
}

.promo-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  background: var(--accent);
  color: #080C14;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
}
.promo-tag--orange { background: var(--orange); color: #fff; }
.promo-tag--teal { background: var(--teal); color: #080C14; }

.promo-img-wrap {
  height: 140px;
  background: var(--surface3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo-img-placeholder {
  font-size: 3rem;
  opacity: 0.4;
}

.promo-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.promo-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.promo-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

/* ── Shops Section ────────────────────────────────────────── */
.shops-section { background: var(--bg); }

.shops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 64px;
}

.shop-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}
.shop-card:hover {
  border-color: rgba(0,212,255,0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.shop-map-preview {
  height: 160px;
  background: var(--surface2);
  position: relative;
  overflow: hidden;
}
.shop-map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  background:
    radial-gradient(circle at 50% 50%, rgba(0,212,255,0.06) 0%, transparent 70%),
    repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(255,255,255,0.02) 30px, rgba(255,255,255,0.02) 31px),
    repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(255,255,255,0.02) 30px, rgba(255,255,255,0.02) 31px);
}
.map-icon { font-size: 2.5rem; }

.shop-info { padding: 24px; }

.shop-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.shop-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.shop-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.shop-detail span:first-child { flex-shrink: 0; }
.shop-detail a { color: var(--accent); }
.shop-detail a:hover { text-decoration: underline; }

.shop-btn { width: 100%; justify-content: center; }

/* ── Contact Form ─────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
}

.contact-form-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
  text-align: center;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--transition);
  width: 100%;
  outline: none;
}
.form-group input::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0,212,255,0.5);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.08);
}
.form-group select option { background: var(--surface2); }

.form-checkbox {
  flex-direction: row !important;
  align-items: center;
  gap: 10px !important;
}
.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--accent);
}
.form-checkbox label {
  font-size: 0.8rem !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--text-muted);
}
.form-checkbox label a { color: var(--accent); }

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 1rem;
  margin-top: 4px;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer-company {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col li,
.footer-col li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim); }
.footer-credit a { color: var(--text-dim); }
.footer-credit a:hover { color: var(--accent); }

/* ── Lucide Icon base ─────────────────────────────────────── */
i[data-lucide] { display: inline-flex; align-items: center; justify-content: center; }
i[data-lucide] svg { width: 1em; height: 1em; }

.drawer-icon { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.6; }
.drawer-icon svg { width: 16px; height: 16px; stroke-width: 1.75; }
.drawer-nav a:hover .drawer-icon { opacity: 1; }

.ti-icon { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
.ti-icon svg { width: 22px; height: 22px; stroke-width: 1.5; }

.badge-icon { width: 14px; height: 14px; }
.badge-icon svg { width: 14px; height: 14px; }

.link-icon { width: 14px; height: 14px; transition: transform var(--transition); }
.link-icon svg { width: 14px; height: 14px; }
.brand-link:hover .link-icon { transform: translateX(4px); }

.brand-icon-wrap { gap: 10px; }
.brand-icon-lg { width: 36px; height: 36px; }
.brand-icon-lg svg { width: 36px; height: 36px; stroke-width: 1.5; }
.brand-icon-label { font-size: 1.15rem; font-weight: 800; letter-spacing: -0.03em; }

.detail-icon { width: 15px; height: 15px; color: var(--text-dim); flex-shrink: 0; margin-top: 2px; }
.detail-icon svg { width: 15px; height: 15px; stroke-width: 1.75; }

.map-icon-svg { width: 32px; height: 32px; color: var(--accent); opacity: 0.5; }
.map-icon-svg svg { width: 32px; height: 32px; stroke-width: 1.5; }

.drawer-close i { width: 18px; height: 18px; }
.drawer-close i svg { width: 18px; height: 18px; }

.eyebrow-icon { width: 14px; height: 14px; }
.eyebrow-icon svg { width: 14px; height: 14px; }

.why-check { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.why-check svg { width: 16px; height: 16px; stroke-width: 2.5; }

.promo-placeholder-icon { width: 40px; height: 40px; opacity: 0.25; }
.promo-placeholder-icon svg { width: 40px; height: 40px; stroke-width: 1.25; }

.pf-icon { width: 13px; height: 13px; color: var(--teal); flex-shrink: 0; }
.pf-icon svg { width: 13px; height: 13px; stroke-width: 2.5; }

.ad-icon { width: 28px; height: 28px; color: var(--accent); flex-shrink: 0; }
.ad-icon svg { width: 28px; height: 28px; stroke-width: 1.5; }

/* ── Section eyebrow ──────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 10px;
}

/* ── Why Us Section ───────────────────────────────────────── */
.why-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}

.why-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.why-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.stat-card:hover { border-color: rgba(0,212,255,0.25); transform: translateY(-2px); }

.stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Promo enhancements ───────────────────────────────────── */
.promo-meta {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.promo-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}
.promo-features span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.promo-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 10px 0;
}
.price-main {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
}
.price-period {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ── Ad Banner ────────────────────────────────────────────── */
.ad-banner {
  margin-top: 32px;
  background: linear-gradient(135deg, rgba(0,212,255,0.06) 0%, var(--surface2) 100%);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.ad-banner-content {
  display: flex;
  align-items: center;
  gap: 20px;
}
.ad-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.ad-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 480px;
}
.ad-btn { flex-shrink: 0; }

/* ── Scroll-reveal animation ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .promo-grid { grid-template-columns: 1fr 1fr; }
  .promo-card--featured { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-stats { grid-template-columns: repeat(4, 1fr); }
  .ad-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  /* Verhindert iOS-Auto-Zoom beim Antippen von Eingabefeldern */
  input, textarea, select {
    font-size: 16px !important;
  }

  .section { padding: 56px 0; }
  .header-nav { display: none; }
  .btn-header { display: none; }

  /* Trust Bar */
  .trust-item { padding: 14px 16px; font-size: 0.78rem; }
  .trust-bar { overflow-x: auto; }

  /* Grids */
  .brands-grid { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .shops-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* Why Section – stats zurück auf 2×2 */
  .why-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 20px 16px; }
  .stat-num { font-size: 1.9rem; }
  .why-grid { gap: 32px; }

  /* Ad Banner */
  .ad-banner { padding: 20px; gap: 16px; }
  .ad-banner-content { gap: 12px; }
  .ad-text { max-width: 100%; }

  /* Promo Cards */
  .promo-card { border-radius: var(--radius); }
  .contact-form-wrap { padding: 24px 20px; }

  /* Section Headers */
  .section-title { font-size: clamp(1.4rem, 5vw, 2rem); }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }

  /* Trust Bar */
  .trust-bar { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); padding: 14px 20px; }
  .trust-item:last-child { border-bottom: none; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { gap: 6px; }
  .footer-credit { font-size: .72rem; }

  /* Hero */
  .hero-actions { flex-direction: column; width: 100%; gap: 10px; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .hero-badge { font-size: 0.7rem; }

  /* Why Stats */
  .why-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-card { padding: 16px 12px; }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 0.72rem; }

  /* Ad Banner */
  .ad-banner { padding: 18px 16px; }
  .ad-banner-content { flex-direction: column; align-items: flex-start; gap: 8px; }
  .ad-title { font-size: 0.9rem; }
  .ad-text { font-size: 0.8rem; }
  .ad-btn { width: 100%; justify-content: center; }

  /* Promo */
  .promo-card--featured .promo-title { font-size: 1.1rem; }
  .price-main { font-size: 1.6rem; }

  /* Brand Cards */
  .brand-card-inner { padding: 20px 20px 18px; }
  .brand-card-footer { flex-wrap: wrap; gap: 8px; }

  /* Buttons global */
  .btn { white-space: normal; }

  /* Shop cards */
  .shop-hours { font-size: 0.75rem; }
  .shop-tel { font-size: 0.85rem; }
}
