/* ═══════════════════════════════════════════════════════════
   CABLE TV PLAN DEALS — Global Stylesheet
   Dark navy + orange scheme matching Hostinger site
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --dark: #111827;
  --dark-card: #1A2035;
  --dark-surface: #1E2740;
  --dark-border: #2A3550;
  --orange: #E8731A;
  --orange-hover: #D4640F;
  --orange-light: #F59E0B;
  --white: #FFFFFF;
  --off-white: #F0F1F5;
  --text-white: #FFFFFF;
  --text-light: rgba(255,255,255,0.85);
  --text-muted: rgba(255,255,255,0.6);
  --text-dim: rgba(255,255,255,0.45);
  --blue-accent: #4B8BF5;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-white);
  line-height: 1.6;
  background: var(--dark);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
.header {
  background: var(--dark);
  border-bottom: 1px solid var(--dark-border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon { width: 40px; height: 40px; }

.logo-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.logo-text span { color: var(--orange); }

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

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover, .nav a.active {
  color: var(--white);
  border-bottom-color: var(--orange);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.3s;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}

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

.btn-orange:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 115, 26, 0.4);
}

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

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

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

.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
}

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

.btn-dark:hover {
  background: #0a0f1a;
  transform: translateY(-1px);
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.phone-icon::before {
  content: "📞";
  font-size: 16px;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  padding: 80px 0 60px;
  background: var(--dark);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 .accent { color: var(--orange); }

.hero-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-image {
  border-radius: 12px;
  overflow: hidden;
  background: var(--dark-card);
  aspect-ratio: 4/3;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: linear-gradient(135deg, #1E2740 0%, #2A3550 50%, #1A2035 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
  padding: 24px;
}

/* ═══════════════════════════════════════════════════════════
   SECTION LABELS & TITLES
   ═══════════════════════════════════════════════════════════ */
.section-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-desc {
  font-size: 16px;
  color: var(--text-light);
  max-width: 780px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════════════════════════ */
.services-section {
  padding: 80px 0;
  background: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 32px 24px;
  transition: transform 0.2s, border-color 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  font-size: 32px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

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

/* ═══════════════════════════════════════════════════════════
   STEPS
   ═══════════════════════════════════════════════════════════ */
.steps-section {
  padding: 80px 0;
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.step-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 16px;
}

.step-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.step-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════════ */
.stats-section {
  padding: 80px 0;
  background: var(--dark-surface);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  margin-top: 40px;
}

.stat-value {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   CTA BANNER (BLUE)
   ═══════════════════════════════════════════════════════════ */
.cta-blue {
  padding: 60px 0;
  background: #1E3A8A;
  text-align: center;
}

.cta-blue h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-blue p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════
   CTA BANNER (ORANGE)
   ═══════════════════════════════════════════════════════════ */
.cta-orange {
  padding: 60px 0;
  background: var(--orange);
  text-align: center;
}

.cta-orange h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-orange p {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════
   SERVICE DETAIL (Alternating Image/Text)
   ═══════════════════════════════════════════════════════════ */
.detail-section { padding: 60px 0; background: var(--dark); }

.detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.detail-block:last-child { margin-bottom: 0; }

.detail-block.reversed { direction: rtl; }
.detail-block.reversed > * { direction: ltr; }

.detail-image {
  border-radius: 12px;
  background: var(--dark-surface);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  overflow: hidden;
}

.detail-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.detail-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════════
   COMPARISON
   ═══════════════════════════════════════════════════════════ */
.comparison-section {
  padding: 80px 0;
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.comparison-card {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 32px;
}

.comparison-card.highlight {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}

.comparison-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.comparison-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.check-text { color: #34D399; }
.cross-text { color: #F87171; }

/* ═══════════════════════════════════════════════════════════
   INDEPENDENCE / ADVOCATE
   ═══════════════════════════════════════════════════════════ */
.advocate-section {
  padding: 80px 0;
  background: var(--dark-surface);
  border-top: 1px solid var(--dark-border);
}

.advocate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.advocate-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.advocate-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.advocate-features {
  margin-top: 24px;
}

.advocate-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
}

.advocate-feature-icon {
  color: var(--orange);
  font-size: 20px;
  flex-shrink: 0;
}

.advocate-feature strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  margin-bottom: 4px;
}

.advocate-feature span {
  font-size: 14px;
  color: var(--text-light);
}

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq-section { padding: 80px 0; background: var(--dark); }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.faq-item {
  border-bottom: 1px solid var(--dark-border);
  padding-bottom: 24px;
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.faq-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact-section { padding: 80px 0; background: var(--dark-surface); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
}

.contact-block {
  background: var(--dark);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 32px;
}

.contact-block h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--dark-border);
}

.contact-item:last-child { border-bottom: none; }
.contact-item-icon { font-size: 20px; flex-shrink: 0; }

.contact-item strong {
  display: block;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-item span {
  font-size: 14px;
  color: var(--text-light);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
  transition: color 0.2s;
}

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

.footer-support h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 20px;
}

.footer-support .phone {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-support p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-bottom .tagline {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
}

/* ═══════════════════════════════════════════════════════════
   STICKY MOBILE CALL BAR
   ═══════════════════════════════════════════════════════════ */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--orange);
  padding: 12px 24px;
  z-index: 999;
  text-align: center;
}

.sticky-call a {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* ═══════════════════════════════════════════════════════════
   DISCLOSURE
   ═══════════════════════════════════════════════════════════ */
.disclosure {
  padding: 24px 0;
  background: var(--dark-surface);
  text-align: center;
  border-top: 1px solid var(--dark-border);
}

.disclosure p {
  font-size: 13px;
  color: var(--text-dim);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero .container,
  .detail-block,
  .advocate-grid,
  .contact-grid,
  .faq-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .detail-block.reversed { direction: ltr; }
  .hero h1 { font-size: 34px; }
  .section-title { font-size: 28px; }
  .stat-value { font-size: 40px; }

  .services-grid, .steps-grid, .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-image { order: -1; }
  .nav { display: none; }
  .mobile-menu-btn { display: block; }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    border-bottom: 1px solid var(--dark-border);
    padding: 16px 24px;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }

  .sticky-call { display: block; }
  .footer { padding-bottom: 80px; }
}

@media (max-width: 600px) {
  .hero { padding: 40px 0; }
  .hero h1 { font-size: 28px; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }
  .cta-blue h2, .cta-orange h2 { font-size: 24px; }
}
