/* =============================================
   CREAWEBEXPRESS — ZAIONN-INSPIRED REDESIGN
   Dark Fintech · Purple/Cyan · Premium SaaS
   ============================================= */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  /* Core backgrounds */
  --bg:        #08070E;
  --bg-2:      #0D0B19;
  --bg-3:      #111028;
  --bg-card:   rgba(255,255,255,0.04);
  --bg-card-h: rgba(255,255,255,0.07);

  /* Brand palette */
  --purple:    #7C5CFC;
  --purple-2:  #9B7BFF;
  --purple-3:  rgba(124,92,252,0.15);
  --cyan:      #00E5FF;
  --cyan-2:    rgba(0,229,255,0.12);
  --pink:      #FF3CAC;
  --amber:     #FFB800;
  --green:     #00E5A0;
  --red:       #FF4757;

  /* Gradients */
  --grad:          linear-gradient(135deg, #7C5CFC 0%, #00E5FF 100%);
  --grad-purple:   linear-gradient(135deg, #7C5CFC 0%, #FF3CAC 100%);
  --grad-warm:     linear-gradient(135deg, #FFB800 0%, #FF6B35 100%);
  --grad-dark:     linear-gradient(135deg, #0D0B19 0%, #111028 100%);
  --grad-feat:     linear-gradient(135deg, rgba(124,92,252,0.18) 0%, rgba(0,229,255,0.06) 100%);

  /* Text */
  --t1: #FFFFFF;
  --t2: #9BA3C0;
  --t3: #4B5470;

  /* Borders */
  --border:        rgba(255,255,255,0.07);
  --border-purple: rgba(124,92,252,0.35);
  --border-cyan:   rgba(0,229,255,0.25);

  /* Spacing */
  --sp-xs: 8px;  --sp-sm: 16px;
  --sp-md: 24px; --sp-lg: 40px;
  --sp-xl: 64px; --sp-2xl: 100px;

  /* Radius */
  --r-sm: 8px; --r-md: 14px;
  --r-lg: 20px; --r-xl: 28px;

  /* Easing */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; /* iOS Safari fix */
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--t1);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
}

img { max-width: 100%; display: block; }
a { color: var(--purple-2); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--t1); }
button { cursor: pointer; border: none; font-family: 'Inter', sans-serif; }
input, select, textarea { font-family: 'Inter', sans-serif; }
::selection { background: rgba(124,92,252,0.35); color: #fff; }

/* Mono numbers */
.mono { font-family: 'JetBrains Mono', monospace; font-weight: 700; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--purple), var(--cyan));
  border-radius: 2px;
}

/* ── RESPONSIVE BUTTON TEXT ── */
.btn-text-short { display: none; }
.btn-text-full  { display: inline; }
@media (max-width: 480px) {
  .btn-text-short { display: inline; }
  .btn-text-full  { display: none; }
}

/* ── NOISE OVERLAY ── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .4;
}

/* ── GRADIENT BORDER UTILITY ── */
.grad-border {
  background: linear-gradient(var(--bg-2), var(--bg-2)) padding-box,
              var(--grad) border-box;
  border: 1px solid transparent;
}
.grad-border-feat {
  background: var(--grad-feat) padding-box,
              var(--grad) border-box;
  border: 1px solid transparent;
}

/* ── CONTAINER ── */
.container { width: min(1200px, 92vw); margin: 0 auto; }

/* ── UTILITIES ── */
.text-purple  { color: var(--purple-2); }
.text-cyan    { color: var(--cyan); }
.text-amber   { color: var(--amber); }
.text-gradient {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-warm {
  background: var(--grad-warm);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BADGE ── */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--purple-3);
  color: var(--purple-2);
  border: 1px solid rgba(124,92,252,0.25);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: .73rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
}
.section-tag {
  display: inline-block;
  background: rgba(0,229,255,0.08);
  color: var(--cyan);
  border: 1px solid rgba(0,229,255,0.18);
  padding: 5px 16px; border-radius: 999px;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 18px;
}

/* ── PULSE DOT ── */
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  display: inline-block;
  animation: pdot 2s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes pdot {
  0%,100% { transform: scale(1);   opacity: 1; }
  50%      { transform: scale(1.8); opacity: 0.4; }
}

/* ═══════════════════════════════
   BUTTONS
   ═══════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 28px; border-radius: var(--r-md);
  font-weight: 700; font-size: .95rem;
  transition: all .3s var(--ease);
  white-space: nowrap; position: relative; overflow: hidden;
}

/* Primary — gradient purple→cyan */
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 24px rgba(124,92,252,0.4);
}
.btn-primary::after {
  content: ''; position: absolute;
  top: 0; left: 0; width: 55%; height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent);
  transform: skewX(-20deg) translateX(-200%);
  animation: shimmer 3.5s ease-in-out infinite 1s;
}
@keyframes shimmer { 0%{transform:skewX(-20deg) translateX(-200%)} 40%,100%{transform:skewX(-20deg) translateX(300%)} }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(124,92,252,0.55);
  color: #fff;
}

/* Ghost */
.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--t1);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--border-purple);
  color: var(--purple-2);
  background: var(--purple-3);
  transform: translateY(-2px);
}
.btn-wa:hover {
  border-color: #25D366 !important;
  color: #25D366 !important;
  background: rgba(37,211,102,0.08) !important;
  transform: translateY(-2px);
}

/* Outline purple */
.btn-outline {
  background: transparent;
  color: var(--purple-2);
  border: 1.5px solid rgba(124,92,252,0.4);
}
.btn-outline:hover { background: var(--purple-3); }

/* Amber */
.btn-amber {
  background: var(--grad-warm);
  color: #000; font-weight: 800;
  box-shadow: 0 4px 24px rgba(255,184,0,0.3);
}
.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,184,0,0.45);
  color: #000;
}

/* Green */
.btn-green-g {
  background: linear-gradient(135deg,#00E5A0,#00B4D8);
  color: #000; font-weight: 800;
  box-shadow: 0 4px 20px rgba(0,229,160,0.25);
}
.btn-green-g:hover { transform: translateY(-2px); color: #000; }

.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: var(--r-lg); }
.btn-sm { padding: 9px 18px; font-size: .83rem; border-radius: var(--r-sm); }

/* Form compat */
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r-md);
  font-weight: 700; font-size: .95rem;
  background: rgba(255,255,255,0.05);
  color: var(--t1); border: 1px solid var(--border);
  transition: all .3s var(--ease); white-space: nowrap;
}
.btn-secondary:hover {
  border-color: var(--border-purple);
  color: var(--purple-2); background: var(--purple-3);
  transform: translateY(-2px);
}

/* ═══════════════════════════════
   NAVBAR
   ═══════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 22px 0;
  transition: all .4s var(--ease);
}
#navbar.scrolled {
  background: rgba(8,7,14,0.9);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: min(1200px,92vw); margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem; font-weight: 800;
  color: var(--t1); letter-spacing: -0.04em;
}
.nav-logo-mark {
  width: 34px; height: 34px;
  background: var(--grad);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 0 20px rgba(124,92,252,0.45);
}
.brand-logo-img {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  color: var(--t2); font-size: .88rem; font-weight: 500;
  transition: color .25s;
}
.nav-links a:hover { color: var(--t1); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; margin: -8px;
  background: transparent; border: none; outline: none;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--t2); border-radius: 2px;
  transition: all .3s var(--ease);
}

/* ═══════════════════════════════
   HERO
   ═══════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 130px 0 80px;
}

/* Radial gradient bg like Zaionn */
.hero-bg-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 15% 50%, rgba(124,92,252,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(0,229,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 90% 80%, rgba(255,60,172,0.05) 0%, transparent 60%);
}

/* Grid lines */
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(124,92,252,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,92,252,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 100%, transparent 0%, black 100%);
}

/* Glowing orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.hero-orb-1 {
  width: 580px; height: 580px;
  background: radial-gradient(circle, rgba(124,92,252,0.18) 0%, transparent 70%);
  top: -180px; right: -80px;
  animation: orb-float 14s ease-in-out infinite;
}
.hero-orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(0,229,255,0.1) 0%, transparent 70%);
  bottom: -80px; left: -100px;
  animation: orb-float 18s ease-in-out infinite reverse 4s;
}
@keyframes orb-float {
  0%,100% { transform: translate(0,0); }
  33%      { transform: translate(30px,-25px); }
  66%      { transform: translate(-15px,30px); }
}

/* Left purple accent line (Zaionn signature) */
#hero::before {
  content: '';
  position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--purple), transparent);
  opacity: .4;
}

.hero-content {
  position: relative; z-index: 2;
  width: min(1200px,92vw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 28px;
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 1.07rem; color: var(--t2);
  line-height: 1.75; max-width: 460px; margin-bottom: 38px;
}
.hero-sub strong { color: var(--t1); font-weight: 600; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

/* Trust row */
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .83rem; color: var(--t2);
}
.trust-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(0,229,160,0.15);
  border: 1px solid rgba(0,229,160,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: .62rem; color: var(--green); flex-shrink: 0;
}

/* Hero right: browser mockup */
.hero-right { position: relative; }
.browser-mockup {
  background: var(--bg-2);
  border: 1px solid rgba(124,92,252,0.2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(124,92,252,0.1),
    0 32px 80px rgba(0,0,0,.7),
    0 0 60px rgba(124,92,252,0.1) inset;
  animation: hero-float 7s ease-in-out infinite;
}
@keyframes hero-float {
  0%,100% { transform: translateY(0) rotate(-0.3deg); }
  50%      { transform: translateY(-16px) rotate(0.3deg); }
}
.browser-bar {
  background: var(--bg-3);
  padding: 11px 16px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--border);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: var(--red); }
.browser-dots span:nth-child(2) { background: var(--amber); }
.browser-dots span:nth-child(3) { background: var(--green); }
.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px; padding: 5px 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem; color: var(--t3); letter-spacing: -.01em;
}
.browser-body { padding: 0; }
.mock-hero-area {
  background: linear-gradient(160deg, #0D0B19, #111028);
  padding: 22px;
  border-bottom: 1px solid var(--border);
}
.mock-logo { width: 64px; height: 7px; background: var(--grad); border-radius: 4px; margin-bottom: 16px; }
.mock-h1 { width: 80%; height: 11px; background: rgba(255,255,255,.75); border-radius: 3px; margin-bottom: 7px; }
.mock-h2 { width: 55%; height: 7px; background: rgba(255,255,255,.3); border-radius: 3px; margin-bottom: 14px; }
.mock-btns { display: flex; gap: 8px; }
.mock-btn { height: 25px; border-radius: 6px; background: var(--grad); }
.mock-btn:first-child { width: 88px; }
.mock-btn.o { background: transparent; border: 1px solid rgba(124,92,252,0.35); width: 68px; }
.mock-cards-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 10px; padding: 14px;
}
.mock-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(124,92,252,0.1);
  border-radius: 8px; padding: 10px;
}
.mock-card-img { width: 100%; height: 42px; border-radius: 5px; margin-bottom: 7px;
  background: linear-gradient(135deg,rgba(124,92,252,.2),rgba(0,229,255,.15)); }
.mock-card-l1 { height: 6px; border-radius: 3px; background: rgba(255,255,255,.5); margin-bottom: 4px; }
.mock-card-l2 { height: 5px; border-radius: 3px; background: rgba(255,255,255,.2); width: 65%; }

/* Floating bubbles on mockup */
.float-card {
  position: absolute;
  background: rgba(13,11,25,0.95);
  border: 1px solid rgba(124,92,252,0.2);
  backdrop-filter: blur(16px);
  border-radius: 14px; padding: 11px 15px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5), 0 0 0 1px rgba(124,92,252,0.08);
  font-size: .8rem; font-weight: 600;
}
.float-card.card-bl { left: -36px; bottom: 90px; animation: hero-float 6.5s ease-in-out infinite .8s; }
.float-card.card-tr { right: -22px; top: 48px;   animation: hero-float 8s ease-in-out infinite 1.5s; }
.fc-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
}
.fc-icon.g { background: rgba(0,229,160,0.15); }
.fc-icon.p { background: var(--purple-3); }
.fc-meta small { display: block; font-size: .67rem; color: var(--t2); font-weight: 400; margin-top: 1px; }

/* ═══════════════════════════════
   BRAND LOGOS STRIP (Zaionn style)
   ═══════════════════════════════ */
#brands {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.brands-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0;
}
.brand-label {
  font-size: .76rem; color: var(--t3); font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  padding-right: 32px; border-right: 1px solid var(--border);
  margin-right: 32px; white-space: nowrap;
}
.brands-logos {
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center;
}
.brand-item {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--t3);
  letter-spacing: -0.02em;
  transition: color .3s;
  opacity: .5;
  cursor: default;
}
.brand-item:hover { opacity: .85; color: var(--t2); }

/* ═══════════════════════════════
   STATS
   ═══════════════════════════════ */
#stats {
  background: var(--bg);
  padding: 0;
}
.stats-inner {
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-item {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad); opacity: 0;
  transition: opacity .4s var(--ease);
}
.stat-item:hover::before { opacity: 1; }
.stat-item::after {
  content: '';
  position: absolute; bottom: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,252,0.08) 0%, transparent 70%);
}
.stat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.8rem; font-weight: 700; line-height: 1;
  margin-bottom: 6px;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: .84rem; color: var(--t2); }

/* ═══════════════════════════════
   SECTIONS SHARED
   ═══════════════════════════════ */
.section { padding: var(--sp-2xl) 0; }
.section-alt { background: var(--bg-2); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 800; letter-spacing: -0.04em;
  margin-bottom: 16px; line-height: 1.1;
}
.section-sub {
  font-size: 1rem; color: var(--t2);
  max-width: 540px; margin: 0 auto; line-height: 1.75;
}

/* ═══════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════ */
#how-it-works { background: var(--bg-2); overflow: hidden; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 14px; position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 38px;
  left: calc(10% + 38px); right: calc(10% + 38px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--cyan), transparent);
  opacity: .2;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 18px 22px;
  text-align: center;
  transition: all .4s var(--ease);
  position: relative; overflow: hidden;
}
.step-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--purple-3), transparent);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.step-card:hover {
  border-color: var(--border-purple);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(124,92,252,0.1);
}
.step-card:hover::after { opacity: 1; }
.step-card:last-child {
  border-color: rgba(0,229,160,0.2);
  background: rgba(0,229,160,0.02);
}
.step-icon-wrap {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(124,92,252,0.35);
  position: relative; z-index: 1;
}
.step-card:last-child .step-icon-wrap {
  background: linear-gradient(135deg,#00E5A0,#00B4D8);
  box-shadow: 0 6px 24px rgba(0,229,160,0.3);
}
.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: .62rem; font-weight: 700; color: var(--t3);
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 7px; position: relative; z-index: 1;
}
.step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem; font-weight: 700; margin-bottom: 7px;
  letter-spacing: -0.02em; position: relative; z-index: 1;
}
.step-card:last-child .step-title { color: var(--green); }
.step-desc { font-size: .8rem; color: var(--t2); line-height: 1.6; position: relative; z-index: 1; }
.step-badge {
  display: inline-block; margin-top: 10px;
  background: rgba(0,229,160,0.1); color: var(--green);
  border: 1px solid rgba(0,229,160,0.2);
  padding: 3px 9px; border-radius: 999px;
  font-size: .67rem; font-weight: 700; letter-spacing: .04em;
  position: relative; z-index: 1;
}

/* ═══════════════════════════════
   PRICING (Zaionn-style)
   ═══════════════════════════════ */
#pricing { background: var(--bg); position: relative; overflow: hidden; }
#pricing::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(124,92,252,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 900px; margin: 0 auto;
}

/* Base card */
.price-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 44px 38px;
  position: relative; overflow: hidden;
  transition: all .4s var(--ease);
}
.price-card:hover { transform: translateY(-5px); }

/* Featured card — gradient border like Zaionn */
.price-card.featured {
  background: linear-gradient(160deg, rgba(124,92,252,0.12) 0%, rgba(0,229,255,0.04) 100%);
  border: 1px solid transparent;
  background-clip: padding-box;
  box-shadow:
    0 0 0 1px rgba(124,92,252,0.35),
    0 20px 60px rgba(124,92,252,0.15),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
/* Shimmer top border on featured */
.price-card.featured::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--grad); opacity: .8;
}
/* Purple corner glow */
.price-card.featured::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,252,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.price-popular {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff;
  font-size: .68rem; font-weight: 800;
  padding: 4px 18px; border-radius: 0 0 10px 10px;
  white-space: nowrap; letter-spacing: .06em; text-transform: uppercase;
}
.price-type {
  font-family: 'JetBrains Mono', monospace;
  font-size: .66rem; color: var(--t3);
  font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 10px;
}
.price-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 22px;
}
.price-amount-row { display: flex; align-items: baseline; gap: 2px; margin-bottom: 5px; }
.price-curr {
  font-family: 'JetBrains Mono', monospace;
  font-size: .95rem; color: var(--t2); font-weight: 700;
}
.price-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 3rem; font-weight: 700; line-height: 1; color: var(--t1);
}
.price-period { font-size: .84rem; color: var(--t3); }
.price-iva {
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem; color: var(--t3); margin-bottom: 26px;
}
.price-total-with-iva { color: var(--amber); font-weight: 700; }

.price-features { list-style: none; margin-bottom: 28px; }
.price-features li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid var(--border);
  font-size: .88rem; color: var(--t2); line-height: 1.5;
}
.price-features li:last-child { border-bottom: none; }
.pf-check {
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(0,229,160,0.12); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; flex-shrink: 0; margin-top: 2px;
}
.price-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem; color: var(--t3);
  text-align: center; margin-top: 12px;
}

/* Addons */
.addons-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; max-width: 900px; margin: 40px auto 0;
}
.addon-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 22px; text-align: center;
  transition: all .3s var(--ease);
}
.addon-card:hover {
  border-color: var(--border-purple);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(124,92,252,0.1);
}
.addon-icon { font-size: 1.6rem; margin-bottom: 10px; }
.addon-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9rem; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.02em;
}
.addon-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.2rem; font-weight: 700; color: var(--amber); margin: 8px 0;
}
.addon-price span { font-size: .7rem; font-weight: 400; color: var(--t3); }
.addon-desc { font-size: .79rem; color: var(--t2); line-height: 1.55; }

/* ═══════════════════════════════
   TEMPLATES SHOWCASE
   ═══════════════════════════════ */
#templates { background: var(--bg-2); }

.template-tabs {
  display: flex; gap: 8px; justify-content: center; margin-bottom: 44px;
}
.template-tab {
  padding: 9px 24px; border-radius: 10px; font-weight: 600; font-size: .86rem;
  border: 1px solid var(--border); background: transparent; color: var(--t2);
  transition: all .3s var(--ease); cursor: pointer;
}
.template-tab.active {
  border-color: var(--border-purple);
  background: var(--purple-3); color: var(--purple-2);
}
.template-section { display: none; }
.template-section.active { display: block; }
.template-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.tpl-card {
  background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; cursor: pointer; transition: all .4s var(--ease);
}
.tpl-card:hover {
  border-color: var(--border-purple);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.5), 0 0 0 1px rgba(124,92,252,0.08);
}
.tpl-preview { height: 180px; position: relative; overflow: hidden; }
.tpl-info { padding: 18px 20px; }
.tpl-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .97rem; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.02em;
}
.tpl-sector { font-size: .78rem; color: var(--t2); margin-bottom: 10px; }
.tpl-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.tpl-demo-link {
  display: inline-flex; align-items: center;
  font-size: .78rem; font-weight: 600; color: var(--cyan);
  text-decoration: none; gap: 4px; transition: opacity .2s;
}
.tpl-demo-link:hover { opacity: .75; }
.tpl-demo-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.55); backdrop-filter: blur(2px);
  color: #fff; font-size: .85rem; font-weight: 700;
  text-decoration: none; letter-spacing: .03em;
  opacity: 0; transition: opacity .25s;
}
.tpl-card:hover .tpl-demo-overlay { opacity: 1; }
.tpl-tag {
  background: var(--purple-3); color: var(--purple-2);
  border: 1px solid rgba(124,92,252,0.15);
  padding: 2px 9px; border-radius: 5px;
  font-size: .68rem; font-weight: 600; letter-spacing: .02em;
}

/* Template mockup helper styles */
.tpl-mockup-bar { height: 26px; display: flex; align-items: center; padding: 0 10px; gap: 6px; background: rgba(0,0,0,.3); }
.tpl-mockup-logo { width: 40px; height: 6px; border-radius: 3px; opacity: .8; }
.tpl-mockup-nav { margin-left: auto; display: flex; gap: 5px; }
.tpl-mockup-nav span { width: 22px; height: 5px; border-radius: 2px; background: rgba(255,255,255,.25); }
.tpl-mockup-body { padding: 12px; display: flex; flex-direction: column; gap: 6px; }
.tpl-mockup-h1 { height: 11px; border-radius: 3px; background: rgba(255,255,255,.8); width: 70%; }
.tpl-mockup-h2 { height: 7px; border-radius: 3px; background: rgba(255,255,255,.4); width: 50%; }
.tpl-mockup-btn { height: 20px; width: 60px; border-radius: 4px; }
.tpl-mockup-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 5px; margin-top: 4px; }
.tpl-mockup-card { height: 28px; border-radius: 4px; background: rgba(255,255,255,.08); }

.tpl-corp     { background: linear-gradient(135deg,#1e3a8a,#1e40af); }
.tpl-creativo { background: linear-gradient(135deg,#4c1d95,#7c3aed); }
.tpl-gastro   { background: linear-gradient(135deg,#78350f,#b45309); }
.tpl-salud    { background: linear-gradient(135deg,#065f46,#059669); }
.tpl-educa    { background: linear-gradient(135deg,#1e40af,#0369a1); }
.tpl-const    { background: linear-gradient(135deg,#292524,#57534e); }
.tpl-fashion  { background: linear-gradient(135deg,#1c1917,#44403c); }
.tpl-tech     { background: linear-gradient(135deg,#0c0a09,#1e293b); }
.tpl-home     { background: linear-gradient(135deg,#451a03,#78350f); }
.tpl-gourmet  { background: linear-gradient(135deg,#052e16,#14532d); }
.tpl-beauty   { background: linear-gradient(135deg,#4a044e,#831843); }
.tpl-sport    { background: linear-gradient(135deg,#1a2e05,#365314); }

/* ═══════════════════════════════
   FEATURES
   ═══════════════════════════════ */
#features { background: var(--bg); }

.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feat-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 24px;
  transition: all .35s var(--ease); position: relative; overflow: hidden;
}
/* Left purple accent line like Zaionn */
.feat-card::before {
  content: '';
  position: absolute; left: 0; top: 20%; bottom: 20%; width: 2px;
  background: var(--grad); opacity: 0;
  transition: opacity .35s var(--ease);
}
.feat-card:hover {
  border-color: var(--border-purple);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(124,92,252,0.1);
}
.feat-card:hover::before { opacity: 1; }
.feat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--purple-3), rgba(0,229,255,0.08));
  border: 1px solid rgba(124,92,252,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 16px;
}
.feat-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .97rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.02em;
}
.feat-desc { font-size: .84rem; color: var(--t2); line-height: 1.65; }

/* ═══════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════ */
#testimonials { background: var(--bg-2); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi-card {
  background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px 24px; transition: all .35s var(--ease);
}
.testi-card:hover { border-color: var(--border-purple); transform: translateY(-4px); }
.testi-stars { color: var(--amber); font-size: .9rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text {
  font-size: .89rem; color: var(--t2); line-height: 1.75;
  margin-bottom: 20px; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
  font-size: .88rem; color: #fff; flex-shrink: 0;
}
.testi-name { font-size: .87rem; font-weight: 700; }
.testi-role { font-size: .74rem; color: var(--t3); }

/* ═══════════════════════════════
   FAQ
   ═══════════════════════════════ */
#faq { background: var(--bg); }
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; background: transparent; color: var(--t1);
  padding: 20px 0; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; font-size: .97rem; font-weight: 600; transition: color .25s; cursor: pointer;
}
.faq-question:hover { color: var(--purple-2); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; color: var(--t2); transition: all .3s var(--ease);
}
.faq-item.open .faq-icon {
  background: var(--purple-3); border-color: var(--border-purple);
  color: var(--purple-2); transform: rotate(45deg);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .38s ease; }
.faq-answer p { padding: 0 0 20px; font-size: .91rem; color: var(--t2); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ═══════════════════════════════
   CTA FINAL
   ═══════════════════════════════ */
#cta-final { background: var(--bg-2); padding: var(--sp-2xl) 0; overflow: hidden; }
.cta-box {
  background: var(--bg);
  border: 1px solid rgba(124,92,252,0.2);
  border-radius: var(--r-xl);
  padding: 80px 60px; text-align: center;
  position: relative; overflow: hidden;
}
/* Zaionn-style corner glows */
.cta-box::before {
  content: '';
  position: absolute; top: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,252,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box::after {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
/* Top gradient line */
.cta-box .cta-top-line {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--grad); opacity: .5;
}
.cta-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.9rem, 4.5vw, 3.1rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.1;
  margin-bottom: 18px; position: relative; z-index: 1;
}
.cta-sub {
  font-size: 1.05rem; color: var(--t2);
  max-width: 500px; margin: 0 auto 40px; line-height: 1.72; position: relative; z-index: 1;
}
.cta-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 28px; position: relative; z-index: 1;
}
.cta-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap; position: relative; z-index: 1;
}
.ct-item { display: flex; align-items: center; gap: 7px; font-size: .81rem; color: var(--t3); }
.ct-icon { color: var(--green); font-size: .68rem; }

/* ═══════════════════════════════
   FOOTER
   ═══════════════════════════════ */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer-brand-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem; font-weight: 800; color: var(--t1);
  letter-spacing: -0.04em; margin-bottom: 16px; text-decoration: none;
}
.footer-desc { font-size: .84rem; color: var(--t2); line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 9px; }
.social-btn {
  width: 35px; height: 35px; border-radius: 9px;
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: all .3s var(--ease); color: var(--t2);
}
.social-btn:hover {
  background: var(--purple-3); border-color: var(--border-purple);
  color: var(--purple-2); transform: translateY(-2px);
}
.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--t3); margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: .85rem; color: var(--t2); transition: color .25s; }
.footer-links a:hover { color: var(--purple-2); }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: var(--t2); margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: .79rem; color: var(--t3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .79rem; color: var(--t3); }
.footer-legal a:hover { color: var(--purple-2); }

/* ═══════════════════════════════════════════════
   FORM OVERLAY — Zaionn-style dark
   ═══════════════════════════════════════════════ */
#form-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(5,4,11,0.97); backdrop-filter: blur(24px);
  display: flex; align-items: stretch;
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease); overflow: hidden;
}
#form-overlay.active { opacity: 1; pointer-events: all; }

.form-sidebar {
  width: 272px; flex-shrink: 0;
  background: var(--bg-2); border-right: 1px solid var(--border);
  padding: 28px 22px;
  display: flex; flex-direction: column; overflow-y: auto;
}
.form-logo {
  display: flex; align-items: center; gap: 9px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem; font-weight: 800; letter-spacing: -0.04em;
  margin-bottom: 36px; color: var(--t1);
}
.form-logo-mark {
  width: 32px; height: 32px; background: var(--grad);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  font-size: .9rem; box-shadow: 0 0 16px rgba(124,92,252,0.3);
}
.form-steps-nav { flex: 1; }
.fsn-step { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; opacity: .4; transition: opacity .3s; }
.fsn-step.done   { opacity: .65; }
.fsn-step.active { opacity: 1; }
.fsn-circle {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%;
  border: 1.5px solid var(--border); background: transparent;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem; font-weight: 700; color: var(--t2);
  transition: all .3s var(--ease);
}
.fsn-step.done   .fsn-circle { background: rgba(0,229,160,0.15); border-color: rgba(0,229,160,0.4); }
.fsn-step.done   .fsn-circle::after { content:'✓'; color: var(--green); font-size: .7rem; font-weight: 700; }
.fsn-step.done   .fsn-circle span { display: none; }
.fsn-step.active .fsn-circle { background: var(--grad); border-color: transparent; color: #fff; box-shadow: 0 0 12px rgba(124,92,252,0.4); }
.fsn-meta { padding-top: 3px; }
.fsn-label { font-size: .79rem; font-weight: 600; color: var(--t2); line-height: 1.3; }
.fsn-step.active .fsn-label { color: var(--t1); }
.fsn-sub { font-size: .71rem; color: var(--t3); }
.fsn-connector { width: 1.5px; height: 16px; background: var(--border); margin: 0 0 0 13px; }
.fsn-step.done + .fsn-connector { background: rgba(0,229,160,0.3); }

.form-price-summary {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 14px 16px; margin-top: 22px;
}
.fps-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: .63rem; color: var(--t3); font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px;
}
.fps-row { display: flex; justify-content: space-between; font-size: .79rem; color: var(--t2); margin-bottom: 5px; }
.fps-total {
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: .9rem; font-weight: 700; color: var(--t1);
  border-top: 1px solid var(--border); padding-top: 9px; margin-top: 6px;
}

/* Form main */
.form-main { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.form-topbar {
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 16px 32px; display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.form-topbar-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .97rem; font-weight: 700; letter-spacing: -0.02em;
}
.form-topbar-sub { font-size: .77rem; color: var(--t3); margin-top: 2px; }
.form-close {
  width: 34px; height: 34px; border-radius: var(--r-sm);
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--t2); transition: all .3s; cursor: pointer;
}
.form-close:hover { background: rgba(255,71,87,0.1); border-color: rgba(255,71,87,0.3); color: var(--red); }

.form-progress { height: 2px; background: var(--bg-3); flex-shrink: 0; }
.form-progress-bar { height: 100%; background: var(--grad); transition: width .5s var(--ease); width: 0%; }

.form-body { flex: 1; overflow-y: auto; padding: 32px 40px; }
.form-body::-webkit-scrollbar { width: 3px; }
.form-body::-webkit-scrollbar-thumb { background: var(--border); }

.step-panel { display: none; }
.step-panel.active { display: block; }

/* Form fields */
.form-section { margin-bottom: 32px; }
.form-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem; font-weight: 700; letter-spacing: -0.02em; color: var(--t1);
  margin-bottom: 4px; padding-bottom: 12px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.form-section-title .fs-icon { font-size: 1.1rem; }
.form-section-sub { font-size: .8rem; color: var(--t3); margin: 6px 0 16px; }
.form-row { display: grid; gap: 14px; margin-bottom: 14px; }
.form-row.cols-2 { grid-template-columns: 1fr 1fr; }
.form-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: .81rem; font-weight: 600; color: var(--t2); }
.form-label .required { color: var(--purple-2); margin-left: 2px; }
.form-label .hint { font-size: .73rem; font-weight: 400; color: var(--t3); display: block; margin-top: 1px; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--r-sm); color: var(--t1); padding: 11px 14px;
  font-size: .9rem; transition: all .25s var(--ease); outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--border-purple);
  box-shadow: 0 0 0 3px rgba(124,92,252,0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--t3); }
.form-input.error, .form-select.error, .form-textarea.error {
  border-color: rgba(255,71,87,0.4); box-shadow: 0 0 0 3px rgba(255,71,87,0.08);
}
.form-select { cursor: pointer; }
.form-select option { background: var(--bg-3); color: var(--t1); }
.form-textarea { resize: vertical; min-height: 88px; }
.form-error { font-size: .75rem; color: var(--red); display: none; }
.form-group.has-error .form-error { display: block; }

/* Choice cards */
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.choice-card {
  background: var(--bg-card); border: 2px solid var(--border);
  border-radius: var(--r-xl); padding: 30px 24px; cursor: pointer;
  transition: all .35s var(--ease); text-align: center; position: relative;
}
.choice-card:hover { border-color: var(--border-purple); transform: translateY(-3px); }
.choice-card.selected {
  border-color: rgba(124,92,252,0.5); background: var(--purple-3);
  box-shadow: 0 0 0 1px rgba(124,92,252,0.15), 0 8px 32px rgba(124,92,252,0.1);
}
.choice-check {
  position: absolute; top: 14px; right: 14px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-size: .7rem; color: #fff; font-weight: 800;
  opacity: 0; transform: scale(.4); transition: all .3s var(--ease);
}
.choice-card.selected .choice-check { opacity: 1; transform: scale(1); }
.choice-icon { font-size: 2.4rem; margin-bottom: 12px; }
.choice-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 7px;
}
.choice-desc { font-size: .83rem; color: var(--t2); line-height: 1.6; }
.choice-price {
  display: inline-block;
  background: var(--purple-3); color: var(--purple-2);
  border: 1px solid rgba(124,92,252,0.2);
  padding: 3px 12px; border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: .73rem; font-weight: 700; margin-top: 12px;
}

/* Template form grid */
.tpl-form-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.tpl-form-card {
  background: var(--bg-3); border: 2px solid var(--border);
  border-radius: var(--r-md); overflow: hidden; cursor: pointer;
  transition: all .3s var(--ease);
}
.tpl-form-card:hover { border-color: var(--border-purple); transform: translateY(-2px); }
.tpl-form-card.selected { border-color: rgba(124,92,252,0.5); box-shadow: 0 0 0 1px rgba(124,92,252,0.12); }
.tpl-form-preview { height: 108px; overflow: hidden; position: relative; }
.tpl-form-info { padding: 9px 12px; }
.tpl-form-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: .81rem; font-weight: 700; margin-bottom: 1px; letter-spacing: -0.02em; }
.tpl-form-sector { font-size: .69rem; color: var(--t3); }
.tpl-form-selected-badge {
  position: absolute; top: 5px; right: 5px;
  background: var(--purple); color: #fff;
  padding: 2px 7px; border-radius: 5px;
  font-size: .63rem; font-weight: 800;
  opacity: 0; transition: opacity .3s;
}
.tpl-form-card.selected .tpl-form-selected-badge { opacity: 1; }

/* Color palettes */
.color-palettes { display: grid; grid-template-columns: repeat(4,1fr); gap: 9px; }
.palette-option {
  border: 1.5px solid var(--border); border-radius: 10px; padding: 9px;
  cursor: pointer; transition: all .3s var(--ease); text-align: center;
}
.palette-option:hover { border-color: var(--border-purple); }
.palette-option.selected { border-color: rgba(124,92,252,0.4); background: var(--purple-3); }
.palette-swatches { display: flex; border-radius: 5px; overflow: hidden; margin-bottom: 6px; }
.palette-swatches span { flex: 1; height: 24px; }
.palette-name { font-size: .69rem; font-weight: 600; color: var(--t2); }
.palette-option.selected .palette-name { color: var(--purple-2); }

/* Check groups */
.check-group {
  display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px;
  border-radius: var(--r-sm); border: 1px solid var(--border);
  cursor: pointer; transition: all .3s; margin-bottom: 9px;
}
.check-group:hover { border-color: var(--border-purple); }
.check-group.checked { border-color: rgba(124,92,252,0.3); background: var(--purple-3); }
.check-box {
  width: 19px; height: 19px; flex-shrink: 0; border-radius: 5px;
  border: 1.5px solid var(--border); background: transparent; margin-top: 1px;
  display: flex; align-items: center; justify-content: center; font-size: .75rem; transition: all .3s;
}
.check-group.checked .check-box { background: var(--purple); border-color: var(--purple); color: #fff; font-weight: 800; }
.check-title { font-size: .87rem; font-weight: 600; color: var(--t1); }
.check-desc  { font-size: .77rem; color: var(--t3); margin-top: 2px; }
.check-price { margin-left: auto; font-family: 'JetBrains Mono', monospace; font-size: .77rem; font-weight: 700; color: var(--amber); white-space: nowrap; padding-top: 1px; }

/* Quantity selector */
.qty-selector { display: flex; align-items: center; gap: 7px; background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 5px; width: fit-content; }
.qty-btn { width: 26px; height: 26px; border-radius: 6px; background: var(--bg-card); border: 1px solid var(--border); color: var(--t1); font-size: 1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: all .25s; cursor: pointer; }
.qty-btn:hover { background: var(--purple-3); border-color: var(--border-purple); color: var(--purple-2); }
.qty-value { min-width: 26px; text-align: center; font-family: 'JetBrains Mono', monospace; font-size: .9rem; font-weight: 700; color: var(--t1); }

/* Product slots */
.product-slot { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--r-md); margin-bottom: 9px; overflow: hidden; transition: border-color .3s; }
.product-slot.filled { border-color: rgba(0,229,160,0.2); }
.product-slot-header { display: flex; align-items: center; gap: 12px; padding: 13px 16px; cursor: pointer; transition: background .25s; }
.product-slot-header:hover { background: var(--bg-card); }
.psh-num { width: 27px; height: 27px; border-radius: 7px; background: var(--bg-card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: 'JetBrains Mono', monospace; font-size: .68rem; font-weight: 700; color: var(--t3); flex-shrink: 0; }
.product-slot.filled .psh-num { background: rgba(0,229,160,0.1); border-color: rgba(0,229,160,0.25); color: var(--green); }
.psh-name { font-size: .87rem; font-weight: 600; color: var(--t2); flex: 1; }
.product-slot.filled .psh-name { color: var(--t1); }
.psh-status { font-size: .72rem; color: var(--t3); }
.product-slot.filled .psh-status { color: var(--green); }
.psh-toggle { font-size: .82rem; color: var(--t3); transition: transform .3s; }
.product-slot.open .psh-toggle { transform: rotate(180deg); }
.product-slot-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; padding: 0 16px; }
.product-slot.open .product-slot-body { max-height: 800px; padding: 0 16px 16px; }

/* Team / services */
.team-member-card { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--r-md); padding: 15px; margin-bottom: 9px; position: relative; }
.team-member-remove { position: absolute; top: 11px; right: 11px; width: 24px; height: 24px; border-radius: 5px; background: rgba(255,71,87,0.1); border: 1px solid rgba(255,71,87,0.15); color: var(--red); font-size: .8rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .25s; }
.service-item { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--r-md); padding: 13px 14px; margin-bottom: 8px; position: relative; }
.service-remove { position: absolute; top: 11px; right: 11px; width: 22px; height: 22px; border-radius: 5px; background: rgba(255,71,87,0.08); border: 1px solid rgba(255,71,87,0.15); color: var(--red); font-size: .75rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .25s; }
.add-btn { display: flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: var(--r-sm); background: var(--purple-3); border: 1.5px dashed rgba(124,92,252,0.3); color: var(--purple-2); font-size: .82rem; font-weight: 600; cursor: pointer; transition: all .25s; width: fit-content; }
.add-btn:hover { background: rgba(124,92,252,0.2); border-color: var(--border-purple); }

/* File upload */
.file-upload { border: 1.5px dashed var(--border); border-radius: var(--r-sm); padding: 18px; text-align: center; cursor: pointer; transition: all .25s; position: relative; }
.file-upload:hover { border-color: var(--border-purple); background: var(--purple-3); }
.file-upload input[type=file] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.fu-icon { font-size: 1.6rem; margin-bottom: 7px; color: var(--t3); }
.fu-text { font-size: .82rem; color: var(--t2); }
.fu-hint { font-size: .73rem; color: var(--t3); margin-top: 3px; }

/* Info boxes */
.info-box { background: rgba(124,92,252,0.06); border: 1px solid rgba(124,92,252,0.15); border-radius: var(--r-sm); padding: 13px 15px; display: flex; align-items: flex-start; gap: 10px; margin: 12px 0; }
.info-box .ib-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.info-box .ib-text { font-size: .81rem; color: var(--t2); line-height: 1.62; }
.info-box .ib-text strong { color: var(--purple-2); }
.warning-box { background: rgba(255,184,0,0.06); border-color: rgba(255,184,0,0.18); }
.warning-box .ib-icon { color: var(--amber); }

/* Summary */
.summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 22px; }
.summary-card { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--r-md); padding: 14px 16px; }
.summary-card-title { font-family: 'JetBrains Mono', monospace; font-size: .66rem; color: var(--t3); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.summary-card-value { font-size: .9rem; font-weight: 600; color: var(--t1); }

.price-breakdown { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--r-md); padding: 20px; margin-top: 18px; }
.pb-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: .88rem; font-weight: 700; margin-bottom: 14px; color: var(--t1); }
.pb-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .87rem; color: var(--t2); }
.pb-row:last-of-type { border-bottom: none; }
.pb-row.iva { color: var(--t3); font-size: .81rem; }
.pb-row.total { font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 1.05rem; color: var(--t1); border-top: 2px solid var(--border); margin-top: 8px; padding-top: 16px; }
.pb-row .amount { font-weight: 700; color: var(--t1); }
.pb-row.total .amount { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-size: 1.2rem; }

/* Pay button */
.pay-btn-wrap { text-align: center; margin-top: 24px; }
.pay-btn {
  width: 100%; max-width: 380px; padding: 16px; border-radius: var(--r-lg);
  background: var(--grad); color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem; font-weight: 800; letter-spacing: -0.02em;
  box-shadow: 0 6px 28px rgba(124,92,252,0.4);
  transition: all .3s var(--ease);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  position: relative; overflow: hidden;
}
.pay-btn::after { content: ''; position: absolute; top: 0; left: 0; width: 50%; height: 100%; background: linear-gradient(90deg,transparent,rgba(255,255,255,.25),transparent); transform: skewX(-20deg) translateX(-200%); animation: shimmer 3s ease-in-out infinite 1.5s; }
.pay-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(124,92,252,0.55); }
.pay-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.pay-secure-note { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: .75rem; color: var(--t3); margin-top: 10px; }
.mp-logos { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 14px; }
.mp-badge { background: var(--bg-3); border: 1px solid var(--border); border-radius: 6px; padding: 4px 11px; font-family: 'JetBrains Mono', monospace; font-size: .66rem; font-weight: 700; color: var(--t3); }

/* Form nav */
.form-nav { background: var(--bg-2); border-top: 1px solid var(--border); padding: 14px 40px; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.form-nav-left, .form-nav-right { display: flex; align-items: center; gap: 10px; }
.step-indicator-dots { display: flex; gap: 5px; align-items: center; }
.sid-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); transition: all .3s var(--ease); }
.sid-dot.active { width: 18px; border-radius: 3px; background: var(--purple); }
.sid-dot.done   { background: var(--green); }

/* ── SCROLL ANIMATIONS ── */
.anim-up { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.anim-up.visible { opacity: 1; transform: translateY(0); }
.anim-delay-1 { transition-delay: .1s; }
.anim-delay-2 { transition-delay: .2s; }
.anim-delay-3 { transition-delay: .3s; }
.anim-delay-4 { transition-delay: .4s; }
.anim-delay-5 { transition-delay: .5s; }

/* ════════════════════════════════════════
   MOBILE NAV MENU
   ════════════════════════════════════════ */
.nav-mobile-menu {
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(8,7,14,0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px 24px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-8px);
  opacity: 0; pointer-events: none;
  transition: all .3s var(--ease);
}
.nav-mobile-menu.open {
  transform: translateY(0);
  opacity: 1; pointer-events: all;
}
.nmm-link {
  display: block; padding: 13px 12px;
  font-size: 1rem; font-weight: 600; color: var(--t2);
  border-radius: var(--r-sm);
  transition: all .2s;
}
.nmm-link:hover { background: var(--purple-3); color: var(--purple-2); }
.nmm-link-sm { font-size: .84rem; text-align: center; color: var(--t3); margin-top: 6px; }
.nmm-divider { height: 1px; background: var(--border); margin: 10px 0; }

/* Hamburger open state */
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ════════════════════════════════════════
   MOBILE STICKY CTA BAR
   ════════════════════════════════════════ */
#mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: rgba(8,7,14,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-purple);
  padding: 14px 20px;
  align-items: center; justify-content: space-between; gap: 12px;
  box-shadow: 0 -8px 32px rgba(124,92,252,0.15);
  transform: translateY(100%);
  transition: transform .4s var(--ease);
}
#mobile-cta-bar.visible { transform: translateY(0); }
.mcta-text { display: flex; flex-direction: column; gap: 2px; }
.mcta-text strong { font-size: .95rem; font-weight: 800; letter-spacing: -0.02em; }
.mcta-text span { font-size: .73rem; color: var(--t3); }

/* ════════════════════════════════════════
   RESPONSIVE — TABLET (1024px)
   ════════════════════════════════════════ */
@media (max-width:1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-left { display: flex; flex-direction: column; align-items: center; }
  .hero-right { display: none; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(3,1fr); }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-sidebar { width: 230px; }
  .form-body { padding: 24px 28px; }
  .addons-grid { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════
   RESPONSIVE — MOBILE (768px)
   ════════════════════════════════════════ */
@media (max-width:768px) {
  /* Nav */
  .nav-links, .nav-cta .btn:not(.btn-primary) { display: none; }
  .nav-cta .btn-primary { display: none; }  /* Hidden — use mobile menu btn */
  .hamburger { display: flex; }

  /* Show mobile CTA bar */
  #mobile-cta-bar { display: flex; }

  /* Hero */
  #hero { padding: 100px 0 60px; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-sub { max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 340px; }

  /* Section spacing */
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 44px; }
  .cta-box { padding: 52px 28px; }
  footer { padding: 48px 0 100px; } /* Extra bottom for sticky bar */

  /* Stats */
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item { padding: 28px 20px; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .steps-container { gap: 0; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .price-card.featured { order: -1; }
  .price-card { padding: 32px 24px; }

  /* Templates */
  .template-grid { grid-template-columns: 1fr 1fr; }
  .template-tabs { overflow-x: auto; justify-content: flex-start; padding-bottom: 4px; white-space: nowrap; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; }
  .template-tab { flex-shrink: 0; }

  /* Features */
  .features-grid { grid-template-columns: 1fr 1fr; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; }

  /* Addons */
  .addons-grid { grid-template-columns: 1fr; }

  /* Brands */
  .brands-inner { flex-direction: column; gap: 16px; text-align: center; }
  .brand-label { border-right: none; margin-right: 0; padding-right: 0; }
  .brands-logos { gap: 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  /* Form overlay */
  #form-overlay { flex-direction: column; }
  .form-sidebar {
    width: 100%; height: auto;
    border-right: none; border-bottom: 1px solid var(--border);
    padding: 12px 16px;
  }
  .form-logo { margin-bottom: 14px; }
  .form-steps-nav { display: flex; gap: 4px; overflow-x: auto; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
  .fsn-step { padding: 6px 10px; background: var(--bg-3); border-radius: 8px; gap: 8px; white-space: nowrap; }
  .fsn-meta { display: none; }
  .fsn-connector { display: none; }
  .form-price-summary { display: none; }
  .form-topbar { padding: 12px 16px; }
  .form-body { padding: 18px 16px; }
  .form-nav { padding: 12px 16px; }
  .tpl-form-grid { grid-template-columns: 1fr 1fr; }
  .choice-grid { grid-template-columns: 1fr 1fr; }
  .summary-grid { grid-template-columns: 1fr; }
  .color-palettes { grid-template-columns: repeat(3,1fr); }
}

/* ════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (480px)
   ════════════════════════════════════════ */
@media (max-width:480px) {
  /* Prevent ALL horizontal overflow */
  * { max-width: 100%; }
  img, video, iframe, table { max-width: 100%; }

  /* Buttons: allow text wrap to prevent overflow from long labels */
  .btn { white-space: normal; text-align: center; line-height: 1.3; }
  .btn-lg { padding: 14px 24px; font-size: .95rem; }

  /* Hero */
  .hero-title { font-size: clamp(2rem, 9.5vw, 2.6rem); }
  #hero { padding: 88px 0 52px; }
  .hero-trust { flex-direction: column; gap: 10px; align-items: flex-start; }
  .hero-actions { margin-bottom: 28px; }
  .hero-eyebrow { flex-wrap: wrap; gap: 8px; }

  /* Stats — compact on small screens */
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 22px 16px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 2rem; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { padding: 20px 16px 16px; }

  /* Pricing */
  .price-card { padding: 28px 18px; }
  .price-num { font-size: 2.3rem; }
  .price-features li { font-size: .83rem; }

  /* Templates */
  .template-grid { grid-template-columns: 1fr; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-box { padding: 36px 18px; border-radius: var(--r-lg); }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .cta-trust { gap: 14px; }

  /* Addons */
  .addon-card { padding: 20px 16px; }

  /* Form */
  .tpl-form-grid { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr; }
  .choice-card { padding: 22px 16px; }
  .form-row.cols-2, .form-row.cols-3 { grid-template-columns: 1fr; }
  .color-palettes { grid-template-columns: repeat(2,1fr); }
  .check-price { display: none; }
  .check-group { padding: 10px 12px; }
  .form-nav { gap: 8px; padding: 10px 12px; }
  .form-nav .btn { padding: 10px 14px; font-size: .82rem; white-space: nowrap; }
  .form-topbar { padding: 11px 14px; }
  .form-topbar-title { font-size: .88rem; }

  /* Section */
  .section { padding: 44px 0; }
  .section-header { margin-bottom: 32px; }
  .section-title { font-size: clamp(1.65rem, 7vw, 2.1rem); }

  /* Footer */
  footer { padding-bottom: 120px; }
  .footer-grid { gap: 24px; }

  /* Mobile CTA bar */
  #mobile-cta-bar { padding: 11px 14px; }
  .mcta-text strong { font-size: .85rem; }
  .mcta-text span { font-size: .68rem; }

  /* Sections with inline CTA buttons: make them full width */
  [style*="text-align:center"] .btn,
  [style*="text-align: center"] .btn { width: 100%; max-width: 320px; }
}

/* ════════════════════════════════════════
   FORM INPUTS — prevent iOS auto-zoom
   ════════════════════════════════════════ */
@media (max-width:768px) {
  .form-input, .form-select, .form-textarea {
    font-size: 16px;  /* iOS won't zoom if ≥16px */
  }
}

/* ════════════════════════════════════════
   PERFORMANCE — disable heavy effects on mobile
   ════════════════════════════════════════ */
@media (max-width:768px) {
  /* Remove blur-filtered animated orbs (GPU-intensive) */
  .hero-orb { display: none; }
  /* Disable hero-float on browser mockup */
  .browser-mockup { animation: none; }
  /* Disable float cards animation */
  .float-card { animation: none; }
}
