/*
Theme Name: FreeTV Nigeria
Theme URI: https://example.com/freetv-nigeria
Author: FreeTV Nigeria
Author URI: https://example.com
Description: Official WordPress theme for FreeTV Nigeria, the free-to-air digital television platform. Includes a Home page, a searchable/filterable TV Channels directory with a "Watch Live" preview modal, a Dealers page with an interactive clickable map of Nigeria's states, and a Freetv App landing page with iOS/Android download CTAs. Auto-creates its required pages and primary navigation menu on activation.
Version: 1.0.0
Requires at least: 5.9
Requires PHP: 7.4
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: freetv-nigeria
Tags: one-column, custom-menu, custom-colors, featured-images, threaded-comments, translation-ready

FreeTV Nigeria WordPress Theme
Converted from the static FreeTV Nigeria marketing site.
This stylesheet is copied verbatim from the static build's css/style.css
(scoped under .ftv-page so it never bleeds into WordPress admin bar,
plugins, or other theme styles).
*/

/* =========================================================
   FREETV.NG — SHARED SCOPED STYLES
   All rules are namespaced under .ftv-page so this can be
   dropped into an existing WordPress theme without bleeding
   into (or being overridden by) global theme styles.
   ========================================================= */

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

.ftv-page {
  /* ---- Color tokens ---- */
  --ftv-ink: #0B0E11;          /* broadcast-black canvas */
  --ftv-ink-soft: #161A1F;     /* raised dark surface */
  --ftv-ink-line: #262C33;     /* hairline on dark */
  --ftv-red: #E11B22;          /* FreeTV primary */
  --ftv-red-deep: #A8141A;     /* primary, pressed/shadow */
  --ftv-green: #0E7A57;        /* Nigerian secondary */
  --ftv-green-deep: #0A5A40;
  --ftv-gold: #E8A33D;         /* on-air / live accent */
  --ftv-paper: #F8F6F1;        /* warm off-white, light sections */
  --ftv-paper-dim: #EFEBE2;
  --ftv-ash: #C9CDD2;          /* muted text on dark */
  --ftv-ash-dim: #8B9097;
  --ftv-white: #FFFFFF;

  /* ---- Type scale ---- */
  --ftv-font: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* ---- Layout ---- */
  --ftv-maxw: 1240px;
  --ftv-radius: 14px;
  --ftv-radius-lg: 22px;

  background: var(--ftv-paper);
  color: var(--ftv-ink);
  font-family: var(--ftv-font);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.ftv-page img { max-width: 100%; display: block; }
.ftv-page button { font-family: inherit; cursor: pointer; border: none; background: none; }
.ftv-page a { color: inherit; text-decoration: none; }
.ftv-page ul { list-style: none; }

.ftv-wrap {
  max-width: var(--ftv-maxw);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 720px) {
  .ftv-wrap { padding: 0 18px; }
}

/* Respect reduced-motion preference across every animated component */
@media (prefers-reduced-motion: reduce) {
  .ftv-page * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ---- Signature motif: signal bars (used in LIVE badges, dividers, hero) ---- */
.ftv-signal {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}
.ftv-signal span {
  width: 3px;
  background: currentColor;
  border-radius: 1px;
  animation: ftv-bars 1.1s ease-in-out infinite;
}
.ftv-signal span:nth-child(1) { height: 40%; animation-delay: 0s; }
.ftv-signal span:nth-child(2) { height: 100%; animation-delay: 0.15s; }
.ftv-signal span:nth-child(3) { height: 65%; animation-delay: 0.3s; }
.ftv-signal span:nth-child(4) { height: 85%; animation-delay: 0.45s; }
@keyframes ftv-bars {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

/* Visible keyboard focus everywhere inside the page */
.ftv-page a:focus-visible,
.ftv-page button:focus-visible,
.ftv-page input:focus-visible,
.ftv-page select:focus-visible {
  outline: 3px solid var(--ftv-gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============ SHARED BUTTON SYSTEM ============ */
.ftv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.ftv-btn--sm { padding: 10px 18px; font-size: 14px; }
.ftv-btn--primary {
  background: var(--ftv-red);
  color: var(--ftv-white);
  box-shadow: 0 6px 18px rgba(225, 27, 34, 0.35);
}
.ftv-btn--primary:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(225, 27, 34, 0.4); }
.ftv-btn--ghost-dark {
  background: transparent;
  color: var(--ftv-white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.ftv-btn--ghost-dark:hover { border-color: var(--ftv-white); background: rgba(255,255,255,0.08); }
.ftv-btn--green {
  background: var(--ftv-green);
  color: var(--ftv-white);
  box-shadow: 0 6px 18px rgba(14, 122, 87, 0.3);
}
.ftv-btn--green:hover { transform: translateY(-1px); }
.ftv-btn--outline {
  background: transparent;
  border: 1.5px solid var(--ftv-ink);
  color: var(--ftv-ink);
}
.ftv-btn--outline:hover { background: var(--ftv-ink); color: var(--ftv-white); }
.ftv-btn--outline-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--ftv-white);
}
.ftv-btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--ftv-white); }
.ftv-btn--block { width: 100%; }
.ftv-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ============ 1. HEADER / NAV ============ */
.ftv-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 14, 17, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ftv-ink-line);
}
.ftv-nav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.ftv-logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.ftv-logo__free { color: var(--ftv-white); }
.ftv-logo__tv {
  background: var(--ftv-red);
  color: var(--ftv-white);
  padding: 2px 9px;
  border-radius: 7px;
}
.ftv-nav__links {
  display: flex;
  gap: 30px;
}
.ftv-nav__links a {
  color: var(--ftv-ash);
  font-size: 14.5px;
  font-weight: 600;
  transition: color 0.15s ease;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.ftv-nav__links a:hover { color: var(--ftv-white); }
.ftv-nav__links a.is-active { color: var(--ftv-white); border-bottom-color: var(--ftv-red); }
.ftv-nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ftv-icon-btn {
  color: var(--ftv-ash);
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.15s ease, color 0.15s ease;
}
.ftv-icon-btn:hover { background: var(--ftv-ink-soft); color: var(--ftv-white); }

.ftv-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
}
.ftv-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ftv-white);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.ftv-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ftv-burger.is-open span:nth-child(2) { opacity: 0; }
.ftv-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.ftv-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--ftv-ink);
  border-top: 1px solid var(--ftv-ink-line);
  padding: 10px 18px 22px;
}
.ftv-mobile-menu.is-open { display: flex; }
.ftv-mobile-menu a {
  color: var(--ftv-ash);
  font-weight: 600;
  padding: 13px 4px;
  border-bottom: 1px solid var(--ftv-ink-line);
}
.ftv-mobile-menu a.is-active { color: var(--ftv-red); }
.ftv-mobile-menu .ftv-btn { margin-top: 14px; }

@media (max-width: 880px) {
  .ftv-nav__links { display: none; }
}
@media (max-width: 640px) {
  .ftv-nav__actions .ftv-btn--sm { display: none; }
  .ftv-burger { display: flex; }
  .ftv-nav__bar { height: 64px; }
}

/* ============ 2. HERO ============ */
.ftv-hero {
  background:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(225,27,34,0.22), transparent 60%),
    radial-gradient(ellipse 700px 500px at -10% 110%, rgba(14,122,87,0.18), transparent 60%),
    var(--ftv-ink);
  color: var(--ftv-white);
  padding: 64px 0 0;
  position: relative;
}
.ftv-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 70px;
}
.ftv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ftv-gold);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.6px;
  margin-bottom: 22px;
}
.ftv-hero__title {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
}
.ftv-hero__title--accent { color: var(--ftv-red); }
.ftv-hero__sub {
  color: var(--ftv-ash);
  font-size: 18px;
  max-width: 480px;
  margin-bottom: 32px;
}
.ftv-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.ftv-hero__livelink {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ftv-ash);
  font-size: 14.5px;
  font-weight: 600;
}
.ftv-hero__livelink:hover { color: var(--ftv-white); }
.ftv-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ftv-red);
  box-shadow: 0 0 0 0 rgba(225,27,34, 0.6);
  animation: ftv-pulse 1.8s ease-out infinite;
  flex-shrink: 0;
}
@keyframes ftv-pulse {
  0% { box-shadow: 0 0 0 0 rgba(225,27,34, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(225,27,34, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225,27,34, 0); }
}

/* ---- TV mockup ---- */
.ftv-tv { position: relative; }
.ftv-tv__bezel {
  background: var(--ftv-ink-soft);
  border: 1px solid var(--ftv-ink-line);
  border-radius: 18px;
  padding: 14px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
.ftv-tv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  position: relative;
  z-index: 1;
}
.ftv-tile {
  aspect-ratio: 4/3;
  border-radius: 10px;
  display: flex;
  align-items: flex-end;
  padding: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  background-size: cover;
}
.ftv-tile--news   { background: linear-gradient(155deg, #6B1212, #E11B22); }
.ftv-tile--sport  { background: linear-gradient(155deg, #0A5A40, #16A876); }
.ftv-tile--nolly  { background: linear-gradient(155deg, #5A1A0E, #C2541F); }
.ftv-tile--kids   { background: linear-gradient(155deg, #8A5A00, #E8A33D); }
.ftv-tile--music  { background: linear-gradient(155deg, #2B1450, #6B36C9); }
.ftv-tile--faith  { background: linear-gradient(155deg, #0E3A52, #1C7CA8); }
.ftv-tv__liveflag {
  position: absolute;
  top: 24px; left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.55);
  color: var(--ftv-white);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 9px;
  border-radius: 6px;
  z-index: 2;
}
.ftv-tv__static {
  position: absolute;
  inset: 14px;
  z-index: 2;
  border-radius: 10px;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.12) 0 2px, transparent 2px 4px),
              repeating-linear-gradient(-45deg, rgba(255,255,255,0.06) 0 2px, transparent 2px 4px);
  animation: ftv-tune-in 2.6s ease forwards;
}
@keyframes ftv-tune-in {
  0% { opacity: 1; }
  60% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}
.ftv-tv__stand {
  width: 90px;
  height: 14px;
  background: var(--ftv-ink-soft);
  border: 1px solid var(--ftv-ink-line);
  border-radius: 0 0 8px 8px;
  margin: 0 auto;
}

.ftv-hero__divider { border-top: 1px solid var(--ftv-ink-line); padding: 22px 0; }
.ftv-hero__divider-bars { display: flex; gap: 6px; align-items: flex-end; height: 16px; opacity: 0.5; }
.ftv-hero__divider-bars span {
  flex: 1; background: var(--ftv-ash-dim); border-radius: 2px;
}
.ftv-hero__divider-bars span:nth-child(odd) { height: 60%; }
.ftv-hero__divider-bars span:nth-child(even) { height: 100%; }

@media (max-width: 900px) {
  .ftv-hero__grid { grid-template-columns: 1fr; padding-bottom: 40px; }
  .ftv-hero__visual { order: -1; max-width: 420px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .ftv-hero { padding-top: 36px; }
  .ftv-hero__sub { font-size: 16.5px; }
  .ftv-hero__ctas .ftv-btn { width: 100%; }
}

/* ============ INNER PAGE HERO (banner for sub-pages) ============ */
.ftv-pagehero {
  background:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(225,27,34,0.22), transparent 60%),
    radial-gradient(ellipse 700px 500px at -10% 110%, rgba(14,122,87,0.18), transparent 60%),
    var(--ftv-ink);
  color: var(--ftv-white);
  padding: 56px 0 48px;
}
.ftv-pagehero__title {
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  margin: 12px 0 14px;
}
.ftv-pagehero__sub {
  color: var(--ftv-ash);
  font-size: 17px;
  max-width: 640px;
}
.ftv-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--ftv-ash-dim);
  font-size: 13.5px;
  font-weight: 600;
  margin-top: 18px;
}
.ftv-breadcrumb a:hover { color: var(--ftv-white); }

/* ============ 3. TRUST STRIP ============ */
.ftv-trust {
  background: var(--ftv-ink);
  border-bottom: 1px solid var(--ftv-ink-line);
}
.ftv-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 36px 0;
}
.ftv-trust__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  border-left: 1px solid var(--ftv-ink-line);
  padding: 0 12px;
}
.ftv-trust__stat:first-child { border-left: none; }
.ftv-trust__num {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  color: var(--ftv-white);
  letter-spacing: -0.5px;
}
.ftv-trust__label {
  font-size: 13px;
  color: var(--ftv-ash-dim);
  font-weight: 600;
}
@media (max-width: 720px) {
  .ftv-trust__grid { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .ftv-trust__stat:nth-child(3) { border-left: none; }
}

/* ============ SHARED SECTION HEAD ============ */
.ftv-section-head { max-width: 640px; margin-bottom: 44px; }
.ftv-section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.ftv-eyebrow--dark { color: var(--ftv-red-deep); }
.ftv-section-title {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin: 10px 0 12px;
}
.ftv-section-sub { color: #555; font-size: 16.5px; }

/* ============ 4. WHY FREETV ============ */
.ftv-why { background: var(--ftv-paper); padding: 84px 0; }
.ftv-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ftv-card {
  background: var(--ftv-white);
  border: 1px solid #E6E1D6;
  border-radius: var(--ftv-radius);
  padding: 26px 22px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.ftv-card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px -16px rgba(0,0,0,0.18); }
.ftv-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.2px; }
.ftv-card p { font-size: 14.5px; color: #5A5A56; }
.ftv-card__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.ftv-card__icon--red  { background: rgba(225,27,34,0.1); color: var(--ftv-red); }
.ftv-card__icon--green{ background: rgba(14,122,87,0.12); color: var(--ftv-green); }
.ftv-card__icon--gold { background: rgba(232,163,61,0.16); color: #B97A1F; }

@media (max-width: 980px) {
  .ftv-why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ftv-why { padding: 56px 0; }
  .ftv-why__grid { grid-template-columns: 1fr; }
}

/* ============ 5. EXPLORE CHANNELS (home preview) ============ */
.ftv-channels { background: var(--ftv-ink); padding: 84px 0; }
.ftv-channels .ftv-eyebrow--dark { color: var(--ftv-gold); }
.ftv-channels .ftv-section-title,
.ftv-channels .ftv-section-sub { color: var(--ftv-white); }
.ftv-channels .ftv-section-sub { color: var(--ftv-ash); }

.ftv-tab-radio { position: absolute; opacity: 0; pointer-events: none; }

.ftv-tabs-css__bar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 26px;
  scrollbar-width: none;
}
.ftv-tabs-css__bar::-webkit-scrollbar { display: none; }
.ftv-tab-label {
  flex-shrink: 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ftv-ink-soft);
  border: 1px solid var(--ftv-ink-line);
  color: var(--ftv-ash);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.ftv-tab-label:hover { color: var(--ftv-white); }

.ftv-panel { display: none; }

#ftv-cat-news:checked  ~ .ftv-tabs-css__bar label[for="ftv-cat-news"],
#ftv-cat-sport:checked ~ .ftv-tabs-css__bar label[for="ftv-cat-sport"],
#ftv-cat-movies:checked ~ .ftv-tabs-css__bar label[for="ftv-cat-movies"],
#ftv-cat-kids:checked  ~ .ftv-tabs-css__bar label[for="ftv-cat-kids"],
#ftv-cat-music:checked ~ .ftv-tabs-css__bar label[for="ftv-cat-music"] {
  background: var(--ftv-red);
  border-color: var(--ftv-red);
  color: var(--ftv-white);
}

#ftv-cat-news:checked  ~ #ftv-panel-news,
#ftv-cat-sport:checked ~ #ftv-panel-sport,
#ftv-cat-movies:checked ~ #ftv-panel-movies,
#ftv-cat-kids:checked  ~ #ftv-panel-kids,
#ftv-cat-music:checked ~ #ftv-panel-music {
  display: block;
}

.ftv-chan-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 4px 14px;
  scroll-snap-type: x proximity;
}
.ftv-chan-card {
  flex: 0 0 150px;
  height: 100px;
  border-radius: 12px;
  color: var(--ftv-white);
  font-weight: 800;
  font-size: 14.5px;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  scroll-snap-align: start;
  box-shadow: 0 12px 24px -14px rgba(0,0,0,0.6);
  transition: transform 0.18s ease;
}
.ftv-chan-card:hover { transform: translateY(-4px) scale(1.02); }

.ftv-channels__more {
  display: inline-block;
  margin-top: 8px;
  color: var(--ftv-gold);
  font-weight: 700;
  font-size: 14.5px;
}
.ftv-channels__more:hover { color: var(--ftv-white); }

@media (max-width: 560px) {
  .ftv-channels { padding: 56px 0; }
  .ftv-chan-card { flex-basis: 130px; height: 88px; font-size: 13.5px; }
}

/* ============ 6. WATCH LIVE NOW ============ */
.ftv-livenow { background: var(--ftv-paper); padding: 84px 0; }
.ftv-livenow__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.ftv-livenow .ftv-eyebrow { color: var(--ftv-red); margin-bottom: 0; }

.ftv-live__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.ftv-live__card {
  background: var(--ftv-white);
  border: 1px solid #E6E1D6;
  border-radius: var(--ftv-radius);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  position: relative;
}
.ftv-live__card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px -16px rgba(0,0,0,0.18); border-color: var(--ftv-red); }
.ftv-live__card.is-active { border-color: var(--ftv-green); box-shadow: 0 0 0 2px rgba(14,122,87,0.25); }
.ftv-live__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(225,27,34,0.08);
  color: var(--ftv-red);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 4px 8px;
  border-radius: 6px;
}
.ftv-live__name { font-weight: 800; font-size: 16px; }
.ftv-live__play {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ftv-ink);
  color: var(--ftv-white);
  display: flex; align-items: center; justify-content: center;
  margin-left: auto;
}
.ftv-live__note { margin-top: 18px; font-size: 14px; color: var(--ftv-green-deep); font-weight: 700; min-height: 20px; }

@media (max-width: 980px) {
  .ftv-live__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .ftv-livenow { padding: 56px 0; }
  .ftv-live__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ 7. GET STARTED + INSTALLERS ============ */
.ftv-steps { background: var(--ftv-white); padding: 84px 0; }
.ftv-sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.ftv-steps__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 56px;
}
.ftv-step { text-align: left; max-width: 280px; }
.ftv-step__num {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--ftv-ash-dim);
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.ftv-step__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--ftv-paper);
  border: 1px solid #E6E1D6;
  color: var(--ftv-red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.ftv-step h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.2px; }
.ftv-step p { font-size: 14.5px; color: #5A5A56; }
.ftv-step__connector {
  align-self: center;
  width: 60px;
  height: 2px;
  background: repeating-linear-gradient(90deg, #D8D3C6 0 6px, transparent 6px 12px);
  margin-top: 28px;
}

.ftv-installer {
  background: linear-gradient(120deg, var(--ftv-green-deep), var(--ftv-green));
  border-radius: var(--ftv-radius-lg);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--ftv-white);
}
.ftv-installer__copy { max-width: 360px; }
.ftv-installer__copy h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.3px; }
.ftv-installer__copy p { font-size: 14.5px; color: rgba(255,255,255,0.85); }
.ftv-installer__form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ftv-installer__form select {
  padding: 13px 16px;
  border-radius: 999px;
  border: none;
  font-size: 14.5px;
  font-weight: 600;
  min-width: 200px;
  background: var(--ftv-white);
  color: var(--ftv-ink);
}
.ftv-installer__result {
  width: 100%;
  margin-top: 16px;
  font-size: 14.5px;
  font-weight: 700;
  background: rgba(255,255,255,0.12);
  padding: 0;
  border-radius: 10px;
  transition: padding 0.15s ease;
}
.ftv-installer__result:not(:empty) { padding: 12px 16px; }

@media (max-width: 900px) {
  .ftv-steps__row { grid-template-columns: 1fr; }
  .ftv-step { max-width: none; }
  .ftv-step__connector { display: none; }
  .ftv-installer { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .ftv-steps { padding: 56px 0; }
  .ftv-installer__form { width: 100%; }
  .ftv-installer__form select { flex: 1; }
}

/* ============ 8. APP DOWNLOAD + RECHARGE ============ */
.ftv-app { background: var(--ftv-ink); padding: 84px 0; }
.ftv-app__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.ftv-app__card {
  background: var(--ftv-ink-soft);
  border: 1px solid var(--ftv-ink-line);
  border-radius: var(--ftv-radius-lg);
  padding: 38px;
  position: relative;
  overflow: hidden;
}
.ftv-eyebrow--gold { color: var(--ftv-gold); }

.ftv-store-badges { display: flex; gap: 12px; margin: 26px 0 30px; flex-wrap: wrap; }
.ftv-store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ftv-white);
  color: var(--ftv-ink);
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14.5px;
  transition: transform 0.15s ease, background 0.15s ease;
}
.ftv-store-badge small { display: block; font-size: 9.5px; font-weight: 700; color: #777; letter-spacing: 0.4px; }
.ftv-store-badge:hover { background: var(--ftv-paper-dim); transform: translateY(-2px); }

.ftv-phone {
  width: 150px;
  margin-left: auto;
  margin-top: -10px;
}
.ftv-phone__screen {
  background: linear-gradient(160deg, #1B2027, var(--ftv-ink));
  border: 6px solid #2B3138;
  border-radius: 22px;
  padding: 14px 12px;
  aspect-ratio: 9/17;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ftv-phone__bar { height: 8px; width: 40%; background: var(--ftv-red); border-radius: 4px; margin-bottom: 6px; }
.ftv-phone__row { height: 26%; background: var(--ftv-ink-line); border-radius: 8px; }
.ftv-phone__row--accent { background: linear-gradient(155deg, #6B1212, #E11B22); }

.ftv-ussd {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ftv-ink);
  border: 1px solid var(--ftv-ink-line);
  border-radius: 14px;
  padding: 18px 20px;
  flex-wrap: wrap;
}
.ftv-ussd__code {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--ftv-gold);
  font-family: "SF Mono", "Courier New", monospace;
}
.ftv-ussd__hint { font-size: 13px; color: var(--ftv-green); font-weight: 700; min-height: 18px; margin-top: 8px; }
.ftv-app__divider { height: 1px; background: var(--ftv-ink-line); margin: 26px 0; }

@media (max-width: 900px) {
  .ftv-app__grid { grid-template-columns: 1fr; }
  .ftv-phone { display: none; }
}
@media (max-width: 560px) {
  .ftv-app { padding: 56px 0; }
  .ftv-app__card { padding: 28px; }
  .ftv-ussd__code { font-size: 20px; }
}

/* ============ 9. WHAT'S TRENDING ============ */
.ftv-trending { background: var(--ftv-paper); padding: 84px 0; }
.ftv-trend__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ftv-trend__card { display: flex; flex-direction: column; }
.ftv-trend__thumb {
  aspect-ratio: 16/10;
  border-radius: var(--ftv-radius);
  margin-bottom: 14px;
}
.ftv-trend__tag {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: var(--ftv-red);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ftv-trend__card h3 { font-size: 16.5px; font-weight: 800; letter-spacing: -0.2px; margin-bottom: 8px; }
.ftv-trend__date { font-size: 13px; color: var(--ftv-ash-dim); font-weight: 600; }

@media (max-width: 980px) {
  .ftv-trend__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ftv-trending { padding: 56px 0; }
}

/* ============ 10. SUPPORT BAND ============ */
.ftv-supportband { background: var(--ftv-white); padding: 50px 0; border-top: 1px solid #E6E1D6; border-bottom: 1px solid #E6E1D6; }
.ftv-supportband__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.ftv-supportband__title { font-size: 22px; font-weight: 800; letter-spacing: -0.3px; margin-bottom: 6px; }
.ftv-supportband p { color: #5A5A56; font-size: 15px; }
.ftv-whatsapp-btn { background: var(--ftv-green); box-shadow: 0 6px 18px rgba(14,122,87,0.3); }

/* ============ 11. FOOTER ============ */
.ftv-footer { background: var(--ftv-ink); color: var(--ftv-ash); padding: 60px 0 0; }
.ftv-footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--ftv-ink-line);
}
.ftv-footer__brand p { font-size: 14px; margin: 14px 0 18px; color: var(--ftv-ash-dim); max-width: 260px; }
.ftv-footer__social { display: flex; gap: 10px; }
.ftv-footer__social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--ftv-ink-soft);
  border: 1px solid var(--ftv-ink-line);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.ftv-footer__social a:hover { background: var(--ftv-red); border-color: var(--ftv-red); }
.ftv-footer__col h4 { color: var(--ftv-white); font-size: 14px; font-weight: 800; margin-bottom: 16px; letter-spacing: 0.2px; }
.ftv-footer__col a { display: block; font-size: 14px; margin-bottom: 12px; color: var(--ftv-ash-dim); }
.ftv-footer__col a:hover { color: var(--ftv-white); }

.ftv-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 13px;
  color: var(--ftv-ash-dim);
  flex-wrap: wrap;
  gap: 10px;
}
.ftv-footer__legal { display: flex; gap: 20px; }
.ftv-footer__legal a:hover { color: var(--ftv-white); }

@media (max-width: 900px) {
  .ftv-footer__top { grid-template-columns: repeat(2, 1fr); }
  .ftv-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .ftv-supportband__inner { flex-direction: column; align-items: flex-start; }
  .ftv-footer__top { grid-template-columns: 1fr; gap: 28px; }
}

/* ============ STICKY MOBILE CTA ============ */
.ftv-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(11,14,17,0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--ftv-ink-line);
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  gap: 10px;
  align-items: center;
}
.ftv-sticky-cta__wa {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--ftv-green);
  color: var(--ftv-white);
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 640px) {
  .ftv-sticky-cta { display: flex; }
  .ftv-footer { padding-bottom: 76px; }
}

/* =========================================================
   CHANNELS DIRECTORY PAGE
   ========================================================= */
.ftv-directory { background: var(--ftv-paper); padding: 64px 0 90px; }
.ftv-directory__controls {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.ftv-search {
  position: relative;
  flex: 1 1 280px;
  max-width: 380px;
}
.ftv-search input {
  width: 100%;
  padding: 13px 16px 13px 42px;
  border-radius: 999px;
  border: 1px solid #DAD4C6;
  background: var(--ftv-white);
  font-size: 14.5px;
  font-family: inherit;
  color: var(--ftv-ink);
}
.ftv-search svg {
  position: absolute;
  left: 15px; top: 50%;
  transform: translateY(-50%);
  color: #9A9488;
}
.ftv-filterbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ftv-filter-chip {
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--ftv-white);
  border: 1px solid #DAD4C6;
  font-size: 13.5px;
  font-weight: 700;
  color: #555;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.ftv-filter-chip:hover { border-color: var(--ftv-red); }
.ftv-filter-chip.is-active { background: var(--ftv-ink); border-color: var(--ftv-ink); color: var(--ftv-white); }

.ftv-channel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ftv-channel-card {
  background: var(--ftv-white);
  border: 1px solid #E6E1D6;
  border-radius: var(--ftv-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.ftv-channel-card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px -16px rgba(0,0,0,0.2); }
.ftv-channel-card__art {
  aspect-ratio: 16/9;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px;
  color: var(--ftv-white);
}
.ftv-channel-card__cat {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background: rgba(0,0,0,0.35);
  padding: 4px 9px;
  border-radius: 6px;
}
.ftv-channel-card__live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  background: rgba(0,0,0,0.4);
  padding: 4px 8px;
  border-radius: 6px;
}
.ftv-channel-card__body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.ftv-channel-card__name { font-size: 17px; font-weight: 800; letter-spacing: -0.2px; }
.ftv-channel-card__syn { font-size: 13.8px; color: #5A5A56; flex: 1; }
.ftv-channel-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  gap: 10px;
}
.ftv-channel-card__num { font-size: 12.5px; color: var(--ftv-ash-dim); font-weight: 700; }
.ftv-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ftv-ink);
  color: var(--ftv-white);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.15s ease;
}
.ftv-watch-btn:hover { background: var(--ftv-red); }
.ftv-directory__empty {
  display: none;
  text-align: center;
  padding: 60px 20px;
  color: #777;
}
.ftv-directory__empty.is-visible { display: block; }
.ftv-directory__count { font-size: 13.5px; color: #777; font-weight: 600; margin-bottom: 8px; }

@media (max-width: 980px) {
  .ftv-channel-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ftv-channel-grid { grid-template-columns: 1fr; }
  .ftv-directory__controls { flex-direction: column; align-items: stretch; }
  .ftv-search { max-width: none; }
}

/* ---- Watch Live modal ---- */
.ftv-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,8,10,0.82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}
.ftv-modal-overlay.is-open { display: flex; }
.ftv-modal {
  background: var(--ftv-ink-soft);
  border: 1px solid var(--ftv-ink-line);
  border-radius: var(--ftv-radius-lg);
  max-width: 560px;
  width: 100%;
  color: var(--ftv-white);
  overflow: hidden;
}
.ftv-modal__player {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: var(--ftv-white);
  position: relative;
}
.ftv-modal__player .ftv-live__badge { position: absolute; top: 16px; left: 16px; }
.ftv-modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  color: var(--ftv-white);
  display: flex; align-items: center; justify-content: center;
}
.ftv-modal__close:hover { background: rgba(0,0,0,0.6); }
.ftv-modal__body { padding: 22px 24px 26px; }
.ftv-modal__body h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.ftv-modal__body p { color: var(--ftv-ash); font-size: 14.5px; margin-bottom: 18px; }
.ftv-modal__playicon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  animation: ftv-modal-pulse 1.8s ease-in-out infinite;
}
@keyframes ftv-modal-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* =========================================================
   DEALERS / INSTALLERS MAP PAGE
   ========================================================= */
.ftv-dealers { background: var(--ftv-paper); padding: 64px 0 90px; }
.ftv-dealers__layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: flex-start;
}
.ftv-map-card {
  background: var(--ftv-white);
  border: 1px solid #E6E1D6;
  border-radius: var(--ftv-radius-lg);
  padding: 20px;
  position: sticky;
  top: 90px;
}
.ftv-map-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.ftv-map-card__head h2 { font-size: 18px; font-weight: 800; }
.ftv-map-legend {
  display: flex;
  gap: 14px;
  font-size: 12.5px;
  color: #666;
  font-weight: 600;
  flex-wrap: wrap;
}
.ftv-map-legend span { display: inline-flex; align-items: center; gap: 6px; }
.ftv-map-legend i { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }
#ftvNigeriaMap {
  width: 100%;
  height: auto;
  display: block;
}
#ftvNigeriaMap path {
  fill: #E7E2D5;
  stroke: var(--ftv-white);
  stroke-width: 1.1;
  cursor: pointer;
  transition: fill 0.15s ease;
}
#ftvNigeriaMap path:hover { fill: var(--ftv-gold); }
#ftvNigeriaMap path.is-selected { fill: var(--ftv-red); }
#ftvNigeriaMap path.has-dealers { fill: #CFE4DA; }
#ftvNigeriaMap path.has-dealers:hover { fill: var(--ftv-gold); }
#ftvNigeriaMap path.has-dealers.is-selected { fill: var(--ftv-red); }
.ftv-map-tooltip {
  position: fixed;
  pointer-events: none;
  background: var(--ftv-ink);
  color: var(--ftv-white);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  z-index: 50;
  display: none;
  transform: translate(-50%, -130%);
  white-space: nowrap;
}
.ftv-map-hint {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-top: 10px;
}

.ftv-dealer-panel {
  background: var(--ftv-white);
  border: 1px solid #E6E1D6;
  border-radius: var(--ftv-radius-lg);
  padding: 26px;
  min-height: 420px;
}
.ftv-dealer-panel__state {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}
.ftv-dealer-panel__state h2 { font-size: 22px; font-weight: 800; letter-spacing: -0.3px; }
.ftv-dealer-panel__count {
  background: rgba(14,122,87,0.12);
  color: var(--ftv-green);
  font-size: 12.5px;
  font-weight: 800;
  padding: 5px 11px;
  border-radius: 999px;
}
.ftv-dealer-panel__sub { color: #777; font-size: 14px; margin-bottom: 22px; }
.ftv-dealer-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 50px 10px;
  color: #888;
}
.ftv-dealer-empty svg { color: #C9CDD2; }
.ftv-dealer-list { display: flex; flex-direction: column; gap: 14px; }
.ftv-dealer-item {
  border: 1px solid #E6E1D6;
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ftv-dealer-item__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.ftv-dealer-item__name { font-size: 15.5px; font-weight: 800; }
.ftv-dealer-item__badge {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--ftv-green);
  background: rgba(14,122,87,0.1);
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
}
.ftv-dealer-item__meta { font-size: 13.5px; color: #666; display: flex; flex-direction: column; gap: 4px; }
.ftv-dealer-item__meta span { display: flex; align-items: center; gap: 7px; }
.ftv-dealer-item__actions { display: flex; gap: 8px; margin-top: 4px; flex-wrap: wrap; }
.ftv-dealer-item__actions a {
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid #DAD4C6;
  color: var(--ftv-ink);
}
.ftv-dealer-item__actions a:hover { border-color: var(--ftv-ink); background: var(--ftv-ink); color: var(--ftv-white); }

.ftv-states-scroller {
  display: none;
}

@media (max-width: 980px) {
  .ftv-dealers__layout { grid-template-columns: 1fr; }
  .ftv-map-card { position: static; }
}

/* =========================================================
   FREETV APP PAGE
   ========================================================= */
.ftv-apphero {
  background:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(225,27,34,0.22), transparent 60%),
    radial-gradient(ellipse 700px 500px at -10% 110%, rgba(14,122,87,0.18), transparent 60%),
    var(--ftv-ink);
  color: var(--ftv-white);
  padding: 64px 0 70px;
}
.ftv-apphero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.ftv-apphero__store { display: flex; gap: 12px; flex-wrap: wrap; margin: 26px 0 8px; }
.ftv-apphero__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ftv-ash);
  font-size: 13.5px;
  font-weight: 600;
  margin-top: 14px;
}
.ftv-apphero__rating strong { color: var(--ftv-white); }

.ftv-app-features { background: var(--ftv-paper); padding: 84px 0; }
.ftv-app-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ftv-app-screens { background: var(--ftv-white); padding: 84px 0; }
.ftv-screens-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
}
.ftv-screen-mock {
  flex: 0 0 200px;
  border-radius: 22px;
  border: 6px solid var(--ftv-ink);
  aspect-ratio: 9/17;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--ftv-white);
  position: relative;
  overflow: hidden;
}
.ftv-screen-mock__label {
  position: absolute;
  bottom: 12px; left: 14px; right: 14px;
  font-size: 12.5px;
  font-weight: 800;
  background: rgba(0,0,0,0.4);
  padding: 6px 10px;
  border-radius: 8px;
  text-align: center;
}

.ftv-app-cta {
  background: linear-gradient(120deg, var(--ftv-red-deep), var(--ftv-red));
  padding: 64px 0;
  text-align: center;
  color: var(--ftv-white);
}
.ftv-app-cta h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; margin-bottom: 12px; letter-spacing: -0.6px; }
.ftv-app-cta p { color: rgba(255,255,255,0.9); margin-bottom: 28px; font-size: 16.5px; max-width: 560px; margin-left: auto; margin-right: auto; }
.ftv-app-cta__badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.ftv-app-steps { background: var(--ftv-ink); padding: 84px 0; color: var(--ftv-white); }
.ftv-app-steps .ftv-section-title, .ftv-app-steps .ftv-section-sub { color: var(--ftv-white); }
.ftv-app-steps .ftv-section-sub { color: var(--ftv-ash); }
.ftv-app-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ftv-app-step {
  background: var(--ftv-ink-soft);
  border: 1px solid var(--ftv-ink-line);
  border-radius: var(--ftv-radius);
  padding: 24px 20px;
}
.ftv-app-step__num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--ftv-red);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  margin-bottom: 14px;
}
.ftv-app-step h3 { font-size: 15.5px; font-weight: 800; margin-bottom: 6px; }
.ftv-app-step p { font-size: 13.5px; color: var(--ftv-ash); }

@media (max-width: 980px) {
  .ftv-apphero__grid { grid-template-columns: 1fr; }
  .ftv-apphero__visual { order: -1; max-width: 320px; margin: 0 auto; }
  .ftv-app-features__grid { grid-template-columns: repeat(2, 1fr); }
  .ftv-app-steps__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ftv-app-features__grid { grid-template-columns: 1fr; }
  .ftv-app-steps__grid { grid-template-columns: 1fr; }
  .ftv-app-features, .ftv-app-screens, .ftv-app-steps { padding: 56px 0; }
}
