/* ==========================================================================
   IPTVAbbonamento.pro — Design System (Dark / Green)
   Premium, modern streaming look for the Italian market
   ========================================================================== */

:root {
  --color-bg: #0B0F14;
  --color-yellow: #22C55E;          /* accent green */
  --color-yellow-dark: #16A34A;     /* darker green (hover/links) */
  --color-heading: #F1F5F9;
  --color-text: #94A3B8;
  --color-muted: #94A3B8;
  --color-card: #131A22;
  --color-border: #1E2A38;
  --color-success: #22C55E;

  --container: 1160px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.12);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --space: clamp(3.5rem, 8vw, 6.5rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--color-yellow-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--color-heading); }
ul, ol { padding-left: 1.25rem; }

h1, h2, h3, h4 { color: var(--color-heading); line-height: 1.2; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
p { margin-bottom: 1rem; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: var(--space) 0; }
.section--tint { background: linear-gradient(180deg, #0E141B 0%, var(--color-bg) 100%); }
.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-head p { color: var(--color-muted); font-size: 1.125rem; margin-top: .75rem; }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--color-yellow-dark);
  background: var(--color-card); padding: .4rem .9rem; border-radius: 999px; margin-bottom: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem; justify-content: center;
  font-weight: 700; font-size: 1rem; padding: .9rem 1.6rem; border-radius: var(--radius-sm);
  border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-align: center;
}
.btn--primary { background: var(--color-yellow); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--color-yellow-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: var(--color-card); color: var(--color-heading); border-color: var(--color-border); }
.btn--ghost:hover { border-color: var(--color-yellow); color: var(--color-heading); transform: translateY(-2px); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; background: var(--color-yellow);
  border-bottom: 1px solid var(--color-yellow-dark);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.25rem; color: #fff; letter-spacing: -0.02em; }
.brand:hover { color: #fff; }
.brand-mark { width: 34px; height: 34px; }
.nav-links { display: flex; align-items: center; gap: .35rem; list-style: none; padding: 0; }
.nav-links a { color: rgba(255,255,255,.88); font-weight: 600; font-size: .98rem; padding: .55rem .8rem; border-radius: 8px; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.15); }
.nav-cta { margin-left: .5rem; }
.nav-cta .btn--primary { background: var(--color-card); color: var(--color-yellow); }
.nav-cta .btn--primary:hover { background: rgba(255,255,255,.9); color: var(--color-yellow-dark); }
.nav-toggle { display: none; background: none; border: 1px solid rgba(255,255,255,.4); border-radius: 8px; width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center; color: #fff; }
.nav-toggle svg { width: 22px; height: 22px; stroke: #fff; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: var(--color-yellow); border-bottom: 1px solid var(--color-yellow-dark); padding: 1rem; gap: .25rem;
    box-shadow: var(--shadow-md); display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .85rem 1rem; }
  .nav-cta { margin: .5rem 0 0; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(3rem, 7vw, 5.5rem) 0 var(--space); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(1000px 500px at 80% -10%, rgba(34,197,94,.16), transparent 60%),
              radial-gradient(700px 400px at -10% 20%, rgba(34,197,94,.08), transparent 55%);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.hero h1 { margin-bottom: 1.25rem; }
.hero-lead { font-size: 1.2rem; color: var(--color-muted); margin-bottom: 2rem; max-width: 38ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.75rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.25rem; color: var(--color-muted); font-size: .95rem; font-weight: 600; }
.hero-trust span { display: inline-flex; align-items: center; gap: .4rem; }
.hero-trust svg { width: 18px; height: 18px; color: var(--color-success); }
.hero-visual img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } .hero-visual { order: -1; } }

/* ---------- Cards / Grid ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 920px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card--tint { background: var(--color-card); border-color: #16324A; }
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--color-muted); margin-bottom: 0; }
.icon-badge {
  width: 52px; height: 52px; border-radius: 14px; background: var(--color-card);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; color: var(--color-yellow-dark);
}
.icon-badge svg { width: 26px; height: 26px; }

/* ---------- Feature list ---------- */
.checklist { list-style: none; padding: 0; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .85rem; color: var(--color-text); }
.checklist svg { width: 22px; height: 22px; color: var(--color-success); flex-shrink: 0; margin-top: 2px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat-num { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; color: var(--color-yellow-dark); letter-spacing: -0.03em; }
.stat-label { color: var(--color-muted); font-weight: 600; font-size: .95rem; }
@media (max-width: 600px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; align-items: start; }
@media (max-width: 1080px) { .pricing { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .pricing { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.price-card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); position: relative; }
.price-card--featured { border: 2px solid var(--color-yellow); box-shadow: var(--shadow-md); }
.price-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--color-yellow); color: #fff; font-weight: 700; font-size: .8rem; padding: .35rem 1rem; border-radius: 999px; }
.price-name { font-weight: 700; font-size: 1.15rem; color: var(--color-heading); }
.price-value { font-size: 2.75rem; font-weight: 800; color: var(--color-heading); letter-spacing: -0.03em; margin: .5rem 0; }
.price-value small { font-size: 1rem; font-weight: 600; color: var(--color-muted); }
.price-note { color: var(--color-muted); font-size: .95rem; margin-bottom: 1.25rem; }
.price-card .btn { width: 100%; margin-top: 1.25rem; }

/* ---------- Comparison table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--color-border); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; min-width: 560px; }
th, td { padding: 1rem 1.25rem; text-align: left; border-bottom: 1px solid var(--color-border); }
thead th { background: var(--color-card); color: var(--color-heading); font-weight: 700; }
tbody tr:last-child td { border-bottom: none; }
td svg { width: 20px; height: 20px; color: var(--color-success); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 1.25rem; }
.step { display: grid; grid-template-columns: 48px 1fr; gap: 1.1rem; align-items: start; }
.step-num {
  counter-increment: step; width: 48px; height: 48px; border-radius: 50%;
  background: var(--color-yellow); color: #fff; font-weight: 800; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.step-num::before { content: counter(step); }
.step h3 { margin-bottom: .35rem; }
.step p { color: var(--color-muted); margin-bottom: 0; }

/* ---------- Tabs (install guides) ---------- */
.tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.tab-btn {
  background: var(--color-card); border: 1px solid var(--color-border); border-radius: 999px; padding: .6rem 1.1rem;
  font-weight: 600; font-size: .95rem; color: var(--color-text); cursor: pointer; transition: all .2s ease;
}
.tab-btn:hover { border-color: var(--color-yellow); }
.tab-btn[aria-selected="true"] { background: var(--color-yellow); border-color: var(--color-yellow); color: #fff; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fade .3s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--color-border); border-radius: var(--radius-sm); margin-bottom: .85rem;
  background: var(--color-card); overflow: hidden;
}
.faq details[open] { border-color: var(--color-yellow); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.1rem 1.35rem; font-weight: 700; color: var(--color-heading);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--color-yellow-dark); font-weight: 400; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details > div { padding: 0 1.35rem 1.25rem; color: var(--color-muted); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%); border-radius: var(--radius); padding: clamp(2.5rem, 6vw, 4rem); text-align: center; color: #fff; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #94A3B8; max-width: 540px; margin: 1rem auto 2rem; font-size: 1.1rem; }

/* ---------- Devices ---------- */
.devices { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
@media (max-width: 760px) { .devices { grid-template-columns: repeat(3, 1fr); } }
.device { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 1.25rem .75rem; text-align: center; transition: all .2s ease; }
.device:hover { border-color: var(--color-yellow); transform: translateY(-3px); }
.device svg { width: 38px; height: 38px; margin: 0 auto .6rem; color: var(--color-heading); }
.device span { font-weight: 600; font-size: .9rem; color: var(--color-text); }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: .9rem; color: var(--color-muted); padding: 1.25rem 0 0; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; }
.breadcrumbs li::after { content: "/"; margin-left: .5rem; color: var(--color-border); }
.breadcrumbs li:last-child::after { content: ""; }
.breadcrumbs a { color: var(--color-muted); font-weight: 600; }
.breadcrumbs a:hover { color: var(--color-yellow-dark); }

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
@media (max-width: 920px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .post-grid { grid-template-columns: 1fr; } }
.post-card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.post-card-body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.post-cat { font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--color-yellow-dark); margin-bottom: .5rem; }
.post-card h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.post-card h3 a { color: var(--color-heading); }
.post-card h3 a:hover { color: var(--color-yellow-dark); }
.post-card p { color: var(--color-muted); font-size: .96rem; flex: 1; }
.post-meta { color: var(--color-muted); font-size: .85rem; margin-top: 1rem; display: flex; gap: .75rem; }

/* ---------- Pagination ---------- */
.pagination { display: flex; justify-content: center; align-items: center; gap: .5rem; margin-top: 3.5rem; flex-wrap: wrap; }
.page-link { display: inline-flex; align-items: center; justify-content: center; min-width: 46px; height: 46px; padding: 0 1rem; border: 1px solid var(--color-border); border-radius: 10px; font-weight: 700; color: var(--color-heading); background: var(--color-card); transition: all .2s ease; }
.page-link:hover { border-color: var(--color-yellow); color: var(--color-heading); transform: translateY(-2px); }
.page-link.is-current { background: var(--color-yellow); border-color: var(--color-yellow); color: #fff; }
.page-link.is-disabled { opacity: .4; pointer-events: none; }

/* ---------- Article ---------- */
.article { max-width: 760px; margin: 0 auto; }
.article-hero img { border-radius: var(--radius); box-shadow: var(--shadow-md); margin: 1.5rem 0; }
.article-meta { color: var(--color-muted); font-size: .92rem; display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: .5rem; }
.article-body { font-size: 1.1rem; }
.article-body h2 { margin: 2.5rem 0 1rem; padding-top: .5rem; }
.article-body h3 { margin: 1.75rem 0 .75rem; }
.article-body p { margin-bottom: 1.2rem; }
.article-body ul, .article-body ol { margin-bottom: 1.2rem; }
.article-body li { margin-bottom: .5rem; }
.article-body img { border-radius: var(--radius-sm); margin: 1.5rem 0; box-shadow: var(--shadow-sm); }
.toc { background: var(--color-card); border: 1px solid #16324A; border-radius: var(--radius); padding: 1.5rem 1.75rem; margin: 2rem 0; }
.toc strong { display: block; color: var(--color-heading); margin-bottom: .75rem; font-size: 1.05rem; }
.toc ol { margin: 0; padding-left: 1.2rem; }
.toc li { margin-bottom: .4rem; }
.toc a { color: var(--color-text); font-weight: 600; }
.callout { background: var(--color-card); border-left: 4px solid var(--color-yellow); border-radius: var(--radius-sm); padding: 1.25rem 1.5rem; margin: 1.75rem 0; }
.callout p:last-child { margin-bottom: 0; }
.inline-cta { background: linear-gradient(135deg, #0E141B, #131A22); border: 1px solid #16324A; border-radius: var(--radius); padding: 1.75rem; text-align: center; margin: 2.5rem 0; }
.inline-cta h3 { margin-bottom: .5rem; }
.inline-cta p { color: var(--color-muted); margin-bottom: 1.25rem; }

/* ---------- Footer ---------- */
.site-footer { background: #0F172A; color: #94A3B8; padding: var(--space) 0 2rem; margin-top: var(--space); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.25rem; color: #fff; margin-bottom: 1rem; }
.site-footer p { color: #94A3B8; font-size: .95rem; }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; letter-spacing: .02em; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: .6rem; }
.footer-col a { color: #94A3B8; font-size: .95rem; }
.footer-col a:hover { color: var(--color-yellow); }
.footer-bottom { border-top: 1px solid #1E293B; padding-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .88rem; }
.footer-bottom a { color: #94A3B8; }
.footer-bottom a:hover { color: var(--color-yellow); }

/* ---------- Utilities ---------- */
.text-center { text-center: center; text-align: center; }
.mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.disclaimer { font-size: .85rem; color: var(--color-muted); background: #0E141B; border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 1rem 1.25rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- Hero video background ---------- */
.hero--video { position: relative; overflow: hidden; }
.hero--video::before { display: none; }
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
}
.hero-video-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,15,20,.72) 0%, rgba(11,15,20,.82) 100%),
              radial-gradient(900px 480px at 80% -10%, rgba(34,197,94,.18), transparent 60%);
}
.hero--video .hero-visual { display: none; }
.hero--video .hero-grid { grid-template-columns: 1fr; max-width: 760px; }
.hero--video .hero-lead { max-width: 52ch; }

/* ---------- Pricing: compact cards (hakuna-style, tighter) ---------- */
.price-card { padding: 1.5rem 1.35rem; }
.price-name { font-size: 1.05rem; }
.price-value { font-size: 2.2rem; margin: .35rem 0; }
.price-value small { font-size: .9rem; }
.price-note { font-size: .85rem; margin-bottom: .9rem; }
.price-card .checklist { margin-top: .25rem; }
.price-card .checklist li {
  font-size: .82rem; line-height: 1.35; gap: .5rem; margin-bottom: .5rem;
}
.price-card .checklist svg { width: 16px; height: 16px; margin-top: 1px; }
.price-card .btn { margin-top: 1rem; padding: .75rem 1.2rem; font-size: .95rem; }
.price-badge { font-size: .72rem; padding: .3rem .8rem; }

/* ============ PREMIUM HEADER + HERO (override) ============ */
/* Transparent header over the hero video; solid on scroll */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  background: rgba(11,15,20,.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.brand { color: #fff; }
.brand:hover { color: #fff; }

/* Hamburger menu ALWAYS (dropdown on every viewport) */
.nav-toggle {
  display: inline-flex; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25); border-radius: 10px;
  width: 46px; height: 46px; color: #fff;
}
.nav-toggle svg { stroke: #fff; }
.nav-links {
  position: absolute; top: 64px; right: 1.25rem; left: auto;
  width: min(280px, calc(100vw - 2.5rem));
  flex-direction: column; align-items: stretch; gap: .15rem;
  background: rgba(15,20,28,.97); backdrop-filter: blur(14px);
  border: 1px solid var(--color-border); border-radius: 14px;
  padding: .6rem; box-shadow: var(--shadow-lg); display: none;
}
.nav-links.open { display: flex; }
.nav-links a { color: #E2E8F0; padding: .8rem 1rem; border-radius: 9px; font-weight: 600; }
.nav-links a:hover, .nav-links a[aria-current="page"] { background: rgba(34,197,94,.18); color: #fff; }
.nav-cta { margin: .35rem 0 0; }
.nav-cta .btn--primary { background: var(--color-yellow); color: #fff; width: 100%; }
.nav-cta .btn--primary:hover { background: var(--color-yellow-dark); color: #fff; }

/* Premium hero spacing + typography */
.hero--video { padding-top: clamp(7rem, 14vh, 10rem); padding-bottom: clamp(4.5rem, 10vh, 7rem); min-height: 88vh; display: flex; align-items: center; }
.hero--video .eyebrow {
  background: rgba(34,197,94,.15); color: #4ADE80; border: 1px solid rgba(34,197,94,.3);
  backdrop-filter: blur(4px); letter-spacing: .12em;
}
.hero--video h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: 1.05; letter-spacing: -0.03em;
  text-shadow: 0 2px 30px rgba(0,0,0,.5);
}
.hero--video .hero-lead { font-size: clamp(1.05rem, 2.2vw, 1.35rem); color: #CBD5E1; text-shadow: 0 1px 12px rgba(0,0,0,.5); }
.hero--video .hero-cta { gap: 1rem; margin-top: 2rem; }
.hero--video .btn--primary { box-shadow: 0 10px 30px rgba(34,197,94,.35); }
.hero--video .hero-trust { color: #E2E8F0; margin-top: 2rem; }
.hero--video .hero-trust svg { color: #4ADE80; }
.hero-video-overlay {
  background: linear-gradient(180deg, rgba(11,15,20,.55) 0%, rgba(11,15,20,.78) 70%, var(--color-bg) 100%);
}

/* ============ Pricing features — hakuna style (centered + dividers) ============ */
.price-card .checklist { margin-top: .5rem; }
.price-card .checklist li {
  flex-direction: row; align-items: flex-start; text-align: left;
  gap: .6rem; padding: .7rem .15rem; margin-bottom: 0;
  border-bottom: 1px solid var(--color-border);
  font-size: .85rem; line-height: 1.4; color: #E2E8F0;
}
.price-card .checklist li:last-child { border-bottom: none; }
.price-card .checklist svg {
  width: 20px; height: 20px; margin-top: 1px; flex-shrink: 0; color: var(--color-success);
}
/* featured card: a touch brighter dividers */
.price-card--featured .checklist li { border-color: rgba(34,197,94,.18); }
