/* ============================================================
   Internet TV Cables Hub — Shared Stylesheet
   Theme: Premium Corporate — Deep Slate + Gold Accent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Nunito+Sans:wght@300;400;600;700&display=swap');

:root {
  --slate-950: #0b0f1a;
  --slate-900: #111827;
  --slate-800: #1f2937;
  --slate-700: #374151;
  --slate-600: #4b5563;
  --slate-400: #9ca3af;
  --slate-200: #e5e7eb;
  --slate-100: #f3f4f6;
  --slate-50:  #f9fafb;
  --teal-700:  #0f766e;
  --teal-600:  #0d9488;
  --teal-500:  #14b8a6;
  --teal-400:  #2dd4bf;
  --teal-100:  #ccfbf1;
  --gold:      #d97706;
  --gold-light:#fbbf24;
  --white:     #ffffff;
  --radius:    10px;
  --radius-lg: 18px;
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--slate-900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }

/* ── NAVIGATION ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 72px;
  background: rgba(11,15,26,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center;
  padding: 0 6%;
}
.nav-inner {
  width: 100%; max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--white); text-decoration: none; letter-spacing: -0.3px;
  display: flex; align-items: center; gap: 10px;
}
.logo-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-400));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.site-logo em { color: var(--teal-400); font-style: normal; }
.nav-menu { display: flex; list-style: none; gap: 0.25rem; }
.nav-menu a {
  color: rgba(255,255,255,0.68); text-decoration: none;
  font-size: 0.875rem; font-weight: 600; letter-spacing: 0.2px;
  padding: 0.5rem 0.85rem; border-radius: 7px;
  transition: color 0.2s, background 0.2s;
}
.nav-menu a:hover { color: var(--teal-400); background: rgba(20,184,166,0.08); }
.nav-menu a.active { color: var(--teal-400); }
.nav-cta {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
  color: var(--white) !important;
  padding: 0.55rem 1.35rem !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(13,148,136,0.35);
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(13,148,136,0.45) !important; background: rgba(0,0,0,0) !important; background: linear-gradient(135deg, var(--teal-500), var(--teal-600)) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: linear-gradient(160deg, var(--slate-950) 0%, #0d2027 60%, #0a1f1c 100%);
  padding: 130px 6% 70px;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(20,184,166,0.1) 0%, transparent 70%);
}
.ph-inner { max-width: 1240px; margin: 0 auto; position: relative; z-index: 2; }
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-bottom: 1.25rem; }
.breadcrumb a { color: var(--teal-400); font-size: 0.8rem; font-weight: 600; text-decoration: none; }
.breadcrumb a:hover { color: var(--teal-300); }
.breadcrumb span { color: rgba(255,255,255,0.25); font-size: 0.8rem; }
.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem); color: var(--white);
  margin-bottom: 0.75rem;
}
.page-header .ph-meta { color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.6; }
.ph-tag {
  display: inline-block; background: rgba(20,184,166,0.15);
  border: 1px solid rgba(20,184,166,0.3); color: var(--teal-400);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px; margin-bottom: 1rem;
}

/* ── CONTENT BODY (legal pages) ── */
.content-wrap { max-width: 860px; margin: 0 auto; padding: 80px 6%; }
.content-wrap h2 {
  font-size: 1.3rem; color: var(--slate-900);
  margin: 2.75rem 0 1rem; padding-top: 2rem;
  border-top: 1px solid var(--slate-200);
}
.content-wrap h2:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }
.content-wrap p { font-size: 0.94rem; color: var(--slate-600); line-height: 1.85; margin-bottom: 1rem; }
.content-wrap ul { margin: 0.75rem 0 1rem 0; list-style: none; }
.content-wrap ul li {
  font-size: 0.94rem; color: var(--slate-600); line-height: 1.8;
  margin-bottom: 0.5rem; padding-left: 1.4rem; position: relative;
}
.content-wrap ul li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal-500);
}

/* Callout boxes */
.box { border-radius: var(--radius-lg); padding: 1.5rem 1.75rem; margin: 1.75rem 0; }
.box-blue  { background: #eff6ff; border-left: 4px solid #3b82f6; }
.box-blue p { color: #1e3a5f; font-size: 0.875rem; margin: 0; }
.box-amber { background: #fffbeb; border: 1px solid #fde68a; }
.box-amber p { color: #78350f; font-size: 0.875rem; margin-bottom: 0.5rem; }
.box-amber p:last-child { margin-bottom: 0; }
.box-teal  { background: var(--teal-100); border: 1px solid rgba(13,148,136,0.3); }
.box-teal p { color: #134e4a; font-size: 0.875rem; margin-bottom: 0.5rem; }
.box-teal p:last-child { margin-bottom: 0; }
.box-dark  { background: var(--slate-900); border-radius: var(--radius-lg); padding: 2rem; margin: 2rem 0; }
.box-dark h3 { font-size: 0.85rem; font-weight: 700; color: var(--teal-400); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1rem; font-family: 'Nunito Sans', sans-serif; }
.box-dark p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 0.75rem; }
.box-dark p:last-child { margin-bottom: 0; }
.box-dark ul { margin: 0; }
.box-dark ul li { color: rgba(255,255,255,0.6); font-size: 0.875rem; }
.box-dark ul li::before { background: var(--teal-500); }

.info-card {
  background: var(--slate-50); border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); padding: 1.5rem; margin: 1.5rem 0;
}
.info-card h4 { font-family: 'Nunito Sans',sans-serif; font-size: 0.875rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.75rem; }
.info-card p { font-size: 0.875rem; color: var(--slate-600); margin-bottom: 0.4rem; }
.info-card p:last-child { margin-bottom: 0; }

/* Step list */
.step-list { list-style: none; margin: 1.5rem 0 !important; }
.step-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding-left: 0 !important;
}
.step-list li::before { display: none !important; }
.step-num {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--teal-600); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 0.9rem; font-weight: 700;
}
.step-body strong { display: block; font-size: 0.9rem; color: var(--slate-900); margin-bottom: 0.2rem; }
.step-body span { font-size: 0.85rem; color: var(--slate-600); line-height: 1.6; }

/* ── FOOTER ── */
.site-footer {
  background: var(--slate-950);
  padding: 70px 6% 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .site-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.38); line-height: 1.75; max-width: 300px; margin-bottom: 0.85rem; }
.footer-col h5 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: rgba(255,255,255,0.35);
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 0.85rem; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--teal-400); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin-bottom: 1.5rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); line-height: 1.6; }
.footer-legal-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-legal-links a { font-size: 0.75rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-legal-links a:hover { color: var(--teal-400); }
.footer-disclaimer-text {
  max-width: 1240px; margin: 1rem auto 0;
  font-size: 0.72rem; color: rgba(255,255,255,0.2);
  line-height: 1.7; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* ── UTILITIES ── */
.container { max-width: 1240px; margin: 0 auto; }
.section-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: var(--teal-600);
  margin-bottom: 0.75rem;
}
.section-title { font-size: clamp(1.9rem, 3.2vw, 2.9rem); color: var(--slate-900); letter-spacing: -0.5px; margin-bottom: 1rem; }
.section-title.light { color: var(--white); }
.section-sub { font-size: 1rem; color: var(--slate-600); line-height: 1.75; max-width: 550px; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.8rem 1.8rem; border-radius: var(--radius);
  font-family: 'Nunito Sans', sans-serif; font-size: 0.95rem; font-weight: 700;
  text-decoration: none; cursor: pointer; transition: all 0.22s;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
  color: white; box-shadow: 0 4px 16px rgba(13,148,136,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,148,136,0.45); }
.btn-outline { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--teal-400); color: var(--teal-400); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: white; box-shadow: 0 4px 16px rgba(217,119,6,0.35); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(217,119,6,0.45); }

/* Fade-up animation */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.in { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-mobile-open .nav-menu {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(11,15,26,0.98);
    padding: 1.5rem 6%; gap: 0.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 480px) {
  .content-wrap { padding: 60px 5%; }
  .page-header { padding: 110px 5% 50px; }
}
