/* ================================================================
   StreamZoneTV Theme — theme.css  v1.0.1
   ================================================================ */

/* ── Reset & Root ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:    #e84e0f;
  --orange2:   #ff6a2a;
  --dark:      #0d0d0d;
  --dark2:     #111111;
  --dark3:     #1a1a1a;
  --dark4:     #222222;
  --border:    #2a2a2a;
  --text:      #cccccc;
  --muted:     #777777;
  --white:     #ffffff;
  --green:     #22c55e;
  --header-h:  68px;
}

html { scroll-behavior: smooth; }

html, body {
  background-color: var(--dark); /* prevent white flash on load */
}

body {
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h);
}

/* Offset for WP admin bar (admin-bar class is on <body>, not a parent) */
body.admin-bar { padding-top: calc(var(--header-h) + 32px); }
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar { padding-top: calc(var(--header-h) + 46px); }
  body.admin-bar .site-header { top: 46px; }
}

/* Elementor canvas template: no theme header, so no padding needed */
body.elementor-template-canvas { padding-top: 0; }

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange2); }

/* Prevent WordPress theme styles bleeding in */
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* Selection colour */
::selection { background: rgba(232, 78, 15, .3); color: var(--white); }

/* ── Utility ───────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 24px; }
.section-eyebrow {
  text-align: center; color: var(--orange);
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
.section-title {
  text-align: center; color: var(--white);
  font-size: clamp(26px, 4vw, 40px); font-weight: 800; margin-bottom: 12px;
}
.section-sub {
  text-align: center; color: var(--muted);
  font-size: 17px; max-width: 540px; margin: 0 auto 56px;
}
.dark-section  { background: var(--dark); }
.dark2-section { background: var(--dark2); }
.dark3-section { background: var(--dark3); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #fff; padding: 14px 32px; border-radius: 10px;
  font-size: 16px; font-weight: 700; border: none; cursor: pointer;
  transition: all .2s; box-shadow: 0 4px 20px rgba(232,78,15,.3);
  text-decoration: none; font-family: inherit;
}
.btn-primary:hover, .btn-primary:focus-visible {
  transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,78,15,.5); color: #fff;
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  color: var(--white); padding: 14px 32px; border-radius: 10px;
  font-size: 16px; font-weight: 600; transition: all .2s; text-decoration: none;
  font-family: inherit;
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff; padding: 16px 36px;
  border-radius: 10px; font-size: 17px; font-weight: 700;
  transition: all .2s; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.25); font-family: inherit;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.4); color: #fff; }

/* ================================================================
   HEADER / NAV
   ================================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(13,13,13,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(13,13,13,1);
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
/* Push header down when WP admin bar is visible */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}

/* Logo */
.site-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 800; color: var(--white);
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
}
.logo-icon {
  width: 34px; height: 34px; background: var(--orange);
  clip-path: polygon(0 0, 100% 50%, 0 100%); border-radius: 4px; flex-shrink: 0;
}
.site-logo em { color: var(--orange); font-style: normal; }

/* Primary nav */
.primary-nav ul { display: flex; gap: 28px; list-style: none; }
.primary-nav a {
  color: var(--text); font-size: 14px; font-weight: 500;
  transition: color .2s; position: relative; padding-bottom: 2px;
}
.primary-nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--orange); transform: scaleX(0); transition: transform .2s;
}
.primary-nav a:hover, .primary-nav a.active { color: var(--white); }
.primary-nav a.active::after, .primary-nav a:hover::after { transform: scaleX(1); }

/* Header right */
.header-right { display: flex; align-items: center; gap: 14px; }
.header-cta {
  background: var(--orange); color: #fff; padding: 9px 20px;
  border-radius: 8px; font-size: 14px; font-weight: 700;
  transition: all .2s; white-space: nowrap;
}
.header-cta:hover { background: var(--orange2); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(232,78,15,.4); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav drawer — visibility approach avoids display:none blocking transitions */
.mobile-nav {
  position: fixed; top: var(--header-h); left: 0; right: 0;
  background: var(--dark2); border-bottom: 1px solid var(--border);
  z-index: 999; padding: 24px 32px 32px;
  visibility: hidden; pointer-events: none;
  transform: translateY(-8px); opacity: 0;
  transition: transform .25s ease, opacity .25s ease, visibility .25s;
  /* Keep out of layout on desktop */
}
.mobile-nav.open {
  visibility: visible; pointer-events: auto;
  transform: translateY(0); opacity: 1;
}
/* Push mobile nav below admin bar when logged in */
.admin-bar .mobile-nav { top: calc(var(--header-h) + 32px); }
@media screen and (max-width: 782px) {
  .admin-bar .mobile-nav { top: calc(var(--header-h) + 46px); }
}
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.mobile-nav a {
  display: block; padding: 13px 0; color: var(--text); font-size: 16px; font-weight: 500;
  border-bottom: 1px solid var(--border); transition: color .2s;
}
.mobile-nav a:hover { color: var(--white); }
.mobile-nav .mobile-cta {
  display: block; margin-top: 20px; background: var(--orange); color: #fff;
  padding: 14px; border-radius: 10px; text-align: center; font-weight: 700;
  font-size: 16px; border: none; transition: background .2s;
}
.mobile-nav .mobile-cta:hover { background: var(--orange2); color: #fff; }

/* Overlay */
.mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.6); z-index: 998;
  backdrop-filter: blur(2px);
}
.mobile-overlay.show { display: block; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--dark3);
  border-top: 1px solid var(--border);
  padding: 64px 24px 0;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 2fr;
  gap: 48px 64px; padding-bottom: 48px;
}
.footer-logo {
  font-size: 22px; font-weight: 800; color: var(--white);
  display: inline-block; margin-bottom: 12px; text-decoration: none;
}
.footer-logo em { color: var(--orange); font-style: normal; }
.footer-brand p { color: var(--muted); font-size: 14px; line-height: 1.6; margin-bottom: 4px; }
.footer-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff; padding: 10px 20px;
  border-radius: 8px; font-size: 14px; font-weight: 700;
  margin-top: 16px; transition: all .2s;
}
.footer-wa:hover { background: #20bb5a; color: #fff; }
.footer-links-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 {
  color: var(--white); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--muted); font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 24px; text-align: center;
}
.footer-bottom p { color: var(--muted); font-size: 12px; line-height: 1.8; }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(232,78,15,.12) 0%, transparent 60%),
    var(--dark2);
  border-bottom: 1px solid var(--border);
  padding: 72px 24px 64px; text-align: center;
}
.page-hero-eye {
  color: var(--orange); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 14px;
}
.page-hero-title {
  font-size: clamp(32px, 5vw, 52px); font-weight: 900; color: var(--white);
  line-height: 1.1; margin-bottom: 14px;
}
.page-hero-title span { color: var(--orange); }
.page-hero-sub { font-size: 18px; color: var(--muted); max-width: 520px; margin: 0 auto; }

/* ================================================================
   HOMEPAGE HERO
   ================================================================ */
.home-hero {
  min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(232,78,15,.15) 0%, transparent 60%),
    var(--dark);
  position: relative; overflow: hidden;
}
.home-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,78,15,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,78,15,.04) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.home-hero-inner { position: relative; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(232,78,15,.12); border: 1px solid rgba(232,78,15,.3);
  color: var(--orange2); padding: 6px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 600; margin-bottom: 28px;
  text-transform: uppercase; letter-spacing: .5px;
}
.home-hero h1 {
  font-size: clamp(40px, 6.5vw, 72px); font-weight: 900; color: var(--white);
  line-height: 1.08; margin-bottom: 22px;
}
.home-hero h1 span { color: var(--orange); }
.home-hero > .home-hero-inner > p {
  font-size: 19px; color: var(--muted); max-width: 560px;
  margin: 0 auto 44px; line-height: 1.7;
}
.hero-btns {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 56px;
}
.hero-stats {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.hero-stat .num { font-size: 34px; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat .num span { color: var(--orange); }
.hero-stat .lbl {
  font-size: 12px; color: var(--muted);
  text-transform: uppercase; letter-spacing: .5px; margin-top: 4px;
}

/* Device strip */
.devices-strip {
  background: var(--dark3);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 22px;
}
.devices-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
}
.devices-label {
  color: var(--muted); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; margin-right: 6px;
}
.device-chip {
  background: var(--dark4); border: 1px solid var(--border);
  border-radius: 50px; padding: 7px 16px;
  font-size: 13px; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: 5px;
}

/* Features */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px;
}
.feature-card {
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 14px; padding: 28px; transition: all .2s;
}
.feature-card:hover { border-color: rgba(232,78,15,.5); transform: translateY(-3px); }
.feature-icon {
  width: 52px; height: 52px; background: rgba(232,78,15,.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
}
.feature-card h3 { color: var(--white); font-size: 17px; margin-bottom: 8px; }
.feature-card p  { color: var(--muted); font-size: 14px; line-height: 1.65; }

/* Pricing preview (homepage) */
.pricing-preview { background: var(--dark2); padding: 96px 24px; }
.pricing-preview-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 820px; margin: 0 auto 40px;
}
.preview-card {
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 14px; padding: 32px 24px; text-align: center;
  transition: all .25s; position: relative;
}
.preview-card:hover {
  border-color: var(--orange); transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(232,78,15,.12);
}
.preview-card.featured {
  border-color: var(--orange);
  background: linear-gradient(160deg, #1e0a02 0%, var(--dark3) 60%);
}
.preview-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-size: 11px; font-weight: 700;
  padding: 3px 14px; border-radius: 20px; white-space: nowrap;
}
.preview-card .conn { color: var(--muted); font-size: 13px; margin-bottom: 16px; }
.preview-card .price { font-size: 48px; font-weight: 900; color: var(--white); line-height: 1; }
.preview-card .price sup { font-size: 22px; color: var(--orange); vertical-align: super; }
.preview-card .dur { color: var(--green); font-size: 13px; margin: 8px 0 20px; }
.preview-card .features-list { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.preview-card .features-list li { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.preview-card .features-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.preview-buy {
  display: block; width: 100%; background: var(--orange); color: #fff;
  padding: 12px; border-radius: 8px; font-size: 14px; font-weight: 700;
  border: none; cursor: pointer; transition: all .2s; text-decoration: none; font-family: inherit;
}
.preview-buy:hover { background: var(--orange2); color: #fff; transform: translateY(-1px); }

/* Trial CTA band */
.trial-band {
  background: linear-gradient(135deg, #1a0900 0%, #1a1a1a 50%, #0d0d0d 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 96px 24px; text-align: center;
}
.trial-band h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; color: var(--white); margin-bottom: 12px; }
.trial-band h2 span { color: var(--orange); }
.trial-band p { color: var(--muted); font-size: 18px; margin-bottom: 32px; }
.trial-bullets { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.trial-bullet { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--text); }
.trial-bullet .dot { color: var(--green); font-size: 18px; }

/* ================================================================
   PRICING PAGE
   ================================================================ */
.pricing-section { padding: 80px 24px; background: var(--dark); }
.pricing-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 44px; flex-wrap: wrap; }
.ptab {
  background: var(--dark3); border: 1px solid var(--border); color: var(--muted);
  padding: 10px 28px; border-radius: 50px; cursor: pointer;
  font-size: 15px; font-weight: 600; transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px; font-family: inherit;
}
.ptab:hover, .ptab.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.badge-best { background: var(--green); color: #fff; font-size: 10px; padding: 2px 7px; border-radius: 4px; font-weight: 700; }
.badge-pop  { background: #7c3aed; color: #fff; font-size: 10px; padding: 2px 7px; border-radius: 4px; font-weight: 700; }
.pricing-panel { display: none; }
.pricing-panel.active { display: grid; }
.pricing-grid { grid-template-columns: repeat(5, 1fr); gap: 16px; }
.price-card {
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 14px; padding: 28px 18px 22px;
  text-align: center; transition: all .25s; position: relative;
}
.price-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(232,78,15,.12); }
.price-card.hot { border-color: var(--orange); background: linear-gradient(160deg, #200e05 0%, var(--dark3) 60%); }
.hot-ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-size: 11px; font-weight: 700;
  padding: 3px 14px; border-radius: 20px; white-space: nowrap;
}
.conn-screens { font-size: 22px; margin-bottom: 6px; display: flex; justify-content: center; gap: 3px; min-height: 28px; flex-wrap: wrap; }
.conn-name { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 16px; }
.price-amount { color: var(--white); font-size: 34px; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.price-amount sup { font-size: 18px; color: var(--orange); vertical-align: super; }
.per-mo { color: var(--green); font-size: 12px; margin-bottom: 16px; min-height: 18px; }
.buy-btn {
  display: block; width: 100%; background: var(--orange); color: #fff;
  padding: 11px; border-radius: 8px; font-size: 14px; font-weight: 700;
  border: none; cursor: pointer; transition: all .2s; text-decoration: none; font-family: inherit;
}
.buy-btn:hover { background: var(--orange2); color: #fff; transform: translateY(-1px); }
.price-card.hot .buy-btn { background: var(--orange2); box-shadow: 0 4px 16px rgba(232,78,15,.3); }

/* What's included */
.includes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 800px; margin: 0 auto; }
.include-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--dark3); border: 1px solid var(--border); border-radius: 12px; padding: 20px;
}
.include-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(232,78,15,.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.include-item h4 { color: var(--white); font-size: 15px; margin-bottom: 4px; }
.include-item p  { color: var(--muted); font-size: 13px; line-height: 1.5; }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 860px; margin: 0 auto 64px; }
.contact-card {
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 14px; padding: 32px 24px; text-align: center; transition: all .2s;
}
.contact-card:hover { border-color: rgba(232,78,15,.4); transform: translateY(-2px); }
.contact-card-icon { font-size: 36px; margin-bottom: 14px; }
.contact-card h3 { color: var(--white); font-size: 18px; margin-bottom: 8px; }
.contact-card p  { color: var(--muted); font-size: 14px; margin-bottom: 20px; line-height: 1.6; }
.contact-card-badge {
  display: inline-block; background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.3); color: var(--green);
  font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-bottom: 16px;
}
.contact-form-wrap {
  max-width: 680px; margin: 0 auto;
  background: var(--dark3); border: 1px solid var(--border); border-radius: 16px; padding: 40px;
}
.contact-form-wrap h2 { color: var(--white); font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--muted); font-size: 15px; margin-bottom: 28px; }

/* ── Input & Form styles (used by shortcode forms) ────────── */
.szt-field input,
.szt-field select {
  background: var(--dark4);
  -webkit-box-shadow: 0 0 0 1000px var(--dark4) inset !important; /* override autofill */
  -webkit-text-fill-color: var(--text) !important;
}

/* ================================================================
   SETUP PAGE
   ================================================================ */
.steps-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card { text-align: center; padding: 8px; }
.step-num {
  width: 56px; height: 56px; background: rgba(232,78,15,.12);
  border: 2px solid var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; color: var(--orange); margin: 0 auto 18px;
}
.step-card h3 { color: var(--white); font-size: 17px; margin-bottom: 8px; font-weight: 700; }
.step-card p  { color: var(--muted); font-size: 14px; line-height: 1.7; }
.step-card a  { color: var(--orange); }

.apps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; max-width: 900px; margin: 0 auto; }
.app-card { background: var(--dark3); border: 1px solid var(--border); border-radius: 12px; padding: 24px 20px; text-align: center; transition: all .2s; }
.app-card:hover { border-color: rgba(232,78,15,.4); transform: translateY(-2px); }
.app-card .app-icon { font-size: 36px; margin-bottom: 12px; }
.app-card h4 { color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.app-card p  { color: var(--muted); font-size: 12px; margin-bottom: 12px; }
.app-tag { display: inline-block; background: rgba(232,78,15,.1); color: var(--orange2); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; }

.device-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; }
.dtab {
  background: var(--dark3); border: 1px solid var(--border); color: var(--muted);
  padding: 8px 20px; border-radius: 50px; cursor: pointer; font-size: 14px; font-weight: 600;
  transition: all .2s; font-family: inherit;
}
.dtab:hover, .dtab.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.device-panel { display: none; }
.device-panel.active { display: block; }
.device-steps { background: var(--dark3); border: 1px solid var(--border); border-radius: 14px; padding: 32px; max-width: 720px; margin: 0 auto; }
.device-steps ol { counter-reset: step; list-style: none; display: flex; flex-direction: column; gap: 20px; }
.device-steps ol li { counter-increment: step; display: flex; gap: 16px; align-items: flex-start; }
.device-steps ol li::before {
  content: counter(step); width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(232,78,15,.12); border: 1px solid var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 14px; font-weight: 800;
}
.device-steps ol li strong { color: var(--white); display: block; margin-bottom: 4px; }
.device-steps ol li p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0; }
.device-steps ol li a { color: var(--orange); }

/* ================================================================
   FAQ PAGE
   ================================================================ */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-cat { margin-bottom: 48px; }
.faq-cat-title {
  color: var(--orange); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 20px 4px; cursor: pointer;
  color: var(--white); font-size: 16px; font-weight: 600;
  text-align: left; font-family: inherit; transition: color .2s;
}
.faq-q:hover { color: var(--orange2); }
.faq-chevron {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 2px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 11px; line-height: 1;
  transition: all .3s; user-select: none;
}
.faq-item.open .faq-chevron { border-color: var(--orange); color: var(--orange); transform: rotate(180deg); }
/* Accordion — JS sets max-height via scrollHeight for accurate animation */
.faq-a {
  overflow: hidden; max-height: 0;
  transition: max-height .35s ease;
}
.faq-a-inner { color: var(--muted); font-size: 15px; line-height: 1.75; padding: 0 4px 24px; }
.faq-a-inner a { color: var(--orange); }
.faq-a-inner ul { margin: 12px 0 0 20px; list-style: disc; }
.faq-a-inner li { margin-bottom: 6px; }
.faq-a-inner strong { color: var(--white); }

/* 404 */
.page-404 { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 24px; }
.page-404 h1 { font-size: clamp(80px, 15vw, 160px); font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 16px; }
.page-404 h2 { color: var(--white); font-size: clamp(22px, 3vw, 32px); font-weight: 800; margin-bottom: 12px; }
.page-404 p  { color: var(--muted); font-size: 17px; margin-bottom: 36px; }

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links-wrap { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-timeline { grid-template-columns: repeat(2, 1fr); }
  .contact-methods { grid-template-columns: 1fr; max-width: 480px; }
  .pricing-preview-grid { grid-template-columns: 1fr; max-width: 380px; }
  .includes-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .primary-nav { display: none; }
  .hamburger   { display: flex; }
  .hero-stats  { gap: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-links-wrap { grid-template-columns: repeat(2, 1fr); }
  .apps-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .header-inner { padding: 0 16px; }
  .steps-timeline { grid-template-columns: 1fr; }
  .footer-links-wrap { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
  .device-steps { padding: 20px; }
  .apps-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  /* 5th card: span full width so it doesn't float alone */
  .pricing-grid .price-card:nth-child(5) { grid-column: 1 / -1; }
}
