/* ============================================
   TeleTivi - Global Stylesheet
   Design DNA: iptvgreat.vip clone
   Colors: Navy #080337, Red #FF2E57, Off-white #F9FAFF
   Fonts: Lora (headings) + Roboto (body)
   Prefix: tv-*
   ============================================ */

:root {
  --tv-bg: #F9FAFF;
  --tv-bg-alt: #FFFFFF;
  --tv-navy: #080337;
  --tv-navy-light: #0C0367;
  --tv-navy-hover: #221F46;
  --tv-red: #FF2E57;
  --tv-red-hover: #F51843;
  --tv-purple: #8F6DFF;
  --tv-purple-hover: #6E48E8;
  --tv-text: #787C8B;
  --tv-text-light: #A0A4B4;
  --tv-text-dark: #080337;
  --tv-border: #E8E9F1;
  --tv-footer-bg: #080337;
  --tv-white: #FFFFFF;
  --tv-success: #28a745;
  --tv-error: #dc3545;
  --tv-radius: 8px;
  --tv-shadow: 0 4px 20px rgba(8,3,55,0.08);
  --tv-shadow-lg: 0 8px 40px rgba(8,3,55,0.12);
  --tv-transition: 0.3s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--tv-text);
  background: var(--tv-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--tv-red); text-decoration: none; transition: color var(--tv-transition); }
a:hover { color: var(--tv-red-hover); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  color: var(--tv-text-dark);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: 2.75rem; margin-bottom: 1rem; }
h2 { font-size: 2.2rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.4rem; }
p { margin-bottom: 1rem; }

/* Container */
.tv-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   PROMO BANNER
   ============================================ */
.tv-promo-banner {
  background: var(--tv-red);
  color: var(--tv-white);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
}
.tv-promo-banner a {
  color: var(--tv-white);
  text-decoration: underline;
  font-weight: 700;
}

/* ============================================
   NAVIGATION
   ============================================ */
.tv-nav {
  background: var(--tv-navy);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.tv-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.tv-logo {
  font-family: 'Lora', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--tv-white);
  text-decoration: none;
}
.tv-logo span {
  color: var(--tv-red);
}
.tv-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.tv-nav-links a {
  color: var(--tv-white);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--tv-transition);
  position: relative;
}
.tv-nav-links a:hover,
.tv-nav-links a.active {
  color: var(--tv-red);
}
.tv-nav-links .tv-nav-cta {
  background: var(--tv-red);
  color: var(--tv-white);
  padding: 10px 24px;
  border-radius: var(--tv-radius);
  font-weight: 600;
  transition: background var(--tv-transition);
}
.tv-nav-links .tv-nav-cta:hover {
  background: var(--tv-red-hover);
  color: var(--tv-white);
}

/* Dropdown */
.tv-dropdown {
  position: relative;
}
.tv-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.tv-dropdown-toggle::after {
  content: '';
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  display: inline-block;
}
.tv-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--tv-navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--tv-radius);
  padding: 8px 0;
  min-width: 200px;
  z-index: 1001;
  box-shadow: var(--tv-shadow-lg);
}
.tv-dropdown:hover .tv-dropdown-menu {
  display: block;
}
.tv-dropdown-menu a {
  display: block;
  padding: 8px 20px;
  color: var(--tv-white);
  font-size: 0.9rem;
}
.tv-dropdown-menu a:hover {
  background: var(--tv-navy-hover);
  color: var(--tv-red);
}

/* Mobile hamburger */
.tv-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.tv-hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--tv-white);
  border-radius: 2px;
  transition: var(--tv-transition);
}

@media (max-width: 991px) {
  .tv-hamburger { display: flex; }
  .tv-nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--tv-navy);
    padding: 20px;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .tv-nav-links.active { display: flex; }
  .tv-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 16px;
  }
  .tv-dropdown:hover .tv-dropdown-menu { display: block; }
}

/* ============================================
   HERO
   ============================================ */
.tv-hero {
  background: linear-gradient(135deg, var(--tv-navy) 0%, #0C0367 50%, var(--tv-navy-hover) 100%);
  color: var(--tv-white);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tv-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,46,87,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.tv-hero h1 {
  color: var(--tv-white);
  font-size: 3rem;
  margin-bottom: 1.25rem;
  position: relative;
}
.tv-hero h1 span {
  color: var(--tv-red);
}
.tv-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  position: relative;
}
.tv-hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 2.5rem;
  position: relative;
}
.tv-hero-stat {
  text-align: center;
}
.tv-hero-stat strong {
  display: block;
  font-size: 2.25rem;
  font-family: 'Lora', serif;
  color: var(--tv-red);
}
.tv-hero-stat span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

/* ============================================
   BUTTONS
   ============================================ */
.tv-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--tv-radius);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all var(--tv-transition);
  text-decoration: none;
}
.tv-btn-primary {
  background: var(--tv-red);
  color: var(--tv-white);
}
.tv-btn-primary:hover {
  background: var(--tv-red-hover);
  color: var(--tv-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,46,87,0.35);
}
.tv-btn-secondary {
  background: transparent;
  color: var(--tv-white);
  border: 2px solid var(--tv-white);
}
.tv-btn-secondary:hover {
  background: var(--tv-white);
  color: var(--tv-navy);
}
.tv-btn-outline {
  background: transparent;
  color: var(--tv-red);
  border: 2px solid var(--tv-red);
}
.tv-btn-outline:hover {
  background: var(--tv-red);
  color: var(--tv-white);
}
.tv-btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.tv-section {
  padding: 80px 0;
}
.tv-section-alt {
  background: var(--tv-bg-alt);
}
.tv-section-dark {
  background: var(--tv-navy);
  color: var(--tv-white);
}
.tv-section-dark h2,
.tv-section-dark h3 {
  color: var(--tv-white);
}
.tv-section-dark p {
  color: rgba(255,255,255,0.8);
}
.tv-section-header {
  text-align: center;
  margin-bottom: 50px;
}
.tv-section-header h2 {
  position: relative;
  display: inline-block;
}
.tv-section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--tv-red);
  margin: 12px auto 0;
  border-radius: 2px;
}
.tv-section-header p {
  max-width: 600px;
  margin: 16px auto 0;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.tv-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.tv-feature-card {
  background: var(--tv-bg-alt);
  border: 1px solid var(--tv-border);
  border-radius: var(--tv-radius);
  padding: 35px 30px;
  text-align: center;
  transition: all var(--tv-transition);
}
.tv-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tv-shadow-lg);
  border-color: var(--tv-red);
}
.tv-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--tv-red);
}
.tv-feature-card h3 {
  margin-bottom: 12px;
}

/* ============================================
   STATS BAR
   ============================================ */
.tv-stats-bar {
  background: var(--tv-navy);
  padding: 50px 0;
}
.tv-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.tv-stat-item strong {
  display: block;
  font-size: 2.5rem;
  font-family: 'Lora', serif;
  color: var(--tv-red);
  margin-bottom: 4px;
}
.tv-stat-item span {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

/* ============================================
   PRICING
   ============================================ */
.tv-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tv-price-card {
  background: var(--tv-bg-alt);
  border: 2px solid var(--tv-border);
  border-radius: 12px;
  padding: 40px 28px;
  text-align: center;
  position: relative;
  transition: all var(--tv-transition);
}
.tv-price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--tv-shadow-lg);
}
.tv-price-card.tv-popular {
  border-color: var(--tv-red);
  box-shadow: 0 0 0 2px var(--tv-red);
}
.tv-price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--tv-red);
  color: var(--tv-white);
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tv-price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.tv-price-amount {
  font-family: 'Lora', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--tv-red);
  line-height: 1;
  margin-bottom: 4px;
}
.tv-price-amount sup {
  font-size: 1.2rem;
  vertical-align: super;
}
.tv-price-period {
  color: var(--tv-text-light);
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.tv-price-features {
  text-align: left;
  margin-bottom: 24px;
}
.tv-price-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--tv-border);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tv-price-features li::before {
  content: '\2713';
  color: var(--tv-red);
  font-weight: 700;
  flex-shrink: 0;
}
.tv-price-card .tv-btn {
  width: 100%;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.tv-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.tv-testimonial-card {
  background: var(--tv-bg-alt);
  border: 1px solid var(--tv-border);
  border-radius: var(--tv-radius);
  padding: 30px;
  position: relative;
}
.tv-testimonial-card::before {
  content: '\201C';
  font-family: 'Lora', serif;
  font-size: 4rem;
  color: var(--tv-red);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}
.tv-testimonial-text {
  font-style: italic;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.tv-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tv-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--tv-red);
  color: var(--tv-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Lora', serif;
}
.tv-testimonial-author strong {
  display: block;
  color: var(--tv-text-dark);
  font-size: 0.95rem;
}
.tv-testimonial-author span {
  font-size: 0.85rem;
  color: var(--tv-text-light);
}
.tv-stars {
  color: #FFB300;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.tv-faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.tv-faq-item {
  border: 1px solid var(--tv-border);
  border-radius: var(--tv-radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--tv-bg-alt);
}
.tv-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--tv-text-dark);
  font-size: 1.05rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Roboto', sans-serif;
  transition: color var(--tv-transition);
}
.tv-faq-question:hover { color: var(--tv-red); }
.tv-faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--tv-red);
  flex-shrink: 0;
  transition: transform var(--tv-transition);
}
.tv-faq-item.active .tv-faq-question::after {
  content: '\2212';
}
.tv-faq-answer {
  display: none;
  padding: 0 24px 18px;
  line-height: 1.7;
}
.tv-faq-item.active .tv-faq-answer {
  display: block;
}

/* ============================================
   TRIAL / CTA FORM
   ============================================ */
.tv-trial-section {
  background: linear-gradient(135deg, var(--tv-navy) 0%, var(--tv-navy-light) 100%);
  padding: 80px 0;
  text-align: center;
}
.tv-trial-section h2 {
  color: var(--tv-white);
  margin-bottom: 12px;
}
.tv-trial-section p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
}

/* ============================================
   FORMS
   ============================================ */
.tv-form {
  max-width: 480px;
  margin: 0 auto;
}
.tv-form-group {
  margin-bottom: 16px;
}
.tv-form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--tv-text-dark);
}
.tv-section-dark .tv-form-group label {
  color: var(--tv-white);
}
.tv-trial-section .tv-form-group label {
  color: var(--tv-white);
}
.tv-form-group input,
.tv-form-group select,
.tv-form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--tv-border);
  border-radius: var(--tv-radius);
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  background: var(--tv-white);
  color: var(--tv-text-dark);
  transition: border-color var(--tv-transition);
}
.tv-form-group input:focus,
.tv-form-group select:focus,
.tv-form-group textarea:focus {
  outline: none;
  border-color: var(--tv-red);
  box-shadow: 0 0 0 3px rgba(255,46,87,0.1);
}
.tv-form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.tv-form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--tv-text-light);
}
.tv-section-dark .tv-form-trust,
.tv-trial-section .tv-form-trust {
  color: rgba(255,255,255,0.6);
}
.tv-form-inline {
  display: flex;
  gap: 12px;
}
.tv-form-inline input {
  flex: 1;
}
.form-message {
  padding: 12px 16px;
  border-radius: var(--tv-radius);
  margin-top: 12px;
  font-size: 0.9rem;
  text-align: center;
}
.form-message--success {
  background: rgba(40,167,69,0.1);
  color: var(--tv-success);
  border: 1px solid var(--tv-success);
}
.form-message--error {
  background: rgba(220,53,69,0.1);
  color: var(--tv-error);
  border: 1px solid var(--tv-error);
}
input[name="website"] {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

/* ============================================
   CHANNELS
   ============================================ */
.tv-channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.tv-channel-category {
  background: var(--tv-bg-alt);
  border: 1px solid var(--tv-border);
  border-radius: var(--tv-radius);
  padding: 24px;
  transition: all var(--tv-transition);
}
.tv-channel-category:hover {
  border-color: var(--tv-red);
  box-shadow: var(--tv-shadow);
}
.tv-channel-category h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tv-channel-count {
  background: var(--tv-red);
  color: var(--tv-white);
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}

/* ============================================
   ABOUT / CONTENT PAGES
   ============================================ */
.tv-content-section {
  padding: 60px 0;
}
.tv-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.tv-content-wrapper h1 {
  margin-bottom: 1.5rem;
}
.tv-content-wrapper h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}
.tv-content-wrapper h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.tv-content-wrapper ul,
.tv-content-wrapper ol {
  margin: 1rem 0;
  padding-left: 24px;
}
.tv-content-wrapper ul { list-style: disc; }
.tv-content-wrapper ol { list-style: decimal; }
.tv-content-wrapper li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.tv-content-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.tv-content-wrapper th,
.tv-content-wrapper td {
  border: 1px solid var(--tv-border);
  padding: 12px 16px;
  text-align: left;
}
.tv-content-wrapper th {
  background: var(--tv-navy);
  color: var(--tv-white);
  font-weight: 600;
}
.tv-content-wrapper blockquote {
  border-left: 4px solid var(--tv-red);
  padding: 16px 24px;
  background: rgba(255,46,87,0.05);
  margin: 1.5rem 0;
  font-style: italic;
}
.tv-content-wrapper strong {
  color: var(--tv-text-dark);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.tv-page-hero {
  background: linear-gradient(135deg, var(--tv-navy) 0%, var(--tv-navy-light) 100%);
  color: var(--tv-white);
  padding: 60px 0 50px;
  text-align: center;
}
.tv-page-hero h1 {
  color: var(--tv-white);
  margin-bottom: 12px;
}
.tv-page-hero p {
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumbs */
.tv-breadcrumb {
  padding: 12px 0;
  font-size: 0.85rem;
  color: var(--tv-text-light);
}
.tv-breadcrumb a { color: var(--tv-red); }
.tv-breadcrumb span { margin: 0 8px; }

/* ============================================
   FOOTER
   ============================================ */
.tv-footer {
  background: var(--tv-footer-bg);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.tv-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.tv-footer h4 {
  color: var(--tv-white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}
.tv-footer p {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  line-height: 1.7;
}
.tv-footer-links a {
  display: block;
  color: rgba(255,255,255,0.65);
  padding: 4px 0;
  font-size: 0.92rem;
  transition: color var(--tv-transition);
}
.tv-footer-links a:hover {
  color: var(--tv-red);
}
.tv-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.tv-footer-address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

/* ============================================
   CHECKOUT
   ============================================ */
.tv-checkout-form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--tv-bg-alt);
  border: 1px solid var(--tv-border);
  border-radius: 12px;
  padding: 40px;
}
.tv-checkout-form h2 {
  text-align: center;
  margin-bottom: 24px;
}

/* ============================================
   RESELLER TIERS
   ============================================ */
.tv-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tv-tier-card {
  background: var(--tv-bg-alt);
  border: 1px solid var(--tv-border);
  border-radius: var(--tv-radius);
  padding: 30px;
  text-align: center;
  transition: all var(--tv-transition);
}
.tv-tier-card:hover {
  border-color: var(--tv-red);
  box-shadow: var(--tv-shadow);
}
.tv-tier-card h3 { margin-bottom: 8px; }

/* ============================================
   SETUP GUIDE
   ============================================ */
.tv-guide-step {
  display: flex;
  gap: 24px;
  margin-bottom: 30px;
  align-items: flex-start;
}
.tv-step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--tv-red);
  color: var(--tv-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Lora', serif;
  font-size: 1.2rem;
}
.tv-step-content h3 {
  margin-bottom: 8px;
}
.tv-guide-img {
  border-radius: var(--tv-radius);
  border: 1px solid var(--tv-border);
  margin: 16px 0;
}

/* ============================================
   IMAGE GALLERY SECTIONS
   ============================================ */
.tv-img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.tv-img-grid img {
  border-radius: var(--tv-radius);
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .tv-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .tv-features-grid { grid-template-columns: repeat(2, 1fr); }
  .tv-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .tv-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .tv-tiers-grid { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.8rem; }
}
@media (max-width: 768px) {
  .tv-hero { padding: 60px 0 40px; }
  .tv-hero h1 { font-size: 2rem; }
  .tv-hero-stats { flex-direction: column; gap: 20px; }
  .tv-pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .tv-features-grid { grid-template-columns: 1fr; }
  .tv-testimonials-grid { grid-template-columns: 1fr; }
  .tv-footer-grid { grid-template-columns: 1fr; }
  .tv-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .tv-section { padding: 50px 0; }
  .tv-form-inline { flex-direction: column; }
  .tv-guide-step { flex-direction: column; }
  .tv-tiers-grid { grid-template-columns: 1fr; }
  .tv-checkout-form { padding: 24px; }
}
@media (max-width: 480px) {
  .tv-hero h1 { font-size: 1.6rem; }
  .tv-price-amount { font-size: 2.5rem; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
}
