/* ============================================
   TV CHANNEL PACKAGES — COMPLIANT SITE STYLES
   ============================================ */

:root {
  --navy: #132340;
  --navy-light: #1e3560;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --cream: #faf8f4;
  --white: #ffffff;
  --gray-100: #f5f4f0;
  --gray-200: #e8e6e0;
  --gray-400: #9c9890;
  --gray-600: #635f58;
  --gray-800: #2e2c28;
  --red: #c0392b;
  --green: #1a7a4a;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 2px 12px rgba(19,35,64,0.08);
  --shadow-lg: 0 8px 40px rgba(19,35,64,0.14);

  --max-w: 1140px;
  --section-pad: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
}

a { color: var(--navy); text-decoration: underline; }
a:hover { color: var(--gold); }

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

/* UTILITIES */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================
   COMPLIANCE BAR
   ============================================ */
.compliance-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  padding: 10px 24px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
}

.compliance-bar .compliance-icon {
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.compliance-bar p {
  margin: 0;
}

.compliance-bar strong {
  color: var(--gold);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(19,35,64,0.06);
}

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

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

.logo-mark {
  font-size: 22px;
  color: var(--gold);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--navy);
  line-height: 1.2;
}

.logo-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.logo-light .logo-text { color: var(--white); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.15s;
}

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

.nav-phone {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  background: var(--gray-100);
  padding: 8px 16px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-phone:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.2s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: var(--cream);
  padding: 80px 0 72px;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(19,35,64,0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Decorative lines */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 50%, var(--navy) 100%);
}

.hero-inner {
  position: relative;
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: #8a6e28;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-disclaimer {
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.6;
  max-width: 520px;
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
  margin-top: 4px;
}

.hero-disclaimer a {
  color: var(--gray-600);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 32px;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.step-card {
  background: var(--white);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s;
}

.step-card:hover { background: var(--cream); }

.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--gray-200);
  line-height: 1;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.65;
}

.transparency-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f0f7f4;
  border: 1px solid #b8dccb;
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.transparency-icon {
  font-size: 20px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.transparency-text {
  font-size: 14px;
  color: #2e5040;
  line-height: 1.65;
}

.transparency-text strong { color: #1a7a4a; }

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.2s;
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

.services-caveat {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.6;
}

.services-caveat strong { color: var(--navy); }

/* ============================================
   WHY US
   ============================================ */
.why-us {
  background: var(--white);
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.why-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

.why-list li > div strong {
  display: block;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 4px;
}

.why-list li > div p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Visual card */
.visual-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}

.vc-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.vc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.vc-list li {
  font-size: 14px;
  font-weight: 500;
}

.vc-list.positive li { color: rgba(255,255,255,0.9); }
.vc-list.negative li { color: rgba(255,255,255,0.55); }

.vc-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 20px 0;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--cream);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.required { color: var(--red); }

.form-group input,
.form-group select {
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color 0.15s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--navy);
}

.form-group input::placeholder { color: var(--gray-400); }

.form-group { margin-bottom: 20px; }
.form-row .form-group { margin-bottom: 0; }

.form-consent {
  margin-bottom: 20px;
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--navy);
  cursor: pointer;
}

.form-legal {
  font-size: 11.5px;
  color: var(--gray-400);
  line-height: 1.6;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
}

/* Contact sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-phone {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.contact-phone:hover { color: var(--gold); }

.contact-email {
  display: block;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 8px;
  word-break: break-all;
}

.contact-card p {
  font-size: 13px;
  color: var(--gray-400);
}

.contact-notice {
  background: #fff8e6;
  border: 1px solid #f0d080;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px;
  font-size: 13px;
  color: #7a5e18;
  line-height: 1.6;
}

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success.visible { display: block; }

.form-success h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--gray-600);
  font-size: 15px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  padding: 60px 24px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 320px;
}

.footer-links h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links ul li a:hover { color: var(--white); }

.footer-disclaimer {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-disclaimer p {
  font-size: 12px;
  line-height: 1.75;
  color: rgba(255,255,255,0.4);
}

.footer-disclaimer strong {
  color: rgba(255,255,255,0.6);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
}

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

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding: 60px 0;
  min-height: 60vh;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 8px;
}

.legal-page .last-updated {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}

.legal-body h2 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--navy);
  margin: 32px 0 10px;
}

.legal-body p, .legal-body li {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-body ul, .legal-body ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-inner { grid-template-columns: 1fr; gap: 40px; }
  .visual-card { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    flex-direction: column;
    padding: 16px 24px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }

  .main-nav.open { display: flex; }

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

  .main-nav a:last-child { border-bottom: none; }
  .nav-phone { background: none; padding: 12px 0; }

  .nav-toggle { display: flex; }

  .header-inner { position: relative; }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

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

  .contact-form { padding: 24px; }

  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .compliance-bar { font-size: 12px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge   { animation: fadeUp 0.5s ease both; animation-delay: 0.1s; }
.hero-headline { animation: fadeUp 0.5s ease both; animation-delay: 0.2s; }
.hero-sub      { animation: fadeUp 0.5s ease both; animation-delay: 0.3s; }
.hero-cta-group { animation: fadeUp 0.5s ease both; animation-delay: 0.4s; }
.hero-disclaimer { animation: fadeUp 0.5s ease both; animation-delay: 0.5s; }
