:root {
  --bg-deep:    #0A0E1F;
  --bg-section: #131A33;
  --bg-card:    #1A2247;
  --border:     #283466;
  --accent:     #2D6FFF;
  --accent-hi:  #4A86FF;
  --accent-yel: #FFD600;
  --accent-grn: #00D26A;
  --text:       #E8ECFF;
  --text-mid:   #9AA3C7;
  --text-low:   #6772A0;
  --danger:     #FF4757;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  background-image:
    radial-gradient(circle at 15% 0%, rgba(45, 111, 255, 0.10) 0%, transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(255, 214, 0, 0.04) 0%, transparent 35%);
  background-attachment: fixed;
}
a { color: var(--accent-hi); text-decoration: none; }
a:hover { text-decoration: underline; }

/* === HEADER === */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 31, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
}
.logo span { color: var(--accent-hi); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switcher {
  display: inline-flex;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 700;
}
.lang-switcher a {
  padding: 8px 14px;
  color: var(--text-mid);
  text-decoration: none;
  transition: all 0.15s;
}
.lang-switcher a.active {
  background: var(--accent);
  color: #fff;
}
.lang-switcher a:not(.active):hover {
  color: var(--text);
  background: rgba(45, 111, 255, 0.10);
}

.main-nav {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}
.main-nav a:hover {
  color: var(--text);
  background: rgba(45, 111, 255, 0.08);
  text-decoration: none;
}
.main-nav a[aria-current="page"] {
  color: var(--accent-hi);
}
@media (max-width: 900px) {
  .main-nav { display: none; }
}

.lang-cross {
  margin: 14px 0 0;
  padding: 10px 14px;
  background: rgba(45, 111, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-mid);
}
.lang-cross a { font-weight: 700; }

.updated-badge {
  display: inline-block;
  font-size: 12px;
  color: var(--text-low);
  margin-top: 6px;
}

.promo-coupon {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #1A2247 0%, #2D6FFF 100%);
  padding: 14px 18px;
  border-radius: 14px;
  margin-top: 14px;
  border: 1px dashed rgba(255,214,0,0.5);
}
.promo-coupon-info { flex: 1; min-width: 0; }
.promo-coupon-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-yel);
}
.promo-coupon-code {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #fff;
  font-family: "SF Mono", Menlo, Consolas, monospace;
}
.promo-coupon-btn {
  background: var(--accent-yel);
  color: #0a0e1f;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.promo-coupon-btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.promo-coupon-btn.copied { background: var(--accent-grn); color: #fff; }
@media (max-width: 600px) {
  .promo-coupon { flex-direction: column; align-items: stretch; text-align: center; }
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(45, 111, 255, 0.35);
}
.btn-primary:hover { background: var(--accent-hi); box-shadow: 0 8px 24px rgba(45, 111, 255, 0.5); }
.btn-yellow {
  background: var(--accent-yel);
  color: #0a0e1f;
  box-shadow: 0 6px 20px rgba(255, 214, 0, 0.30);
}
.btn-yellow:hover { background: #FFE233; }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); }
.btn-large {
  padding: 18px 36px;
  font-size: 17px;
  border-radius: 12px;
}
.btn-block { width: 100%; }
.btn-icon { font-size: 20px; }

/* === CONTAINER === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 20px; }

/* === BREADCRUMBS === */
.breadcrumbs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px 0;
  font-size: 13px;
  color: var(--text-low);
}
.breadcrumbs a { color: var(--text-mid); }
.breadcrumbs .sep { margin: 0 8px; opacity: 0.5; }

/* === HERO === */
.hero {
  padding: 60px 0 40px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 214, 0, 0.12);
  border: 1px solid rgba(255, 214, 0, 0.35);
  border-radius: 999px;
  color: var(--accent-yel);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 18px;
  color: #fff;
}
.hero h1 .highlight {
  background: linear-gradient(90deg, var(--accent), var(--accent-hi));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 17px;
  color: var(--text-mid);
  margin-bottom: 28px;
  max-width: 520px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 460px;
}
.stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
}
.stat-value {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
}
.stat-value .star { color: var(--accent-yel); font-size: 18px; }
.stat-label {
  font-size: 11px;
  color: var(--text-low);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 2px;
}

/* Hero phone visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-img-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(45,111,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero-badges {
  position: absolute;
  bottom: -16px;
  right: -10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}
.hero-badge-icon { font-size: 18px; }

/* === BONUS BANNER === */
.bonus-banner {
  margin: 40px 0;
  padding: 36px 32px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(45,111,255,0.18), rgba(255,214,0,0.10)),
    var(--bg-section);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.bonus-banner::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,214,0,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.bonus-eyebrow {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-yel);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.bonus-title {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 6px;
}
.bonus-title .amt { color: var(--accent-yel); }
.bonus-sub {
  font-size: 14px;
  color: var(--text-mid);
}
@media (max-width: 768px) {
  .bonus-banner { grid-template-columns: 1fr; text-align: center; padding: 28px 20px; }
}

/* === SECTIONS === */
section { padding: 60px 0; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent-hi);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 12px;
  max-width: 720px;
}
.section-lead {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 720px;
  margin-bottom: 36px;
}

/* === Article prose (subpages) === */
.prose { max-width: 860px; }
.prose h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 36px 0 12px;
  letter-spacing: -0.3px;
}
.prose h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-hi);
  margin: 24px 0 10px;
}
.prose p {
  font-size: 15.5px;
  color: var(--text-mid);
  margin-bottom: 14px;
  line-height: 1.7;
}
.prose ul, .prose ol {
  margin: 0 0 18px 20px;
  color: var(--text-mid);
  font-size: 15.5px;
  line-height: 1.7;
}
.prose ul li, .prose ol li { margin-bottom: 6px; }
.prose strong { color: var(--text); }
.prose code {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px 6px;
  font-size: 13px;
  color: var(--accent-yel);
  font-family: "SF Mono", Menlo, Consolas, monospace;
}
.callout {
  background: rgba(45, 111, 255, 0.08);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 14.5px;
  color: var(--text);
}
.callout-warn {
  background: rgba(255, 71, 87, 0.06);
  border-left-color: var(--danger);
}
.callout-good {
  background: rgba(0, 210, 106, 0.06);
  border-left-color: var(--accent-grn);
}

/* === Specs table === */
.specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.spec {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 18px 16px;
}
.spec-label {
  font-size: 11px;
  color: var(--text-low);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.spec-value {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

/* === Benefits grid === */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.benefit {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 22px;
  transition: border-color 0.2s, transform 0.2s;
}
.benefit:hover { border-color: var(--accent); transform: translateY(-3px); }
.benefit-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hi));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.benefit-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.benefit-desc {
  font-size: 14px;
  color: var(--text-mid);
}

/* === Install split (Android / iOS) === */
.install-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.install-card {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}
.install-head {
  padding: 24px 26px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}
.install-head-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.install-head-title { font-size: 22px; font-weight: 900; color: #fff; }
.install-head-sub { font-size: 13px; color: var(--text-mid); margin-top: 2px; }
.install-body { padding: 22px 26px 26px; }
.install-steps {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 22px;
  counter-reset: step;
}
.install-steps li {
  list-style: none !important;
  position: relative;
  padding: 0 0 18px 44px;
  border-left: 2px dashed var(--border);
  margin-left: 14px;
  counter-increment: step;
}
.install-steps li:last-child { border-left: 2px solid transparent; padding-bottom: 0; }
.install-steps li::before {
  content: counter(step);
  position: absolute;
  left: -16px; top: -2px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 4px var(--bg-section);
}
.install-step-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.install-step-desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.55;
}
.install-cta { margin-top: 4px; }
@media (max-width: 768px) {
  .install-split { grid-template-columns: 1fr; }
}

/* === Devices table === */
.devices-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  font-size: 14px;
  margin-top: 18px;
}
.devices-table th, .devices-table td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.devices-table th {
  background: var(--bg-section);
  font-weight: 800;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.devices-table tr:last-child td { border-bottom: none; }
.devices-table td { color: var(--text); }
@media (max-width: 700px) {
  .devices-table { display: block; overflow-x: auto; }
}

/* === Promotions === */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.promo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 22px 24px;
  position: relative;
  overflow: hidden;
}
.promo::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--accent-hi));
}
.promo-amount {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent-yel);
  margin-bottom: 4px;
  letter-spacing: -1px;
}
.promo-title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.promo-desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* === Categories grid === */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.cat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.2s;
}
.cat:hover { border-color: var(--accent); transform: translateY(-2px); }
.cat-icon { font-size: 28px; }
.cat-name { font-weight: 700; color: #fff; font-size: 15px; }
.cat-sub { font-size: 12px; color: var(--text-low); margin-top: 2px; }

/* === Payments === */
.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.payment {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.payment-sub { font-size: 11px; color: var(--text-low); margin-top: 4px; font-weight: 500; }

/* === Image figures === */
.content-image {
  margin: 32px 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.content-image img { width: 100%; display: block; }
.content-image figcaption {
  padding: 12px 18px;
  font-size: 13px;
  color: var(--text-low);
  font-style: italic;
  text-align: center;
  background: var(--bg-section);
}

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 860px; }
details.faq {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
details.faq[open] { border-color: var(--accent); }
details.faq summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  list-style: none;
  position: relative;
  padding-right: 56px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: var(--accent-hi);
  transition: transform 0.2s;
  line-height: 1;
}
details.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-content {
  padding: 0 22px 20px;
  color: var(--text-mid);
  font-size: 14.5px;
  line-height: 1.6;
}

/* === CTA section === */
.cta-section {
  margin: 60px 0;
  padding: 50px 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--accent) 0%, #1B4FCC 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.10) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(0,0,0,0.20) 0%, transparent 50%);
  pointer-events: none;
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 12px;
}
.cta-section h2 .amt { color: var(--accent-yel); }
.cta-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}
.cta-section-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-section .btn-primary {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.cta-section .btn-primary:hover { background: var(--accent-yel); color: #0a0e1f; }
.cta-section .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.cta-section .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* === Related links (subpage links) === */
.related-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 30px 0;
}
.related-link {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  text-decoration: none;
  transition: all 0.2s;
}
.related-link:hover { border-color: var(--accent); transform: translateY(-2px); text-decoration: none; }
.related-link-icon { font-size: 24px; margin-bottom: 8px; }
.related-link-title { color: #fff; font-weight: 800; font-size: 15px; margin-bottom: 4px; }
.related-link-sub { color: var(--text-low); font-size: 13px; }

/* === Footer === */
.footer {
  margin-top: 80px;
  padding: 40px 0 100px;
  border-top: 1px solid var(--border);
  background: var(--bg-section);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}
.footer-brand { color: var(--text-mid); font-size: 14px; max-width: 600px; }
.footer-brand strong { color: #fff; display: block; margin-bottom: 8px; font-size: 15px; }
.footer-disclaimer {
  color: var(--text-low);
  font-size: 12px;
  margin-top: 18px;
  line-height: 1.6;
}
.footer-buttons { display: flex; flex-direction: column; gap: 10px; }
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* === Sticky download bar === */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(90deg, #0a0e1f 0%, var(--accent) 100%);
  border-top: 2px solid var(--accent-yel);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 90;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.4);
}
.sticky-bar-text {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}
.sticky-bar-text strong {
  color: var(--accent-yel);
  font-size: 17px;
}
.sticky-bar-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  padding: 0 6px;
  line-height: 1;
  margin-left: 4px;
}
@media (max-width: 600px) {
  .sticky-bar-text { font-size: 13px; }
  .sticky-bar { padding: 10px 14px; gap: 10px; }
  .sticky-bar .btn { padding: 10px 18px; font-size: 13px; }
}

/* === Mobile === */
@media (max-width: 900px) {
  .hero { padding: 40px 0 30px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero h1 { font-size: 34px; }
  .section-title { font-size: 28px; }
  .cta-section { padding: 36px 24px; }
  .cta-section h2 { font-size: 26px; }
  .hero-badges { display: none; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero-stats { grid-template-columns: 1fr; }
  .stat-value { font-size: 18px; }
}
