/* ============ Design tokens ============ */
:root {
  --bg: #070912;
  --bg-soft: #0d1120;
  --bg-card: #11162a;
  --bg-card-2: #141a33;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #e9ecf5;
  --muted: #9aa3bd;
  --muted-2: #6f789a;
  --brand: #7c5cff;
  --brand-2: #22d3ee;
  --brand-3: #f472b6;
  --accent: #34d399;
  --tele: #29a9eb;
  --grad: linear-gradient(120deg, #7c5cff 0%, #22d3ee 100%);
  --grad-warm: linear-gradient(120deg, #f472b6 0%, #7c5cff 100%);
  --shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 0 1px var(--border), 0 24px 70px -30px rgba(124, 92, 255, 0.55);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1180px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: "Space Grotesk", var(--font);
}

/* ============ Reset ============ */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ============ Layout helpers ============ */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 22px;
}
.container--narrow { max-width: 820px; }

.section { padding: 96px 0; position: relative; }
.section--alt { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.02) 20%, rgba(255,255,255,0.02) 80%, transparent); }

.section__head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 12px 0 14px;
}
.section__head p { color: var(--muted); font-size: 1.05rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-2);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.06);
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============ Background orbs ============ */
.bg-orbs { position: fixed; inset: 0; z-index: -1; overflow: hidden; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.orb-1 { width: 520px; height: 520px; background: #7c5cff; top: -180px; left: -120px; }
.orb-2 { width: 480px; height: 480px; background: #22d3ee; top: 20%; right: -160px; opacity: 0.35; }
.orb-3 { width: 460px; height: 460px; background: #f472b6; bottom: -160px; left: 30%; opacity: 0.28; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 13px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--primary {
  background: var(--grad);
  color: #0a0d18;
  box-shadow: 0 12px 30px -10px rgba(124, 92, 255, 0.6);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(124, 92, 255, 0.8); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-strong);
  color: var(--text);
}
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--brand-2); background: rgba(34, 211, 238, 0.08); }
.btn--tele {
  background: rgba(41, 169, 235, 0.12);
  border-color: rgba(41, 169, 235, 0.5);
  color: #bfe6fb;
}
.btn--tele:hover { transform: translateY(-2px); background: rgba(41, 169, 235, 0.2); border-color: var(--tele); }
.btn--block { width: 100%; }

/* ============ Navbar ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 9, 18, 0.72);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; }
.brand--right { flex-direction: row-reverse; }
.brand--top { flex-direction: column; gap: 5px; text-align: center; }
.brand__logo { font-size: 1.4rem; filter: drop-shadow(0 4px 10px rgba(124,92,255,0.5)); line-height: 1; display: inline-block; }
.brand__logo--img { width: 36px; height: 36px; border-radius: 9px; object-fit: contain; filter: none; }

/* Animasi logo (jalan meski PNG statis) */
.logo-anim { transform-origin: center; will-change: transform; }
.logo-anim--float { animation: logoFloat 2.6s ease-in-out infinite; }
.logo-anim--pulse { animation: logoPulse 1.8s ease-in-out infinite; }
.logo-anim--spin { animation: logoSpin 4.5s linear infinite; }
.logo-anim--bounce { animation: logoBounce 1.8s ease-in-out infinite; }
.logo-anim--swing { animation: logoSwing 2.4s ease-in-out infinite; }
@keyframes logoFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes logoPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.14); } }
@keyframes logoSpin { to { transform: rotate(360deg); } }
@keyframes logoBounce { 0%,100% { transform: translateY(0);} 25% { transform: translateY(-6px);} 50% { transform: translateY(0);} 60% { transform: translateY(-3px);} }
@keyframes logoSwing { 0%,100% { transform: rotate(-9deg);} 50% { transform: rotate(9deg);} }
@media (prefers-reduced-motion: reduce) { .logo-anim { animation: none !important; } }
.brand__name { color: var(--text); }
.brand__name span { color: var(--brand-2); }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { color: var(--muted); font-weight: 500; font-size: 0.96rem; transition: color 0.2s ease; }
.nav__links a:hover { color: var(--text); }
.nav__cta {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  padding: 9px 18px;
  border-radius: 10px;
  color: var(--text) !important;
}
.nav__cta:hover { border-color: var(--brand-2); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ Hero ============ */
.hero { padding: 150px 0 80px; text-align: center; position: relative; }
.hero__inner { display: flex; flex-direction: column; align-items: center; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.86rem;
  color: var(--muted);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 26px;
}
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.2vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  max-width: 15ch;
}
.hero__sub { color: var(--muted); font-size: clamp(1rem, 2.2vw, 1.2rem); max-width: 56ch; margin: 22px auto 0; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 34px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 64px;
  width: 100%;
  max-width: 760px;
}
.stat {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 14px;
}
.stat__num { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__label { color: var(--muted); font-size: 0.85rem; margin-top: 4px; }

/* ============ Products grid ============ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow-glow); }
.card:hover::before { opacity: 1; }

.card.card--featured { border-color: rgba(124, 92, 255, 0.5); box-shadow: 0 24px 70px -34px rgba(124, 92, 255, 0.7); }
.card.card--featured::before { opacity: 1; }

.card__ribbon {
  position: absolute;
  top: 16px; right: -34px;
  transform: rotate(45deg);
  background: var(--grad-warm);
  color: #0a0d18;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 42px;
  text-transform: uppercase;
}

.card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  font-size: 1.5rem;
  border-radius: 14px;
  background: rgba(124, 92, 255, 0.12);
  border: 1px solid rgba(124, 92, 255, 0.25);
  margin-bottom: 16px;
  overflow: hidden;
}
.card__icon-img { width: 100%; height: 100%; object-fit: contain; }
.card__title { font-family: var(--font-display); font-size: 1.22rem; font-weight: 600; letter-spacing: -0.01em; }
.card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brand-2);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.2);
  padding: 3px 10px;
  border-radius: 999px;
  margin-top: 10px;
}
.card__desc { color: var(--muted); font-size: 0.94rem; margin-top: 12px; }

.card__price { display: flex; align-items: baseline; gap: 6px; margin: 18px 0 6px; flex-wrap: wrap; }
.card__price .amount { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; }
.card__price .per { color: var(--muted); font-size: 0.9rem; }

.card__list { list-style: none; margin: 14px 0 20px; display: grid; gap: 9px; }
.card__list li { display: flex; gap: 9px; font-size: 0.9rem; color: var(--muted); }
.card__list li::before { content: "✓"; color: var(--accent); font-weight: 700; }

.card__foot { margin-top: auto; }
.card--clickable { cursor: pointer; }
.card--clickable:focus-visible { outline: 2px solid var(--brand-2); outline-offset: 3px; }
.card__detail {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-2);
  margin-bottom: 12px;
  transition: transform 0.2s ease;
}
.card--clickable:hover .card__detail { transform: translateX(3px); }

/* ============ Modal detail ============ */
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__overlay { position: absolute; inset: 0; background: rgba(4, 6, 14, 0.72); backdrop-filter: blur(6px); animation: fadeIn 0.2s ease; }
.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(180deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  box-shadow: var(--shadow);
  animation: modalPop 0.25s cubic-bezier(0.2, 0.8, 0.3, 1);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalPop { from { opacity: 0; transform: translateY(18px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(10, 13, 24, 0.6); border: 1px solid var(--border-strong); color: var(--text);
  font-size: 1rem; display: grid; place-items: center; transition: background 0.2s ease, border-color 0.2s ease;
}
.modal__close:hover { background: rgba(10, 13, 24, 0.9); border-color: var(--brand-2); }

.modal__media { height: 220px; overflow: hidden; border-radius: 22px 22px 0 0; background: #0a0d18; }
.modal__media img { width: 100%; height: 100%; object-fit: cover; }
.modal__media--ph {
  display: grid; place-items: center;
  background: radial-gradient(120% 120% at 50% 0%, rgba(124,92,255,0.35), transparent 60%), linear-gradient(120deg, #1a1140, #0c1830);
}
.modal__media--ph span { font-size: 4.5rem; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5)); }
.modal__media--ph img { width: 92px; height: 92px; object-fit: contain; }

/* Galeri gambar bot */
.modal__gallery { background: #0a0d18; border-radius: 22px 22px 0 0; overflow: hidden; }
.gallery__main { position: relative; height: 260px; background: #06080f; }
.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* jaga rasio asli, tidak kepotong */
  display: block;
  cursor: zoom-in;
  padding: 10px;
}
.gallery__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(7, 9, 18, 0.55); border: 1px solid var(--border-strong); color: #fff;
  font-size: 1.5rem; line-height: 1; display: grid; place-items: center; cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.gallery__nav:hover { background: rgba(7, 9, 18, 0.9); border-color: var(--brand-2); }
.gallery__nav--prev { left: 12px; }
.gallery__nav--next { right: 12px; }
.gallery__thumbs { display: flex; gap: 8px; padding: 12px 16px; overflow-x: auto; }
.gallery__thumb {
  flex: 0 0 auto; width: 64px; height: 46px; border-radius: 8px; overflow: hidden;
  border: 2px solid transparent; background: none; padding: 0; cursor: pointer; opacity: 0.55;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.gallery__thumb:hover { opacity: 0.85; }
.gallery__thumb.active { border-color: var(--brand-2); opacity: 1; }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Viewer full-size saat gambar diklik */
.img-viewer {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 20px;
}
.img-viewer[hidden] { display: none; }
.img-viewer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 12, 0.86);
  backdrop-filter: blur(6px);
}
.img-viewer__img {
  position: relative;
  z-index: 1;
  max-width: min(95vw, 1400px);
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.75);
  background: #04060e;
}
.img-viewer__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: rgba(10, 13, 24, 0.72);
  color: #fff;
  font-size: 1rem;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.modal__content { padding: 24px 26px 26px; }
.modal__title { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: -0.01em; margin: 10px 0 6px; }
.modal__price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.modal__price span { font-size: 0.85rem; color: var(--muted); -webkit-text-fill-color: var(--muted); }
.modal__desc { color: var(--muted); margin-top: 12px; }
.modal__section { margin-top: 22px; }
.modal__section h4 { font-family: var(--font-display); font-size: 1.02rem; margin-bottom: 14px; }

/* Flow timeline */
.flow { list-style: none; display: grid; gap: 0; counter-reset: flow; }
.flow__item { position: relative; display: flex; gap: 14px; padding-bottom: 18px; }
.flow__item:last-child { padding-bottom: 0; }
.flow__num {
  counter-increment: flow;
  position: relative; z-index: 1; flex: 0 0 auto;
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad); color: #0a0d18; font-weight: 700; font-size: 0.85rem; font-family: var(--font-display);
}
.flow__num::before { content: counter(flow); }
.flow__item:not(:last-child)::after {
  content: ""; position: absolute; left: 14px; top: 30px; bottom: 0;
  width: 2px; background: linear-gradient(var(--brand), transparent);
}
.flow__text { color: var(--muted); padding-top: 4px; font-size: 0.95rem; }

.modal__feats { list-style: none; display: grid; gap: 9px; }
.modal__feats li { display: flex; gap: 9px; color: var(--muted); font-size: 0.94rem; }
.modal__feats li::before { content: "✓"; color: var(--accent); font-weight: 700; }

.modal__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.modal__actions .btn { flex: 1; min-width: 160px; }

/* ============ Features ============ */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.feature {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.feature:hover { transform: translateY(-4px); border-color: var(--border-strong); background: rgba(255, 255, 255, 0.035); }
.feature__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
}
.feature__icon-inner {
  display: inline-block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.feature h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 0.94rem; }

.wa-ico {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 24px;
  line-height: 1;
}

/* ============ Steps ============ */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.step {
  position: relative;
  background: linear-gradient(180deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.step__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.step h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ============ FAQ ============ */
.faq { display: grid; gap: 14px; }
.faq__item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 20px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.faq__item[open] { border-color: var(--border-strong); background: rgba(255, 255, 255, 0.035); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  padding: 16px 30px 16px 0;
  position: relative;
  font-size: 1.02rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--brand-2);
  transition: transform 0.25s ease;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { color: var(--muted); padding-bottom: 18px; font-size: 0.96rem; }

/* ============ CTA ============ */
.cta { padding: 80px 0 100px; }
.cta__card {
  text-align: center;
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(124, 92, 255, 0.22), transparent 60%),
    linear-gradient(180deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--border-strong);
  border-radius: 26px;
  padding: 60px 30px;
  box-shadow: var(--shadow);
}
.cta__card h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 4vw, 2.6rem); letter-spacing: -0.02em; }
.cta__card p { color: var(--muted); margin: 12px auto 0; max-width: 46ch; font-size: 1.05rem; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* ============ Footer ============ */
.footer { border-top: 1px solid var(--border); padding-top: 56px; margin-top: 20px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 40px; }
.footer__brand p { color: var(--muted); font-size: 0.92rem; margin-top: 14px; max-width: 34ch; }
.footer__col h4 { font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 14px; }
.footer__col a { display: block; color: var(--muted); font-size: 0.9rem; padding: 5px 0; transition: color 0.2s ease; }
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding: 20px 22px;
  color: var(--muted-2); font-size: 0.85rem;
}

/* ============ Floating WhatsApp ============ */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #05340f;
  box-shadow: 0 14px 34px -8px rgba(37, 211, 102, 0.7);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: floaty 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 18px 44px -8px rgba(37, 211, 102, 0.9); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ============ Reveal animation ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============ Responsive ============ */
@media (max-width: 860px) {
  .nav__links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 22px 26px;
    background: rgba(9, 12, 24, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-140%);
    transition: transform 0.35s ease;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 12px 4px; font-size: 1.02rem; }
  .nav__cta { text-align: center; margin-top: 6px; }
  .nav__toggle { display: flex; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .section { padding: 70px 0; }
  .hero { padding: 128px 0 60px; }
  .footer__inner { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero__actions, .cta__actions { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
