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

:root {
  --color-navy: #1a3a5c;
  --color-navy-dark: #0f2840;
  --color-blue: #2d6a9f;
  --color-blue-light: #e8f2fa;
  --color-green: #2a7d4f;
  --color-green-light: #e6f5ec;
  --color-orange: #d4760a;
  --color-orange-light: #fef3e2;
  --color-cream: #faf8f5;
  --color-white: #ffffff;
  --color-gray-100: #f4f4f4;
  --color-gray-200: #e0e0e0;
  --color-gray-400: #999;
  --color-gray-600: #555;
  --color-gray-800: #333;
  --color-text: #2c2c2c;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Merriweather', Georgia, serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-green);
  color: var(--color-white);
}

.btn-primary:hover {
  background: #236b3f;
}

.btn-secondary {
  background: var(--color-blue-light);
  color: var(--color-navy);
}

.btn-secondary:hover {
  background: #d0e6f5;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-gray-200);
  color: var(--color-gray-600);
}

.btn-outline:hover {
  border-color: var(--color-gray-400);
}

.btn-light {
  background: var(--color-white);
  color: var(--color-navy);
}

.btn-light:hover {
  background: var(--color-gray-100);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-top: 3px solid var(--color-navy);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 1000;
  padding: 16px 0;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
  font-size: 0.9rem;
  color: var(--color-gray-600);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ===== Header (scroll) ===== */
.header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  box-shadow: var(--shadow-sm);
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}

.header--visible {
  transform: translateY(0);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-wordmark {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
  white-space: nowrap;
}

.brand-wordmark em {
  font-style: normal;
  color: var(--color-green);
}

.brand-wordmark__tld {
  font-size: 0.75em;
  font-weight: 400;
  color: var(--color-gray-400);
}

.brand-wordmark--light {
  color: #fff;
  font-size: 1.4rem;
}

.brand-wordmark--light em {
  color: #6ecf95;
}

.brand-wordmark--light .brand-wordmark__tld {
  color: rgba(255, 255, 255, 0.55);
}

.brand-wordmark--modal {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: var(--color-gray-600);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.nav a:hover {
  color: var(--color-navy);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  transition: 0.3s;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero Banner ===== */
.hero-banner {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-banner__bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.png') center center / cover no-repeat;
  z-index: 0;
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.15) 70%, transparent 100%),
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 30%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.hero-banner__container {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 28px 20px;
  width: 100%;
}

.hero-banner__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-banner__logo {
  flex-shrink: 0;
  text-decoration: none;
}

.hero-banner__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-banner__nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-family: 'Inter', var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

.hero-banner__nav-link:hover {
  color: #fff;
  text-decoration: none;
}

.hero-banner__nav-link svg {
  opacity: 0.7;
}

.hero-banner__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hero-banner__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

.hero-banner__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hero-banner__burger.active span:nth-child(2) {
  opacity: 0;
}

.hero-banner__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero-banner__main {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.hero-banner__content {
  max-width: 520px;
}

.hero-banner__eyebrow {
  font-family: 'Inter', var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.hero-banner__title {
  font-family: 'Inter', var(--font-body);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-banner__sub {
  font-family: 'Inter', var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 420px;
}

.hero-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: #f0f0f0;
  color: #111;
  font-family: 'Inter', var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-banner__cta:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0,0,0,0.4);
  text-decoration: none;
}

.hero-banner__tv-area {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.hero-banner__tv {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16 / 10;
  background: #111;
  border-radius: 6px;
  padding: 8px;
  box-shadow:
    0 0 0 2px #333,
    0 0 0 6px #1a1a1a,
    0 20px 60px rgba(0,0,0,0.6);
  position: relative;
}

.hero-banner__tv::before {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 8px;
  background: #222;
  border-radius: 0 0 4px 4px;
}

.tv-screen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 4px;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  overflow: hidden;
}

.tv-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-family: 'Inter', var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  transition: transform 0.15s, filter 0.15s, box-shadow 0.15s;
  position: relative;
  overflow: hidden;
}

.tv-tile:hover {
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.5);
  text-decoration: none;
  filter: brightness(1.15);
}

.tv-tile__brand {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
}

.tv-tile__name {
  font-size: 0.55rem;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 2px;
}

.tv-tile--netflix { background: #e50914; }
.tv-tile--disney { background: #113ccf; }
.tv-tile--prime { background: #00a8e1; }
.tv-tile--youtube { background: #282828; }
.tv-tile--youtube .tv-tile__brand { color: #ff0000; }
.tv-tile--max { background: #002be7; }
.tv-tile--appletv { background: #1a1a1a; }

.tv-tile--show {
  grid-column: span 1;
}

.tv-tile__show {
  font-size: 0.5rem;
  font-weight: 600;
  text-align: center;
  padding: 4px;
  line-height: 1.2;
}

.tv-tile--st { background: linear-gradient(135deg, #1a0030, #4a0060); }
.tv-tile--tlou { background: linear-gradient(135deg, #1a2a1a, #3a5a2a); }
.tv-tile--mando { background: linear-gradient(135deg, #2a1a0a, #5a3a1a); }
.tv-tile--hotd { background: linear-gradient(135deg, #1a0a0a, #4a1a1a); }

.hero-banner__features {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-family: 'Inter', var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

.hero-feature:hover {
  color: #fff;
  text-decoration: none;
}

.hero-feature svg {
  opacity: 0.6;
  flex-shrink: 0;
}

.hero-feature__sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
}

.hero-banner__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  gap: 16px;
}

.hero-banner__domain {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: 'Inter', var(--font-body);
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 0.2s;
}

.hero-banner__domain:hover {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.hero-banner__tagline {
  font-family: 'Inter', var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ===== Old Hero (removed) ===== */

/* ===== Trust Bar ===== */
.trust-bar {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
  padding: 24px 0;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: 1.3rem;
  color: var(--color-navy);
  font-family: var(--font-heading);
}

.trust-item span {
  font-size: 0.85rem;
  color: var(--color-gray-600);
}

/* ===== Sections ===== */
.section {
  padding: 60px 0;
}

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

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.section-header p {
  color: var(--color-gray-600);
  max-width: 550px;
  margin: 0 auto;
}

/* ===== Offers ===== */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.offer-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
  position: relative;
  display: flex;
  flex-direction: column;
}

.offer-banner {
  position: absolute;
  top: -1px;
  right: 20px;
  padding: 4px 12px;
  border-radius: 0 0 6px 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.offer-banner-blue {
  background: var(--color-blue-light);
  color: var(--color-blue);
}

.offer-banner-green {
  background: var(--color-green-light);
  color: var(--color-green);
}

.offer-banner-orange {
  background: var(--color-orange-light);
  color: var(--color-orange);
}

.offer-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-navy);
  margin-bottom: 10px;
  margin-top: 8px;
}

.offer-desc {
  color: var(--color-gray-600);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 16px;
}

.offer-from {
  font-size: 0.9rem;
  color: var(--color-gray-600);
  margin-bottom: 16px;
}

.offer-from strong {
  font-size: 1.4rem;
  color: var(--color-navy);
}

/* ===== Promo Banner ===== */
.promo-banner {
  background: var(--color-orange);
  color: var(--color-white);
  padding: 40px 0;
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.promo-text h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.promo-text p {
  opacity: 0.92;
  max-width: 600px;
}

/* ===== Benefits ===== */
.benefits {
  background: var(--color-white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--color-blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-item h3 {
  font-size: 1.05rem;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.benefit-item p {
  font-size: 0.92rem;
  color: var(--color-gray-600);
}

/* ===== Form Section ===== */
.form-section {
  background: var(--color-blue-light);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.form-info h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.form-info > p {
  color: var(--color-gray-600);
  margin-bottom: 24px;
}

.form-contact {
  background: var(--color-white);
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 0.92rem;
}

.form-contact p {
  padding: 4px 0;
}

.testimonial {
  background: var(--color-white);
  padding: 20px;
  border-radius: var(--radius);
  border-left: 4px solid var(--color-green);
  font-style: italic;
}

.testimonial cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--color-gray-400);
}

.lead-form {
  background: var(--color-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--color-gray-800);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-blue);
}

.form-group input.error {
  border-color: #c0392b;
}

.error-msg {
  display: block;
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 4px;
  min-height: 1em;
}

.checkbox-group {
  margin-bottom: 22px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  font-size: 0.88rem;
  cursor: pointer;
}

.checkbox-label input {
  margin-top: 3px;
  flex-shrink: 0;
}

.form-hint {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-gray-400);
  margin-top: 12px;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item summary {
  padding: 16px 20px;
  font-weight: 600;
  cursor: pointer;
  color: var(--color-navy);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  float: right;
  font-size: 1.2rem;
  color: var(--color-gray-400);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 20px 16px;
  color: var(--color-gray-600);
  font-size: 0.95rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--color-navy-dark);
  color: rgba(255,255,255,0.8);
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
}

.footer-desc {
  font-size: 0.9rem;
}

.footer-col h4 {
  color: var(--color-white);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.footer-col p {
  font-size: 0.88rem;
  padding: 3px 0;
}

.footer-col a {
  color: rgba(255,255,255,0.75);
}

.footer-col a:hover {
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ===== Simple Header (standalone legal pages) ===== */
.simple-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
  padding: 18px 0;
}

.simple-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.simple-header-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gray-600);
  text-decoration: none;
}

.simple-header-back:hover {
  color: var(--color-navy);
  text-decoration: none;
}

/* ===== Legal Page Footer (standalone) ===== */
.legal-footer {
  border-top: 1px solid var(--color-gray-200);
  padding: 24px 0;
  text-align: center;
}

.legal-footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.legal-footer p {
  color: var(--color-gray-400);
  font-size: 0.85rem;
}

/* ===== Legal ===== */
.legal-section {
  padding: 40px 0;
  border-top: 1px solid var(--color-gray-200);
}

.legal-section h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-navy);
  margin-bottom: 20px;
}

.legal-content {
  max-width: 720px;
}

.legal-section p {
  color: var(--color-gray-600);
  font-size: 0.92rem;
  max-width: 700px;
  margin-bottom: 16px;
}

.legal-section h3 {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  color: var(--color-navy);
  margin: 20px 0 8px;
}

.legal-note {
  background: var(--color-orange-light);
  color: var(--color-orange);
  border: 1px solid #f0cd9a;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-weight: 600;
  font-size: 0.85rem !important;
  max-width: 700px;
}

/* ===== Modal ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal[hidden] {
  display: none;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.modal-content {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-gray-400);
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--color-gray-800);
}

.modal-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.modal-content h2 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  margin-bottom: 12px;
}

.modal-content p {
  color: var(--color-gray-600);
  margin-bottom: 8px;
}

.modal-sub {
  font-size: 0.85rem;
  color: var(--color-gray-400);
  margin-bottom: 24px !important;
}

.modal-content .btn {
  min-width: 160px;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 900px) {
  .hero-banner__main {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-banner__content {
    max-width: none;
  }

  .hero-banner__sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-banner__tv-area {
    justify-content: center;
  }

  .hero-banner__features {
    justify-content: center;
  }

  .hero-banner__bar {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .trust-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .offers-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .promo-inner {
    flex-direction: column;
    text-align: center;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 16px 20px;
    gap: 0;
    border-bottom: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow-md);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-gray-100);
  }

  .burger {
    display: flex;
  }

  .header-inner {
    position: relative;
  }

  /* Hero banner's own top navigation (visible before scrolling) */
  .hero-banner__header {
    position: relative;
  }

  .hero-banner__nav {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(15, 30, 48, 0.97);
    backdrop-filter: blur(6px);
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 50;
  }

  .hero-banner__nav.open {
    display: flex;
  }

  .hero-banner__nav-link {
    padding: 14px 12px;
    border-radius: var(--radius);
    font-size: 0.8rem;
  }

  .hero-banner__nav-link:hover,
  .hero-banner__nav-link:active {
    background: rgba(255, 255, 255, 0.08);
  }

  .hero-banner__burger {
    display: flex;
  }

  .hero {
    padding: 40px 0 50px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .section {
    padding: 40px 0;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }

  .lead-form {
    padding: 24px 20px;
  }

  .trust-items {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .trust-item strong {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .header-inner {
    height: 64px;
  }

  .brand-wordmark {
    font-size: 1.15rem;
  }

  .nav {
    top: 64px;
  }

  .hero h1 {
    font-size: 1.45rem;
  }

  .btn-lg {
    display: block;
    width: 100%;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
  }

  .card-price {
    font-size: 2rem;
  }

  .promo-text h2 {
    font-size: 1.25rem;
  }
}
