/* =========================================================
   4KPrime — Design system (dark / gold / cyan)
   ========================================================= */

:root {
  --bg-dark: #0a0c10;
  --bg-elevated: #0d111a;
  --bg-card: rgba(18, 22, 31, 0.82);
  --bg-card-solid: #12161f;
  --accent-gold: #f1c40f;
  --accent-gold-dark: #d4ac0d;
  --accent-cyan: #00d2ff;
  --text-white: #ffffff;
  --text-gray: #a0a6b5;
  --text-muted: #7b8294;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --radius-lg: 18px;
  --header-h: 72px;
  --sticky-cta-h: 96px;
  --font: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --max: 1200px;
  --focus: 0 0 0 3px rgba(241, 196, 15, 0.45);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-cyan); text-decoration: none; }
ul { margin: 0; padding: 0; }
button { font-family: inherit; }
body.nav-open { overflow: hidden; }
body:has(.sticky-cta) { padding-bottom: var(--sticky-cta-h); }

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--accent-gold);
  color: #000;
  padding: 8px 14px;
  z-index: 10050;
  font-weight: 700;
  border-radius: 6px;
}
.skip-link:focus { top: 12px; }

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-card,
.btn-cta-primary,
.btn-cta-secondary,
.btn-footer-trial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, border-color 0.2s, color 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--accent-gold);
  color: #000;
  padding: 13px 26px;
}
.btn-primary:hover { background: var(--accent-gold-dark); transform: translateY(-1px); color: #000; }

.btn-secondary {
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 10px 18px;
  font-size: 14px;
  background: transparent;
}
.btn-secondary:hover { background: rgba(241, 196, 15, 0.12); color: var(--accent-gold); }

.btn-outline {
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 13px 26px;
  background: transparent;
}
.btn-outline:hover { background: rgba(241, 196, 15, 0.1); color: var(--accent-gold); }

.btn-card {
  width: 100%;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 12px 16px;
  background: transparent;
}
.btn-card:hover,
.btn-featured {
  background: var(--accent-gold);
  color: #000;
}
.btn-featured:hover { background: var(--accent-gold-dark); color: #000; }

.btn-cta-primary {
  background: var(--accent-gold);
  color: #000;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 800;
}
.btn-cta-primary:hover { background: var(--accent-gold-dark); color: #000; }

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-white);
  padding: 14px 28px;
  border-radius: 30px;
}
.btn-cta-secondary:hover { border-color: var(--accent-cyan); color: var(--accent-cyan); }

.btn-footer-trial {
  background: var(--accent-gold);
  color: #000;
  padding: 9px 18px;
  margin: 10px 0 12px;
}
.btn-footer-trial:hover { background: var(--accent-gold-dark); color: #000; }

/* ---------- Announcement ---------- */
.top-announcement-bar {
  background: #0d111a;
  border-bottom: 1px solid rgba(241, 196, 15, 0.3);
  padding: 8px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: marqueeLoop 28s linear infinite;
  white-space: nowrap;
}
.top-announcement-bar:hover .marquee-track { animation-play-state: paused; }

@keyframes marqueeLoop {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-item {
  color: #e0e6f0;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.marquee-item.highlight {
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid rgba(0, 210, 255, 0.35);
  padding: 3px 12px;
  border-radius: 16px;
  color: var(--accent-cyan);
}
.marquee-item strong { color: #fff; }
.m-dot { color: rgba(255, 255, 255, 0.2); }
.t-svg { flex-shrink: 0; }
.t-svg.gold { color: var(--accent-gold); }
.t-svg.cyan { color: var(--accent-cyan); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  isolation: isolate;
  background: rgba(10, 12, 16, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}
.site-header.is-scrolled { border-bottom-color: rgba(241, 196, 15, 0.25); }

.header-inner {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.site-logo { height: 42px; width: auto; }

.site-nav ul {
  display: flex;
  list-style: none;
  gap: 22px;
}
.site-nav a {
  color: var(--text-gray);
  font-weight: 500;
  font-size: 15px;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--accent-gold); }

.header-cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; overflow: visible; margin-left: auto; }

.lang-switch {
  position: relative;
  flex-shrink: 0;
  z-index: 5;
}
.lang-select-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 6px 8px 6px 10px;
  min-height: 32px;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  line-height: 1;
}
.lang-select-btn svg {
  width: 10px;
  height: 10px;
  opacity: 0.65;
}
.lang-select-btn:hover,
.lang-select.is-open .lang-select-btn {
  color: var(--accent-gold);
  border-color: rgba(241, 196, 15, 0.4);
}
.lang-select-btn:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 2px;
}
.lang-select-menu {
  position: absolute;
  left: 0;
  right: auto;
  top: calc(100% + 8px);
  min-width: 148px;
  padding: 6px;
  border: 1px solid rgba(241, 196, 15, 0.18);
  border-radius: 10px;
  background: #0c1018;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(241, 196, 15, 0.06);
  display: none;
  z-index: 1200;
}
.lang-select.is-open .lang-select-menu { display: block; }
.lang-select-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--text-gray);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
}
.lang-select-menu a small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.lang-select-menu a:hover {
  background: rgba(241, 196, 15, 0.08);
  color: var(--accent-gold);
}
.lang-select-menu a[aria-current="true"] {
  color: var(--accent-gold);
  background: rgba(241, 196, 15, 0.12);
}
.lang-select-menu a:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: -2px;
}
.lang-switch:not(.is-ready) {
  display: flex;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  overflow: hidden;
}
.lang-switch:not(.is-ready) a {
  color: var(--text-gray);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 8px;
  text-decoration: none;
}
.lang-switch:not(.is-ready) a + a { border-left: 1px solid var(--border-subtle); }
.lang-switch:not(.is-ready) a[aria-current="true"] { color: var(--accent-gold); }

html[lang="fr"],
html[lang="de"] {
  overflow-wrap: break-word;
}
html[lang="de"] {
  hyphens: auto;
  -webkit-hyphens: auto;
}
html[lang="de"] .btn-primary,
html[lang="de"] .btn-secondary,
html[lang="de"] .btn-outline,
html[lang="de"] .btn-card,
html[lang="de"] .btn-cta-primary,
html[lang="de"] .btn-cta-secondary,
html[lang="de"] .btn-footer-trial {
  white-space: normal;
  line-height: 1.25;
  text-align: center;
}
html[lang="de"] .popular-badge,
html[lang="de"] .device-tag {
  white-space: normal;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-subtle);
  background: transparent;
  border-radius: 8px;
  padding: 10px 9px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text-white);
  margin: 5px 0;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Page sections ---------- */
.section { padding: 80px 0; }
.section-tight { padding: 28px 0 20px; }
.section-alt { background: #0d1017; }

.section-title { text-align: center; margin-bottom: 44px; }
.section-title h1,
.section-title h2 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 12px;
}
.section-title h1 span,
.section-title h2 span {
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-title p {
  color: var(--text-gray);
  max-width: 640px;
  margin: 0 auto;
  font-size: 16px;
}

.sub-badge {
  display: inline-block;
  background: rgba(0, 210, 255, 0.1);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 210, 255, 0.3);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ---------- Hero ---------- */
.hero-section {
  padding: 48px 0 64px;
  text-align: center;
  background: radial-gradient(circle at top center, rgba(241, 196, 15, 0.08) 0%, var(--bg-dark) 70%);
}
.hero-container { width: min(100% - 40px, 860px); margin-inline: auto; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(241, 196, 15, 0.12);
  color: var(--accent-gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(241, 196, 15, 0.3);
  margin-bottom: 18px;
}
.badge-icon { width: 18px; height: 18px; border-radius: 50%; }

.hero-section h1 {
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.22;
  margin: 0 0 16px;
  font-weight: 800;
}
.hero-section h1 span { color: var(--accent-gold); }
.hero-section .lede {
  color: var(--text-gray);
  font-size: clamp(15px, 2vw, 18px);
  margin: 0 0 28px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.hero-reassure {
  margin: 0 0 22px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}

.setup-fast {
  padding: 28px 0 8px;
  border-bottom: 1px solid var(--border-subtle);
}
.setup-fast-head {
  text-align: center;
  margin-bottom: 20px;
}
.setup-fast-head h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 30px);
}
.setup-fast-head p {
  margin: 0;
  color: var(--text-gray);
  font-size: 15px;
}
.setup-fast-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 0 22px;
  padding: 0;
}
.setup-fast-steps li {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 16px 14px;
  color: var(--text-gray);
  font-size: 14px;
}
.setup-fast-steps strong {
  display: block;
  color: var(--accent-gold);
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.setup-fast-cta { text-align: center; }
.setup-fast-links {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}
.setup-fast-links a { color: var(--accent-cyan); }

.hero-features-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 28px;
  color: var(--text-gray);
  font-size: 14px;
}

.page-hero {
  padding: 48px 0 28px;
  text-align: center;
  background: radial-gradient(circle at top center, rgba(0, 210, 255, 0.06) 0%, var(--bg-dark) 65%);
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 12px;
  font-weight: 800;
}
.page-hero p { color: var(--text-gray); margin: 0 auto; max-width: 640px; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  list-style: none;
}
.breadcrumbs a { color: var(--text-gray); }
.breadcrumbs a:hover { color: var(--accent-gold); }
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--text-muted);
}

/* ---------- Trust ---------- */
.trust-section {
  position: relative;
}
.trust-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(90%, 900px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(241, 196, 15, 0.45), rgba(0, 210, 255, 0.45), transparent);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.trust-item {
  background: linear-gradient(180deg, rgba(241, 196, 15, 0.06), rgba(18, 22, 31, 0.9));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 14px 12px 12px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}
.trust-item:hover {
  transform: translateY(-3px);
  border-color: rgba(241, 196, 15, 0.4);
}
.trust-item-live {
  background: linear-gradient(180deg, rgba(0, 210, 255, 0.1), rgba(18, 22, 31, 0.9));
  border-color: rgba(0, 210, 255, 0.28);
}
.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}
.trust-item strong { display: block; color: var(--accent-gold); font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.trust-item span { color: var(--text-gray); font-size: 12px; }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #1ebe5d;
  color: #fff;
  padding: 13px 26px;
  border-radius: 30px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 0 18px rgba(30, 190, 93, 0.28);
  transition: transform 0.2s, background 0.2s;
}
.btn-whatsapp:hover { background: #18a851; color: #fff; transform: translateY(-1px); }

/* ---------- Cards / grids ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
}
.card:hover { border-color: rgba(241, 196, 15, 0.35); }

.support-grid,
.features-grid,
.devices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.support-grid { grid-template-columns: repeat(4, 1fr); }

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.gold-glow { background: rgba(241, 196, 15, 0.12); color: var(--accent-gold); border: 1px solid rgba(241, 196, 15, 0.3); }
.cyan-glow { background: rgba(0, 210, 255, 0.12); color: var(--accent-cyan); border: 1px solid rgba(0, 210, 255, 0.3); }

.card h3 { margin: 0 0 8px; font-size: 19px; }
.card p { margin: 0; color: var(--text-gray); font-size: 14px; }

/* ---------- How it works ---------- */
.steps-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 12px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  position: relative;
  overflow: hidden;
}
.step-card.featured-step {
  border-color: rgba(0, 210, 255, 0.3);
  background: radial-gradient(circle at top right, rgba(0, 210, 255, 0.08), var(--bg-card));
}
.step-watermark {
  position: absolute;
  top: -6px;
  right: 12px;
  font-size: 72px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.step-card h3 { margin: 12px 0 8px; }
.step-card p { color: var(--text-gray); font-size: 14px; margin: 0; }
.step-connector { color: var(--accent-gold); opacity: 0.5; align-self: center; font-size: 18px; }

/* ---------- Devices ---------- */
.device-tag {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-gold);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 5px;
  text-transform: uppercase;
  display: inline-block;
  margin: 8px 0;
}
.apps-showcase {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  margin-top: 36px;
}
.apps-showcase h3 { margin: 0 0 8px; font-size: 24px; }
.apps-showcase h3 span { color: var(--accent-cyan); }
.apps-showcase p { color: var(--text-gray); margin: 0 0 22px; }
.apps-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
.app-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-white);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
}
.app-chip:hover { border-color: var(--accent-cyan); color: var(--accent-cyan); }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.price-card {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px 18px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured {
  border: 2px solid var(--accent-gold);
  background: #161b26;
  box-shadow: 0 0 24px rgba(241, 196, 15, 0.14);
}
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 15px;
  white-space: nowrap;
}
.price-card h3 { margin: 8px 0 10px; font-size: 20px; }
.price { font-size: 32px; font-weight: 800; color: var(--accent-gold); margin-bottom: 4px; }
.price span { font-size: 13px; color: var(--text-gray); font-weight: 400; }
.price-subtitle { color: var(--text-gray); font-size: 12px; margin: 0 0 18px; }
.features-list { list-style: none; text-align: left; margin: 0 0 22px; flex: 1; }
.features-list li {
  color: #d1d5db;
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ---------- Reviews ---------- */
.human-support-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(241, 196, 15, 0.1);
  border: 1px solid rgba(241, 196, 15, 0.4);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  margin-top: 16px;
}
.human-support-badge strong { color: var(--accent-gold); }
.pulse-icon { animation: pulseChat 1.8s infinite; }
@keyframes pulseChat {
  50% { transform: scale(1.15); }
}

.reviews-carousel-wrapper { overflow: hidden; padding: 16px 0 8px; }
.reviews-carousel-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: scrollCarousel 40s linear infinite;
}
.reviews-carousel-wrapper:hover .reviews-carousel-track { animation-play-state: paused; }
@keyframes scrollCarousel {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 16px;
  width: 290px;
  flex-shrink: 0;
}
.review-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.verified-tag {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
}
.chat-frame { width: 100%; height: 340px; border-radius: 10px; overflow: hidden; background: #000; }
.chat-img { width: 100%; height: 100%; object-fit: cover; }
.reviewer-location { color: var(--text-gray); font-size: 12px; font-weight: 600; margin: 12px 0 0; text-align: center; }

/* ---------- Comparison ---------- */
.table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card-solid);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: var(--text-gray);
}
.comparison-table th,
.comparison-table td { padding: 14px 18px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); text-align: left; }
.comparison-table th { background: #161b26; color: #fff; }
.comparison-table .highlight-col { background: rgba(241, 196, 15, 0.08); color: #fff; }
.comparison-table th.highlight-col { background: rgba(241, 196, 15, 0.2); color: var(--accent-gold); }
.bold-gold { color: var(--accent-gold); font-weight: 700; }
.check-mark { color: #2ecc71; font-weight: 700; }
.cross-mark { color: #e74c3c; font-weight: 700; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 850px; margin-inline: auto; }
.faq-card {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}
.faq-card[open] { border-color: var(--accent-gold); }
.faq-card summary {
  padding: 18px 22px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.faq-card summary::-webkit-details-marker { display: none; }
.faq-card summary::after {
  content: "+";
  color: var(--accent-gold);
  font-size: 20px;
  line-height: 1;
}
.faq-card[open] summary::after { content: "–"; }
.faq-card .faq-body { padding: 0 22px 18px; color: var(--text-gray); font-size: 14px; }
.faq-card .faq-body p { margin: 0; }

/* ---------- CTA banner ---------- */
.cta-banner-card {
  background: radial-gradient(circle at top right, rgba(241, 196, 15, 0.08), transparent 60%), var(--bg-card-solid);
  border: 1px solid rgba(241, 196, 15, 0.3);
  border-radius: 20px;
  padding: 48px 28px;
  text-align: center;
}
.cta-top-sub { color: var(--accent-gold); font-size: 12px; font-weight: 800; letter-spacing: 1.5px; }
.cta-title { font-size: clamp(24px, 4vw, 36px); margin: 10px 0 14px; }
.cta-title span { color: var(--accent-gold); }
.cta-subtitle { color: var(--text-gray); max-width: 640px; margin: 0 auto 28px; }
.cta-buttons-wrapper { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.cta-trust-badges {
  display: flex;
  justify-content: center;
  gap: 16px 22px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-gray);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #06080d;
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 28px;
  color: var(--text-gray);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-logo { height: 38px; width: auto; margin-bottom: 14px; }
.footer-col h4 { color: #fff; margin: 0 0 14px; font-size: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--text-gray); }
.footer-links a:hover { color: var(--accent-gold); }
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  margin-right: 6px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
}
.footer-legal a { color: var(--text-gray); }

/* ---------- Sticky trial bar (all viewports) ---------- */
.sticky-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  background: rgba(10, 12, 16, 0.96);
  border-top: 1px solid rgba(241, 196, 15, 0.3);
  padding: 10px 12px calc(8px + env(safe-area-inset-bottom));
  gap: 8px;
}
.sticky-cta .btn-primary,
.sticky-cta .btn-outline {
  flex: 1 1 140px;
  max-width: 280px;
  padding: 12px 10px;
  font-size: 13px;
}
.sticky-cta-note {
  flex: 1 1 100%;
  margin: 0;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ---------- Inner content ---------- */
.prose { max-width: 760px; margin: 0 auto; color: var(--text-gray); }
.prose h2 { color: #fff; font-size: 24px; margin: 32px 0 10px; }
.prose h3 { color: #fff; font-size: 18px; margin: 22px 0 8px; }
.prose p, .prose li { font-size: 15px; }
.prose ol, .prose ul { padding-left: 20px; margin: 0 0 16px; }
.prose a { color: var(--accent-cyan); text-decoration: underline; }
.prose a:hover { color: var(--accent-gold); }

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 36px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto 72px;
  align-items: start;
}
.guide-aside {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  background: var(--bg-card-solid);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 20px;
}
.guide-aside h3 { margin: 0 0 10px; font-size: 15px; }
.guide-aside p { color: var(--text-gray); font-size: 13px; margin: 0 0 14px; }
.guide-aside .btn-primary,
.guide-aside .btn-outline { width: 100%; margin-top: 8px; }

.legal-note {
  background: rgba(241, 196, 15, 0.08);
  border: 1px solid rgba(241, 196, 15, 0.25);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text-gray);
  font-size: 13px;
  margin-bottom: 24px;
}

.placeholder {
  font-family: ui-monospace, Consolas, monospace;
  color: var(--accent-gold);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-wrapper { grid-template-columns: 1fr 1fr; }
  .steps-wrapper .step-connector { display: none; }
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #0c1018;
    border-bottom: 1px solid var(--border-subtle);
    display: none;
    padding: 8px 16px 16px;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav a { display: block; padding: 12px 8px; }
  .header-cta .btn-secondary { display: none; }
  .devices-grid,
  .features-grid { grid-template-columns: 1fr 1fr; }
  .setup-fast-steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .guide-layout { grid-template-columns: 1fr; }
  .guide-aside { position: static; }
}

@media (max-width: 768px) {
  .hero-section { padding: 28px 0 36px; }
  .section { padding: 40px 0; }
  .pricing-grid,
  .devices-grid,
  .features-grid,
  .support-grid,
  .footer-grid,
  .steps-wrapper { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .setup-fast-steps { grid-template-columns: 1fr; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline,
  .cta-buttons-wrapper .btn-cta-primary,
  .cta-buttons-wrapper .btn-cta-secondary { width: 100%; }
  .site-logo { height: 34px; }
  .header-inner { min-height: 58px; }
  :root { --header-h: 58px; }
  .marquee-item { font-size: 12px; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; font-size: 13px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 380px) {
  .container, .hero-container, .guide-layout { width: min(100% - 24px, var(--max)); }
  .btn-primary, .btn-outline { padding: 12px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track, .reviews-carousel-track { animation: none; }
  html { scroll-behavior: auto; }
}
