/* ================================================================
   IPTV Ireland — style.css
   Mobile-first, fully responsive, production-ready
   ================================================================ */

/* Google Fonts — preconnect handled in HTML head */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Poppins:wght@500;600;700;800;900&display=swap');

/* ── CSS Variables ─────────────────────────────────────────────── */
:root {
  --emerald:  #10b981;
  --emerald2: #059669;
  --emerald3: #047857;
  --orange:   #f97316;
  --gold:     #f59e0b;
  --blue:     #3b82f6;
  --purple:   #8b5cf6;
  --red:      #ef4444;
  --dark:     #030712;
  --dark2:    #0d1117;
  --dark3:    #161b22;
  --dark4:    #21262d;
  --dark5:    #30363d;
  --text:     #f0f6fc;
  --text2:    #c9d1d9;
  --muted:    #6e7681;
  --border:   rgba(255,255,255,0.08);
  --border2:  rgba(255,255,255,0.14);
  --glass:    rgba(255,255,255,0.03);
  --glass2:   rgba(255,255,255,0.07);
  --shadow:   0 4px 24px rgba(0,0,0,0.4);
  --shadow2:  0 8px 40px rgba(0,0,0,0.6);
  --r:        12px;
  --r2:       20px;
  --t:        0.25s ease;
  /* Mobile safe zones */
  --safe-top:    env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left:   env(safe-area-inset-left, 0px);
  --safe-right:  env(safe-area-inset-right, 0px);
}

/* ── Reset ──────────────────────────────────────────────────────── */
*,*::before,*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-user-drag: none;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Accessibility ───────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--emerald);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  border-radius: 0 0 8px 0;
  transition: top .2s;
  font-size: .9rem;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 2px solid var(--emerald); outline-offset: 2px; }

/* ── Announcement Bar ───────────────────────────────────────────── */
.ann {
  background: linear-gradient(90deg, var(--emerald3), var(--emerald2), var(--emerald3));
  background-size: 200%;
  animation: annS 4s linear infinite;
  text-align: center;
  padding: 9px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: #fff;
  position: relative;
  z-index: 100;
  line-height: 1.4;
}
.ann a { color: #fff; text-decoration: underline; white-space: nowrap; }
@keyframes annS { 0%{background-position:0%} 100%{background-position:200%} }

/* ── Header ─────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(3,7,18,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--t);
}
.topbar-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald2));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(16,185,129,.35);
}
.logo-badge {
  font-size: .58rem;
  background: var(--orange);
  color: #fff;
  padding: 2px 6px;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: .5px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  padding: 6px 11px;
  border-radius: 8px;
  font-size: .84rem;
  font-weight: 500;
  color: var(--text2);
  transition: var(--t);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active { color: var(--text); background: var(--glass2); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ── Hamburger ───────────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--glass2);
  border: 1px solid var(--border2);
  gap: 5px;
  transition: var(--t);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--t);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu ─────────────────────────────────────────────────── */
.mobile-menu {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(300px, 85vw);
  height: 100%;
  height: 100dvh;
  background: var(--dark2);
  border-left: 1px solid var(--border2);
  z-index: 300;
  transition: right .3s ease, opacity .3s ease, visibility .3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 76px 16px 40px;
  padding-bottom: calc(40px + var(--safe-bottom));
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  right: 0;
}
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text2);
  transition: var(--t);
  border: 1px solid transparent;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-height: 48px;
}
.mobile-menu a:hover,
.mobile-menu a:active {
  color: var(--text);
  background: var(--glass2);
  border-color: var(--border2);
}
.mob-close {
  position: absolute;
  top: 18px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--dark4);
  border: 1px solid var(--border2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text2);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 250;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.nav-overlay.is-open { display: block; }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .88rem;
  transition: all .2s;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-height: 44px;
  line-height: 1;
}
.btn-main {
  background: linear-gradient(135deg, var(--emerald), var(--emerald2));
  color: #fff;
  box-shadow: 0 4px 20px rgba(16,185,129,.35);
}
.btn-main:hover {
  background: linear-gradient(135deg, var(--emerald2), var(--emerald3));
  box-shadow: 0 6px 28px rgba(16,185,129,.5);
  transform: translateY(-1px);
}
.btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.btn-wa:hover { background: #20bd5a; transform: translateY(-1px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(245,158,11,.35);
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(245,158,11,.5); }
.btn-out {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
}
.btn-out:hover { background: var(--glass2); border-color: var(--emerald); color: var(--emerald); }
.btn-lg { padding: 14px 28px; font-size: .96rem; border-radius: 12px; min-height: 52px; }
.btn-sm { padding: 7px 14px; font-size: .78rem; border-radius: 8px; min-height: 36px; }

/* ── Ticker ──────────────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--dark3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 9px 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: tick 50s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 3px 20px;
  font-size: .79rem;
  color: var(--text2);
  white-space: nowrap;
  border-right: 1px solid var(--border);
}
.ticker-item span { color: var(--emerald); font-weight: 600; }
@keyframes tick { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(16,185,129,.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(249,115,22,.06) 0%, transparent 70%),
    var(--dark);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .5;
  pointer-events: none;
}
.hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 64px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.3);
  color: var(--emerald);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .76rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.9rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -.5px;
}
.hl {
  background: linear-gradient(135deg, var(--emerald), var(--emerald2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hl-o {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(.88rem, 2vw, 1rem);
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--text2);
  background: var(--glass2);
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: 20px;
}
.trust-badge .ico { color: var(--emerald); }
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.hero-pill {
  font-size: .73rem;
  color: var(--text2);
  background: var(--dark3);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ── TV Mockup ───────────────────────────────────────────────────── */
.hero-right { position: relative; }
.tv-mockup { position: relative; max-width: 460px; margin: 0 auto; }
.tv-screen {
  aspect-ratio: 16/10;
  background: var(--dark2);
  border-radius: 12px 12px 0 0;
  border: 10px solid var(--dark4);
  border-bottom: 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 60px rgba(16,185,129,.15), var(--shadow2);
}
.tv-bars {
  display: flex;
  height: 100%;
  background: var(--dark);
}
.tv-sidebar {
  width: 140px;
  flex-shrink: 0;
  background: var(--dark3);
  border-right: 1px solid var(--border);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
}
.tv-ch {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 8px;
  border-radius: 7px;
  font-size: .68rem;
  color: var(--text2);
  transition: var(--t);
  cursor: pointer;
}
.tv-ch.active { background: rgba(16,185,129,.12); color: var(--text); }
.tv-ch-dot { width: 18px; height: 18px; border-radius: 4px; flex-shrink: 0; }
.tv-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  background: linear-gradient(135deg, var(--dark2), var(--dark));
}
.tv-live {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: .65rem;
  font-weight: 700;
  color: var(--red);
  background: rgba(239,68,68,.15);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(239,68,68,.3);
}
.tv-play {
  font-size: 2.5rem;
  color: var(--emerald);
  filter: drop-shadow(0 0 20px rgba(16,185,129,.5));
}
.tv-lbl {
  font-size: .66rem;
  color: var(--muted);
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.tv-stand {
  height: 24px;
  background: var(--dark4);
  margin: 0 auto;
  width: 20%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.tv-base {
  height: 8px;
  background: var(--dark5);
  margin: 0 auto;
  width: 50%;
  border-radius: 0 0 6px 6px;
}
/* Floating cards */
.floating-cards { position: absolute; width: 100%; top: 0; left: 0; pointer-events: none; }
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(13,17,23,.9);
  border: 1px solid var(--border2);
  padding: 8px 12px;
  border-radius: 12px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  font-size: .78rem;
}
.float-card-1 { top: 20%; left: -15%; animation: floatA 3s ease-in-out infinite; }
.float-card-2 { top: 55%; right: -14%; animation: floatB 4s ease-in-out infinite; }
.float-card-3 { bottom: 12%; left: -10%; animation: floatA 5s ease-in-out infinite; }
.fi { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.fi.g { background: rgba(16,185,129,.2); }
.fi.o { background: rgba(249,115,22,.2); }
.fi.b { background: rgba(245,158,11,.2); }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* ── Stats Bar ───────────────────────────────────────────────────── */
.stats-bar {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 28px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--emerald), var(--emerald2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.stat-label { font-size: .78rem; color: var(--muted); margin-top: 4px; }

/* ── Sections ────────────────────────────────────────────────────── */
.section { padding: 72px 20px; }
.section-inner { max-width: 1300px; margin: 0 auto; width: 100%; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-head p { color: var(--text2); font-size: clamp(.85rem, 2vw, .95rem); max-width: 600px; margin: 0 auto; }
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--emerald);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 10px;
  justify-content: center;
}

/* ── Channel Tabs ────────────────────────────────────────────────── */
.ch-tabset {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}
.ch-tab {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text2);
  background: var(--dark3);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-height: 40px;
}
.ch-tab.active,
.ch-tab:hover { color: var(--text); background: var(--emerald); border-color: var(--emerald); }
.ch-panel { display: none; }
.ch-panel.active { display: block; }
.ch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.ch-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .82rem;
  color: var(--text2);
  transition: var(--t);
}
.ch-item:hover { border-color: var(--emerald); color: var(--text); }
.ch-ico { font-size: 1rem; flex-shrink: 0; }

/* ── Pricing ─────────────────────────────────────────────────────── */
.price-section { background: var(--dark2); border-top: 1px solid var(--border); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.price-card {
  background: var(--dark3);
  border: 1px solid var(--border2);
  border-radius: var(--r2);
  padding: 28px 20px;
  position: relative;
  transition: var(--t);
  display: flex;
  flex-direction: column;
}
.price-card:hover { border-color: var(--emerald); transform: translateY(-3px); }
.price-card.pop {
  border-color: var(--emerald);
  background: rgba(16,185,129,.06);
  transform: scale(1.02);
  box-shadow: 0 0 0 1px var(--emerald), var(--shadow2);
}
.price-card.life {
  border-color: var(--gold);
  background: rgba(245,158,11,.05);
}
.price-top-badge {
  font-size: .72rem;
  font-weight: 700;
  color: var(--emerald);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.price-card.life .price-top-badge { color: var(--gold); }
.price-name { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.price-devices { font-size: .76rem; color: var(--muted); margin-bottom: 12px; }
.price-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--emerald);
  line-height: 1;
  margin-bottom: 4px;
}
.price-card.life .price-amount { color: var(--gold); }
.price-amount span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.price-period { font-size: .78rem; color: var(--muted); margin-bottom: 10px; }
.save-pill {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  color: var(--emerald);
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.25);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.p-divider { height: 1px; background: var(--border); margin: 16px 0; }
.p-feats { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; flex: 1; }
.p-feats li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .82rem;
  color: var(--text2);
}
.p-feats li::before { content: "✓"; color: var(--emerald); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.price-card .btn { width: 100%; justify-content: center; margin-top: auto; }

/* ── Features Grid ───────────────────────────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 28px 22px;
  transition: var(--t);
}
.card:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: var(--shadow); }
.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.card-icon.green { background: rgba(16,185,129,.15); }
.card-icon.orange { background: rgba(249,115,22,.15); }
.card-icon.blue { background: rgba(59,130,246,.15); }
.card-icon.gold { background: rgba(245,158,11,.15); }
.card-icon.purple { background: rgba(139,92,246,.15); }
.card-icon.red { background: rgba(239,68,68,.15); }
.card h3 { font-family: 'Poppins', sans-serif; font-size: .96rem; font-weight: 700; margin-bottom: 8px; }
.card p { font-size: .84rem; color: var(--text2); line-height: 1.65; }

/* ── Comparison Table ────────────────────────────────────────────── */
.comp-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r2); }
.comp {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  background: var(--dark3);
  border-radius: var(--r2);
  overflow: hidden;
}
.comp th, .comp td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: .83rem;
}
.comp th {
  background: var(--dark4);
  font-weight: 700;
  font-size: .78rem;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: .4px;
}
.comp .us-col { background: rgba(16,185,129,.06); }
.comp th.us-col { background: rgba(16,185,129,.15); color: var(--emerald); }
.comp tr:last-child td { border-bottom: 0; }
.comp tr:hover td { background: var(--glass); }
.comp-yes { color: var(--emerald); font-weight: 700; }
.comp-no { color: var(--red); }

/* ── Steps ───────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), var(--emerald2));
  opacity: .3;
}
.step-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 24px 18px;
  text-align: center;
  transition: var(--t);
}
.step-card:hover { border-color: var(--emerald); }
.step-num {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 0 20px rgba(16,185,129,.3);
}
.step-card h3 { font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: .81rem; color: var(--text2); line-height: 1.6; }

/* ── Device Grid ─────────────────────────────────────────────────── */
.dev-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.dev-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 16px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  text-align: center;
  transition: var(--t);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.dev-card:hover { border-color: var(--emerald); transform: translateY(-3px); }
.dev-icon { font-size: 1.8rem; }
.dev-card h3 { font-size: .86rem; font-weight: 700; line-height: 1.3; }
.dev-card p { font-size: .74rem; color: var(--muted); }

/* ── Cities Grid ─────────────────────────────────────────────────── */
.city-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.city-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 14px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  text-align: center;
  transition: var(--t);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.city-card:hover { border-color: var(--emerald); transform: translateY(-3px); }
.city-flag { font-size: 1.6rem; }
.city-card h3 { font-size: .86rem; font-weight: 700; }
.city-card p { font-size: .72rem; color: var(--muted); }

/* ── Reviews ─────────────────────────────────────────────────────── */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rev-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 24px 20px;
  transition: var(--t);
}
.rev-card:hover { border-color: var(--border2); }
.rev-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.rev-text { font-size: .83rem; color: var(--text2); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.rev-author { display: flex; align-items: center; gap: 12px; }
.rev-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--emerald2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.rev-name { font-size: .86rem; font-weight: 600; }
.rev-loc { font-size: .75rem; color: var(--muted); }

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 900px; margin: 0 auto; }
.faq-item {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--t);
}
.faq-item.active { border-color: var(--emerald); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-height: 52px;
  user-select: none;
  -webkit-user-select: none;
}
.faq-ico {
  width: 24px;
  height: 24px;
  background: var(--dark4);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--emerald);
  flex-shrink: 0;
  transition: var(--t);
}
.faq-item.active .faq-ico { background: var(--emerald); color: #fff; transform: rotate(45deg); }
.faq-a { display: none; }
.faq-item.active .faq-a { display: block; }
.faq-a-inner {
  padding: 0 18px 18px;
  font-size: .84rem;
  color: var(--text2);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ── SEO Content Block ───────────────────────────────────────────── */
.seo-content {
  max-width: 860px;
  margin: 0 auto;
  color: var(--text2);
  font-size: .9rem;
  line-height: 1.85;
}
.seo-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--text);
  margin: 28px 0 12px;
}
.seo-content h2:first-child { margin-top: 0; }
.seo-content p { margin-bottom: 14px; }

/* ── Blog ────────────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  transition: var(--t);
}
.blog-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.blog-card-img {
  height: 160px;
  background: var(--dark4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0;
}
.blog-card-body { padding: 18px; }
.blog-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  color: var(--emerald);
  background: rgba(16,185,129,.1);
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.blog-card h3 { font-size: .88rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-card h3 a { color: var(--text); transition: var(--t); }
.blog-card h3 a:hover { color: var(--emerald); }
.blog-card p { font-size: .8rem; color: var(--text2); line-height: 1.6; margin-bottom: 12px; }
.blog-meta { display: flex; gap: 14px; font-size: .73rem; color: var(--muted); }

/* ── Internal Links ──────────────────────────────────────────────── */
.int-links-sec { background: var(--dark2); border-top: 1px solid var(--border); padding: 48px 20px; }
.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.link-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: .82rem;
  font-weight: 500;
  color: var(--text2);
  transition: var(--t);
  text-decoration: none;
  min-height: 44px;
}
.link-card:hover { color: var(--text); border-color: var(--emerald); }
.lc-ico { font-size: .9rem; flex-shrink: 0; }

/* ── CTA Section ─────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, rgba(16,185,129,.08), rgba(249,115,22,.04));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.2;
}
.cta-inner p { color: var(--text2); margin-bottom: 28px; font-size: clamp(.86rem, 2vw, .96rem); }
.cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ── Page Hero (inner pages) ─────────────────────────────────────── */
.page-hero {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(16,185,129,.1) 0%, transparent 70%), var(--dark2);
  border-bottom: 1px solid var(--border);
  padding: 56px 20px 48px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero p {
  font-size: clamp(.86rem, 2vw, 1rem);
  color: var(--text2);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Breadcrumb ──────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--muted);
  padding: 12px 0 0;
  max-width: 1300px;
  margin: 0 auto;
}
.breadcrumb a { color: var(--text2); transition: var(--t); }
.breadcrumb a:hover { color: var(--emerald); }
.breadcrumb .sep { color: var(--muted); }
.breadcrumb .current { color: var(--text2); }

/* ── Countdown ───────────────────────────────────────────────────── */
.cd-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--dark4);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 10px 18px;
  margin: 0 4px;
}
.cd-num { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--emerald); line-height: 1; }
.cd-label { font-size: .68rem; color: var(--muted); margin-top: 3px; text-transform: uppercase; letter-spacing: .5px; }

/* ── Floating WhatsApp ───────────────────────────────────────────── */
.float-wa {
  position: fixed;
  bottom: calc(24px + var(--safe-bottom));
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 100;
  transition: var(--t);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); }
.float-wa::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0;transform:scale(1.3)} }

/* ── Back to Top ─────────────────────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: calc(90px + var(--safe-bottom));
  right: 20px;
  width: 42px;
  height: 42px;
  background: var(--dark3);
  border: 1px solid var(--border2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text2);
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: var(--t);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--emerald); color: #fff; border-color: var(--emerald); }

/* ── Footer ──────────────────────────────────────────────────────── */
footer { background: var(--dark2); border-top: 1px solid var(--border); padding-bottom: var(--safe-bottom); }
.foot-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 56px 20px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
}
.foot-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: .84rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.foot-col ul { display: flex; flex-direction: column; gap: 8px; }
.foot-col ul li a {
  font-size: .82rem;
  color: var(--muted);
  transition: var(--t);
  display: inline-block;
}
.foot-col ul li a:hover { color: var(--emerald); }
.foot-brand-desc { font-size: .82rem; color: var(--muted); line-height: 1.65; margin: 10px 0 16px; }
.foot-contact { display: flex; flex-direction: column; gap: 8px; }
.foot-contact a,
.foot-contact span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .8rem;
  color: var(--muted);
  transition: var(--t);
  line-height: 1.5;
}
.foot-contact a:hover { color: var(--emerald); }
.foot-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1300px;
  margin: 0 auto;
}
.foot-bottom p { font-size: .75rem; color: var(--muted); }
.foot-legal { display: flex; flex-wrap: wrap; gap: 14px; }
.foot-legal a { font-size: .74rem; color: var(--muted); transition: var(--t); }
.foot-legal a:hover { color: var(--emerald); }

/* ── Animations / Reveal ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ── Reseller table ──────────────────────────────────────────────── */
.reseller-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.reseller-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 28px 18px;
  text-align: center;
  transition: var(--t);
}
.reseller-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.reseller-card.featured { border-color: var(--gold); background: rgba(245,158,11,.07); }
.reseller-credits { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: var(--gold); }
.reseller-price { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 700; margin: 8px 0; }
.reseller-per { font-size: .76rem; color: var(--muted); }

/* ── Images ──────────────────────────────────────────────────────── */
figure { margin: 0; }
figcaption { font-size: .73rem; color: var(--muted); margin-top: 7px; text-align: center; line-height: 1.4; }
.img-responsive {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--border2);
  object-fit: cover;
}

/* ── ============================================================= */
/* ── RESPONSIVE BREAKPOINTS ──────────────────────────────────────── */
/* ── ============================================================= */

/* Large desktop → 1200px */
@media (max-width: 1200px) {
  .price-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 2fr 1fr 1fr; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: repeat(5, 1fr); }
}

/* Tablet landscape → 1024px */
@media (max-width: 1024px) {
  .hero-inner { gap: 36px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .rev-grid { grid-template-columns: repeat(2, 1fr); }
  .dev-grid { grid-template-columns: repeat(4, 1fr); }
  .city-grid { grid-template-columns: repeat(4, 1fr); }
  .stats-inner { grid-template-columns: repeat(4, 1fr); }
}

/* Tablet portrait / large phone → 992px  */
@media (max-width: 992px) {
  /* Header */
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-actions .btn-wa { display: none; } /* hide WA btn in header on tablet - show hamburger only */

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 20px;
  }
  .hero-right { order: -1; }
  .tv-mockup { max-width: 380px; }
  .float-card-1 { left: -5%; }
  .float-card-2 { right: -5%; }
  .float-card-3 { display: none; }

  /* Pricing */
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.pop { transform: none; }

  /* Footer */
  .foot-grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
}

/* Mobile large → 768px */
@media (max-width: 768px) {
  .topbar-inner { height: 58px; padding: 0 16px; }
  .logo-badge { display: none; }
  .header-actions .btn-sm:not(.hamburger) { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { min-height: auto; }
  .hero-inner { padding: 40px 16px 48px; }
  .hero h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .hero-sub { font-size: .86rem; }
  .hero-ctas { gap: 8px; }
  .hero-ctas .btn { flex: 1 1 calc(50% - 4px); justify-content: center; }
  .hero-ctas .btn-out { flex: 1 1 100%; }
  .floating-cards { display: none; }
  .tv-mockup { max-width: 100%; }

  /* Stats */
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Sections */
  .section { padding: 56px 16px; }
  .section-head { margin-bottom: 36px; }
  .int-links-sec { padding: 40px 16px; }

  /* Pricing */
  .price-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .price-amount { font-size: 2rem; }

  /* Features */
  .feat-grid { grid-template-columns: 1fr; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr 1fr; }

  /* Devices */
  .dev-grid { grid-template-columns: repeat(2, 1fr); }

  /* Cities */
  .city-grid { grid-template-columns: repeat(3, 1fr); }

  /* Reviews */
  .rev-grid { grid-template-columns: 1fr; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }

  /* Footer */
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }

  /* Comparison table */
  .comp th, .comp td { padding: 9px 10px; font-size: .78rem; }

  /* CTA buttons */
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { width: 100%; justify-content: center; }
}

/* Mobile → 640px (iPhone 12/13/14/15) */
@media (max-width: 640px) {
  .topbar-inner { height: 54px; padding: 0 14px; gap: 8px; }
  .logo { font-size: 1rem; gap: 7px; }
  .logo-icon { width: 32px; height: 32px; font-size: .9rem; }

  .ann { font-size: .76rem; padding: 8px 12px; }

  /* Hero */
  .hero-inner { padding: 36px 14px 44px; gap: 28px; }
  .hero-eyebrow { font-size: .7rem; padding: 5px 12px; }
  .hero h1 { font-size: clamp(1.6rem, 8vw, 2.1rem); letter-spacing: -.3px; }
  .hero-sub { font-size: .84rem; margin-bottom: 22px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; flex: none; }
  .hero-trust { gap: 7px; }
  .trust-badge { font-size: .72rem; padding: 4px 8px; }
  .hero-pills { gap: 5px; }
  .hero-pill { font-size: .68rem; padding: 3px 8px; }

  /* TV mockup simplified on small phones */
  .tv-sidebar { width: 100px; }
  .tv-ch { font-size: .6rem; padding: 5px 6px; gap: 5px; }

  /* Stats */
  .stats-inner { grid-template-columns: repeat(2, 1fr); padding: 20px 14px; gap: 12px; }
  .stat-num { font-size: 1.6rem; }

  /* Section */
  .section { padding: 48px 14px; }
  .int-links-sec { padding: 36px 14px; }
  .section-head { margin-bottom: 28px; }

  /* Pricing — single column on small mobile */
  .price-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .price-card.pop { transform: none; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { text-align: left; display: flex; align-items: flex-start; gap: 16px; }
  .step-num { margin: 0; flex-shrink: 0; width: 44px; height: 44px; font-size: 1rem; }

  /* Devices */
  .dev-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .dev-card { padding: 16px 12px; }
  .dev-icon { font-size: 1.5rem; }
  .dev-card h3 { font-size: .8rem; }

  /* Cities */
  .city-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .city-card { padding: 16px 10px; }
  .city-flag { font-size: 1.3rem; }
  .city-card h3 { font-size: .8rem; }

  /* Channel tabs */
  .ch-tabset { gap: 6px; }
  .ch-tab { padding: 7px 12px; font-size: .76rem; }
  .ch-grid { grid-template-columns: repeat(2, 1fr); }

  /* Reviews */
  .rev-grid { grid-template-columns: 1fr; }
  .rev-card { padding: 18px 16px; }
  .rev-text { font-size: .8rem; }

  /* FAQ */
  .faq-q { font-size: .84rem; padding: 14px 14px; }
  .faq-a-inner { padding: 0 14px 14px; font-size: .8rem; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-img { height: 130px; }

  /* Internal links */
  .link-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .link-card { font-size: .78rem; padding: 9px 12px; }

  /* Footer */
  .foot-grid { grid-template-columns: 1fr; gap: 24px; padding: 40px 14px 28px; }
  .foot-bottom { padding: 14px; gap: 8px; }
  .foot-bottom p { font-size: .7rem; }
  .foot-legal { gap: 10px; }
  .foot-legal a { font-size: .7rem; }

  /* Comparison table */
  .comp th, .comp td { padding: 8px 8px; font-size: .74rem; }

  /* Floating buttons */
  .float-wa { bottom: calc(20px + var(--safe-bottom)); right: 16px; width: 52px; height: 52px; }
  .back-top { bottom: calc(84px + var(--safe-bottom)); right: 16px; width: 40px; height: 40px; }

  /* CTA */
  .cta-inner h2 { font-size: clamp(1.3rem, 6vw, 1.8rem); }
  .cta-btns { flex-direction: column; }
  .cta-btns .btn { width: 100%; justify-content: center; }

  /* Page hero */
  .page-hero { padding: 40px 14px 36px; }
  .page-hero h1 { font-size: clamp(1.4rem, 6vw, 2rem); }

  /* Breadcrumb */
  .breadcrumb { font-size: .72rem; padding: 10px 14px 0; }

  /* Countdown */
  .cd-box { padding: 8px 12px; }
  .cd-num { font-size: 1.3rem; }
  .cd-label { font-size: .62rem; }
}

/* Small phones → 480px (iPhone SE) */
@media (max-width: 480px) {
  .hero h1 { font-size: clamp(1.4rem, 9vw, 1.8rem); }
  .hero-sub { font-size: .82rem; }

  .price-grid { max-width: 100%; }
  .price-card { padding: 22px 16px; }
  .price-amount { font-size: 1.8rem; }

  .stats-inner { gap: 10px; }
  .stat-num { font-size: 1.4rem; }

  .ch-grid { grid-template-columns: 1fr; }
  .ch-item { font-size: .8rem; }

  .dev-grid { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: repeat(2, 1fr); }

  .section-head h2 { font-size: clamp(1.3rem, 7vw, 1.6rem); }

  .feat-grid { grid-template-columns: 1fr; }
  .card { padding: 22px 16px; }

  /* Tables horizontal scroll label */
  .comp-wrap::before {
    content: "← Scroll to see full table →";
    display: block;
    font-size: .7rem;
    color: var(--muted);
    text-align: center;
    margin-bottom: 8px;
  }

  .btn-lg { padding: 12px 20px; font-size: .88rem; }

  .mobile-menu { padding: 70px 12px 30px; }
  .mobile-menu a { padding: 11px 12px; font-size: .86rem; }
}

/* Very small → 375px (iPhone SE 2020) */
@media (max-width: 375px) {
  .topbar-inner { padding: 0 12px; height: 52px; }
  .logo { font-size: .92rem; gap: 6px; }
  .logo-icon { width: 30px; height: 30px; }

  .hero-inner { padding: 30px 12px 40px; }
  .section { padding: 40px 12px; }
  .int-links-sec { padding: 32px 12px; }

  .link-grid { grid-template-columns: 1fr 1fr; }
  .link-card { font-size: .74rem; padding: 8px 10px; }

  .city-grid { grid-template-columns: 1fr 1fr; }
  .dev-grid { grid-template-columns: 1fr 1fr; }

  .foot-grid { padding: 32px 12px 24px; }
  .foot-bottom { padding: 12px; }

  .float-wa { width: 48px; height: 48px; right: 12px; }
  .back-top { right: 12px; width: 38px; height: 38px; }

  .ann { font-size: .72rem; padding: 7px 10px; }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
  .mobile-menu { padding-bottom: max(40px, env(safe-area-inset-bottom)); }
  .hero-inner { padding-top: 48px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
