/* ═══════════════════════════════════════════════════════════
   LICENCIAS BASTOS — Premium SaaS Design System
   Inspired by: Linear, Stripe, Vercel
   ═══════════════════════════════════════════════════════════ */

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #0f172a;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }
img { max-width: 100%; display: block; }

/* ─── TOKENS ─── */
:root {
  --blue-50:  #eff6ff;
  --blue-100: #dbeafe;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-900: #1e3a8a;

  --indigo-500: #6366f1;
  --indigo-600: #4f46e5;

  --violet-500: #8b5cf6;
  --violet-600: #7c3aed;

  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;

  --amber-400: #fbbf24;
  --amber-500: #f59e0b;

  --rose-500: #f43f5e;

  --teal-500: #14b8a6;

  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;

  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   20px;
  --r-2xl:  24px;
  --r-full: 9999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── REVEAL ANIMATIONS ─── */
.js-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.js-fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
/* Safety net */
.js-fade-up[data-split] { opacity: 1; transform: none; }

/* ─── HERO CSS ENTRANCE (no JS dependency) ─── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-a1 { animation: heroFadeUp 0.7s var(--ease-out) 0.15s both; }
.hero-a2 { animation: heroFadeUp 0.8s var(--ease-out) 0.30s both; }
.hero-a3 { animation: heroFadeUp 0.7s var(--ease-out) 0.50s both; }
.hero-a4 { animation: heroFadeUp 0.7s var(--ease-out) 0.65s both; }
.hero-a5 { animation: heroFadeUp 0.7s var(--ease-out) 0.80s both; }

/* ─── CONTAINER ─── */
.container {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
  padding: 11px 20px;
  line-height: 1;
}
.btn--hero-primary {
  background: var(--blue-600);
  color: #fff;
  padding: 14px 28px;
  font-size: 0.95rem;
  border-radius: var(--r-lg);
  box-shadow: 0 1px 2px rgba(0,0,0,.12), 0 0 0 1px rgba(37,99,235,.3), 0 8px 32px rgba(37,99,235,.35);
}
.btn--hero-primary:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 1px 2px rgba(0,0,0,.12), 0 0 0 1px rgba(37,99,235,.3), 0 14px 40px rgba(37,99,235,.45);
}
.btn--hero-ghost {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
  padding: 14px 24px;
  font-size: 0.95rem;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
}
.btn--hero-ghost:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-2px);
}
.btn--form-submit {
  background: var(--blue-600);
  color: #fff;
  padding: 13px 28px;
  width: 100%;
  justify-content: center;
  border-radius: var(--r-md);
  box-shadow: 0 4px 16px rgba(37,99,235,.3);
}
.btn--form-submit:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(37,99,235,.4);
}
.btn--modal-pay {
  background: var(--blue-600);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--r-md);
  flex: 1;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,99,235,.3);
}
.btn--modal-pay:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
}

/* ─── LABEL TAGS ─── */
.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.label-tag--blue   { background: var(--blue-50);  color: var(--blue-600);   border: 1px solid var(--blue-100); }
.label-tag--indigo { background: #eef2ff;          color: var(--indigo-600); border: 1px solid #c7d2fe; }
.label-tag--violet { background: #f5f3ff;          color: var(--violet-600); border: 1px solid #ddd6fe; }
.label-tag--green  { background: #f0fdf4;          color: var(--green-600);  border: 1px solid #bbf7d0; }
.label-tag--light  { background: rgba(255,255,255,.1); color: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.18); }

/* ─── SECTION WRAPPERS ─── */
.section { padding: 7rem 0; }
.section--white { background: #fff; }
.section--gray  { background: var(--slate-50); }
.section--dark  { background: var(--slate-950); }

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}
.section__title {
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--slate-900);
  margin-bottom: 1rem;
}
.section__title--light { color: #fff; }
.section__sub {
  font-size: 1.05rem;
  color: var(--slate-500);
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════════════════════ */
.topbar {
  background: var(--slate-950);
  padding: 10px 1rem;
  text-align: center;
}
.topbar__inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,.55);
  flex-wrap: wrap;
  justify-content: center;
}
.topbar__inner strong { color: rgba(255,255,255,.85); }
.topbar__icon { color: var(--green-400); font-size: 0.7rem; }
.topbar__dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
}

/* ═══════════════════════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid rgba(0,0,0,.07);
  transition: box-shadow 0.3s;
}
.header.is-scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.08); }

.nav {
  display: flex;
  align-items: center;
  height: 64px;
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
  gap: 2rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__brand-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue-600), var(--indigo-600));
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.88rem;
}
.nav__brand-text { display: flex; flex-direction: column; }
.nav__brand-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.nav__brand-sub {
  font-size: 0.65rem;
  color: var(--slate-400);
  line-height: 1;
  letter-spacing: 0.02em;
}

.nav__menu {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}
.nav__link {
  padding: 7px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-600);
  border-radius: var(--r-sm);
  transition: color 0.15s, background 0.15s;
}
.nav__link:hover { color: var(--slate-900); background: var(--slate-100); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__btn {
  padding: 8px 16px;
  font-size: 0.83rem;
  font-weight: 600;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav__btn--ghost {
  background: transparent;
  color: var(--slate-600);
  border: 1px solid var(--slate-200);
}
.nav__btn--ghost:hover { background: var(--slate-100); color: var(--slate-900); }
.nav__btn--primary {
  background: var(--slate-900);
  color: #fff;
  border: 1px solid var(--slate-900);
}
.nav__btn--primary:hover { background: var(--slate-800); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--slate-700);
  border-radius: 2px;
  transition: all 0.2s;
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__drawer {
  display: none;
  background: #fff;
  border-top: 1px solid var(--slate-200);
  padding: 1.25rem 1.25rem 1.5rem;
}
.nav__drawer.open { display: block; }
.nav__drawer-menu { display: flex; flex-direction: column; gap: 2px; margin-bottom: 1rem; }
.nav__drawer-link {
  display: block;
  padding: 10px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-700);
  border-radius: var(--r-sm);
  transition: background 0.15s;
}
.nav__drawer-link:hover { background: var(--slate-100); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--slate-950);
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 1.25rem 5rem;
}

/* Canvas effects */
.hero__canvas { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.hero__grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 40%, transparent 100%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.hero__glow--a {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(99,102,241,.22) 0%, transparent 65%);
  top: -250px; right: -150px;
}
.hero__glow--b {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,.18) 0%, transparent 65%);
  bottom: -150px; left: -50px;
}
.hero__glow--c {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(20,184,166,.12) 0%, transparent 65%);
  top: 35%; left: 55%;
}

/* Floating nodes */
.hero__node {
  position: absolute;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.35);
  font-size: 0.9rem;
  backdrop-filter: blur(8px);
}
.hero__node--1 { top: 18%; left: 8%; animation: nodeFloat 7s ease-in-out infinite; }
.hero__node--2 { top: 28%; right: 12%; animation: nodeFloat 9s ease-in-out infinite 1.5s; }
.hero__node--3 { bottom: 30%; left: 12%; animation: nodeFloat 8s ease-in-out infinite 3s; }
.hero__node--4 { bottom: 22%; right: 8%; animation: nodeFloat 6s ease-in-out infinite 0.5s; }

@keyframes nodeFloat {
  0%, 100% { transform: translateY(0px); opacity: 0.6; }
  50% { transform: translateY(-12px); opacity: 1; }
}

.hero__body {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.hero__eyebrow { margin-bottom: 2rem; }

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(99,102,241,.12);
  border: 1px solid rgba(99,102,241,.25);
  color: #a5b4fc;
  padding: 7px 18px;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.eyebrow-pill__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-400);
  box-shadow: 0 0 8px var(--green-400);
  flex-shrink: 0;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--green-400); }
  50% { opacity: 0.6; box-shadow: 0 0 3px var(--green-400); }
}

.hero__heading {
  font-size: clamp(2.4rem, 6.5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.75rem;
}
.hero__heading em {
  font-style: normal;
  background: linear-gradient(135deg, #93c5fd 0%, #a5b4fc 40%, #c4b5fd 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__lead {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,.6);
  max-width: 660px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero__lead strong { color: rgba(255,255,255,.88); font-weight: 600; }

.hero__cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-full);
  padding: 10px 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 2px 18px;
  font-size: 0.78rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}
.trust-item__icon { font-size: 0.72rem; }
.trust-item__icon--green  { color: var(--green-400); }
.trust-item__icon--blue   { color: #93c5fd; }
.trust-item__icon--purple { color: #c4b5fd; }
.trust-item__icon--amber  { color: var(--amber-400); }
.trust-sep {
  width: 1px; height: 20px;
  background: rgba(255,255,255,.1);
}

/* ═══════════════════════════════════════════════════════════
   PROOF STRIP
   ═══════════════════════════════════════════════════════════ */
.proof-strip {
  background: var(--slate-900);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 3rem 1.25rem;
}
.proof-strip__inner {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.proof-strip__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.proof-strip__stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 3rem;
}
.proof-stat__num {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
}
.proof-stat__unit {
  font-size: 0.7rem;
  color: rgba(255,255,255,.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.proof-stat__desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,.35);
  margin-top: 4px;
}
.proof-stat__divider {
  width: 1px; height: 48px;
  background: rgba(255,255,255,.1);
}

/* ═══════════════════════════════════════════════════════════
   BENTO TECH CARDS
   ═══════════════════════════════════════════════════════════ */
.feature-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.bento-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--r-2xl);
  padding: 2rem;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.bento-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.09);
  border-color: var(--slate-300);
  transform: translateY(-4px);
}
.bento-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(99,102,241,.04) 0%, transparent 60%);
  pointer-events: none;
}
.bento-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 1.5rem;
}

.bento-card__icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-bottom: 1.25rem;
}
.bento-card--wide .bento-card__icon-wrap { margin-bottom: 0; }
.bento-card__icon-wrap--green  { background: #f0fdf4; color: var(--green-600); }
.bento-card__icon-wrap--blue   { background: var(--blue-50); color: var(--blue-600); }
.bento-card__icon-wrap--purple { background: #f5f3ff; color: var(--violet-600); }

.bento-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.bento-card p {
  font-size: 0.88rem;
  color: var(--slate-500);
  line-height: 1.7;
}

/* Mini UIs inside bento cards */
.bento-card__body h3 { margin-bottom: 0.5rem; }
.bento-card__body p { font-size: 0.85rem; }

.mini-ui--files {
  background: var(--slate-950);
  border-radius: var(--r-lg);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 220px;
}
.mini-file {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,.45);
  padding: 6px 10px;
  border-radius: var(--r-sm);
}
.mini-file i { color: rgba(255,255,255,.3); }
.mini-file--active {
  background: rgba(99,102,241,.2);
  color: #a5b4fc;
  border: 1px solid rgba(99,102,241,.3);
}
.mini-file--active i { color: #a5b4fc; }

.mini-player {
  margin-top: 1.25rem;
  background: var(--slate-900);
  border-radius: var(--r-lg);
  padding: 1rem;
  position: relative;
}
.mini-player__bar {
  height: 4px;
  background: var(--slate-800);
  border-radius: var(--r-full);
  margin-bottom: 0.75rem;
  position: relative;
  overflow: hidden;
}
.mini-player__bar::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 45%;
  background: var(--blue-500);
  border-radius: var(--r-full);
}
.mini-player__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,.4);
  font-size: 0.8rem;
}
.mini-player__play {
  width: 30px; height: 30px;
  background: var(--blue-600);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.7rem;
}
.mini-player__badge {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--green-500);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--r-full);
}

.mini-cert {
  margin-top: 1.25rem;
  background: linear-gradient(135deg, #1e1b4b, #312e81);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.mini-cert__icon { font-size: 2rem; color: var(--amber-400); }
.mini-cert__text { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,.8); }
.mini-cert__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(34,197,94,.2);
  color: var(--green-400);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-full);
  border: 1px solid rgba(34,197,94,.3);
}

/* ═══════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.price-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--r-2xl);
  padding: 2rem 1.75rem;
  position: relative;
  transition: all 0.25s var(--ease-out);
}
.price-card:hover {
  border-color: var(--blue-200, #bfdbfe);
  box-shadow: 0 16px 48px rgba(37,99,235,.12);
  transform: translateY(-6px);
}
.price-card--featured {
  background: linear-gradient(160deg, var(--blue-600) 0%, #4338ca 100%);
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(37,99,235,.35);
  transform: scale(1.03);
  z-index: 1;
}
.price-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 20px 56px rgba(37,99,235,.45);
}
.price-card--gold {
  border-color: rgba(245,158,11,.25);
}
.price-card--gold:hover {
  border-color: var(--amber-400);
  box-shadow: 0 16px 48px rgba(245,158,11,.15);
}

.price-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-500);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--r-full);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(34,197,94,.35);
}

.price-card__saving {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: 1.25rem;
}
.price-card__saving--green { background: #f0fdf4; color: var(--green-600); border: 1px solid #bbf7d0; }
.price-card__saving--white { background: rgba(255,255,255,.18); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.price-card__saving--gold  { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }

.price-card__top { margin-bottom: 1.5rem; }
.price-card__name {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-400);
  margin-bottom: 0.75rem;
}
.price-card--featured .price-card__name { color: rgba(255,255,255,.65); }

.price-card__amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}
.price-card__currency {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate-400);
  margin-right: 2px;
}
.price-card--featured .price-card__currency { color: rgba(255,255,255,.6); }

.price-card__value {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--slate-900);
}
.price-card--featured .price-card__value { color: #fff; }
.price-card--gold .price-card__value { color: var(--slate-900); }

.price-card__qty {
  font-size: 0.82rem;
  color: var(--slate-400);
  margin-top: 6px;
}
.price-card--featured .price-card__qty { color: rgba(255,255,255,.6); }

.price-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
}
.price-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--slate-600);
}
.price-card--featured .price-card__features li { color: rgba(255,255,255,.8); }
.price-card__features li i {
  width: 18px; height: 18px;
  background: #f0fdf4;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-600);
  font-size: 0.6rem;
  flex-shrink: 0;
}
.price-card--featured .price-card__features li i { background: rgba(255,255,255,.2); color: #fff; }

.price-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  margin-bottom: 0.75rem;
}
.price-card__btn--outline {
  background: transparent;
  color: var(--blue-600);
  border: 1.5px solid var(--blue-200, #bfdbfe);
}
.price-card__btn--outline:hover {
  background: var(--blue-600);
  color: #fff;
  border-color: var(--blue-600);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,.3);
}
.price-card__btn--white {
  background: #fff;
  color: var(--blue-600);
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.price-card__btn--white:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
}
.price-card__btn--gold {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(245,158,11,.35);
}
.price-card__btn--gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245,158,11,.5);
}

.price-card__note {
  font-size: 0.72rem;
  color: var(--slate-400);
  text-align: center;
}
.price-card--featured .price-card__note { color: rgba(255,255,255,.5); }

/* Terms notice */
.terms-notice {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--r-xl);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.terms-notice__icon {
  font-size: 1.2rem;
  color: var(--amber-500);
  flex-shrink: 0;
  margin-top: 2px;
}
.terms-notice p {
  font-size: 0.88rem;
  color: #78350f;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════ */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
}
.step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-2xl);
  transition: all 0.3s var(--ease-out);
}
.step:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(99,102,241,.3);
  transform: translateY(-6px);
}
.step__num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,.05);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}
.step__icon {
  font-size: 1.5rem;
  color: #93c5fd;
  margin-bottom: 1rem;
}
.step__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.step__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
}
.step__connector {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 1rem;
  flex-shrink: 0;
}
.step__line {
  width: 32px; height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
}
.step__arrow { color: rgba(255,255,255,.2); font-size: 0.75rem; }

/* ═══════════════════════════════════════════════════════════
   MODULES
   ═══════════════════════════════════════════════════════════ */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.module-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--r-2xl);
  padding: 2rem;
  transition: all 0.25s var(--ease-out);
}
.module-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.09);
  border-color: var(--slate-300);
  transform: translateY(-4px);
}

.module-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.module-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.module-card__icon--teal   { background: #f0fdfa; color: var(--teal-500); }
.module-card__icon--rose   { background: #fff1f2; color: var(--rose-500); }
.module-card__icon--amber  { background: #fffbeb; color: var(--amber-500); }
.module-card__icon--indigo { background: #eef2ff; color: var(--indigo-600); }

.module-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.module-card__code {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-400);
  background: var(--slate-100);
  padding: 2px 8px;
  border-radius: var(--r-full);
}
.module-card__status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-600);
}
.module-card__status i { font-size: 0.45rem; color: var(--green-500); }

.module-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.module-card__desc {
  font-size: 0.87rem;
  color: var(--slate-500);
  line-height: 1.72;
  margin-bottom: 1.25rem;
}

.module-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1.5rem;
}
.module-card__tags li {
  padding: 3px 10px;
  background: var(--slate-100);
  color: var(--slate-600);
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: var(--r-full);
  letter-spacing: 0.01em;
}

.module-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-600);
  transition: gap 0.2s;
}
.module-card__cta:hover { gap: 12px; }
.module-card__cta i { font-size: 0.75rem; }

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2rem;
  align-items: start;
}

.form-surface {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.form-surface__header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-200);
}
.form-surface__dot {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.form-surface__dot--red    { background: #ff5f57; }
.form-surface__dot--yellow { background: #febc2e; }
.form-surface__dot--green  { background: #28c840; }
.form-surface__title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate-400);
  margin-left: 8px;
}

form { padding: 2rem; display: flex; flex-direction: column; gap: 1.1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--slate-700);
  letter-spacing: 0.01em;
}
.form-field label span { color: var(--blue-500); }

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 13px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--r-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--slate-800);
  background: #fff;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: auto;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}
.form-field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.form-hint {
  font-size: 0.74rem;
  color: var(--slate-400);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
  padding: 0 2rem 1.5rem;
  margin-top: -0.5rem;
}
.form-hint i { margin-top: 2px; flex-shrink: 0; }

/* Contact channels */
.contact-channels { display: flex; flex-direction: column; gap: 1.5rem; }

.channel-section { display: flex; flex-direction: column; gap: 8px; }
.channel-section__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-400);
  padding: 0 4px;
  margin-bottom: 4px;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  transition: all 0.2s;
  cursor: pointer;
}
a.channel-item:hover {
  border-color: var(--slate-300);
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
  transform: translateX(4px);
}
.channel-item--static { cursor: default; }

.channel-item__icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.channel-item__icon--wa    { background: #dcfce7; color: #16a34a; }
.channel-item__icon--email { background: var(--blue-50); color: var(--blue-600); }
.channel-item__icon--loc   { background: var(--slate-100); color: var(--slate-500); }

.channel-item__body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
}
.channel-item__body strong { font-size: 0.82rem; color: var(--slate-800); font-weight: 600; }
.channel-item__body span   { font-size: 0.8rem; color: var(--slate-500); }

.channel-item__ext { font-size: 0.68rem; color: var(--slate-300); }

.channel-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--slate-900);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  color: #fff;
}
.channel-badge__icon {
  font-size: 1.5rem;
  color: #93c5fd;
  flex-shrink: 0;
  margin-top: 2px;
}
.channel-badge__title { font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.channel-badge__sub   { font-size: 0.8rem; color: rgba(255,255,255,.5); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   FOOTER — POLICIES
   ═══════════════════════════════════════════════════════════ */
.policies-section {
  background: var(--slate-950);
  padding: 6rem 1.25rem;
  position: relative;
}
.policies-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

.policies-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.policies-header__icon {
  font-size: 2rem;
  color: #818cf8;
  display: block;
  margin-bottom: 1.25rem;
}
.policies-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.policies-header p {
  font-size: 0.9rem;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  max-width: 680px;
  margin-inline: auto;
}
.policies-header p strong { color: rgba(255,255,255,.75); }

.policies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.policy-block {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-2xl);
  padding: 2rem;
  position: relative;
  transition: background 0.25s, border-color 0.25s;
}
.policy-block:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(99,102,241,.25);
}
.policy-block__num {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,.04);
  line-height: 1;
  letter-spacing: -0.04em;
}
.policy-block__icon {
  width: 46px; height: 46px;
  background: rgba(99,102,241,.15);
  border: 1px solid rgba(99,102,241,.2);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: #a5b4fc;
  margin-bottom: 1.25rem;
}
.policy-block h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.policy-block p {
  font-size: 0.84rem;
  color: rgba(255,255,255,.5);
  line-height: 1.78;
  margin-bottom: 1.5rem;
}
.policy-block p strong { color: rgba(255,255,255,.78); font-weight: 600; }

.policy-block__contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,.35);
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.25rem;
}
.policy-block__contact i { color: #818cf8; }
.policy-block__contact a { color: #93c5fd; transition: color 0.15s; }
.policy-block__contact a:hover { color: #bfdbfe; text-decoration: underline; }

/* Footer bottom */
.footer-bottom {
  background: #000;
  padding: 3rem 1.25rem 2rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.footer-bottom__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.footer-bottom__logo i { color: var(--blue-500); }
.footer-bottom__brand p {
  font-size: 0.75rem;
  color: rgba(255,255,255,.3);
  line-height: 1.7;
}
.footer-bottom__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: flex-start;
  padding-top: 4px;
}
.footer-bottom__nav a {
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
  transition: color 0.15s;
}
.footer-bottom__nav a:hover { color: rgba(255,255,255,.8); }
.footer-bottom__badges { display: flex; gap: 8px; padding-top: 4px; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-full);
  font-size: 0.75rem;
  color: rgba(255,255,255,.45);
}
.footer-badge i { color: var(--green-400); }
.footer-badge:last-child i { color: #93c5fd; }

.footer-bottom__copy {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom__copy p {
  font-size: 0.75rem;
  color: rgba(255,255,255,.25);
}
.footer-legal-id {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem !important;
  color: rgba(255,255,255,.5) !important;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  padding: 10px 18px;
  margin-bottom: 1rem;
  line-height: 1.6;
  max-width: 720px;
  margin-inline: auto;
  text-align: left;
}
.footer-legal-id i {
  color: #93c5fd;
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 0.8rem;
}
.footer-legal-id strong {
  color: rgba(255,255,255,.75);
}

/* ═══════════════════════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: #fff;
  border-radius: var(--r-2xl);
  padding: 2.5rem;
  max-width: 500px;
  width: 100%;
  position: relative;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.35s var(--ease-spring);
  box-shadow: 0 32px 80px rgba(0,0,0,.35);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal__x {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 30px; height: 30px;
  background: var(--slate-100);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--slate-600);
  transition: background 0.15s;
}
.modal__x:hover { background: var(--slate-200); }

.modal__seal {
  width: 64px; height: 64px;
  margin: 0 auto 1.5rem;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.modal__seal-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-100), #e0e7ff);
}
.modal__seal-icon {
  position: relative;
  font-size: 1.6rem;
  color: var(--blue-600);
  z-index: 1;
}

.modal__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--slate-900);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.modal__plan {
  text-align: center;
  font-size: 0.85rem;
  color: var(--slate-500);
  margin-bottom: 1.5rem;
}
.modal__callout {
  display: flex;
  gap: 12px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.modal__callout i { color: var(--blue-500); font-size: 0.95rem; flex-shrink: 0; margin-top: 2px; }
.modal__callout p { font-size: 0.88rem; color: #1e40af; line-height: 1.65; }

.modal__steps {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 2rem;
}
.modal__steps li {
  font-size: 0.85rem;
  color: var(--slate-600);
  line-height: 1.6;
}
.modal__steps li strong { color: var(--slate-800); }

.modal__footer {
  display: flex;
  gap: 10px;
  align-items: center;
}
.modal__cancel {
  flex: 0 0 auto;
  padding: 12px 20px;
  background: transparent;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--r-md);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-600);
  cursor: pointer;
  transition: all 0.15s;
}
.modal__cancel:hover { background: var(--slate-100); }

.modal__trust {
  margin-top: 1rem;
  font-size: 0.73rem;
  color: var(--slate-400);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.modal__trust i { color: var(--green-500); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-6px); }
  .feature-bento { grid-template-columns: 1fr 1fr; }
  .bento-card--wide { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
  .policies-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; align-items: stretch; }
  .step { max-width: none; }
  .step__connector { flex-direction: row; padding: 0.5rem 2rem; }
  .step__connector .step__arrow { transform: rotate(90deg); }
}

@media (max-width: 768px) {
  .nav__menu, .nav__actions { display: none; }
  .nav__hamburger { display: flex; }

  .hero__node { display: none; }
  .hero__heading { font-size: 2.2rem; }

  .pricing-grid { grid-template-columns: 1fr; }
  .feature-bento { grid-template-columns: 1fr; }
  .bento-card--wide { grid-template-columns: 1fr; }

  .footer-bottom__inner { flex-direction: column; gap: 1.5rem; }
  .proof-strip__stats { gap: 0; }
  .proof-stat { padding: 0 1.5rem; }
}

@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
  .hero__trust { flex-direction: column; border-radius: var(--r-2xl); }
  .trust-sep { width: 80%; height: 1px; }
  .topbar__inner { font-size: 0.7rem; }
  .modal { padding: 2rem 1.5rem; }
  .modal__footer { flex-direction: column-reverse; }
  .modal__cancel, .btn--modal-pay { width: 100%; justify-content: center; }
}
