:root {
  --bg: #f7f9fc;
  --bg-2: #eef2f8;
  --navy: #0d1020;
  --navy-2: #161a2e;
  --text: #12152a;
  --muted: #5b6178;
  --dim: #7a8196;
  --line: #e4e8f2;
  --white: #ffffff;
  --violet: #8b3dff;
  --cyan: #4ebcee;
  --ok: #22c55e;
  --wa: #25d366;
  --radius: 18px;
  --max: 1120px;
  --nav: 72px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Plus Jakarta Sans", system-ui, sans-serif;
  --grad: linear-gradient(100deg, #8b3dff 0%, #4ebcee 100%);
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.skip {
  position: absolute; left: -999px; top: 8px; background: var(--violet); color: #fff;
  padding: 8px 12px; border-radius: 8px; z-index: 100;
}
.skip:focus { left: 12px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

.bg-glow { display: none; }

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  font-size: 13px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 36px;
  flex-wrap: wrap;
}
.topbar a { color: #fff; }
.topbar a:hover { color: var(--cyan); }
.top-links { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.fx {
  display: inline-flex; border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; overflow: hidden;
}
.fx-btn {
  background: transparent; border: 0; color: rgba(255,255,255,0.75);
  padding: 4px 10px; font-size: 12px; font-weight: 700; cursor: pointer;
}
.fx-btn.active { background: #fff; color: var(--navy); }
.js-price { display: inline-flex; flex-wrap: wrap; align-items: baseline; gap: 6px; }
.js-price .fx-alt { color: var(--dim); font-weight: 600; font-size: 12px; }
.hero .js-price .fx-alt { color: #7a8196; }
.hero .trust-row .js-price .fx-alt { color: rgba(255,255,255,0.5); }
.stat .js-price { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.dot-ok {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ok); display: inline-block; margin-right: 6px;
}

.header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(247, 249, 252, 0.9);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav); gap: 18px;
}
.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand-mark {
  width: 40px; height: 40px; display: block; flex: 0 0 auto;
  border-radius: 11px; object-fit: contain; object-position: center;
  box-shadow: 0 8px 18px rgba(36, 28, 120, 0.22);
}
.word b { color: #6D4AFF; font-weight: 700; }
.wa-user .brand-mark { width: 34px; height: 34px; }
.word {
  font-family: var(--display); font-size: 20px; font-weight: 700; color: var(--text); letter-spacing: 0;
}
.word b { color: #6D4AFF; font-weight: 700; }
.brand-text { display: none; }
.nav-panel { display: flex; align-items: center; gap: 12px; flex: 1; justify-content: flex-end; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 7px 10px; border-radius: 0; color: var(--muted); font-size: 14px; font-weight: 600;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px; height: 2px;
  background: var(--grad); border-radius: 2px;
}
.nav-cta { display: flex; gap: 8px; align-items: center; }
.menu-btn {
  display: none; width: 42px; height: 42px; border-radius: 12px;
  background: var(--white); border: 1px solid var(--line); cursor: pointer;
}
.menu-btn span, .menu-btn span::before, .menu-btn span::after {
  display: block; width: 16px; height: 1.5px; background: var(--text); position: relative;
}
.menu-btn span::before, .menu-btn span::after {
  content: ""; position: absolute; left: 0;
}
.menu-btn span::before { top: -5px; }
.menu-btn span::after { top: 5px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 12px; padding: 11px 20px; font-weight: 700; font-size: 14px;
  border: 1px solid transparent; cursor: pointer; transition: 0.2s ease;
  white-space: nowrap;
}
.btn-gold {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 20px rgba(139, 61, 255, 0.22);
}
.btn-gold:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-ghost {
  border-color: var(--line); background: var(--white); color: var(--text);
}
.hero .btn-ghost, .cta-band .btn-ghost {
  border-color: rgba(255,255,255,0.22); background: transparent; color: #fff;
}
.btn-ghost:hover { border-color: var(--violet); color: var(--violet); }
.hero .btn-ghost:hover, .cta-band .btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; }
.btn-dark {
  background: var(--white); border-color: var(--line); color: var(--text);
}
.btn-wa { background: var(--wa); color: #04210d; }
.btn-full { width: 100%; }

.hero {
  padding: 0;
  background: var(--navy);
  color: #fff;
}
.hero .wrap { padding: 72px 0 64px; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center;
}
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--cyan); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 700; word-spacing: 0.12em;
}
.hero .kicker, .cta-band .kicker { color: #9fd9f5; }
h1, .h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.25;
  letter-spacing: 0;
  word-spacing: 0.04em;
  margin: 10px 0 12px;
}
.gold { color: var(--violet); }
.hero .gold { color: var(--cyan); }
.lead { color: var(--muted); font-size: 16px; max-width: 58ch; }
.hero .lead { color: rgba(255,255,255,0.72); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 22px; }
.trust-row { display: flex; gap: 22px; flex-wrap: wrap; color: var(--dim); font-size: 13px; }
.hero .trust-row { color: rgba(255,255,255,0.55); }
.trust-row b { color: var(--text); font-weight: 700; display: block; font-size: 15px; }
.hero .trust-row b { color: #fff; }

.hero-panel {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
}
.hero-panel .tag { color: var(--violet); border-color: #eadbff; }
.hero-panel .mini {
  background: var(--bg);
  border-color: var(--line);
}
.price-hero {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 12px;
  padding-bottom: 16px; border-bottom: 1px solid var(--line); margin-bottom: 16px;
}
.price-hero strong,
.price-hero .fx-main {
  font-family: var(--display); font-size: 36px; line-height: 1.1; color: var(--text);
  font-weight: 700; letter-spacing: 0;
}
.price-hero .fx-alt { font-size: 14px; font-weight: 600; color: var(--dim); }
.price-hero > span { color: var(--muted); font-size: 14px; line-height: 1.45; max-width: 16ch; }
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mini {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 14px; padding: 12px;
}
.mini b { display: block; font-size: 13px; }
.mini span { color: var(--dim); font-size: 12px; }

section { padding: 56px 0; }
.section-head { max-width: 680px; margin-bottom: 36px; }
.section-head h2, h2 {
  font-family: var(--display); font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.28; margin: 8px 0 12px; letter-spacing: 0; word-spacing: 0.03em;
}
.sub { color: var(--muted); }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.stat {
  border: 1px solid var(--line); background: var(--white); border-radius: 18px; padding: 22px;
}
.stat b {
  display: block; font-family: var(--display); font-size: 26px; color: var(--text); line-height: 1.2;
  letter-spacing: 0;
}
.stat .fx-main { font-size: 26px; font-weight: 700; color: var(--text); letter-spacing: 0; }
.stat .fx-alt { font-size: 14px; font-weight: 600; color: var(--dim); }
.stat .stat-note {
  display: block; margin-top: 8px; color: var(--muted); font-size: 14px;
  line-height: 1.45; letter-spacing: 0.01em; word-spacing: 0.04em;
}

.toolbar {
  display: flex; justify-content: space-between; align-items: end; gap: 16px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  border: 1px solid var(--line); background: var(--white); color: var(--muted);
  border-radius: 999px; padding: 7px 12px; cursor: pointer; font-size: 13px; font-weight: 600;
}
.chip.active, .chip:hover { border-color: var(--violet); color: var(--violet); }

.grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  display: flex; flex-direction: column; gap: 12px;
  transition: 0.2s ease, transform 0.2s ease;
  min-height: 100%;
}
.card:hover {
  border-color: #c9b6ff;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(18, 21, 42, 0.08);
}
.logo-plate {
  height: 120px; border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 16px 18px;
}
.logo-plate img {
  width: auto; height: auto;
  max-height: 88px; max-width: 100%;
  object-fit: contain; object-position: center;
}
.logo-plate.product-logo {
  height: 200px; border-radius: 20px; padding: 24px 28px;
}
.logo-plate.product-logo img { max-height: 150px; max-width: 100%; }
.product-price {
  margin: 0 0 16px; font-size: 20px; font-weight: 700; color: var(--text);
  letter-spacing: 0;
}
.tag {
  display: inline-flex; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--violet); border: 1px solid #eadbff; border-radius: 999px; padding: 3px 8px; font-weight: 700;
}
.card h3 { margin: 0; font-size: 17px; letter-spacing: 0; font-family: var(--display); }
.card p { margin: 0; color: var(--muted); font-size: 14px; flex: 1; }
.card-foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.price { font-weight: 800; color: var(--text); font-family: var(--display); }
.price small { color: var(--dim); font-weight: 600; }

.features-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.icon-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 22px; padding: 24px;
}
.icon-card .n {
  width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
  background: var(--grad); color: #fff; font-weight: 700; margin-bottom: 14px;
}
.icon-card h3 { margin: 0 0 8px; font-size: 20px; font-family: var(--display); }
.icon-card p { margin: 0; color: var(--muted); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.step {
  padding: 22px; border-radius: 20px; background: var(--white); border: 1px solid var(--line);
}
.step em { color: var(--violet); font-style: normal; font-family: var(--display); font-size: 28px; }

.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.quote {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 22px;
}
.stars { color: #f5b942; letter-spacing: 2px; margin-bottom: 10px; }
.quote p { color: var(--muted); }
.who { display: flex; gap: 10px; align-items: center; margin-top: 16px; }
.ava {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: #efe6ff; color: var(--violet); font-weight: 700;
}
.who b { display: block; font-size: 14px; }
.who span { color: var(--dim); font-size: 12px; }

.faq-list { display: grid; gap: 10px; max-width: 860px; }
.faq {
  border: 1px solid var(--line); background: var(--white); border-radius: 16px; overflow: hidden;
}
.faq button {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 16px 18px; display: flex; justify-content: space-between; gap: 16px;
  font-size: 16px; font-weight: 700;
}
.faq button span { color: var(--violet); font-size: 22px; line-height: 1; }
.faq .ans { display: none; padding: 0 18px 16px; color: var(--muted); }
.faq.open .ans { display: block; }

.cta-band {
  background: var(--navy);
  color: #fff;
  border-radius: 24px;
  padding: 42px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
.cta-band .sub { color: rgba(255,255,255,0.7); }
.cta-band h2 { color: #fff; }

.footer { border-top: 1px solid var(--line); padding: 56px 0 28px; margin-top: 40px; background: var(--white); }
.foot-grid {
  display: grid;
  grid-template-columns: minmax(200px, 1.2fr) repeat(3, minmax(130px, 1fr));
  gap: 32px 28px;
  align-items: start;
}
.foot-brand p {
  margin: 12px 0 0;
  max-width: 260px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.foot-col { min-width: 0; }
.footer h4 {
  margin: 0 0 14px;
  letter-spacing: 0.08em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text);
}
.footer .foot-col a, .footer .foot-brand a.brand { color: var(--muted); }
.footer .foot-col a { display: block; padding: 5px 0; font-size: 14px; line-height: 1.4; }
.footer .foot-col a:hover { color: var(--violet); }
.copy {
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--line);
  color: var(--dim); font-size: 13px;
}

.page-hero { padding: 36px 0 8px; }
.page-hero h1 { font-size: clamp(24px, 3vw, 32px); }
.crumb { color: var(--dim); font-size: 13px; margin-bottom: 10px; }
.crumb a { color: var(--violet); }

.product-hero {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px; align-items: start;
}
.buy-box {
  background: var(--white); border: 1px solid var(--line); border-radius: 24px; padding: 24px;
  position: sticky; top: 96px;
}
.buy-box .price-hero { justify-content: flex-start; gap: 12px; align-items: baseline; }
.buy-box .price-hero strong { font-size: 48px; }
.checks li { padding: 7px 0 7px 26px; position: relative; color: var(--muted); }
.checks li::before {
  content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 700;
}

.prose { color: var(--muted); max-width: 75ch; }
.prose h2, .prose h3 { color: var(--text); }
.prose a { color: var(--violet); text-decoration: underline; }

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 22px; }
.info-list { display: grid; gap: 12px; }
.info {
  background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px;
}
.info b { display: block; margin-bottom: 4px; }
.info a { color: var(--violet); }

form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; }
input, textarea, select {
  width: 100%; background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; padding: 12px 14px; outline: none; margin-bottom: 12px;
}
input:focus, textarea:focus { border-color: var(--violet); }
textarea { min-height: 140px; resize: vertical; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
table { width: 100%; border-collapse: collapse; min-width: 640px; }
th, td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); font-size: 14px; }
th { color: var(--text); font-weight: 700; background: var(--bg); }
td img { height: 48px; width: auto; max-width: 140px; object-fit: contain; background: #fff; border-radius: 8px; padding: 4px; }

.wa-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 9999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.need-help {
  background: #fff; color: #111; border-radius: 999px; padding: 8px 12px 8px 8px;
  display: flex; align-items: center; gap: 8px; box-shadow: 0 12px 30px rgba(18,21,42,0.16);
  font-size: 13px; font-weight: 700; cursor: pointer; border: 0;
}
.need-help i {
  width: 28px; height: 28px; border-radius: 50%; background: var(--wa);
  display: grid; place-items: center; color: #fff;
}
.wa-panel {
  width: min(340px, calc(100vw - 28px));
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  overflow: hidden; box-shadow: 0 20px 50px rgba(18,21,42,0.18); display: none;
}
.wa-panel.open { display: block; animation: rise 0.25s ease; }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.wa-head {
  background: linear-gradient(90deg, #128c7e, #25d366); padding: 14px 16px;
  display: flex; justify-content: space-between; align-items: center; color: #fff;
}
.wa-user { display: flex; gap: 10px; align-items: center; }
.wa-user img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; background: #fff; }
.wa-user b { display: block; font-size: 14px; }
.wa-user span { font-size: 12px; opacity: 0.9; }
.wa-close { background: transparent; border: 0; color: #fff; font-size: 22px; cursor: pointer; }
.wa-body { background: #ece5dd; padding: 16px; min-height: 170px; }
.bubble {
  background: #fff; color: #111; border-radius: 0 14px 14px 14px; padding: 10px 12px;
  font-size: 13.5px; max-width: 92%; box-shadow: 0 1px 1px rgba(0,0,0,0.08);
}
.bubble small { display: block; color: #667; margin-top: 6px; font-size: 11px; }
.wa-foot { padding: 12px; background: #fff; }
.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

@media (max-width: 980px) {
  .hero-grid, .product-hero, .contact-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-brand p { max-width: 420px; }
  .grid, .features-3, .quote-grid, .related { grid-template-columns: 1fr 1fr; }
  .steps, .stats { grid-template-columns: 1fr 1fr; }
  .buy-box { position: static; }
  .nav-panel { display: none; }
  .header.open .nav-panel {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; left: 0; right: 0; top: var(--nav);
    background: #fff; padding: 16px 20px 20px; border-bottom: 1px solid var(--line);
    z-index: 60; width: 100%;
  }
  .header.open .nav-links, .header.open .nav-cta { display: flex; flex-direction: column; width: 100%; }
  .header.open .nav-links a, .header.open .nav-cta .btn { width: 100%; justify-content: center; }
  .menu-btn { display: grid; place-items: center; }
  .nav { position: relative; }
}
@media (max-width: 640px) {
  .wrap { width: min(var(--max), calc(100% - 24px)); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  .grid, .features-3, .quote-grid, .related, .steps, .stats, form .row { grid-template-columns: 1fr; }
  h1 { font-size: 24px; }
  .hero .wrap { padding-top: 40px; padding-bottom: 40px; }
  .cta-band, .hero-panel { padding: 20px; }
  .topbar-inner { justify-content: center; text-align: center; padding: 6px 0; }
}
