/* UP IPTV — ocean · centered layout · DE */
:root {
  --page-bg: #e8f4f6;
  --page-bg-2: #d5ebee;
  --surface: #f3fbfc;
  --card: #ffffff;
  --heading: #073b4c;
  --muted: #3d6470;
  --accent: #0a7a8c;
  --accent2: #065a68;
  --accent3: #f4a261;
  --accent-soft: rgba(10, 122, 140, 0.12);
  --line: rgba(7, 59, 76, 0.1);
  --hero-overlay: linear-gradient(180deg, rgba(6, 40, 52, 0.55) 0%, rgba(6, 40, 52, 0.78) 100%);
  --hero-bg: linear-gradient(165deg, #042a35 0%, #0a7a8c 55%, #042a35 100%);
  --footer-bg: #042a35;
  --footer-text: #9ec5cf;
  --card-border: rgba(7, 59, 76, 0.1);
  --shadow: 0 10px 28px rgba(7, 59, 76, 0.08);
  --shadow-lg: 0 22px 48px rgba(10, 122, 140, 0.18);
  --nav-h: 70px;
  --logo-h: 48px;
  --radius-card: 22px;
  --radius-btn: 999px;
  --section-py: 80px;
  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --btn-text-on-accent: #ffffff;
}

*, *::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);
  background-image:
    radial-gradient(ellipse 65% 40% at 6% -8%, rgba(217, 119, 6, 0.08), transparent 55%),
    radial-gradient(ellipse 48% 32% at 100% 10%, rgba(234, 88, 12, 0.06), transparent 50%),
    linear-gradient(180deg, var(--page-bg), var(--page-bg-2));
  color: var(--heading);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--accent2); text-decoration: none; }
a:hover { color: var(--accent); }
.container { width: min(1120px, calc(100% - 4.5rem)); margin-inline: auto; }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid rgba(217, 119, 6, 0.12);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset;
}
.site-header .container, .nav-wrap {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
}
.logo { line-height: 0; display: flex; align-items: center; }
.logo img { height: var(--logo-h); width: auto; max-width: min(220px, 58vw); object-fit: contain; object-position: left center; }
.nav-desktop { display: flex; flex-wrap: wrap; gap: 0.25rem 1.15rem; }
.nav-wrap nav.nav-desktop a {
  color: #44403c; font-weight: 600; font-size: 0.92rem;
  transition: color 0.15s;
}
.nav-wrap nav.nav-desktop a.active,
.nav-wrap nav.nav-desktop a:hover { color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: 0.55rem; margin-left: auto; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: #1b2a4a; border-radius: 2px; }
.mobile-nav {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: #fff; padding: 1rem 1.15rem 1.35rem;
  border-bottom: 1px solid var(--line);
  z-index: 999; flex-direction: column; gap: 0.25rem; box-shadow: var(--shadow);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: #1b2a4a; font-weight: 600; padding: 0.85rem 0.35rem;
  border-bottom: 1px solid rgba(27, 42, 74, 0.06);
}
.mobile-nav a.btn { border: 0; text-align: center; margin-top: 0.65rem; color: var(--btn-text-on-amber) !important; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
  padding: 0.9rem 1.45rem; border-radius: var(--radius-btn);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent3) 0%, var(--accent) 100%);
  color: var(--btn-text-on-amber) !important; border-color: var(--accent);
  box-shadow: 0 10px 24px rgba(217, 119, 6, 0.32);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  transform: translateY(-1px); color: var(--btn-text-on-amber) !important;
}
.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important; border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.16); }
.section .btn-outline,
.page-hero .btn-outline,
.reviews-preview .btn-outline,
.trial-strip .btn-outline {
  color: var(--accent2) !important;
  border-color: rgba(217, 119, 6, 0.4);
  background: #fff;
}
.section .btn-outline:hover,
.reviews-preview .btn-outline:hover {
  background: var(--accent-soft);
}
.btn-block { width: 100%; }

/* Stacked full-bleed hero — centred forum vibe */
.hero.hero--stacked {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 48px) 1.25rem 3.5rem;
  background-image: var(--hero-overlay), url('/images/hero-home.webp?v=1');
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
  overflow: hidden;
}
.hero.hero--stacked::after {
  content: "";
  position: absolute; inset: auto 50% -25% auto;
  width: min(480px, 60vw); height: min(480px, 60vw);
  transform: translateX(50%);
  background: radial-gradient(circle, rgba(234, 88, 12, 0.28), transparent 68%);
  pointer-events: none; animation: amberPulse 7s ease-in-out infinite alternate;
}
.hero-stack { max-width: 740px; margin-inline: auto; position: relative; z-index: 1; animation: fadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) both; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.76rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #fdba74; margin-bottom: 1rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(253, 186, 116, 0.4);
  border-radius: 999px;
  background: rgba(12, 10, 9, 0.42);
}
.section-eyebrow {
  color: var(--accent2);
  background: var(--accent-soft);
  border-color: rgba(217, 119, 6, 0.25);
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.4vw, 3.55rem);
  font-weight: 700; line-height: 1.06; margin-bottom: 1rem;
  letter-spacing: -0.035em; color: #fff;
}
.hero-lead { color: #d6d3d1; font-size: 1.08rem; margin: 0 auto 1.5rem; max-width: 34rem; }
.hero-lead strong { color: #fff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes amberPulse {
  from { opacity: 0.55; transform: translateX(50%) scale(0.95); }
  to { opacity: 1; transform: translateX(50%) scale(1.05); }
}
@keyframes riseSoft {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes amberGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0); }
  50% { box-shadow: 0 0 0 6px var(--accent-soft), var(--shadow-lg); }
}

.section { padding: var(--section-py) 0; }
.section-intro { color: var(--muted); margin-bottom: 1.5rem; max-width: 40rem; font-size: 1.02rem; }
.section h2, .seo-depth h2, .how-stack h2, .devices-stack h2 {
  font-family: var(--font-head);
  font-size: clamp(1.65rem, 3.2vw, 2.3rem);
  font-weight: 700; margin-bottom: 0.75rem; letter-spacing: -0.03em;
}
.text-link { font-weight: 700; }

.trust-band {
  padding: 1.25rem 0;
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.trust-band-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.trust-stat {
  text-align: center; padding: 0.65rem 0.5rem;
  animation: riseSoft 0.5s ease both;
}
.trust-stat strong {
  display: block; font-family: var(--font-head);
  font-size: 1.4rem; font-weight: 700; color: var(--accent);
  letter-spacing: -0.03em; margin-bottom: 0.2rem;
}
.trust-stat span { color: var(--muted); font-size: 0.88rem; font-weight: 500; }

.site-photo {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  border-radius: var(--radius-card); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.site-photo--wide { aspect-ratio: 16/9; max-height: 300px; }
.inline-photo { margin: 1.75rem auto 0; max-width: 760px; }

.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; margin-top: 0.5rem;
}
.feature-card h3 {
  font-family: var(--font-head); font-size: 1.08rem; font-weight: 700; margin-bottom: 0.45rem; letter-spacing: -0.02em;
}

.how-stack, .devices-stack { text-align: left; }
.steps-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; margin-top: 1.35rem;
}
.steps-row span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.1rem; height: 2.1rem; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  font-family: var(--font-head); font-weight: 700; margin-bottom: 0.65rem; font-size: 0.95rem;
}

.card {
  background: var(--card); border-radius: var(--radius-card);
  border: 1px solid var(--line); box-shadow: var(--shadow);
  padding: 1.45rem 1.5rem; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  animation: riseSoft 0.55s ease both;
}
.card:hover { border-color: rgba(217, 119, 6, 0.35); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card h3 { font-family: var(--font-head); font-size: 1.08rem; font-weight: 700; margin-bottom: 0.4rem; letter-spacing: -0.02em; }
.card p { color: var(--muted); font-size: 0.95rem; }
.card-grid { display: grid; gap: 1.15rem; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 1.15rem; }
.pricing-card {
  display: flex; flex-direction: column; height: 100%;
  background: var(--card); border-radius: var(--radius-card);
  border: 1px solid var(--line); padding: 1.65rem 1.5rem; position: relative;
  box-shadow: var(--shadow); animation: fadeUp 0.55s ease both;
}
.pricing-card:nth-child(2) { animation-delay: 0.08s; }
.pricing-card:nth-child(3) { animation-delay: 0.16s; }
.pricing-card.featured {
  border: 2px solid var(--accent);
  animation: amberGlow 4.5s ease-in-out infinite;
}
.pricing-card .price {
  font-family: var(--font-head); font-size: 2.25rem; font-weight: 700;
  margin: 0.35rem 0; color: var(--heading); letter-spacing: -0.04em;
}
.pricing-monthly { text-align: center; color: var(--accent); font-size: 0.9rem; font-weight: 700; margin-bottom: 0.35rem; }
.pricing-card ul { list-style: none; margin: 0.85rem 0 1.15rem; flex: 1; }
.pricing-card ul li { padding: 0.3rem 0 0.3rem 1.2rem; position: relative; color: var(--muted); font-size: 0.92rem; }
.pricing-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.pricing-all-link { text-align: center; margin-top: 1.5rem; font-weight: 600; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.review-card .review-stars { color: #f59e0b; letter-spacing: 0.05em; display: block; margin-bottom: 0.5rem; }
.review-author { margin-top: 0.75rem; color: var(--heading) !important; font-size: 0.9rem !important; font-weight: 600; }

.faq-list { max-width: 740px; margin-inline: auto; }
.faq-list details {
  border: 1px solid var(--line); border-radius: 16px; padding: 1rem 1.15rem;
  margin-bottom: 0.65rem; background: var(--surface);
}
.faq-list summary { cursor: pointer; font-family: var(--font-head); font-weight: 700; color: var(--heading); letter-spacing: -0.02em; }
.faq-list details p { color: var(--muted); margin-top: 0.55rem; }

.depth-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.depth-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: 1.25rem 1.35rem; box-shadow: var(--shadow);
}
.depth-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.45rem; }
.depth-card p { color: var(--muted); font-size: 0.9rem; margin-bottom: 0.55rem; }
.depth-card p:last-child { margin-bottom: 0; }
.depth-more {
  margin-top: 1.25rem; border: 1px solid var(--line); border-radius: 16px;
  background: var(--surface); padding: 0.95rem 1.15rem;
}
.depth-more > summary {
  cursor: pointer; font-family: var(--font-head); font-weight: 700;
  color: var(--accent2); list-style: none;
}
.depth-more > summary::-webkit-details-marker { display: none; }
.depth-more > summary::after { content: " +"; }
.depth-more[open] > summary::after { content: " −"; }
.depth-more[open] { padding-bottom: 1.1rem; }
.depth-grid--more { margin-top: 1rem; }
.depth-longform { margin-top: 1.25rem; }
.depth-longform p { color: var(--muted); font-size: 0.88rem; margin-bottom: 0.75rem; }
.seo-depth p, .seo-depth li { color: var(--muted); margin-bottom: 0.75rem; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.blog-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; height: 100%; }
.blog-card:hover { transform: translateY(-4px); }
.blog-card-media { display: block; overflow: hidden; background: #e7e5e4; line-height: 0; }
.blog-thumb {
  width: 100%; aspect-ratio: 16/10; max-height: 168px; object-fit: cover;
  display: block; transition: transform 0.4s ease;
}
.blog-card:hover .blog-thumb { transform: scale(1.05); }
.blog-card-body { padding: 1.1rem 1.2rem 1.3rem; flex: 1; display: flex; flex-direction: column; gap: 0.35rem; }
.blog-card-body h2, .blog-card-body h3 {
  font-family: var(--font-head); font-size: 1.08rem; font-weight: 700; line-height: 1.35; margin: 0; letter-spacing: -0.02em;
}
.blog-card-body h2 a, .blog-card-body h3 a { color: var(--heading); }
.blog-card-body h2 a:hover, .blog-card-body h3 a:hover { color: var(--accent); }
.blog-card-body p { color: var(--muted); font-size: 0.88rem; margin: 0; }
.blog-meta { color: var(--accent); font-size: 0.8rem; font-weight: 700; margin-bottom: 0.25rem; text-transform: uppercase; letter-spacing: 0.04em; }
.blog-crumb { color: var(--muted); margin-bottom: 0.75rem; }
.article--post .container.narrow { width: min(760px, calc(100% - 3.5rem)); }
.article-image {
  width: 100%; aspect-ratio: 16/9; max-height: 360px; object-fit: cover;
  display: block; border-radius: var(--radius-card);
}

.cta-band {
  background: var(--hero-bg);
  color: #fff; text-align: center; padding: var(--section-py) 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: -20% auto auto 30%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.35), transparent 70%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700; margin-bottom: 0.65rem; color: #fff; letter-spacing: -0.035em;
}
.cta-band p { color: #94a3b8; margin: 0 auto 1.35rem; max-width: 480px; }

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

.site-footer { background: var(--footer-bg); color: var(--footer-text); padding: 3rem 0 1.35rem; }
.site-footer h3 {
  font-family: var(--font-head); font-size: 0.82rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: #f5ede3; margin-bottom: 0.85rem;
}
.site-footer a { display: block; color: #94a3b8; font-size: 0.92rem; margin-bottom: 0.4rem; }
.site-footer a:hover { color: #fdba74; }
.site-footer p { color: #94a3b8; margin-top: 0.85rem; max-width: 28rem; font-size: 0.92rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 2rem; margin-bottom: 1.5rem; }
.footer-bottom {
  text-align: center; font-size: 0.8rem; color: #78716c;
  padding-top: 1.35rem; border-top: 1px solid rgba(168, 162, 158, 0.15); margin-top: 1rem;
}

.page-hero {
  padding: calc(var(--nav-h) + 48px) 0 2.5rem; background: var(--hero-bg);
  text-align: center; color: #fff;
}
.page-hero h1 {
  font-family: var(--font-head); font-size: clamp(1.85rem, 3.6vw, 2.55rem);
  font-weight: 700; letter-spacing: -0.035em; color: #fff;
}
.page-hero p { color: #94a3b8; margin-top: 0.55rem; max-width: 40rem; margin-inline: auto; }
.page-hero--preise { background-image: var(--hero-overlay), url('/images/hero-preise.webp?v=1'); background-size: cover; background-position: center; }
.page-hero--reseller { background-image: var(--hero-overlay), url('/images/hero-reseller.webp?v=1'); background-size: cover; background-position: center; }
.page-hero--kontakt { background-image: var(--hero-overlay), url('/images/hero-kontakt.webp?v=1'); background-size: cover; background-position: center; }

.article { padding: calc(var(--nav-h) + 36px) 0 3rem; }
.article h1 {
  font-family: var(--font-head); font-size: clamp(1.65rem, 3.5vw, 2.2rem);
  font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.03em;
}
.article h2 {
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 700;
  margin: 1.6rem 0 0.55rem; color: var(--heading); text-align: left; letter-spacing: -0.02em;
}
.article p, .article li { color: var(--muted); margin-bottom: 0.75rem; }
.article ul, .article ol { padding-left: 1.25rem; margin-bottom: 1rem; }
.article-hero-img { margin: 1rem 0 1.5rem; border-radius: var(--radius-card); overflow: hidden; border: 1px solid var(--line); }

.reseller-info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.5rem 0 2rem;
}
.info-panel {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: 1.55rem 1.6rem; box-shadow: var(--shadow);
}
.info-panel--accent {
  background: linear-gradient(160deg, rgba(217, 119, 6, 0.1), #fff 42%);
  border-color: rgba(217, 119, 6, 0.25);
}
.info-panel h2 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; text-align: left; letter-spacing: -0.02em; }
.check-list { list-style: none; display: grid; gap: 0.95rem; }
.check-list li { display: grid; grid-template-columns: auto 1fr; gap: 0.85rem; align-items: start; }
.check-icon {
  width: 28px; height: 28px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent); font-weight: 800; font-size: 0.85rem;
}
.check-list strong { display: block; color: var(--heading); font-size: 0.98rem; margin-bottom: 0.15rem; }
.check-list span { color: var(--muted); font-size: 0.9rem; }
.credit-facts { display: grid; gap: 0.85rem; }
.credit-fact {
  display: grid; gap: 0.15rem; padding: 1rem 1.05rem; border-radius: 16px;
  background: var(--page-bg); border: 1px solid var(--line);
}
.credit-fact strong { font-family: var(--font-head); font-size: 1.05rem; color: var(--accent); }
.credit-fact span { color: var(--muted); font-size: 0.9rem; }
.reseller-packs-title { margin: 0.5rem 0 1rem; font-family: var(--font-head); font-size: 1.4rem; text-align: left; letter-spacing: -0.03em; }
.reseller-cta-box {
  margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1.25rem; padding: 1.5rem 1.6rem;
  border-radius: var(--radius-card);
  background: linear-gradient(120deg, rgba(217, 119, 6, 0.1), #fff);
  border: 1px solid rgba(217, 119, 6, 0.22);
}
.reseller-cta-box h2 { font-family: var(--font-head); font-size: 1.25rem; margin-bottom: 0.35rem; text-align: left; }
.reseller-cta-box p { color: var(--muted); margin: 0; max-width: 36rem; }

.contact-panel {
  max-width: 560px; margin-inline: auto; padding: 1.6rem; border-radius: var(--radius-card);
  background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.contact-panel p { margin-bottom: 1rem; }
.contact-panel p:last-child { margin-bottom: 0; }

.wa-sticky {
  position: fixed; right: 20px; bottom: 20px; z-index: 1500;
  background: #25d366; color: #fff !important; font-weight: 700; font-size: 0.85rem;
  padding: 0.9rem 1.15rem; border-radius: 16px; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.15s;
}
.wa-sticky:hover { transform: translateY(-2px); color: #fff !important; }

.offer-overlay {
  position: fixed; inset: 0; background: rgba(12, 10, 9, 0.68); z-index: 2000;
  opacity: 0; pointer-events: none; transition: opacity 0.25s; backdrop-filter: blur(4px);
}
.offer-overlay.show { opacity: 1; pointer-events: auto; }
.offer-modal {
  position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%) scale(0.96);
  z-index: 2001; width: min(400px, calc(100% - 2rem)); background: #fff;
  border-radius: 20px; box-shadow: var(--shadow-lg); padding: 1.7rem 1.55rem 1.4rem;
  opacity: 0; pointer-events: none; transition: opacity 0.25s, transform 0.25s;
  border: 1px solid var(--line);
}
.offer-modal.show { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.offer-modal.urgent { border-color: rgba(217, 119, 6, 0.55); }
.offer-modal h3 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; margin-bottom: 0.55rem; letter-spacing: -0.03em; 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-modal p.offer-badge,
aside.offer-modal .offer-badge,
.offer-badge {
  display: inline-block; margin-bottom: 0.65rem;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--accent3), var(--accent));
  padding: 0.35rem 0.7rem; border-radius: 999px;
}
.offer-price { margin: 0.35rem 0 0.15rem !important; }
.offer-price strong { font-family: var(--font-head); font-size: 1.85rem; color: var(--heading); letter-spacing: -0.03em; }
.offer-price span { color: var(--accent); font-weight: 700; margin-left: 0.35rem; }
.offer-timer { font-size: 1rem !important; font-weight: 800; color: var(--accent) !important; margin: 0.35rem 0 0.75rem !important; }
.offer-close {
  position: absolute; top: 0.65rem; right: 0.8rem; border: 0; background: transparent;
  color: var(--muted); font-size: 1.5rem; line-height: 1; cursor: pointer;
}
.offer-dismiss {
  display: block; width: 100%; margin-top: 0.65rem; border: 0; background: transparent;
  color: var(--muted); font-size: 0.88rem; cursor: pointer; text-decoration: underline;
}
body.offer-open { overflow: hidden; }

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-grid, .depth-grid, .steps-row, .reseller-info-grid { grid-template-columns: 1fr; }
  .trust-band-inner { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.35rem; }
  .trust-stat strong { font-size: 1.15rem; }
  .trust-stat span { font-size: 0.72rem; }
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .desktop-only { display: none !important; }
}
@media (max-width: 768px) {
  :root { --nav-h: 62px; --section-py: 52px; --logo-h: 40px; }
  .container { width: min(1120px, calc(100% - 1.75rem)); }
  .nav-cta { display: none; }
  .reviews-grid, .footer-grid, .blog-grid { grid-template-columns: 1fr; }
  .trust-band { padding: 0.55rem 0; }
  .trust-band-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.25rem;
  }
  .trust-stat { padding: 0.2rem 0.1rem; }
  .trust-stat strong { font-size: 0.95rem; margin-bottom: 0.05rem; }
  .trust-stat span {
    font-size: 0.62rem; line-height: 1.15;
    display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .trial-strip-inner { flex-direction: column; text-align: center; }
  .trial-strip .btn { width: 100%; }
  .hero.hero--stacked { min-height: auto; padding: calc(var(--nav-h) + 1.75rem) 0 2.5rem; }
  .hero h1 { font-size: clamp(1.75rem, 8vw, 2.25rem); }
  .hero-lead { font-size: 0.98rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .cta-band .btn { width: 100%; max-width: 320px; }
  .reseller-cta-box { flex-direction: column; align-items: stretch; text-align: center; }
  .reseller-cta-box h2 { text-align: center; }
  .pricing-grid { max-width: none; width: 100%; }
  .pricing-card .btn, .btn-block { min-height: 48px; }
  .site-photo { aspect-ratio: 16/10; max-height: 220px; }
  .wa-sticky { right: 14px; bottom: 14px; padding: 0.75rem 0.95rem; font-size: 0.8rem; }
  .offer-modal { width: min(400px, calc(100% - 1.25rem)); max-height: calc(100vh - 2rem); overflow: auto; }
  .blog-thumb { max-height: 150px; }
  .article-image { max-height: 220px; }
  body.nav-open { overflow: hidden; }
  .mobile-nav { max-height: calc(100vh - var(--nav-h)); overflow: auto; }
  .mobile-nav .btn { margin-top: 0.5rem; width: 100%; }
}

/* centered ocean hero */
body[data-layout="centered"] .hero.hero--centered {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: var(--hero-overlay), url("/images/hero-home.webp");
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  color: #f4fbfc;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
}
body[data-layout="centered"] .hero.hero--centered .hero-inner { max-width: 760px; margin: 0 auto; }
body[data-layout="centered"] .hero.hero--centered h1 { color: #fff; font-family: var(--font-head); font-size: clamp(2rem, 4.4vw, 3.35rem); line-height: 1.15; margin: 0.4rem 0 1rem; }
body[data-layout="centered"] .hero.hero--centered .hero-lead { color: rgba(255,255,255,.9); font-size: 1.12rem; }
body[data-layout="centered"] .hero.hero--centered .eyebrow { letter-spacing: .14em; text-transform: uppercase; font-size: .78rem; color: #9ee7f0; }
body[data-layout="centered"] .hero-actions { display:flex; gap: .8rem; justify-content:center; flex-wrap:wrap; margin: 1.4rem 0 1rem; }
body[data-layout="centered"] .btn { border-radius: var(--radius-btn); }
body[data-layout="centered"] .pricing-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 1.1rem; }
body[data-layout="centered"] .section { padding: var(--section-py) 0; }
