/* ===== Televify.com — Design DNA cloned from ultrapremiumtv.com ===== */
/* Colors: #2575fc (primary blue), #fe8f75 (coral accent), #fff, #333 */
/* Fonts: Inter + Poppins */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --tf-primary: #2575fc;
  --tf-primary-hover: #1a5fd4;
  --tf-accent: #fe8f75;
  --tf-accent-hover: #e87b63;
  --tf-bg: #ffffff;
  --tf-bg-alt: #f7f8fc;
  --tf-bg-dark: #1a1a2e;
  --tf-text: #333333;
  --tf-text-muted: #666666;
  --tf-text-light: #999999;
  --tf-border: #e0e0e0;
  --tf-card-bg: #ffffff;
  --tf-card-border: #e8ecf4;
  --tf-radius: 12px;
  --tf-radius-lg: 16px;
  --tf-shadow: 0 4px 24px rgba(37,117,252,.08);
  --tf-shadow-lg: 0 8px 40px rgba(37,117,252,.12);
  --tf-gradient: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
  --tf-font-heading: 'Poppins', sans-serif;
  --tf-font-body: 'Inter', sans-serif;
  --tf-max-width: 1200px;
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--tf-font-body);
  background: var(--tf-bg);
  color: var(--tf-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
html, body { overflow-x: hidden; max-width: 100vw; }

/* ===== Utility ===== */
.tf-container { max-width: var(--tf-max-width); margin: 0 auto; padding: 0 1.5rem; }
.tf-section { padding: 5rem 0; }
.tf-section--alt { background: var(--tf-bg-alt); }
.tf-section--dark { background: var(--tf-bg-dark); color: #fff; }
.tf-section-title {
  font-family: var(--tf-font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: .75rem;
  color: var(--tf-text);
}
.tf-section--dark .tf-section-title { color: #fff; }
.tf-section-subtitle {
  text-align: center;
  color: var(--tf-text-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.tf-section--dark .tf-section-subtitle { color: rgba(255,255,255,.7); }

/* ===== Buttons ===== */
.tf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border: none;
  border-radius: 8px;
  font-family: var(--tf-font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
}
.tf-btn--primary {
  background: var(--tf-primary);
  color: #fff;
}
.tf-btn--primary:hover {
  background: var(--tf-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,117,252,.3);
}
.tf-btn--accent {
  background: var(--tf-accent);
  color: #fff;
}
.tf-btn--accent:hover {
  background: var(--tf-accent-hover);
  transform: translateY(-2px);
}
.tf-btn--outline {
  background: transparent;
  color: var(--tf-primary);
  border: 2px solid var(--tf-primary);
}
.tf-btn--outline:hover {
  background: var(--tf-primary);
  color: #fff;
}
.tf-btn--white {
  background: #fff;
  color: var(--tf-primary);
}
.tf-btn--white:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
}
.tf-btn--lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* ===== Header / Nav ===== */
.tf-header {
  background: #fff;
  border-bottom: 1px solid var(--tf-border);
  padding: .75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.tf-header__inner {
  max-width: var(--tf-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tf-logo {
  font-family: var(--tf-font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--tf-text);
  text-decoration: none;
}
.tf-logo span { color: var(--tf-primary); }
.tf-nav { display: flex; align-items: center; gap: 1.75rem; }
.tf-nav__link {
  color: var(--tf-text-muted);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}
.tf-nav__link:hover { color: var(--tf-primary); }
.tf-nav__cta {
  background: var(--tf-primary);
  color: #fff;
  padding: .55rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  transition: all .2s;
}
.tf-nav__cta:hover {
  background: var(--tf-primary-hover);
  box-shadow: 0 4px 12px rgba(37,117,252,.3);
}
.tf-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  flex-direction: column;
  gap: 5px;
}
.tf-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--tf-text);
  border-radius: 2px;
  transition: .3s;
}

@media (max-width: 768px) {
  .tf-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 4rem 2rem;
    gap: 1.5rem;
    align-items: flex-start;
    transition: right .3s;
    box-shadow: -4px 0 20px rgba(0,0,0,.1);
    z-index: 1001;
  }
  .tf-nav.open { right: 0; }
  .tf-hamburger { display: flex; }
  .tf-nav__cta { width: 100%; text-align: center; }
}

/* ===== Hero ===== */
.tf-hero {
  background: var(--tf-gradient);
  padding: 7rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tf-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,.1) 0%, transparent 50%);
  pointer-events: none;
}
.tf-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.tf-hero__badge {
  display: inline-block;
  background: rgba(255,255,255,.2);
  color: #fff;
  padding: .4rem 1.25rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.tf-hero__title {
  font-family: var(--tf-font-heading);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.tf-hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.tf-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Stats Bar ===== */
.tf-stats {
  background: #fff;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--tf-border);
}
.tf-stats__inner {
  max-width: var(--tf-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.tf-stat { text-align: center; }
.tf-stat__number {
  font-family: var(--tf-font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--tf-primary);
  display: block;
}
.tf-stat__label {
  font-size: .9rem;
  color: var(--tf-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ===== About ===== */
.tf-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.tf-about__img {
  border-radius: var(--tf-radius-lg);
  box-shadow: var(--tf-shadow-lg);
}
.tf-about__text h2 {
  font-family: var(--tf-font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--tf-text);
}
.tf-about__text p {
  color: var(--tf-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .tf-about__grid { grid-template-columns: 1fr; }
}

/* ===== Feature Cards (Why Choose / What We Offer) ===== */
.tf-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.tf-feature-card {
  background: var(--tf-card-bg);
  border: 1px solid var(--tf-card-border);
  border-radius: var(--tf-radius);
  padding: 2rem;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.tf-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--tf-shadow-lg);
}
.tf-feature-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(37,117,252,.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
}
.tf-feature-card__title {
  font-family: var(--tf-font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--tf-text);
}
.tf-feature-card__desc {
  color: var(--tf-text-muted);
  font-size: .92rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .tf-features__grid { grid-template-columns: 1fr; }
}

/* ===== How to Order (Steps) ===== */
.tf-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  counter-reset: step-counter;
}
.tf-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}
.tf-step::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--tf-gradient);
  color: #fff;
  font-family: var(--tf-font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
}
.tf-step__title {
  font-family: var(--tf-font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
.tf-step__desc {
  color: var(--tf-text-muted);
  font-size: .9rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .tf-steps__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .tf-steps__grid { grid-template-columns: 1fr; }
}

/* ===== Pricing Cards ===== */
.tf-pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.tf-price-card {
  background: var(--tf-card-bg);
  border: 1px solid var(--tf-card-border);
  border-radius: var(--tf-radius-lg);
  padding: 2.5rem 1.75rem;
  text-align: center;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.tf-price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--tf-shadow-lg);
}
.tf-price-card--popular {
  border-color: var(--tf-primary);
  box-shadow: var(--tf-shadow-lg);
  transform: scale(1.04);
}
.tf-price-card--popular:hover { transform: scale(1.04) translateY(-4px); }
.tf-price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--tf-accent);
  color: #fff;
  padding: .35rem 1.25rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.tf-price-card__name {
  font-family: var(--tf-font-heading);
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--tf-text-muted);
  margin-bottom: .75rem;
}
.tf-price-card__amount {
  font-family: var(--tf-font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--tf-text);
}
.tf-price-card__period {
  display: block;
  color: var(--tf-text-light);
  font-size: .85rem;
  margin-bottom: 1.5rem;
}
.tf-price-card__features {
  text-align: left;
  margin-bottom: 2rem;
}
.tf-price-card__features li {
  padding: .45rem 0;
  font-size: .88rem;
  color: var(--tf-text-muted);
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.tf-price-card__features li:last-child { border-bottom: none; }
.tf-price-card__features li::before {
  content: '\2713';
  color: var(--tf-primary);
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}
.tf-price-card__btn {
  display: block;
  width: 100%;
  padding: .85rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .25s;
  text-align: center;
  background: rgba(37,117,252,.06);
  color: var(--tf-primary);
  border: 1px solid rgba(37,117,252,.2);
}
.tf-price-card__btn:hover {
  background: var(--tf-primary);
  color: #fff;
  border-color: var(--tf-primary);
}
.tf-price-card--popular .tf-price-card__btn {
  background: var(--tf-primary);
  color: #fff;
  border-color: var(--tf-primary);
}
.tf-price-card--popular .tf-price-card__btn:hover {
  background: var(--tf-primary-hover);
}
@media (max-width: 992px) {
  .tf-pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .tf-price-card--popular { transform: none; }
}
@media (max-width: 480px) {
  .tf-pricing__grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* ===== Channels for Everyone ===== */
.tf-channels__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.tf-channel-card {
  background: var(--tf-card-bg);
  border: 1px solid var(--tf-card-border);
  border-radius: var(--tf-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.tf-channel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tf-shadow);
}
.tf-channel-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.tf-channel-card__title {
  font-family: var(--tf-font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
.tf-channel-card__desc {
  color: var(--tf-text-muted);
  font-size: .88rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .tf-channels__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .tf-channels__grid { grid-template-columns: 1fr; }
}

/* ===== Stream on Any Device ===== */
.tf-devices {
  text-align: center;
}
.tf-devices__icons {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.tf-device-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.tf-device-item__icon { font-size: 2.5rem; }
.tf-device-item__label {
  font-size: .85rem;
  font-weight: 500;
  color: var(--tf-text-muted);
}

/* ===== CTA Banner ===== */
.tf-cta {
  background: var(--tf-gradient);
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
}
.tf-cta__title {
  font-family: var(--tf-font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.tf-cta__text {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Footer ===== */
.tf-footer {
  background: var(--tf-bg-dark);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}
.tf-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.tf-footer__brand {
  font-family: var(--tf-font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .75rem;
}
.tf-footer__brand span { color: var(--tf-primary); }
.tf-footer__desc {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.tf-footer__heading {
  font-family: var(--tf-font-heading);
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.tf-footer__links { display: flex; flex-direction: column; gap: .5rem; }
.tf-footer__link {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  transition: color .2s;
}
.tf-footer__link:hover { color: var(--tf-primary); }
.tf-footer__address {
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
}
.tf-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.tf-footer__copy {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}
.tf-footer__legal {
  display: flex;
  gap: 1.25rem;
}
.tf-footer__legal a {
  color: rgba(255,255,255,.35);
  font-size: .8rem;
  transition: color .2s;
}
.tf-footer__legal a:hover { color: var(--tf-primary); }
@media (max-width: 768px) {
  .tf-footer__grid { grid-template-columns: 1fr 1fr; }
  .tf-footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .tf-footer__grid { grid-template-columns: 1fr; }
}

/* ===== Forms ===== */
.tf-form { max-width: 600px; margin: 0 auto; }
.tf-form--wide { max-width: 700px; }
.tf-form__group { margin-bottom: 1.25rem; }
.tf-form__label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--tf-text);
  margin-bottom: .4rem;
}
.tf-form__input,
.tf-form__select,
.tf-form__textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid var(--tf-border);
  border-radius: 8px;
  font-family: var(--tf-font-body);
  font-size: .95rem;
  color: var(--tf-text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.tf-form__input:focus,
.tf-form__select:focus,
.tf-form__textarea:focus {
  outline: none;
  border-color: var(--tf-primary);
  box-shadow: 0 0 0 3px rgba(37,117,252,.1);
}
.tf-form__textarea { resize: vertical; min-height: 120px; }
.tf-form__submit {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  background: var(--tf-primary);
  color: #fff;
  font-family: var(--tf-font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.tf-form__submit:hover {
  background: var(--tf-primary-hover);
  transform: translateY(-2px);
}
.tf-form__trust {
  text-align: center;
  font-size: .8rem;
  color: var(--tf-text-light);
  margin-top: .75rem;
}
.form-message {
  padding: .75rem 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-size: .9rem;
  text-align: center;
}
.form-message--success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.form-message--error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Trial form (hero) */
.tf-trial-form {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}
.tf-trial-form input {
  flex: 1 1 180px;
  max-width: 220px;
  padding: .8rem 1.2rem;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 8px;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: .95rem;
  font-family: var(--tf-font-body);
  backdrop-filter: blur(4px);
}
.tf-trial-form input::placeholder { color: rgba(255,255,255,.6); }
.tf-trial-form input:focus {
  outline: none;
  border-color: #fff;
  background: rgba(255,255,255,.2);
}
.tf-trial-form button {
  padding: .8rem 2.5rem;
  border: none;
  border-radius: 8px;
  background: #fff;
  color: var(--tf-primary);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  font-family: var(--tf-font-heading);
  transition: all .2s;
}
.tf-trial-form button:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
}
@media (max-width: 480px) {
  .tf-trial-form input { max-width: 100%; flex: 1 1 100%; }
}

/* ===== Checkout ===== */
.tf-checkout { padding: 3rem 0 5rem; }
.tf-checkout__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.tf-checkout__summary {
  background: var(--tf-bg-alt);
  border-radius: var(--tf-radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--tf-card-border);
}
@media (max-width: 768px) {
  .tf-checkout__grid { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.tf-faq__list { max-width: 800px; margin: 0 auto; }
.tf-faq-item {
  border: 1px solid var(--tf-card-border);
  border-radius: var(--tf-radius);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: box-shadow .2s;
}
.tf-faq-item:hover { box-shadow: var(--tf-shadow); }
.tf-faq-item summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: var(--tf-font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--tf-text);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color .2s;
}
.tf-faq-item summary::-webkit-details-marker { display: none; }
.tf-faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--tf-primary);
  font-weight: 300;
  transition: transform .3s;
}
.tf-faq-item[open] summary::after { transform: rotate(45deg); }
.tf-faq-item summary:hover { color: var(--tf-primary); }
.tf-faq-item__answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--tf-text-muted);
  font-size: .92rem;
  line-height: 1.7;
}

/* ===== Reseller Pricing ===== */
.tf-reseller-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .tf-reseller-pricing__grid { grid-template-columns: 1fr; }
}

/* ===== Channel Categories (channels page) ===== */
.tf-channel-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}
.tf-channel-table th,
.tf-channel-table td {
  padding: .75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--tf-border);
}
.tf-channel-table th {
  background: var(--tf-bg-alt);
  font-family: var(--tf-font-heading);
  font-weight: 600;
  font-size: .9rem;
  color: var(--tf-text);
}
.tf-channel-table td {
  font-size: .9rem;
  color: var(--tf-text-muted);
}

/* ===== Legal Pages ===== */
.tf-legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.tf-legal h1 {
  font-family: var(--tf-font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.tf-legal h2 {
  font-family: var(--tf-font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 2rem 0 .75rem;
  color: var(--tf-text);
}
.tf-legal h3 {
  font-family: var(--tf-font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.5rem 0 .5rem;
}
.tf-legal p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--tf-text-muted);
}
.tf-legal ul, .tf-legal ol {
  margin: .5rem 0 1rem 1.5rem;
  list-style: disc;
}
.tf-legal ol { list-style: decimal; }
.tf-legal li {
  margin-bottom: .4rem;
  color: var(--tf-text-muted);
  line-height: 1.7;
}
.tf-legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.tf-legal table th,
.tf-legal table td {
  padding: .6rem 1rem;
  border: 1px solid var(--tf-border);
  font-size: .9rem;
}
.tf-legal table th {
  background: var(--tf-bg-alt);
  font-weight: 600;
}
.tf-legal strong { color: var(--tf-text); }
.tf-legal a { color: var(--tf-primary); }
.tf-legal a:hover { text-decoration: underline; }
.tf-legal .tf-legal__updated {
  color: var(--tf-text-light);
  font-size: .9rem;
  margin-bottom: 2rem;
}

/* ===== Breadcrumb ===== */
.tf-breadcrumb {
  padding: 1rem 0;
  font-size: .85rem;
  color: var(--tf-text-light);
}
.tf-breadcrumb a { color: var(--tf-primary); }
.tf-breadcrumb a:hover { text-decoration: underline; }
.tf-breadcrumb span { margin: 0 .4rem; }

/* ===== Page Header ===== */
.tf-page-header {
  background: var(--tf-gradient);
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
}
.tf-page-header__title {
  font-family: var(--tf-font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: .5rem;
}
.tf-page-header__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Setup Guide ===== */
.tf-guide { max-width: 800px; margin: 0 auto; padding: 3rem 1.5rem 5rem; }
.tf-guide h2 {
  font-family: var(--tf-font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: var(--tf-text);
}
.tf-guide h3 {
  font-family: var(--tf-font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.5rem 0 .75rem;
}
.tf-guide p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--tf-text-muted);
}
.tf-guide ol, .tf-guide ul {
  margin: .5rem 0 1rem 1.5rem;
}
.tf-guide ol { list-style: decimal; }
.tf-guide ul { list-style: disc; }
.tf-guide li {
  margin-bottom: .5rem;
  color: var(--tf-text-muted);
  line-height: 1.7;
}
.tf-guide img {
  border-radius: var(--tf-radius);
  box-shadow: var(--tf-shadow);
  margin: 1.5rem 0;
}
.tf-guide strong { color: var(--tf-text); }

/* ===== Contact Info Cards ===== */
.tf-contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.tf-contact-card {
  background: var(--tf-card-bg);
  border: 1px solid var(--tf-card-border);
  border-radius: var(--tf-radius);
  padding: 2rem;
  text-align: center;
}
.tf-contact-card__icon { font-size: 2rem; margin-bottom: .75rem; }
.tf-contact-card__title {
  font-family: var(--tf-font-heading);
  font-weight: 600;
  margin-bottom: .25rem;
}
.tf-contact-card__value {
  color: var(--tf-primary);
  font-weight: 500;
}
@media (max-width: 480px) {
  .tf-contact-cards { grid-template-columns: 1fr; }
}

/* ===== Testimonials ===== */
.tf-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.tf-testimonial {
  background: var(--tf-card-bg);
  border: 1px solid var(--tf-card-border);
  border-radius: var(--tf-radius);
  padding: 2rem;
  position: relative;
}
.tf-testimonial__stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: .75rem;
}
.tf-testimonial__text {
  color: var(--tf-text-muted);
  font-size: .92rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}
.tf-testimonial__author {
  font-family: var(--tf-font-heading);
  font-weight: 600;
  font-size: .88rem;
  color: var(--tf-primary);
}
.tf-testimonial__location {
  font-size: .8rem;
  color: var(--tf-text-light);
}
@media (max-width: 768px) {
  .tf-testimonials__grid { grid-template-columns: 1fr; }
}

/* ===== Hidden ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
