
:root {
  --text: #eef2ff;
  --muted: #b9c2e3;
  --accent: #41d1ff;
  --accent-2: #7c5cff;
  --ok: #25D366;
  --danger: #ff6b6b;
  --shadow: 0 20px 60px rgba(0,0,0,.28);
  --radius: 20px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #09101f 0%, #0d1430 100%);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
.container { width: min(100% - 32px, var(--max)); margin: 0 auto; }
.nav {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(8,13,27,.76);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.brand { font-weight: 800; letter-spacing: .2px; }
.brand span { color: var(--accent); }
.nav-links { display: flex; gap: 20px; color: var(--muted); font-size: 14px; flex-wrap: wrap; }
.topbar {
  background: linear-gradient(90deg, rgba(255,107,107,.15), rgba(65,209,255,.15));
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #fff;
  font-size: 14px;
}
.topbar-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 18px; border-radius: 14px; font-weight: 700;
  transition: .2s ease; border: 1px solid transparent; cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; }
.btn-secondary { border-color: rgba(255,255,255,.14); color: var(--text); background: transparent; }
.btn-wa { background: var(--ok); color: #092515; }
.hero {
  padding: 72px 0 46px;
  background:
    radial-gradient(circle at 10% 0%, rgba(65,209,255,.15), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(124,92,255,.18), transparent 30%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 26px; align-items: center;
}
.eyebrow {
  display: inline-flex; gap: 8px; align-items: center;
  background: rgba(35,196,131,.12); color: #9ae7c6;
  border: 1px solid rgba(35,196,131,.25);
  padding: 8px 12px; border-radius: 999px; font-size: 13px; font-weight: 700;
}
h1 { font-size: clamp(34px, 6vw, 64px); line-height: 1.02; margin: 18px 0 14px; }
h2 { font-size: clamp(26px, 3vw, 40px); margin: 0 0 10px; }
.hero p, .section-head p, .service p, .package p, .step p, .faq-item p, .contact-list span, .case p, .trust p, .micro p, .testimonial p { color: var(--muted); }
.hero p { font-size: 18px; max-width: 760px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.hero-card, .card {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.hero-card { padding: 26px; }
.hero-card h3, .contact-box h3 { margin-top: 0; }
.stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 18px; }
.stat {
  padding: 18px; border-radius: 16px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}
.stat strong { display: block; font-size: 24px; margin-bottom: 6px; }
section { padding: 34px 0; }
.section-head { margin-bottom: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.service, .package, .step, .faq-item, .case, .trust, .micro, .testimonial { padding: 22px; }
.service h3, .package h3, .step h3, .case h3, .trust h3, .micro h3, .testimonial h3 { margin-top: 0; }
ul { padding-left: 18px; margin: 14px 0 0; }
li { margin: 7px 0; }
.tag {
  display: inline-flex; padding: 7px 10px; border-radius: 999px; font-size: 12px; font-weight: 800;
  background: rgba(65,209,255,.12); color: #8fe5ff; border: 1px solid rgba(65,209,255,.2);
}
.price { font-size: 30px; font-weight: 800; margin: 16px 0 8px; }
.cta-box {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 22px; align-items: stretch;
  padding: 26px;
}
.contact-box { padding: 24px; }
.contact-list { display: grid; gap: 10px; margin-top: 16px; }
.contact-list div,
.form-row input,
.form-row textarea,
.form-row select {
  padding: 14px; border-radius: 14px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  color: var(--text);
}
.form-row input,
.form-row textarea,
.form-row select { width: 100%; font: inherit; }
.form-row textarea { min-height: 140px; resize: vertical; }
.form-grid { display: grid; gap: 12px; }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.form-note { margin-top: 10px; color: var(--muted); font-size: 14px; }
.case-meta {
  display: inline-flex; padding: 6px 10px; border-radius: 999px; font-size: 12px; font-weight: 700;
  background: rgba(124,92,255,.18); color: #cfc0ff;
}
.trust strong, .testimonial strong { display: block; font-size: 18px; margin-bottom: 6px; }
.faq { display: grid; gap: 14px; }
.faq-item summary { cursor: pointer; font-weight: 700; }
.footer { padding: 26px 0 48px; color: var(--muted); font-size: 14px; }
.floating-wa {
  position: fixed; right: 18px; bottom: 18px; z-index: 50;
  background: var(--ok); color: #092515; box-shadow: var(--shadow);
  border-radius: 999px; padding: 14px 18px; font-weight: 900;
}
.page-hero { padding: 46px 0 22px; }
.breadcrumbs { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.highlight {
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  background: rgba(65,209,255,.08);
  border-radius: 0 14px 14px 0;
}
.badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.mini-badge {
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: #dce4ff;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.campaign-strip {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,107,107,.08);
  border: 1px solid rgba(255,107,107,.2);
}
@media (max-width: 980px) {
  .hero-grid, .cta-box, .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero { padding-top: 42px; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 20px, var(--max)); }
  .hero { padding: 34px 0 26px; }
  h1 { font-size: 34px; }
  .hero p { font-size: 16px; }
  .hero-card, .card, .service, .package, .step, .faq-item, .contact-box, .cta-box, .case, .trust, .micro, .testimonial { padding: 18px; }
  .stats { grid-template-columns: 1fr; }
  .floating-wa {
    right: 10px;
    bottom: 10px;
    padding: 12px 14px;
    font-size: 14px;
    max-width: calc(100vw - 20px);
  }
}
