:root {
  --bg: #050508;
  --bg-elev: #0b0a14;
  --bg-2: #12101f;
  --bg-card: rgba(18, 16, 32, 0.72);
  --text: #f5f6fb;
  --muted: #c5c1d6;
  --lime: #d4f34a;
  --lime-dark: #10120a;
  --violet: #7c3aed;
  --magenta: #9b4dff;
  --cyan: #5eead4;
  --blue: #3b82f6;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --glow-violet: rgba(124, 58, 237, 0.38);
  --glow-blue: rgba(59, 130, 246, 0.22);
  --max: 1140px;
  --header: 78px;
  --radius: 22px;
  --radius-sm: 14px;
  --font: Inter, "Segoe UI", system-ui, -apple-system, sans-serif;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  isolation: isolate;
  overflow-x: hidden;
  max-width: 100%;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 78% -8%, var(--glow-violet), transparent 58%),
    radial-gradient(ellipse 45% 40% at 8% 12%, var(--glow-blue), transparent 55%),
    radial-gradient(ellipse 40% 32% at 92% 78%, rgba(94, 234, 212, 0.08), transparent 55%),
    linear-gradient(180deg, #07060d 0%, var(--bg) 28%, #06050c 100%);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, p { margin: 0 0 0.8rem; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.04em; font-weight: 750; }
h1 { font-size: clamp(2.5rem, 6.2vw, 4.4rem); }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.35rem); }
h3 { font-size: 1.12rem; letter-spacing: -0.02em; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; min-width: 0; }
.container.narrow { width: min(100% - 2rem, 780px); }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 80;
  background: #fff; color: #111; padding: 0.6rem 1rem; border-radius: 8px;
}
.skip-link:focus { top: 1rem; }

.kicker {
  color: #d4c4ff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.lead, .section-lead { color: var(--muted); max-width: 40rem; }
.section { padding: 5.2rem 0; position: relative; }
.section h2 { margin-bottom: 1.15rem; }
#contenu, .section, .hero { scroll-margin-top: calc(var(--header) + 12px); }

.glass {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0.75rem 1.55rem; border-radius: 999px;
  font-weight: 700; letter-spacing: -0.01em;
  transition: transform 0.16s ease, filter 0.16s ease, box-shadow 0.16s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.04); }
.btn:focus-visible, a:focus-visible, button:focus-visible {
  outline: 2px solid var(--lime); outline-offset: 3px;
}
.btn-white { background: #fff; color: #111; box-shadow: 0 8px 24px rgba(255, 255, 255, 0.08); }
.btn-lime {
  background: var(--lime); color: var(--lime-dark); width: 100%;
  box-shadow: 0 10px 28px rgba(212, 243, 74, 0.18);
}

.brand { display: flex; align-items: center; gap: 0.55rem; font-weight: 800; letter-spacing: 0.04em; min-width: 0; max-width: 100%; }
.brand-icon {
  width: 38px !important; height: 38px !important; border-radius: 10px; flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 8px 20px rgba(124, 58, 237, 0.35);
  object-fit: cover;
}
.brand-wordmark {
  height: 28px !important;
  width: auto !important;
  max-width: 148px !important;
  max-height: 28px !important;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 1;
}
.brand-name { font-size: 0.98rem; }
.brand-badge {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff; font-size: 0.68rem; font-weight: 800;
  padding: 0.22rem 0.48rem; border-radius: 7px; letter-spacing: 0.1em;
  flex-shrink: 0;
  white-space: nowrap;
}

.site-header {
  position: sticky; top: 0; z-index: 40; height: var(--header);
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.admin-bar .site-header { top: 32px; }
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: var(--header);
  position: relative;
}
.site-nav { margin-left: auto; }
.site-nav ul { display: flex; gap: 1.55rem; }
.custom-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 48px;
  max-width: min(220px, 42vw);
}
.site-header .custom-logo,
.site-header .custom-logo-link img {
  display: block;
  height: 42px !important;
  width: auto !important;
  max-height: 42px !important;
  max-width: 200px !important;
  object-fit: contain;
  object-position: left center;
}
.site-nav a {
  color: #e8e6f5; font-size: 0.92rem; font-weight: 600;
  padding: 0.35rem 0; border-bottom: 2px solid transparent;
}
.site-nav a:hover, .site-nav a:focus-visible { color: #fff; border-bottom-color: var(--magenta); }
.header-tools { display: flex; align-items: center; gap: 0.5rem; }
.btn-header-cta {
  background: #fff; color: #111; padding: 0.45rem 0.9rem; font-size: 0.86rem;
  box-shadow: none;
}
.btn-wa-header {
  background: #0f766e; color: #fff; padding: 0.45rem 0.75rem; font-size: 0.86rem;
  box-shadow: none;
}
.plan-product-link { margin: 0.55rem 0 0; font-size: 0.82rem; }
.plan-product-link a { color: #c4b5fd; text-decoration: underline; }
.atlas-toc {
  padding: 0 0 1.6rem;
}
.toc-panel {
  padding: 1.25rem 1.35rem 1.2rem;
}
.atlas-toc .toc-title {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: #c4b5fd; margin: 0 0 0.95rem; font-weight: 700;
}
.atlas-toc ol {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  list-style: none; padding: 0; margin: 0;
}
.atlas-toc a {
  display: inline-flex; align-items: center; gap: 0.55rem;
  max-width: 100%;
  padding: 0.42rem 0.95rem 0.42rem 0.42rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #e8e6f5;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.25;
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}
.atlas-toc a:hover, .atlas-toc a:focus-visible {
  color: #fff;
  border-color: rgba(167, 139, 250, 0.55);
  background: rgba(124, 58, 237, 0.16);
}
.toc-num {
  flex-shrink: 0;
  width: 1.7rem; height: 1.7rem; border-radius: 999px;
  display: grid; place-items: center;
  font-size: 0.64rem; font-weight: 800; letter-spacing: 0.04em;
  color: #fff;
  background: radial-gradient(circle at 30% 20%, #a78bfa, #5b21b6);
  box-shadow: 0 0 14px rgba(124, 58, 237, 0.35);
}
.pack-compare { margin-top: 2.2rem; overflow-x: auto; }
.pack-compare h3 { margin-bottom: 0.9rem; }
.pack-compare table {
  width: 100%; border-collapse: collapse; font-size: 0.95rem;
  background: rgba(18, 16, 32, 0.55); border-radius: 16px; overflow: hidden;
}
.pack-compare th, .pack-compare td {
  padding: 0.85rem 1rem; text-align: left; border-bottom: 1px solid var(--line);
}
.pack-compare th { color: #c4b5fd; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.pack-compare a { color: var(--lime); text-decoration: underline; }
.about-grid a { color: #c4b5fd; text-decoration: underline; }
.search-toggle, .nav-toggle {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}
.nav-toggle { display: none; }
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  display: block; width: 16px; height: 2px; background: #fff; position: relative;
}
.nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle-bars::before { top: -5px; }
.nav-toggle-bars::after { top: 5px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { top: 0; transform: rotate(-45deg); }
.header-search input {
  background: rgba(18, 16, 32, 0.9); border: 1px solid var(--line); color: #fff;
  border-radius: 10px; padding: 0.5rem 0.75rem; min-width: 12rem;
}
.nav-backdrop { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.55); z-index: 30; }

.hero { position: relative; padding: 5.4rem 0 4.2rem; overflow: hidden; }
.hero-glow, .hero-glow-2 {
  position: absolute; pointer-events: none; border-radius: 50%;
  filter: blur(8px);
}
.hero-glow {
  inset: -18% auto auto 38%; width: 62%; height: 78%;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.42), transparent 62%);
}
.hero-glow-2 {
  right: -8%; bottom: -20%; width: 42%; height: 50%;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.22), transparent 65%);
}
.hero-grid, .about-grid, .how-box {
  display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 3rem; align-items: center;
}
.hero-copy, .hero-visual { min-width: 0; }
.hero h1 .accent {
  color: #d8b4fe;
  -webkit-text-fill-color: #d8b4fe;
  text-shadow: 0 0 34px rgba(94, 234, 212, 0.28);
}
.hero p { color: #d4d0e4; font-size: 1.05rem; }
.hero .kicker { color: #d4c4ff; font-size: 0.72rem; }
.hero .lead { font-size: 1.12rem; color: #e4e1f2; max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.4rem; }

.media-frame {
  position: relative;
  border-radius: 28px;
  padding: 10px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 80px rgba(124, 58, 237, 0.22);
}
.media-frame img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #0a0914;
}
.media-glow {
  position: absolute; inset: 12% -8% auto;
  height: 70%; z-index: -1; pointer-events: none;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.45), transparent 70%);
}

.hero-slider { padding-bottom: 12px; }
.hero-slides { position: relative; }
.hero-slide {
  margin: 0;
  display: none;
  position: relative;
}
.hero-slide.is-active { display: block; }
.hero-slide img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}
.hero-slide figcaption {
  position: absolute;
  left: 18px; right: auto; bottom: 18px;
  margin: 0;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(8, 6, 16, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: fit-content;
  max-width: calc(100% - 36px);
}
.hero-slider-ui {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 0.85rem;
}
.hero-slider-btn {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  display: grid; place-items: center;
}
.hero-slider-btn:hover { border-color: var(--line-strong); background: rgba(255, 255, 255, 0.12); }
.hero-slider-dots { display: flex; gap: 0.4rem; align-items: center; }
.hero-dot {
  width: 8px; height: 8px; padding: 0;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.28);
}
.hero-dot.is-active {
  width: 22px;
  background: linear-gradient(90deg, #a78bfa, #5eead4);
}

.device-grid, .reason-grid {
  display: grid; gap: 1.05rem; min-width: 0;
}
.device-grid, .reason-grid { grid-template-columns: repeat(4, 1fr); }

.device-subs article,
.device-card, .reason-card, .apk-panel, .contact-box {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.device-card:hover, .reason-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28), 0 0 32px rgba(124, 58, 237, 0.12);
}
.icon-wrap {
  width: 48px; height: 48px; color: #fff; margin-bottom: 1rem;
  display: grid; place-items: center;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 20%, rgba(167, 139, 250, 0.35), rgba(59, 130, 246, 0.08) 70%);
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.18);
}
.icon-wrap svg { width: 26px; height: 26px; }
.device-card p, .reason-card p { color: var(--muted); }
.device-subs {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1rem;
}
.device-subs h3 { margin-bottom: 0.4rem; }
.device-subs p { color: var(--muted); margin: 0; font-size: 0.95rem; }

.price-card { display: flex; flex-direction: column; }

.pricing {
  position: relative;
  overflow: visible;
  isolation: isolate;
}
.pricing-aura {
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(640px, 90%);
  height: 420px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.38), rgba(249, 115, 22, 0.08) 42%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.pricing .container { position: relative; z-index: 1; text-align: center; }
.pricing h2 { margin-bottom: 0.7rem; }
.pricing .section-lead { margin-inline: auto; }
.pricing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.35);
  background: rgba(251, 191, 36, 0.08);
  color: #fcd34d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pricing-kicker::before {
  content: "✦";
  font-size: 0.7rem;
  color: #fbbf24;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: stretch;
  margin-top: 2.6rem;
  padding-top: 0.35rem;
  text-align: left;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2rem 1.55rem 1.55rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(22, 22, 28, 0.96), rgba(10, 10, 14, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.price-card-ornament {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  color: rgba(165, 180, 252, 0.28);
  pointer-events: none;
  line-height: 0;
}
.price-card.is-featured .price-card-ornament { color: rgba(251, 191, 36, 0.55); }
.price-card.is-violet .price-card-ornament { color: rgba(167, 139, 250, 0.45); }
.price-flair { display: block; }
.price-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.price-card-top h3 { margin: 0; font-size: 1.35rem; }
.price-card-meta {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d1d5db;
  white-space: nowrap;
}
.price-card-mid {
  padding: 1.25rem 0 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.price-card .price {
  font-size: clamp(2.1rem, 3vw, 2.75rem);
  font-weight: 800;
  margin: 0 0 0.2rem;
  letter-spacing: -0.05em;
  color: #fff;
}
.price-card .price span {
  font-size: 1rem;
  color: #d1d5db;
  font-weight: 500;
  letter-spacing: 0;
}
.price-billing {
  margin: 0 0 1.15rem;
  color: #d1d5db;
  font-size: 0.9rem;
}
.price-card .btn {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.btn-plan-outline {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
}
.btn-plan-outline:hover { background: rgba(255, 255, 255, 0.08); }
.btn-plan-gold {
  background: linear-gradient(90deg, #fb923c 0%, #fbbf24 100%);
  color: #1a0f05;
  border: 0;
  box-shadow: 0 10px 28px rgba(251, 146, 60, 0.35);
}
.btn-plan-violet {
  background: linear-gradient(90deg, #7c3aed 0%, #2563eb 100%);
  color: #fff;
  border: 0;
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.35);
}
.price-card ul { flex: 1; padding: 1.1rem 0 0; }
.price-card li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.65rem;
  color: #c4c4ce;
  font-size: 0.95rem;
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #67e8f9;
  font-weight: 800;
}
.price-card.is-featured {
  z-index: 1;
  transform: translateY(-18px);
  padding-top: 1.65rem;
  overflow: visible;
  border-color: rgba(251, 191, 36, 0.7);
  background: linear-gradient(180deg, rgba(32, 24, 16, 0.98), rgba(12, 10, 8, 0.98));
  box-shadow:
    0 0 0 1px rgba(251, 191, 36, 0.35),
    0 28px 70px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(251, 146, 60, 0.18);
}
.price-card.is-featured li::before { color: #fbbf24; }
.plan-badge {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  align-self: center;
  margin: 0 auto 0.95rem;
  padding: 0.38rem 0.95rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a0f05;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
  white-space: nowrap;
  z-index: 2;
}
.price-card.is-violet {
  border-color: rgba(139, 92, 246, 0.35);
}

.about { background: transparent; }
.about-grid {
  padding: 2.4rem;
  border-radius: 32px;
  background: linear-gradient(120deg, rgba(28, 18, 58, 0.75), rgba(10, 14, 32, 0.7));
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 30px 80px rgba(0, 0, 0, 0.25);
}
.steps { list-style: none; padding: 0; counter-reset: atlas-step; }
.steps li {
  counter-increment: atlas-step;
  position: relative;
  padding: 0.85rem 0 0.85rem 3.2rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.steps li:last-child { border-bottom: 0; }
.steps li::before {
  content: counter(atlas-step);
  position: absolute; left: 0; top: 0.7rem;
  width: 2.1rem; height: 2.1rem; border-radius: 999px;
  display: grid; place-items: center;
  font-weight: 800; font-size: 0.85rem; color: #fff;
  background: radial-gradient(circle at 30% 20%, #a78bfa, #5b21b6);
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.35);
}
.apk-panel .brand-icon { width: 48px; height: 48px; margin-bottom: 0.85rem; }

.faq-list { display: grid; gap: 0.7rem; margin-top: 1.4rem; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(16, 14, 28, 0.72);
  overflow: hidden;
}
.faq-item h3 { margin: 0; }
.faq-trigger {
  width: 100%; text-align: left; padding: 1.15rem 2.6rem 1.15rem 1.15rem;
  font-weight: 650; position: relative;
}
.faq-trigger:hover { color: #fff; }
.faq-trigger[aria-expanded="true"] { color: #ddd6fe; }
.faq-trigger::after {
  content: "";
  position: absolute; right: 1.1rem; top: 50%; width: 8px; height: 8px;
  border-right: 2px solid var(--lime); border-bottom: 2px solid var(--lime);
  transform: translateY(-70%) rotate(45deg);
}
.faq-trigger[aria-expanded="true"]::after { transform: translateY(-20%) rotate(225deg); }
.faq-panel { padding: 0 1.15rem 1.15rem; }
.faq-panel p { color: var(--muted); margin: 0; }

.contact-box {
  text-align: center; padding: 3.2rem 1.6rem;
  background: linear-gradient(120deg, rgba(88, 28, 160, 0.55), rgba(30, 58, 138, 0.5) 55%, rgba(15, 23, 42, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 80px rgba(124, 58, 237, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.contact-box .btn { width: auto; min-width: 12rem; }

.site-footer {
  background: #030308;
  border-top: 1px solid var(--line);
  padding: 3.4rem 0 1.5rem;
}
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.8fr) minmax(0, 0.8fr) minmax(0, 1fr); gap: 2.2rem; }
.footer-brand, .footer-grid > * { min-width: 0; overflow: hidden; }
.footer-brand .brand {
  margin-bottom: 0.9rem;
  max-width: min(100%, 230px);
  overflow: hidden;
  flex-wrap: wrap;
  row-gap: 0.35rem;
}
.site-footer .brand-wordmark {
  max-width: 120px !important;
}
.site-footer h2 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.site-footer a { color: #e4e1f2; }
.site-footer a:hover { color: #fff; }
.footer-brand p, .footer-bottom { color: var(--muted); font-size: 0.92rem; }
.footer-bottom { margin-top: 2.2rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }

.site-main { padding: calc(var(--header) + 2rem) 0 3rem; }
.post-card, .entry {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem; margin-bottom: 1rem;
}

body.nav-open { overflow: hidden; }

@media (max-width: 1100px) {
  .device-subs { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .device-grid, .reason-grid { grid-template-columns: 1fr 1fr; }
  .price-card.is-featured { transform: none; }
  .pricing-grid { gap: 1rem; }
}

@media (max-width: 840px) {
  .admin-bar .site-header { top: 46px; }
  .custom-logo-link { max-width: min(168px, 46vw); height: 40px; }
  .site-header .custom-logo,
  .site-header .custom-logo-link img {
    height: 34px !important;
    max-height: 34px !important;
    max-width: 156px !important;
  }
  .nav-toggle { display: grid; }
  .btn-wa-header { display: none; }
  .site-nav {
    position: fixed; top: var(--header); right: 0; width: min(84vw, 340px);
    height: calc(100dvh - var(--header));
    background: rgba(10, 8, 20, 0.96);
    border-left: 1px solid var(--line);
    visibility: hidden; pointer-events: none; z-index: 45; padding: 1rem;
    backdrop-filter: blur(18px);
  }
  .site-nav:not(.is-open) {
    width: 0;
    min-width: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
  }
  .site-nav ul { flex-direction: column; gap: 0.4rem; }
  .site-nav a { display: block; padding: 0.7rem 0.4rem; }
  .site-nav.is-open { transform: none; visibility: visible; pointer-events: auto; }
  .hero-grid, .about-grid, .how-box, .pricing-grid, .device-grid, .reason-grid, .device-subs, .footer-grid, .blog-grid {
    grid-template-columns: 1fr;
  }
  .header-search { position: absolute; right: 4.2rem; top: 4.6rem; }
  .hero { padding: 3.2rem 0 2.6rem; }
  .section { padding: 3.4rem 0; }
  .about-grid { padding: 1.4rem; }
  .device-card, .reason-card, .apk-panel, .contact-box, .device-subs article {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #12101c;
  }
  .hero-glow-2 { display: none; }
  h1 { font-size: clamp(2.1rem, 10vw, 3rem); }
}

@media (max-width: 430px) {
  .container { width: min(100% - 1.25rem, var(--max)); }
  .brand-wordmark { max-width: 118px !important; }
  .site-footer .brand-wordmark { max-width: 110px !important; }
  .btn-header-cta { display: none; }
  .price { font-size: 2rem; }
  .price-card { padding: 1.7rem 1.2rem 1.25rem; }
  .price-card-ornament { width: 44px; }
  .contact-box { padding: 2.2rem 1rem; }
}

@media (max-width: 390px) {
  .site-header .brand-wordmark { display: none; }
  .site-footer .brand-wordmark {
    display: block !important;
    max-width: 110px !important;
    height: 22px !important;
    max-height: 22px !important;
  }
}

.contact-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }
.contact-actions .btn { width: auto; }
.post-card-media { display: block; margin-bottom: 1rem; overflow: hidden; border-radius: 16px; }
.post-card-media img { width: 100%; height: auto; }
.post-card .btn { width: auto; margin-top: 0.4rem; }
.entry-article { padding: 2rem 1.5rem 2.4rem; }
.entry-hero { margin: 1.2rem 0 1.6rem; border-radius: 18px; overflow: hidden; }
.entry-hero img { width: 100%; height: auto; }
.entry-body { color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.entry-body h2 { color: #fff; margin: 2rem 0 0.8rem; font-size: clamp(1.35rem, 2.4vw, 1.8rem); }
.entry-body h3 { color: #fff; margin: 1.4rem 0 0.6rem; }
.entry-body p { margin: 0 0 1rem; }
.entry-body a { color: #c4b5fd; text-decoration: underline; }
.entry-body ul, .entry-body ol { margin: 0 0 1.1rem; padding-left: 1.2rem; }
.entry-body ul { list-style: disc; }
.entry-body ol { list-style: decimal; }
.entry-body li { margin: 0 0 0.4rem; }
.entry-body img { width: 100%; border-radius: 16px; }
.entry-body figure { margin: 1.6rem 0; }
.entry-body figcaption { color: var(--muted); font-size: 0.88rem; margin-top: 0.5rem; }
.joinchat__button {
  background: #0f766e !important;
}
.entry-cta {
  margin: 2rem 0 0.4rem; padding: 1.4rem; border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(88, 28, 160, 0.35), rgba(15, 23, 42, 0.5));
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.6rem;
}

/* WooCommerce product pages */
.atlas-product .widget-area,
.atlas-product .widget,
.atlas-product #secondary {
  display: none !important;
}
.product-crumbs {
  display: flex; flex-wrap: wrap; gap: 0.45rem; align-items: center;
  margin: 0 0 1.6rem; color: var(--muted); font-size: 0.88rem;
}
.product-crumbs a { color: #c4b5fd; }
.product-crumbs a:hover { color: #fff; }
.atlas-product div.product {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2.2rem;
  align-items: start;
}
.atlas-product .woocommerce-product-gallery,
.atlas-product .summary {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.atlas-product .woocommerce-product-gallery { padding: 0.55rem; overflow: hidden; }
.atlas-product .woocommerce-product-gallery__wrapper,
.atlas-product .woocommerce-product-gallery__image {
  margin: 0 !important;
  background: transparent !important;
  border-radius: 16px;
  overflow: hidden;
}
.atlas-product .woocommerce-product-gallery img {
  display: block; width: 100%; border-radius: 16px; background: transparent;
}
.atlas-product .flex-control-thumbs,
.atlas-product ol.flex-control-nav { display: none !important; }
.atlas-product .summary h1 {
  font-size: clamp(1.65rem, 3.4vw, 2.35rem);
  letter-spacing: -0.045em;
  margin: 0.15rem 0 0.55rem;
  line-height: 1.15;
}
.atlas-product .summary .price {
  display: block;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #fff;
  margin: 0.4rem 0 1rem;
}
.atlas-product.postid-1591 .summary .price { color: #fbbf24; }
.product-points {
  margin: 0 0 1.2rem; padding: 0;
  display: grid; gap: 0.45rem;
}
.product-points li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.55rem;
  color: #c4c4ce;
}
.product-points li::before {
  content: "✓";
  position: absolute; left: 0;
  color: #67e8f9; font-weight: 800;
}
.atlas-product .cart,
.atlas-product form.cart {
  margin: 0;
}
.atlas-product .single_add_to_cart_button,
.atlas-product .button.alt {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; min-height: 52px; padding: 0.75rem 1.55rem;
  border-radius: 14px; border: 0;
  font-weight: 700; font-size: 0.86rem; letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #fff; color: #111;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.08);
}
.atlas-product.postid-1591 .single_add_to_cart_button {
  background: linear-gradient(90deg, #fb923c 0%, #fbbf24 100%);
  color: #1a0f05;
  box-shadow: 0 10px 28px rgba(251, 146, 60, 0.35);
}
.atlas-product.postid-1592 .single_add_to_cart_button {
  background: linear-gradient(90deg, #7c3aed 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.35);
}
.atlas-product .quantity,
.atlas-product .qty { display: none !important; }
.atlas-product .woocommerce-product-gallery__trigger,
.atlas-product .onsale,
.atlas-product .star-rating,
.atlas-product .woocommerce-product-rating { display: none; }
.product-story {
  grid-column: 1 / -1;
  margin-top: 0.4rem;
  padding: 2rem 0 0.4rem;
}
.product-story h2 { margin: 1.8rem 0 0.9rem; }
.product-story p { color: var(--muted); max-width: 52rem; }
.product-story-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 1.6rem;
  align-items: start;
  margin: 0 0 0.6rem;
}
.product-story-hero p { max-width: none; }
.product-story-media {
  margin: 0;
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line);
}
.product-faq { margin-top: 0.4rem; }
.product-faq .faq-list { margin-top: 0.9rem; }
.product-story-links .btn { min-width: 12rem; }
.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0 0 0.6rem;
}
.product-feature-grid li {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 1rem 0.85rem 2.2rem;
  position: relative;
  color: #e8e6f5;
}
.product-feature-grid li::before {
  content: "✓";
  position: absolute; left: 0.85rem; color: #67e8f9; font-weight: 800;
}
.product-story-links {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.1rem; align-items: center;
}
.product-story-links a:not(.btn) { color: #c4b5fd; text-decoration: underline; }
.atlas-product .related {
  grid-column: 1 / -1;
  margin-top: 1.2rem; padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.atlas-product .related > h2 { margin-bottom: 1.1rem; }
.atlas-product ul.products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  list-style: none; padding: 0; margin: 0;
}
.atlas-product ul.products li.product {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  display: flex; flex-direction: column; gap: 0.65rem;
}
.atlas-product ul.products li.product img { border-radius: 14px; }
.atlas-product ul.products li.product .woocommerce-loop-product__title {
  font-size: 1.12rem; margin: 0;
}
.atlas-product ul.products .price { color: #fff; font-weight: 700; }
.atlas-product ul.products .btn { width: 100%; }
.atlas-product ul.products .post-1591 { border-color: rgba(251, 191, 36, 0.38); }
.atlas-product ul.products .post-1592 { border-color: rgba(124, 58, 237, 0.38); }
.atlas-product ul.products .button:not(.btn),
.atlas-product ul.products .added_to_cart { display: none; }
.atlas-product .woocommerce-notices-wrapper { grid-column: 1 / -1; }
.atlas-product .woocommerce-message,
.atlas-product .woocommerce-info {
  background: rgba(18, 16, 32, 0.8);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 840px) {
  .atlas-product div.product,
  .product-story-hero,
  .product-feature-grid,
  .atlas-product ul.products {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .device-card:hover, .reason-card:hover, .price-card.is-featured { transform: none; }
}
