/* ============================================
   MYTHOLOGY CREATIVES — Conversion Landing
   ============================================ */

:root {
  --black:      #09091A;
  --graphite:   #101021;
  --surface:    #14142A;
  --surface-2:  #18183C;
  --line:       rgba(255,255,255,.07);
  --line-2:     rgba(255,255,255,.13);
  --white:      #ffffff;
  --text:       #E8E8F5;
  --muted:      #8888A8;
  --muted-2:    #55556A;
  --purple:     #472687;
  --purple-2:   #6A3FC2;
  --purple-3:   #A57BFF;
  --glow:       rgba(165,123,255,.4);
  --green:      #4ADE80;
  --red:        #F87171;

  --r-sm:  10px;
  --r:     18px;
  --r-lg:  26px;
  --r-xl:  36px;

  --max: 1240px;
  --ease:     cubic-bezier(.2,.8,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --sans:    'Inter', system-ui, sans-serif;
  --display: 'Space Grotesk', 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
@media (hover: none) { body { cursor: auto; } }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; color: inherit; font: inherit; cursor: pointer; }
::selection { background: var(--purple-3); color: var(--black); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: #2A2A45; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple-2); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; position: relative; }

/* ── BG ────────────────────── */
.bg-grid {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 75%);
  pointer-events: none; z-index: 0;
}
.bg-noise {
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .03; pointer-events: none; z-index: 1; mix-blend-mode: overlay;
}

/* ── LOADER ────────────────── */
.loader {
  position: fixed; inset: 0; background: var(--black);
  z-index: 9999; display: grid; place-items: center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader__inner { text-align: center; }
.loader__logo { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.loader__img { height: 34px; width: auto; filter: drop-shadow(0 0 30px var(--glow)); }
.loader__bar { width: 180px; height: 2px; background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden; }
.loader__bar i { display: block; width: 0; height: 100%; background: linear-gradient(90deg,var(--purple-3),var(--purple)); animation: load 1.6s var(--ease-out) forwards; }
@keyframes load { to { width: 100%; } }
.loader__text { font-family: var(--display); font-size: 11px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }

/* ── CURSOR ────────────────── */
.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0; pointer-events: none;
  z-index: 9000; border-radius: 50%; transform: translate(-50%,-50%);
  transition: transform .25s var(--ease), width .25s, height .25s, background .25s;
  mix-blend-mode: difference;
}
.cursor { width: 36px; height: 36px; border: 1.5px solid rgba(255,255,255,.7); }
.cursor-dot { width: 6px; height: 6px; background: white; }
.cursor.is-hover { width: 64px; height: 64px; background: rgba(255,255,255,.15); border-color: transparent; }
@media (hover: none) { .cursor, .cursor-dot { display: none; } }

/* ── NAVBAR ────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: background .35s, backdrop-filter .35s, padding .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(9,9,26,.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  padding: 10px 0; border-bottom-color: var(--line);
}
.nav__container {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav__logo { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 600; font-size: 18px; }
.nav__logo-img { height: 30px; width: auto; }
.nav__logo-mark { width: 30px; height: 30px; display: grid; place-items: center; background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 8px; }
.nav__logo-mark svg { width: 18px; height: 18px; }
.nav__logo-text span { color: var(--purple-3); }
.nav__links { display: flex; gap: 4px; background: rgba(255,255,255,.03); border: 1px solid var(--line); padding: 5px; border-radius: 100px; backdrop-filter: blur(10px); }
.nav__links a { padding: 7px 14px; font-size: 13px; font-weight: 500; color: var(--muted); border-radius: 100px; transition: color .25s, background .25s; }
.nav__links a:hover { color: white; background: rgba(255,255,255,.05); }
.nav__right { display: flex; align-items: center; gap: 10px; }
.nav__phone { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; font-size: 13px; font-weight: 500; color: var(--muted); border: 1px solid var(--line); border-radius: 100px; transition: all .25s; }
.nav__phone:hover { color: white; border-color: var(--line-2); }
.nav__lang { display: inline-flex; align-items: center; padding: 8px 13px; font-size: 12.5px; font-weight: 600; letter-spacing: .04em; color: var(--muted); border: 1px solid var(--line); border-radius: 100px; transition: all .25s; }
.nav__lang:hover { color: white; border-color: var(--purple-3); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px;
  font-size: 13.5px; font-weight: 500; background: white; color: var(--black);
  border-radius: 100px; transition: transform .25s, box-shadow .25s;
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(165,123,255,.3); }
.nav__cta svg { width: 13px; height: 13px; }
.nav__burger { display: none; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 10px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav__burger span { display: block; width: 16px; height: 1.5px; background: white; transition: transform .3s, opacity .3s; }
.nav__burger.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translateY(-3px) rotate(-45deg); }
.nav__mobile { position: fixed; inset: 68px 0 auto; background: rgba(9,9,26,.97); backdrop-filter: blur(20px); padding: 20px 24px 28px; display: none; flex-direction: column; gap: 2px; border-bottom: 1px solid var(--line); }
.nav__mobile.is-open { display: flex; }
.nav__mobile a { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
.nav__mobile-cta { color: var(--purple-3) !important; font-weight: 600; border: none !important; }

/* ── BUTTONS ───────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; font-family: var(--sans); font-weight: 500; font-size: 14.5px;
  border-radius: 100px; position: relative; white-space: nowrap;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.btn svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary { background: linear-gradient(135deg,var(--purple-3),var(--purple)); color: white; box-shadow: 0 6px 28px rgba(71,38,135,.5), inset 0 1px 0 rgba(255,255,255,.2); }
.btn--primary:hover { box-shadow: 0 12px 38px rgba(165,123,255,.55), inset 0 1px 0 rgba(255,255,255,.25); }
.btn--ghost { background: rgba(255,255,255,.04); color: white; border: 1px solid var(--line-2); backdrop-filter: blur(10px); }
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22); }
.btn--full { width: 100%; }
.btn--lg { padding: 17px 32px; font-size: 15.5px; }

/* ── EYEBROW / SECTION HEAD ── */
.eyebrow { display: inline-block; font-family: var(--display); font-size: 12px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--purple-3); margin-bottom: 18px; }
.section__head { text-align: center; max-width: 740px; margin: 0 auto 52px; }
.section__title {
  font-family: var(--display); font-size: clamp(32px,4.5vw,58px); font-weight: 600;
  line-height: 1.05; letter-spacing: -.025em;
  background: linear-gradient(180deg,#fff 0%,#C0C0D8 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.section__sub { margin-top: 20px; font-size: 17px; color: var(--muted); max-width: 580px; margin-left: auto; margin-right: auto; }

/* ── GENERIC SECTION ───────── */
.section { position: relative; padding: 90px 0; z-index: 2; }
.section--dark { background: linear-gradient(180deg, transparent, rgba(71,38,135,.05), transparent); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero { position: relative; padding: 160px 0 100px; overflow: hidden; min-height: 100vh; min-height: 100svh; z-index: 2; }

/* Background image + overlay */
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1531297484001-80022131f5a1?auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  filter: saturate(.7) brightness(.5);
  animation: heroBgZoom 30s ease-in-out infinite alternate;
}
@keyframes heroBgZoom { 0% { transform: scale(1); } 100% { transform: scale(1.08); } }
.hero__bg-overlay {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(71,38,135,.35) 0%, transparent 55%),
    linear-gradient(180deg, rgba(9,9,26,.82) 0%, rgba(9,9,26,.72) 45%, var(--black) 100%);
}

.hero__glow { position: absolute; border-radius: 50%; filter: blur(130px); opacity: .5; animation: bgGlow 14s ease-in-out infinite alternate; }
.hero__glow--1 { width: 700px; height: 700px; top: -200px; left: -150px; background: radial-gradient(circle, var(--purple-2), transparent 60%); }
.hero__glow--2 { width: 500px; height: 500px; bottom: 0; right: -100px; background: radial-gradient(circle, var(--purple-3), transparent 60%); opacity: .3; animation-delay: -7s; }
@keyframes bgGlow { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(30px,25px) scale(1.1); } }

.hero__particles { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; opacity: .55; }

.hero__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 5;
}

/* Copy */
.hero__copy { max-width: 720px; margin: 0 auto; text-align: center; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.hero__title {
  font-family: var(--display); font-size: clamp(32px,3.8vw,56px);
  font-weight: 600; line-height: 1.08; letter-spacing: -.03em; color: white; margin-bottom: 26px;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--purple-3) 0%, #E0D0FF 50%, var(--purple-3) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: shine 6s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }
.reveal-line { display: block; overflow: hidden; }
.reveal-line > span { display: inline-block; transform: translateY(110%); transition: transform 1s var(--ease-out); }
.reveal-line.is-in > span { transform: translateY(0); }
.reveal-line:nth-child(2) > span { transition-delay: .1s; }
.reveal-line:nth-child(3) > span { transition-delay: .2s; }

.hero__subtitle { font-size: 17px; color: var(--muted); max-width: 540px; margin: 0 auto 28px; line-height: 1.65; }

.hero__stats { display: flex; justify-content: center; flex-wrap: wrap; gap: 36px; padding-top: 30px; border-top: 1px solid var(--line); }
.h-stat strong { display: block; font-family: var(--display); font-size: 36px; font-weight: 600; color: white; letter-spacing: -.02em; line-height: 1; }
.h-stat strong small { font-size: .55em; font-weight: 400; color: var(--muted); }
.h-stat p { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* Lead card */
.lead-card {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.04), inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
  position: relative;
}
.lead-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-3), transparent);
}
.lead-card__head {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--line);
}
.lead-card__head h3 { font-family: var(--display); font-size: 20px; font-weight: 600; color: white; margin-bottom: 4px; }
.lead-card__head p { font-size: 13px; color: var(--muted); }
.lead-form { padding: 20px 28px 24px; display: flex; flex-direction: column; gap: 14px; }

/* ── FORMS ─────────────────── */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 12.5px; font-weight: 500; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line-2);
  border-radius: var(--r-sm); color: white; font-family: var(--sans); font-size: 14.5px;
  outline: none; transition: border-color .25s, box-shadow .25s, background .25s;
  appearance: none; -webkit-appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%238888A8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; cursor: pointer; }
.field select option { background: #1A1A35; color: white; }
.field textarea { resize: vertical; min-height: 80px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--purple-3); background: rgba(165,123,255,.06); box-shadow: 0 0 0 3px rgba(165,123,255,.15); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input.is-error, .field select.is-error { border-color: var(--red); }
.form__note { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--muted-2); }

/* ── TRUST BAR ─────────────── */
.trust-bar {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.02);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.trust-bar__inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.trust-bar__label { font-size: 12px; color: var(--muted-2); font-weight: 500; white-space: nowrap; }
.trust-logos { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.trust-logos span { font-family: var(--display); font-size: 14px; font-weight: 600; color: var(--muted-2); letter-spacing: .04em; }

/* ═══════════════════════════════════════════
   PAIN SECTION
═══════════════════════════════════════════ */
.section--pain { background: linear-gradient(180deg, transparent, rgba(248,113,113,.02), transparent); }

.pain-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; margin-bottom: 0;
}
.pain-card {
  padding: 30px 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--line); border-radius: var(--r);
  position: relative; overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s;
}
.pain-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at top left, rgba(248,113,113,.06), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.pain-card:hover { transform: translateY(-4px); border-color: rgba(248,113,113,.2); }
.pain-card:hover::before { opacity: 1; }
.pain-card__icon {
  width: 44px; height: 44px; display: grid; place-items: center;
  background: rgba(248,113,113,.08); border: 1px solid rgba(248,113,113,.15);
  border-radius: 12px; color: #F87171; margin-bottom: 18px;
}
.pain-card__icon svg { width: 22px; height: 22px; }
.pain-card h4 { font-family: var(--display); font-size: 17px; font-weight: 600; color: white; margin-bottom: 10px; line-height: 1.3; }
.pain-card p { font-size: 14px; color: var(--muted); line-height: 1.6; position: relative; }

.pain__bottom {
  text-align: center; padding: 50px 24px 0;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.pain__bottom p { font-size: 18px; color: var(--muted); max-width: 560px; }
.pain__bottom strong { color: white; }

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-card {
  padding: 42px; background: linear-gradient(180deg, var(--surface), var(--graphite));
  border: 1px solid var(--line); border-radius: var(--r-xl);
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform .5s var(--ease), border-color .4s;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.service-card__glow {
  position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(165,123,255,.18), transparent 60%);
  top: -150px; right: -150px; border-radius: 50%;
  opacity: 0; transition: opacity .6s; z-index: -1;
}
.service-card:hover .service-card__glow { opacity: 1; }
.service-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.service-card__icon { width: 54px; height: 54px; display: grid; place-items: center; background: rgba(165,123,255,.1); border: 1px solid rgba(165,123,255,.25); border-radius: 14px; color: var(--purple-3); }
.service-card__icon svg { width: 24px; height: 24px; }
.service-card__tag { font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px; background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 100px; color: var(--muted); }
.service-card h3 { font-family: var(--display); font-size: 30px; font-weight: 600; letter-spacing: -.02em; color: white; margin-bottom: 14px; }
.service-card > p { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.service-card__list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 9px 18px; margin-bottom: 30px; }
.service-card__list li { font-size: 14px; color: var(--text); padding-left: 17px; position: relative; }
.service-card__list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; background: var(--purple-3); border-radius: 50%; box-shadow: 0 0 8px var(--glow); }
.service-card__link { display: inline-flex; align-items: center; gap: 7px; font-weight: 500; font-size: 14px; color: white; }
.service-card__link span { transition: transform .3s; display: inline-block; }
.service-card__link:hover span { transform: translateX(4px); }

.services-sub { margin-top: 80px; }
.services-sub__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.sub-card { padding: 26px 22px; background: rgba(255,255,255,.02); border: 1px solid var(--line); border-radius: var(--r); transition: all .4s var(--ease); }
.sub-card:hover { background: rgba(165,123,255,.04); border-color: rgba(165,123,255,.2); transform: translateY(-3px); }
.sub-card svg { width: 26px; height: 26px; color: var(--purple-3); margin-bottom: 16px; }
.sub-card h4 { font-family: var(--display); font-size: 16px; font-weight: 600; color: white; margin-bottom: 8px; }
.sub-card p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* ═══════════════════════════════════════════
   PORTFOLIO
═══════════════════════════════════════════ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-auto-rows: 320px;
  gap: 16px;
}
.work-card { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--graphite); isolation: isolate; }
.work-card__image { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 1.2s var(--ease-out), filter .6s; filter: saturate(.85) brightness(.8); }
.work-card:hover .work-card__image { transform: scale(1.06); filter: saturate(1.1) brightness(1); }
.work-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,9,26,.05) 0%, rgba(9,9,26,.88) 100%); z-index: 1; }
.work-card__info { position: absolute; left: 24px; right: 70px; bottom: 24px; z-index: 2; transform: translateY(14px); opacity: .85; transition: transform .5s var(--ease), opacity .5s; }
.work-card:hover .work-card__info { transform: translateY(0); opacity: 1; }
.work-card__tag { display: inline-block; font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; padding: 5px 11px; background: rgba(255,255,255,.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.18); border-radius: 100px; color: white; margin-bottom: 12px; }
.work-card__info h3 { font-family: var(--display); font-size: 22px; font-weight: 600; color: white; margin-bottom: 5px; letter-spacing: -.02em; }
.work-card__info p { color: rgba(255,255,255,.65); font-size: 13.5px; }
.work-card__arrow { position: absolute; right: 20px; bottom: 20px; width: 44px; height: 44px; display: grid; place-items: center; background: white; color: var(--black); border-radius: 50%; font-size: 17px; z-index: 2; transition: transform .4s var(--ease); }
.work-card:hover .work-card__arrow { transform: rotate(-45deg) scale(1.08); }

.work__cta { text-align: center; margin-top: 60px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.work__cta p { color: var(--muted); font-size: 16px; }

/* ═══════════════════════════════════════════
   PROCESS — 3 STEPS
═══════════════════════════════════════════ */
.steps { display: flex; align-items: stretch; gap: 0; max-width: 1020px; margin: 0 auto 60px; }
.step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 36px 28px; min-height: 340px; background: linear-gradient(180deg, var(--surface), var(--graphite)); border: 1px solid var(--line); border-radius: var(--r-lg); position: relative; transition: transform .4s var(--ease), border-color .4s; }
.step:hover { transform: translateY(-4px); border-color: rgba(165,123,255,.25); }

/* Middle step — highlighted */
.step:nth-of-type(2) {
  flex: 1.15;
  padding: 46px 32px;
  border-color: rgba(165,123,255,.3);
  background: linear-gradient(180deg, rgba(106,63,194,.14), var(--graphite));
  box-shadow: 0 20px 60px rgba(71,38,135,.25), 0 0 0 1px rgba(165,123,255,.08);
  z-index: 1;
  transform: scale(1.04);
}
.step:nth-of-type(2):hover { transform: scale(1.04) translateY(-4px); }
.step__num { font-family: var(--display); font-size: 44px; font-weight: 700; letter-spacing: -.03em; background: linear-gradient(135deg, var(--purple-3), var(--purple)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 20px; line-height: 1; }
.step__content { display: flex; flex-direction: column; flex: 1; }
.step__content h4 { font-family: var(--display); font-size: 20px; font-weight: 600; color: white; margin-bottom: 12px; }
.step__content p { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.step__chip { display: inline-block; padding: 6px 14px; background: rgba(165,123,255,.1); border: 1px solid rgba(165,123,255,.2); border-radius: 100px; font-size: 12px; font-weight: 500; color: var(--purple-3); align-self: center; }
.step__line {
  width: 46px; flex-shrink: 0; height: 3px;
  align-self: center;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--purple), var(--purple-3), var(--purple));
  background-size: 200% auto;
  animation: lineFlow 2.2s linear infinite;
  position: relative;
  box-shadow: 0 0 12px rgba(165,123,255,.35);
}
@keyframes lineFlow { to { background-position: -200% center; } }
.step__line::after {
  content: "";
  position: absolute; right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--purple-3);
  filter: drop-shadow(0 0 6px rgba(165,123,255,.6));
  animation: arrowNudge 1.4s ease-in-out infinite;
}
@keyframes arrowNudge {
  0%, 100% { transform: translateY(-50%) translateX(0); opacity: 1; }
  50%      { transform: translateY(-50%) translateX(4px); opacity: .7; }
}

.steps__cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.steps__cta p { font-size: 14px; color: var(--muted); }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-page { padding-top: 160px; min-height: 70vh; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: border-color .3s; }
.faq-item.is-open { border-color: rgba(165,123,255,.3); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; text-align: left;
  font-size: 16px; font-weight: 500; color: var(--text);
  background: rgba(255,255,255,.02); cursor: pointer;
  transition: color .25s, background .25s;
}
.faq-q:hover { color: white; background: rgba(255,255,255,.04); }
.faq-item.is-open .faq-q { color: white; }
.faq-icon { flex-shrink: 0; transition: transform .35s var(--ease); color: var(--purple-3); }
.faq-item.is-open .faq-icon { transform: rotate(180deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .4s var(--ease); }
.faq-a:not([hidden]) { padding: 0 24px 22px; max-height: 300px; }
.faq-a p { font-size: 15px; color: var(--muted); line-height: 1.7; }

.faq__bottom { text-align: center; margin-top: 50px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.faq__bottom p { color: var(--muted); font-size: 15px; }

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cta { position: relative; padding: 130px 0 150px; overflow: hidden; }
.cta__glow { position: absolute; width: 900px; height: 900px; top: 50%; left: 50%; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(71,38,135,.55), transparent 55%); filter: blur(90px); z-index: 0; }

/* ═══════════════════════════════════════════
   LEAD FUNNEL
═══════════════════════════════════════════ */
.funnel {
  position: relative; z-index: 2;
  max-width: 760px; margin: 0 auto;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 40px 100px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.04), inset 0 1px 0 rgba(255,255,255,.08);
  padding: 44px clamp(24px, 5vw, 56px) 48px;
  overflow: hidden;
}
.funnel::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-3), transparent);
}

/* Progress */
.funnel__progress { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 40px; }
.funnel__progress-step { display: flex; align-items: center; gap: 10px; }
.funnel__dot {
  width: 32px; height: 32px; display: grid; place-items: center;
  border-radius: 50%; font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--line-2); color: var(--muted);
  transition: all .4s var(--ease);
}
.funnel__progress-step.is-active .funnel__dot {
  background: linear-gradient(135deg, var(--purple-3), var(--purple));
  border-color: transparent; color: white;
  box-shadow: 0 0 24px rgba(165,123,255,.4);
}
.funnel__progress-step.is-done .funnel__dot { background: rgba(74,222,128,.15); border-color: rgba(74,222,128,.4); color: var(--green); }
.funnel__dot-label { font-size: 13px; font-weight: 500; color: var(--muted); }
.funnel__progress-step.is-active .funnel__dot-label { color: white; }
.funnel__progress-line { width: 70px; height: 2px; background: var(--line-2); border-radius: 2px; overflow: hidden; }
.funnel__progress-line i { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--purple-3), var(--purple)); transition: width .6s var(--ease-out); }

/* Steps */
.funnel__step { display: none; animation: stepIn .5s var(--ease-out); }
.funnel__step.is-active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.funnel__head { text-align: center; margin-bottom: 34px; }
.funnel__head h2 {
  font-family: var(--display); font-size: clamp(26px, 3vw, 34px); font-weight: 600;
  letter-spacing: -.02em; color: white; margin-bottom: 10px;
}
.funnel__head p { color: var(--muted); font-size: 15.5px; max-width: 440px; margin: 0 auto; line-height: 1.6; }

.funnel__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
#leadStep1 { display: flex; flex-direction: column; gap: 22px; }
#leadStep1 .field label em { color: var(--purple-3); font-style: normal; }

/* Option cards */
.option-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 4px; }
.option-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  padding: 18px 16px; text-align: left;
  background: rgba(255,255,255,.03);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  color: var(--muted);
  cursor: pointer;
  transition: all .3s var(--ease);
}
.option-card svg { color: var(--purple-3); margin-bottom: 4px; }
.option-card strong { font-size: 14.5px; font-weight: 600; color: var(--text); font-family: var(--display); letter-spacing: -.01em; }
.option-card span { font-size: 12px; color: var(--muted); line-height: 1.4; }
.option-card:hover { border-color: rgba(165,123,255,.4); background: rgba(165,123,255,.05); transform: translateY(-2px); }
.option-card.is-selected {
  border-color: var(--purple-3);
  background: rgba(165,123,255,.1);
  box-shadow: 0 0 0 1px var(--purple-3), 0 8px 30px rgba(165,123,255,.15);
}
.option-card.is-selected strong { color: white; }
.option-cards--budget .option-card, .option-cards--lang .option-card { align-items: center; text-align: center; padding: 20px 12px; }
.option-cards.is-error .option-card { border-color: rgba(248,113,113,.5); }

/* Checkbox */
.check { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; color: var(--muted); user-select: none; margin-top: -8px; }
.check input { position: absolute; opacity: 0; pointer-events: none; }
.check__box {
  width: 20px; height: 20px; display: grid; place-items: center;
  border: 1.5px solid var(--line-2); border-radius: 6px;
  color: transparent; transition: all .25s var(--ease); flex-shrink: 0;
}
.check input:checked + .check__box {
  background: linear-gradient(135deg, var(--purple-3), var(--purple));
  border-color: transparent; color: white;
}
.check:hover .check__box { border-color: var(--purple-3); }

#websiteField { transition: opacity .3s, max-height .3s; }
#websiteField.is-hidden { display: none; }

.funnel__error { color: var(--red); font-size: 13.5px; text-align: center; }

/* Loading button */
.btn.is-loading { pointer-events: none; opacity: .75; position: relative; }
.btn.is-loading > span { visibility: hidden; }
.btn.is-loading > svg { visibility: hidden; }
.btn.is-loading::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 18px; height: 18px; margin: -9px 0 0 -9px;
  border: 2px solid rgba(255,255,255,.3); border-top-color: white;
  border-radius: 50%; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Scheduler ── */
.scheduler { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; }
.scheduler__calendar {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px;
}
.scheduler__cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.scheduler__cal-head strong { font-family: var(--display); font-size: 15.5px; font-weight: 600; color: white; }
.scheduler__nav {
  width: 32px; height: 32px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 8px; color: var(--muted);
  transition: all .25s;
}
.scheduler__nav:hover { color: white; border-color: var(--purple-3); background: rgba(165,123,255,.08); }
.scheduler__weekdays { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; margin-bottom: 6px; }
.scheduler__weekdays span { text-align: center; font-size: 11px; font-weight: 600; letter-spacing: .06em; color: var(--muted-2); text-transform: uppercase; padding: 4px 0; }
.scheduler__days { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.scheduler__day {
  aspect-ratio: 1; display: grid; place-items: center;
  font-size: 13.5px; font-weight: 500; color: var(--text);
  border-radius: 10px; transition: all .2s var(--ease);
}
.scheduler__day:not(:disabled):hover { background: rgba(165,123,255,.12); color: white; }
.scheduler__day:disabled { color: var(--muted-2); opacity: .4; cursor: default; }
.scheduler__day.is-selected {
  background: linear-gradient(135deg, var(--purple-3), var(--purple));
  color: white; box-shadow: 0 4px 18px rgba(165,123,255,.35);
}

.scheduler__times { display: flex; flex-direction: column; }
.scheduler__times-label { font-size: 14px; font-weight: 600; color: white; margin-bottom: 12px; font-family: var(--display); }
.scheduler__slots { display: flex; flex-direction: column; gap: 8px; max-height: 300px; overflow-y: auto; padding-right: 4px; }
.scheduler__slots::-webkit-scrollbar { width: 4px; }
.scheduler__slot {
  padding: 12px; text-align: center;
  border: 1.5px solid var(--line); border-radius: 12px;
  font-size: 14px; font-weight: 500; color: var(--text);
  transition: all .25s var(--ease);
}
.scheduler__slot:hover { border-color: rgba(165,123,255,.5); background: rgba(165,123,255,.06); }
.scheduler__slot.is-selected {
  border-color: var(--purple-3);
  background: rgba(165,123,255,.12);
  color: white;
  box-shadow: 0 0 0 1px var(--purple-3);
}
.scheduler__slots-msg { font-size: 13.5px; color: var(--muted); line-height: 1.6; padding: 4px 2px; }

.scheduler__tz { max-width: 340px; margin: 20px auto 0; }
.scheduler__tz label { display: flex; align-items: center; justify-content: center; text-align: center; }

.funnel__nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 28px; }
.funnel__nav .btn--primary:disabled { opacity: .45; cursor: not-allowed; }

/* ── Success ── */
.funnel__success { text-align: center; padding: 30px 0 10px; }
.funnel__success-icon {
  width: 76px; height: 76px; margin: 0 auto 26px;
  display: grid; place-items: center;
  background: rgba(74,222,128,.12);
  border: 1.5px solid rgba(74,222,128,.4);
  border-radius: 50%; color: var(--green);
  animation: popIn .6s var(--ease-out);
  box-shadow: 0 0 50px rgba(74,222,128,.2);
}
@keyframes popIn { 0% { transform: scale(.4); opacity: 0; } 70% { transform: scale(1.1); } 100% { transform: scale(1); opacity: 1; } }
.funnel__success h2 { font-family: var(--display); font-size: clamp(24px,3vw,32px); color: white; margin-bottom: 16px; letter-spacing: -.02em; }
.funnel__success p { color: var(--muted); font-size: 16px; line-height: 1.7; }
.funnel__success p strong { color: white; }
.funnel__success .tz { font-size: 13px; color: var(--muted-2); }
.funnel__success-note { margin-top: 18px; font-size: 13.5px !important; color: var(--muted-2) !important; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  position: relative;
  background: var(--graphite);
  border-top: 1px solid var(--line);
  padding: 64px 0 26px;
  z-index: 2;
  font-size: 14px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

/* Brand */
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  color: white;
}
.footer__logo svg { width: 26px; height: 26px; flex-shrink: 0; }
.footer__logo em { font-style: normal; color: var(--purple-3); }
.footer__logo-img { height: 28px; width: auto; }
.footer__brand p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13.5px;
  max-width: 280px;
  line-height: 1.6;
}

/* Columns */
.footer__col h5 {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: white;
  margin: 0 0 16px;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin: 0; }
.footer__col li a {
  display: inline-block;
  padding: 5px 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
  transition: color .25s;
}
.footer__col li a:hover { color: white; }

/* Socials */
.footer__socials { display: flex; gap: 8px; margin-top: 16px; }
.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  transition: all .3s;
}
.footer__socials a:hover {
  background: rgba(165,123,255,.1);
  border-color: var(--purple-3);
  color: white;
  transform: translateY(-2px);
}
.footer__socials a svg { width: 15px; height: 15px; max-width: 15px; max-height: 15px; }

/* Bottom bar */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--muted-2);
}

/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   MOBILE STICKY CTA
═══════════════════════════════════════════ */
.mobile-sticky {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 700;
  padding: 14px 16px;
  background: rgba(9,9,26,.92);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--line);
  transform: translateY(100%);
  transition: transform .4s var(--ease-out);
}
.mobile-sticky.is-visible { transform: translateY(0); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero__split { grid-template-columns: 1fr; gap: 50px; }
  .cta__inner { grid-template-columns: 1fr; gap: 50px; }
  .scheduler { grid-template-columns: 1fr; }
  .scheduler__slots { flex-direction: row; flex-wrap: wrap; max-height: none; }
  .scheduler__slot { flex: 1 1 calc(25% - 8px); min-width: 90px; }
  .services-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .pain-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .section { padding: 90px 0; }
  .work-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .work-grid .work-card { grid-column: 1 !important; }
  .steps { flex-direction: column; gap: 0; }
  .step { min-height: 0; width: 100%; }
  .step:nth-of-type(2) { transform: none; padding: 36px 28px; }
  .step:nth-of-type(2):hover { transform: translateY(-4px); }
  .step__line {
    width: 3px; height: 40px;
    background: linear-gradient(180deg, var(--purple), var(--purple-3), var(--purple));
    background-size: auto 200%;
    animation: lineFlowY 2.2s linear infinite;
    flex-shrink: 0;
  }
  .step__line::after {
    top: auto; bottom: -6px; right: 50%; left: auto;
    transform: translateX(50%);
    border-left-color: transparent;
    border-top-color: var(--purple-3);
    animation: arrowNudgeY 1.4s ease-in-out infinite;
  }
  .mobile-sticky { display: block; }
}

@keyframes lineFlowY { to { background-position: center -200%; } }
@keyframes arrowNudgeY {
  0%, 100% { transform: translateX(50%) translateY(0); opacity: 1; }
  50%      { transform: translateX(50%) translateY(4px); opacity: .7; }
}

/* ── Tablet (iPad portrait y similares) ── */
@media (max-width: 820px) {
  .service-card { padding: 32px 28px; }
  .pain-card { padding: 26px 22px; }
  .services-sub__grid { grid-template-columns: repeat(2, 1fr); }
  .option-cards[data-group="service"] { grid-template-columns: repeat(2, 1fr); }
  .option-cards[data-group="service"] .option-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .hero { padding: 130px 0 80px; }
  .hero__title { font-size: 30px; }
  .hero__stats { gap: 20px; }
  .pain-grid { grid-template-columns: 1fr; }
  .services-sub__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 6px; text-align: center; }
  .cta { padding: 80px 0 100px; }
  .funnel { padding: 32px 18px 36px; }
  .funnel__row { grid-template-columns: 1fr; }
  .option-cards { grid-template-columns: 1fr; }
  .option-cards--budget { grid-template-columns: 1fr; }
  .funnel__dot-label { display: none; }
  .funnel__nav { flex-direction: column-reverse; }
  .funnel__nav .btn { width: 100%; justify-content: center; }
  .scheduler__slot { flex: 1 1 calc(50% - 8px); }
  .trust-bar__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .service-card { padding: 28px 22px; }
  .service-card__list { grid-template-columns: 1fr; }
  .pain-card { padding: 24px 20px; }
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
}

/* ── Teléfonos muy angostos (iPhone SE, Android compactos) ── */
@media (max-width: 400px) {
  .hero__title { font-size: 25px; }
  .hero__stats { gap: 16px; row-gap: 18px; }
  .h-stat strong { font-size: 30px; }
  .section__title { font-size: 27px; }
  .funnel { padding: 24px 12px 28px; }
  .scheduler__calendar { padding: 14px; }
  .scheduler__days, .scheduler__weekdays { gap: 3px; }
  .scheduler__weekdays span { font-size: 10px; }
  .scheduler__day { font-size: 12px; }
  .option-cards--budget .option-card, .option-cards--lang .option-card { padding: 16px 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
