/* === TVSmartFix — Dark Cinema Design === */
/* Design: Dark mode, widescreen hero, neon glow accents, horizontal card decks */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --p: #0f766e;      /* teal primary */
  --pg: #14b8a6;     /* glow teal */
  --a: #fbbf24;      /* gold accent */
  --bg: #0a0f14;     /* near-black */
  --bg2: #111820;    /* card bg */
  --bg3: #1a2332;    /* elevated */
  --tx: #e8ecf1;
  --tx2: #8896a4;
  --bd: #1e2a36;
  --su: #10b981;
  --r: 10px;
  --r-lg: 18px;
  --glow: 0 0 30px rgba(20,184,166,.15);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', system-ui, sans-serif; color: var(--tx);
  background: var(--bg); line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ============================================
   HEADER — Glass bar on dark
   ============================================ */
.site-header {
  background: rgba(10,15,20,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bd);
  position: sticky; top:0; z-index:100;
}
.site-header .container {
  display:flex; align-items:center; justify-content:space-between;
  padding: 16px 28px;
}
.site-logo {
  font-size: 1.3rem; font-weight:800; color: var(--pg);
  text-decoration: none; letter-spacing: -0.3px;
  text-shadow: 0 0 20px rgba(20,184,166,.3);
}
.site-nav { display:flex; align-items:center; gap: 26px; }
.site-nav a { color: var(--tx2); text-decoration: none; font-size: .9rem; font-weight: 500; transition: color .2s; }
.site-nav a:hover { color: var(--pg); }

/* ============================================
   HERO — Widescreen cinema feel
   ============================================ */
.hero-section {
  background: linear-gradient(180deg, #0a1a1f 0%, #0f2a30 40%, var(--bg) 100%);
  padding: 100px 0 120px; position: relative; overflow: hidden;
}
.hero-section::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, transparent, var(--pg), transparent);
}
.hero-section::after {
  content: ''; position: absolute; top: 30%; left: 50%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(15,118,110,.12) 0%, transparent 60%);
  transform: translate(-50%, -50%); pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 50px; align-items: center; position: relative; z-index: 1;
}
.hero-left h1 {
  font-size: 3.2rem; font-weight: 900; line-height: 1.1;
  margin-bottom: 18px; letter-spacing: -1.5px;
  background: linear-gradient(180deg, #fff 0%, #b0c8d0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-left h1 .hlt {
  background: linear-gradient(135deg, #14b8a6, #fbbf24);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { font-size: 1.1rem; color: var(--tx2); max-width: 520px; margin-bottom: 32px; line-height: 1.7; }
.hero-stats { display: flex; gap: 36px; }
.stat-item { text-align: left; }
.stat-num { font-size: 2rem; font-weight: 900; color: var(--pg); display: block; text-shadow: 0 0 20px rgba(20,184,166,.25); }
.stat-label { font-size: .82rem; color: var(--tx2); display: block; margin-top: 2px; text-transform: uppercase; letter-spacing: .8px; }

/* Lead Card — Dark glass */
.lead-card {
  background: var(--bg3); color: var(--tx); padding: 32px 28px;
  border-radius: var(--r-lg); border: 1px solid var(--bd);
  box-shadow: var(--glow);
}
.lead-badge {
  display: inline-block; background: rgba(251,191,36,.15);
  color: var(--a); padding: 5px 14px; border-radius: 20px;
  font-size: .78rem; font-weight: 700; margin-bottom: 16px;
}
.lead-card h2 { font-size: 1.35rem; font-weight: 700; color: var(--pg); margin-bottom: 4px; }
.lead-sub { color: var(--tx2); font-size: .88rem; margin-bottom: 22px; }
.field-group { margin-bottom: 10px; }
.field-group input, .field-group textarea {
  width: 100%; padding: 11px 15px;
  background: var(--bg2); border: 1.5px solid var(--bd);
  border-radius: 8px; font-size: .92rem; font-family: inherit;
  color: var(--tx); transition: border .2s, box-shadow .2s;
}
.field-group input::placeholder, .field-group textarea::placeholder { color: #556270; }
.field-group input:focus, .field-group textarea:focus {
  outline: none; border-color: var(--pg);
  box-shadow: 0 0 0 3px rgba(20,184,166,.15);
}
.btn-main {
  width: 100%; padding: 13px;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: #fff; border: none; border-radius: 8px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: all .2s; letter-spacing: -.2px;
}
.btn-main:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(20,184,166,.3); }
.btn-lg { width: auto; padding: 16px 44px; font-size: 1.1rem; display: inline-block; text-decoration: none; }
.success-card { text-align:center; padding:20px; background:rgba(16,185,129,.1); border:1px solid rgba(16,185,129,.3); border-radius:10px; }
.success-card h3 { color: var(--su); margin-bottom: 6px; }

/* Bottom CTA button fix */
.cta-section .btn-main,
.cta-section .btn-lg,
.cta-section .btn-large {
  width: auto !important; display: inline-block !important;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 90vw;
}

/* ============================================
   FEATURES — Horizontal card deck with glow
   ============================================ */
.features-section { padding: 80px 0; }
.features-section .section-header { margin-bottom: 48px; }
.section-header h2 { font-size: 2.2rem; font-weight: 900; color: var(--tx); letter-spacing: -.5px; }
.section-header p { color: var(--tx2); margin-top: 6px; font-size: 1.05rem; }
.features-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 16px; overflow-x: auto;
}
.fet-card {
  background: var(--bg2); padding: 28px 22px;
  border-radius: var(--r-lg); border: 1px solid var(--bd);
  transition: all .3s; min-width: 160px;
}
.fet-card:hover {
  border-color: var(--pg); transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(20,184,166,.12);
}
.fet-icon { font-size: 2.2rem; margin-bottom: 14px; filter: drop-shadow(0 0 8px rgba(20,184,166,.2)); }
.fet-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; color: var(--tx); }
.fet-card p { color: var(--tx2); font-size: .8rem; line-height: 1.5; }

/* ============================================
   BRANDS — Horizontal scrolling row
   ============================================ */
.browse-section { padding: 70px 0; }
.browse-section .section-header { margin-bottom: 36px; }
.browse-grid {
  display: flex; gap: 14px; overflow-x: auto; padding-bottom: 8px;
}
.browse-card {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 30px; background: var(--bg2); border: 1px solid var(--bd);
  border-radius: var(--r); text-decoration: none; color: var(--tx);
  font-weight: 600; font-size: .95rem; transition: all .25s;
  white-space: nowrap; flex-shrink: 0;
}
.browse-card:hover {
  border-color: var(--pg); background: var(--bg3);
  transform: translateY(-3px); box-shadow: var(--glow);
}

/* ============================================
   ISSUES — 3-column grid on dark
   ============================================ */
.browse-section.alt { background: var(--bg2); }
.browse-section.alt .browse-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px; overflow-x: visible; flex-wrap: wrap;
}
.browse-section.alt .browse-card {
  white-space: normal; font-size: .85rem; padding: 14px 20px; font-weight: 500;
}

/* ============================================
   TESTIMONIALS — Wide horizontal cards
   ============================================ */
.testimonials-section { padding: 80px 0; }
.testimonials-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.test-card {
  background: var(--bg2); padding: 32px; border-radius: var(--r-lg);
  border: 1px solid var(--bd); position: relative;
}
.test-card::before {
  content: '★★★★★'; color: var(--a); font-size: 1rem;
  display: block; margin-bottom: 12px; letter-spacing: 2px;
}
.test-quote { font-size: 1.05rem; line-height: 1.7; color: var(--tx); margin-bottom: 14px; }
.test-author { color: var(--pg); font-weight: 700; font-size: .9rem; }

/* ============================================
   CTA — Dark teal gradient
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #0a1f20, #0f3a35);
  color: #fff; padding: 90px 0; text-align: center; position: relative;
}
.cta-section::before {
  content: ''; position: absolute; top: -50px; left: 0; right: 0;
  height: 100px; background: linear-gradient(to bottom, transparent, #0a1f20);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-size: 2.4rem; font-weight: 900; margin-bottom: 14px; }
.cta-section p { font-size: 1.1rem; opacity: .8; max-width: 540px; margin: 0 auto 30px; }
.cta-section .btn-main { background: #fff; color: #0f766e; width: auto; display: inline-block; box-shadow: none; }
.cta-section .btn-main:hover { background: #e0f2f1; }

/* ============================================
   FOOTER — Dark with subtle border
   ============================================ */
.site-footer {
  background: #060b10; color: #556270;
  padding: 60px 0 30px; border-top: 1px solid var(--bd);
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 36px; }
.footer-col h4 { color: var(--tx); margin-bottom: 16px; font-size: .9rem; text-transform: uppercase; letter-spacing: .6px; }
.footer-col a { display: block; color: #556270; text-decoration: none; font-size: .85rem; margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: var(--pg); }
.footer-brands { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.footer-brands a { background: var(--bg2); color: var(--tx2); padding: 4px 12px; border-radius: 6px; font-size: .78rem; text-decoration: none; border: 1px solid var(--bd); }
.footer-brands a:hover { color: var(--pg); border-color: var(--pg); }
.footer-bottom { border-top: 1px solid var(--bd); padding-top: 24px; text-align: center; font-size: .8rem; color: #3a4550; }

/* ============================================
   CONTENT PAGES
   ============================================ */
.content-page { padding: 60px 0; max-width: 800px; margin: 0 auto; }
.content-page h1 { font-size: 2.2rem; color: var(--pg); margin-bottom: 8px; font-weight: 900; letter-spacing: -.5px; }
.content-page .breadcrumb { color: var(--tx2); font-size: .84rem; margin-bottom: 24px; padding: 10px 0; }
.content-page .breadcrumb a { color: var(--pg); text-decoration: none; font-weight: 500; }
.content-page h2 { font-size: 1.5rem; margin: 36px 0 14px; font-weight: 700; }
.content-page h3 { font-size: 1.15rem; margin: 24px 0 8px; font-weight: 700; color: var(--tx); }
.content-page p { margin-bottom: 16px; line-height: 1.8; color: #b8c4cc; }
.content-page ul, .content-page ol { margin: 16px 0 16px 24px; color: #b8c4cc; }
.content-page li { margin-bottom: 8px; }
.content-page a { color: var(--pg); text-decoration: underline; text-underline-offset: 3px; }
.content-page .step {
  background: var(--bg2); padding: 20px 24px;
  border-left: 5px solid var(--pg); margin: 16px 0;
  border-radius: 0 var(--r) var(--r) 0; display: flex; gap: 18px; align-items: flex-start;
  border: 1px solid var(--bd); border-left: 5px solid var(--pg);
}
.content-page .step-number {
  background: var(--pg); color: #0a0f14; min-width: 32px; height: 32px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: .85rem; flex-shrink: 0;
}
.content-page .step-content { flex: 1; }
.content-page .step-content strong { display: block; margin-bottom: 6px; color: var(--tx); }
.content-page .warning {
  background: rgba(251,191,36,.08); border: 1px solid rgba(251,191,36,.3);
  padding: 18px 22px; border-radius: var(--r); margin: 20px 0;
  border-left: 5px solid var(--a); color: #cba030;
}
.content-page .warning strong { display: block; margin-bottom: 4px; color: var(--a); }
.content-page .inline-cta {
  background: linear-gradient(135deg, rgba(15,118,110,.15), rgba(251,191,36,.08));
  padding: 30px; border-radius: var(--r-lg); text-align: center;
  margin: 36px 0; border: 2px solid var(--pg);
}
.content-page .inline-cta h3 { color: var(--pg); font-size: 1.2rem; }
.content-page .inline-cta .btn-main { display: inline-block; width: auto; white-space: nowrap; text-decoration: none; font-size: .95rem; padding: 12px 30px; }
/* Universal inline-cta button fix — covers static, hub, about, contact pages */
.inline-cta .btn-main {
  display: inline-block !important; width: auto !important;
  white-space: nowrap; text-decoration: none;
}
.content-page .faq-section { margin: 40px 0; padding: 28px; background: var(--bg2); border-radius: var(--r-lg); border: 1px solid var(--bd); }
.content-page .faq-section h2 { margin-top: 0; padding-bottom: 14px; border-bottom: 2px solid rgba(15,118,110,.2); }
.content-page .faq-item { padding: 16px 0; border-bottom: 1px solid var(--bd); }
.content-page .faq-item:last-child { border-bottom: none; }
.content-page .faq-item h3 { font-size: .98rem; color: var(--pg); }
.content-page .faq-item p { color: var(--tx2); font-size: .9rem; }
.content-page .related-issues {
  margin: 40px 0; padding: 28px; background: var(--bg2);
  border: 1px solid var(--bd); border-radius: var(--r-lg);
}
.content-page .related-issues h2 { margin-top: 0; font-size: 1.15rem; }
.content-page .related-issues ul { list-style: none; margin: 14px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.content-page .related-issues a { color: var(--pg); text-decoration: none; font-weight: 600; font-size: .88rem; }
.content-page .related-issues a:hover { text-decoration: underline; }

/* ============================================
   STATIC & HUB PAGES
   ============================================ */
.static-page { padding: 60px 0; max-width: 800px; margin: 0 auto; }
.static-page h1 { font-size: 2rem; color: var(--pg); margin-bottom: 20px; font-weight: 900; }
.static-page h2 { font-size: 1.4rem; margin: 30px 0 14px; font-weight: 700; }
.hub-page { padding: 60px 0; max-width: 1000px; margin: 0 auto; }
.hub-page h1 { font-size: 2rem; color: var(--pg); margin-bottom: 8px; font-weight: 900; }
.hub-page .hub-desc { color: var(--tx2); margin-bottom: 32px; font-size: 1.05rem; }
.hub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
.hub-link { display: block; padding: 14px 18px; background: var(--bg2); border-radius: 10px; color: var(--tx); text-decoration: none; font-size: .9rem; border: 1px solid var(--bd); transition: all .2s; }
.hub-link:hover { border-color: var(--pg); background: var(--bg3); transform: translateX(4px); box-shadow: var(--glow); }
.hub-link strong { color: var(--pg); }


/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-intro { color: var(--tx2); font-size: 1rem; margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--bd); }
.sitemap-section { margin-bottom: 40px; }
.sitemap-section h2 { font-size: 1.3rem; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--bd); }
.sitemap-list { list-style: none; margin: 0; padding: 0; }
.sitemap-list li { margin-bottom: 4px; }
.sitemap-list a { color: var(--p); text-decoration: none; font-size: .9rem; display: block; padding: 6px 10px; border-radius: 6px; transition: all .15s; }
.sitemap-list a:hover { background: var(--bg2); text-decoration: underline; }
.sitemap-main .sitemap-main-link { display: inline-block; margin-right: 16px; margin-bottom: 8px; }
.sitemap-main .sitemap-main-link a { font-weight: 700; font-size: .95rem; padding: 8px 16px; background: var(--bg2); border-radius: 8px; }
.sitemap-main .sitemap-main-link a:hover { background: var(--p); color: #fff; text-decoration: none; }
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2px; }
@media (max-width: 768px) { .sitemap-grid { grid-template-columns: 1fr; } }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { max-width: 420px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .hero-left h1 { font-size: 2rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .content-page .related-issues ul { grid-template-columns: 1fr; }
  .browse-grid { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .hero-section { padding: 60px 0 80px; }
  .hero-left h1 { font-size: 1.6rem; }
  .features-grid { grid-template-columns: 1fr; }
  .lead-card { padding: 22px 18px; }
  .container { padding: 0 16px; }
}

/* Aliases */
.breadcrumb-item, .step-container, .support-content, .lsi,
.current, .active, .-content, .-step-content, .-step-number { /* inherit */ }
.btn-primary, .btn-large { display: inline-block; width: auto; padding: 14px 32px; background: linear-gradient(135deg, #0f766e, #14b8a6); color: #fff; border: none; border-radius: 10px; font-size: 1.05rem; font-weight: 700; cursor: pointer; text-decoration: none; transition: all .2s; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 30px rgba(20,184,166,.3); }
.hero-right { min-width: 0; }
.hero-right .lead-card { height: 100%; }
.features-section, .testimonials-section, .cta-section { scroll-margin-top: 80px; }
