/* SHAMEL TV — Deutschland */
:root {
  --page-bg: #f0fdfa;
  --card: #ffffff;
  --heading: #134e4a;
  --muted: #5b7c78;
  --accent: #0d9488;
  --accent2: #d97706;
  --accent-soft: rgba(13, 148, 136, 0.12);
  --hero-bg: linear-gradient(135deg, #ccfbf1 0%, #fef3c7 100%);
  --footer-bg: #115e59;
  --footer-text: #ccfbf1;
  --card-border: rgba(19, 78, 74, 0.1);
  --shadow: 0 2px 20px rgba(19, 78, 74, 0.08);
  --shadow-lg: 0 16px 48px rgba(19, 78, 74, 0.12);
  --nav-h: 64px;
  --logo-h: 52px;
  --radius-card: 20px;
  --radius-btn: 10px;
  --section-py: 60px;
  --font-head: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", 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: 16px;
  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(1160px, 100% - 2rem); margin-inline: auto; }

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

/* Navbar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  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.site-photo,
picture.site-photo img { display: block; }
.brand img {
  height: var(--logo-h);
  width: auto;
  max-width: min(240px, 52vw);
  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; }

/* Buttons */
.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: #0f766e;
  transform: translateY(-1px);
  color: #fff !important;
}
.btn-outline {
  background: var(--card);
  color: var(--accent2) !important;
  border-color: var(--accent2);
}
.btn-outline:hover { background: #fffbeb; }
.btn-urgent { background: #b45309; color: #fff !important; border-color: #b45309; }
.btn-block { width: 100%; }
.btn-muted { background: transparent; color: var(--muted) !important; border: 0; font-weight: 600; }

/* Hero — image left */
.hero {
  padding: calc(var(--nav-h) + 44px) 0 var(--section-py);
  background: var(--hero-bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-inner .site-photo { order: -1; }
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  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; max-width: 32rem; }
.hero-lead strong { color: var(--heading); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-card);
  border: 1px solid var(--card-border);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
}
.hero-stat span { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }

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: 4 / 3; min-height: 280px; }
.site-photo--devices { aspect-ratio: 4 / 3; }

.devices-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  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: var(--card); }
.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, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.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-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; }
.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-features li.adult { color: var(--accent2); font-weight: 700; visibility: visible; }
.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: linear-gradient(90deg, var(--accent-soft), rgba(217, 119, 6, 0.1));
  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;
}

.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, #0d9488, #115e59);
  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: #ccfbf1; margin-bottom: 1.25rem; max-width: 480px; margin-inline: auto; }
.cta-band .gradient-text { background: linear-gradient(90deg, #fef3c7, #fff); -webkit-background-clip: text; background-clip: text; }
.cta-band .btn-primary { background: var(--accent2); border-color: var(--accent2); }

.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: #fff; }
.footer a { color: #99f6e4; font-size: 0.9rem; }
.footer a:hover { color: #fff; }
.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: #5eead4;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.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(19, 78, 74, 0.55); 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: var(--accent2); }
.offer-modal h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; margin-bottom: 0.65rem; }
.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: var(--accent2); 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;
}
.compat-table tr:last-child td { border-bottom: 0; }

@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; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-inner .site-photo { order: 0; max-width: 520px; margin-inline: auto; }
  .devices-layout { grid-template-columns: 1fr; }
  .site-photo--devices { max-width: 480px; 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; }
  .features-grid, .testimonials-grid, .steps-grid, .footer-grid { grid-template-columns: 1fr; }
  .trial-strip-inner { flex-direction: column; text-align: center; }
  .trial-strip .btn { width: 100%; }
}
