/* XCIPTV — Deutschland */
:root {
  --page-bg: #0b1220;
  --card: #111b2e;
  --heading: #f0f9ff;
  --muted: #94a3b8;
  --accent: #0ea5e9;
  --accent2: #38bdf8;
  --accent-soft: rgba(14, 165, 233, 0.12);
  --hero-bg: radial-gradient(ellipse at 50% 0%, #1e3a5f 0%, #0b1220 70%);
  --footer-bg: #060d18;
  --footer-text: #64748b;
  --card-border: rgba(148, 163, 184, 0.12);
  --shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 50px rgba(14, 165, 233, 0.12);
  --nav-h: 64px;
  --logo-h: 48px;
  --radius-card: 14px;
  --radius-btn: 10px;
  --section-py: 58px;
  --font-head: "Outfit", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--page-bg);
  color: var(--heading);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent2); }
.container { width: min(1140px, 100% - 2rem); margin-inline: auto; }

.gradient-text {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--card-border);
}
.site-header .container {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
}
.brand { flex-shrink: 0; line-height: 0; display: flex; align-items: center; }
.brand-logo, .brand-logo img, picture { display: block; }
.brand img {
  height: var(--logo-h); width: auto;
  max-width: min(200px, 55vw); object-fit: contain; object-position: left center;
}
.nav-center { display: flex; flex-wrap: wrap; gap: 0.2rem 1.2rem; align-items: center; justify-content: center; }
.nav-center a { color: var(--heading); font-weight: 600; font-size: 0.92rem; }
.nav-center a:hover, .nav-center a.active { color: var(--accent); }
.nav-cta .btn { padding: 0.5rem 1.1rem; font-size: 0.88rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--heading); border-radius: 2px; }
.mobile-nav {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--card); padding: 1rem; border-bottom: 1px solid var(--card-border);
  z-index: 999; flex-direction: column; gap: 0.5rem; box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--heading); font-weight: 600; padding: 0.65rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
  padding: 0.85rem 1.55rem; border-radius: var(--radius-btn);
  border: 2px solid transparent; cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.btn-primary { background: var(--accent); color: #fff !important; border-color: var(--accent); }
.btn-primary:hover { background: #0284c7; transform: translateY(-1px); color: #fff !important; }
.btn-outline { background: transparent; color: var(--accent2) !important; border-color: var(--accent); }
.btn-outline:hover { background: var(--accent-soft); }
.btn-urgent { background: #dc2626; color: #fff !important; border-color: #dc2626; }
.btn-block { width: 100%; }
.btn-muted { background: transparent; color: var(--muted) !important; border: 0; font-weight: 600; }

.hero { padding: calc(var(--nav-h) + 44px) 0 var(--section-py); background: var(--hero-bg); }
.hero--centered .container { text-align: center; }
.hero-copy { max-width: 720px; margin: 0 auto 2rem; }
.hero-kicker {
  display: inline-block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--accent2); margin-bottom: 0.75rem;
  padding: 0.35rem 0.85rem; background: var(--card); border-radius: 999px;
  border: 1px solid var(--card-border);
}
.hero h1 {
  font-family: var(--font-head); font-size: clamp(1.9rem, 4.5vw, 2.75rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 1rem; letter-spacing: -0.03em;
}
.hero-lead { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.5rem; }
.hero-lead strong { color: var(--heading); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 1.5rem; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  max-width: 520px; margin: 0 auto;
}
.hero-stat {
  padding: 0.85rem; background: var(--card); border-radius: var(--radius-card);
  border: 1px solid var(--card-border); box-shadow: var(--shadow);
}
.hero-stat strong {
  display: block; font-family: var(--font-head); font-size: 1.25rem;
  font-weight: 800; color: var(--accent);
}
.hero-stat span { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.hero-visual { max-width: 900px; margin: 0 auto; }

picture { display: block; width: 100%; }
.site-photo {
  width: 100%; border-radius: var(--radius-card); box-shadow: var(--shadow-lg);
  border: 1px solid var(--card-border); object-fit: cover; background: var(--card);
}
.site-photo--hero { aspect-ratio: 16 / 9; }
.site-photo--devices { aspect-ratio: 4 / 3; }

.devices-layout {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 2rem;
  align-items: start; margin-top: 1.5rem;
}

.trial-strip { padding: 1rem 0; background: var(--card); border-top: 1px solid var(--card-border); }
.trial-strip-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.trial-strip p { font-size: 0.95rem; color: var(--muted); margin: 0; }
.trial-strip strong { color: var(--heading); }

.section { padding: var(--section-py) 0; }
.section--alt { background: rgba(17, 27, 46, 0.5); }
.section-title {
  font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; margin-bottom: 0.5rem; text-align: center; letter-spacing: -0.02em;
}
.section-sub { color: var(--muted); text-align: center; max-width: 580px; margin: 0 auto 2rem; }

.card {
  background: var(--card); border-radius: var(--radius-card);
  border: 1px solid var(--card-border); box-shadow: var(--shadow);
  padding: 1.4rem 1.5rem; transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover { box-shadow: var(--shadow-lg); border-color: rgba(14, 165, 233, 0.35); }
.card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.card p { color: var(--muted); font-size: 0.92rem; }
.card-grid { display: grid; gap: 22px; }
.features-grid { grid-template-columns: repeat(3, 1fr); }
.testimonials-grid { grid-template-columns: repeat(3, 1fr); }
.steps-grid { grid-template-columns: repeat(3, 1fr); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 22px; }
.pricing-grid--4 { grid-template-columns: repeat(4, 1fr); }
.pricing-card {
  display: flex; flex-direction: column; height: 100%;
  background: var(--card); border-radius: var(--radius-card);
  border: 1px solid var(--card-border); box-shadow: var(--shadow);
  padding: 1.5rem; position: relative;
}
.pricing-card.popular { border: 2px solid var(--accent); box-shadow: var(--shadow-lg); }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #fff; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 0.35rem 0.8rem; border-radius: 999px;
}
.pricing-term { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; text-align: center; margin-bottom: 0.35rem; }
.pricing-price { font-family: var(--font-head); font-size: 2.1rem; font-weight: 800; text-align: center; margin-bottom: 0.2rem; }
.pricing-price small { font-size: 1rem; color: var(--muted); font-weight: 600; }
.pricing-note { text-align: center; color: var(--muted); font-size: 0.82rem; margin-bottom: 1rem; }
.pricing-features { flex: 1; list-style: none; font-size: 0.88rem; }
.pricing-features li { padding: 0.3rem 0; padding-left: 1.2rem; position: relative; color: var(--muted); }
.pricing-features li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.pricing-features li.blank { visibility: hidden; min-height: 1.4em; }
.pricing-cta { margin-top: auto; padding-top: 1.25rem; }
.pricing-all-link { text-align: center; margin-top: 1.5rem; font-weight: 600; }

.trust-bar {
  background: var(--accent-soft);
  border: 1px solid var(--card-border); border-radius: var(--radius-card); padding: 1.2rem 1.5rem;
}
.trust-items {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.75rem 1.75rem; font-weight: 600; font-size: 0.88rem; color: var(--heading);
}

.faq-list { max-width: 720px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--card-border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; color: var(--heading);
  font-family: var(--font-head); font-weight: 700; font-size: 0.98rem;
  padding: 1rem 2rem 1rem 0; cursor: pointer; position: relative;
}
.faq-q::after { content: "+"; position: absolute; right: 0; color: var(--accent); font-size: 1.2rem; }
.faq-item.open .faq-q::after { content: "−"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 0 1rem; color: var(--muted); font-size: 0.95rem; }

.cta-band {
  background: linear-gradient(135deg, #0c4a6e, #0369a1);
  color: #fff; text-align: center; padding: var(--section-py) 0;
}
.cta-band h2 { font-family: var(--font-head); font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; margin-bottom: 0.65rem; color: #fff; }
.cta-band p { color: #bae6fd; margin-bottom: 1.25rem; max-width: 480px; margin-inline: auto; }
.cta-band .btn-primary { background: var(--accent2); border-color: var(--accent2); color: #0b1220 !important; }

.footer { background: var(--footer-bg); color: var(--footer-text); padding: 2.5rem 0 1.25rem; }
.footer h4 { font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.65rem; color: #e2e8f0; }
.footer a { color: #64748b; font-size: 0.9rem; }
.footer a:hover { color: var(--accent2); }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 1.5rem; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.35rem; }
.footer-bottom { text-align: center; font-size: 0.8rem; color: #475569; padding-top: 1.25rem; border-top: 1px solid var(--card-border); }

.page-hero {
  padding: calc(var(--nav-h) + 36px) 0 2rem; background: var(--hero-bg);
  text-align: center; border-bottom: 1px solid var(--card-border);
}
.page-hero h1 { font-family: var(--font-head); font-size: clamp(1.65rem, 3.5vw, 2.2rem); font-weight: 800; }
.page-hero p { color: var(--muted); margin-top: 0.5rem; }

.article { padding: calc(var(--nav-h) + 32px) 0 3rem; }
.article h1 { font-family: var(--font-head); font-size: clamp(1.5rem, 3.5vw, 1.95rem); font-weight: 800; margin-bottom: 1rem; }
.article h2 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; margin: 1.5rem 0 0.5rem; }
.article p, .article li { color: var(--muted); margin-bottom: 0.75rem; }
.article ul, .article ol { padding-left: 1.25rem; margin-bottom: 1rem; }
.blog-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

.offer-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.65); z-index: 2000; opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.offer-overlay.show { opacity: 1; pointer-events: auto; }
.offer-modal {
  position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%) scale(0.97);
  z-index: 2001; width: min(400px, calc(100% - 2rem)); background: var(--card);
  border-radius: var(--radius-card); box-shadow: var(--shadow-lg); padding: 1.5rem;
  opacity: 0; pointer-events: none; transition: opacity 0.25s, transform 0.25s; border: 1px solid var(--card-border);
}
.offer-modal.show { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.offer-modal.urgent { border-color: #dc2626; }
.offer-modal h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; margin-bottom: 0.65rem; color: var(--heading); }
.offer-modal p { color: var(--muted); font-size: 0.92rem; margin-bottom: 0.65rem; }
.offer-modal .btn { width: 100%; margin-top: 0.45rem; }
.offer-timer { font-size: 1.35rem; font-weight: 800; color: #dc2626; margin: 0.5rem 0; }

.sticky-wa {
  position: fixed; right: 20px; bottom: 20px; z-index: 1500;
  width: 54px; height: 54px; border-radius: 50%; background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); text-decoration: none;
}

.compat-table {
  width: 100%; border-collapse: collapse; background: var(--card);
  border-radius: var(--radius-card); border: 1px solid var(--card-border);
  box-shadow: var(--shadow); overflow: hidden;
}
.compat-table th, .compat-table td {
  padding: 0.8rem 1rem; text-align: left;
  border-bottom: 1px solid var(--card-border); font-size: 0.88rem;
}
.compat-table th {
  background: var(--accent-soft); font-family: var(--font-head);
  font-weight: 700; font-size: 0.8rem; text-transform: uppercase; color: var(--heading);
}
.compat-table td { color: var(--muted); }
.compat-table tr:last-child td { border-bottom: 0; }

@media (max-width: 1100px) {
  .pricing-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .features-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .pricing-grid--4 { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
}
@media (max-width: 768px) {
  :root { --nav-h: 56px; --section-py: 48px; }
  .nav-center, .nav-cta .btn-primary { display: none; }
  .hamburger { display: flex; }
  .hero-stats { grid-template-columns: 1fr; }
  .features-grid, .testimonials-grid, .steps-grid, .footer-grid, .devices-layout { grid-template-columns: 1fr; }
  .trial-strip-inner { flex-direction: column; text-align: center; }
  .trial-strip .btn { width: 100%; }
}
