/* ── Imports ─────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
  background: #07101e;
  color: #d8e8f5;
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  --cyan:     #38c5e6;
  --cyan-dim: rgba(56,197,230,.12);
  --border:   rgba(56,197,230,.14);
  --border-h: rgba(56,197,230,.45);
  --text:     #d8e8f5;
  --muted:    #7b9ab8;
  --ease:     cubic-bezier(.4,0,.2,1);
  --display:  'Syne', 'Segoe UI', sans-serif;
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600;
  cursor: pointer; border: none;
  transition: all .25s var(--ease);
}
.btn--primary { background: var(--cyan); color: #07101e; }
.btn--primary:hover { background: #62d4ea; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(56,197,230,.28); }
.btn--ghost { background: transparent; color: var(--cyan); border: 1.5px solid var(--border-h); }
.btn--ghost:hover { background: var(--cyan-dim); }
.btn--sm { padding: 9px 20px; font-size: 14px; }

/* ── Navbar ─────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .35s, border-color .35s;
}
.nav.scrolled {
  background: rgba(7,16,30,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--border);
}
.nav__inner {
  max-width: 1280px; margin: 0 auto; padding: 20px 40px;
  display: flex; align-items: center; gap: 32px;
}
.nav__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__logo img { height: 32px; width: auto; }
.nav__logo-text { font-family: var(--display); font-size: 17px; font-weight: 700; letter-spacing: -.01em; }
.nav__links { display: flex; gap: 32px; margin-left: auto; }
.nav__links a { font-size: 14px; color: var(--muted); transition: color .2s; }
.nav__links a:hover, .nav__links a.active { color: var(--text); }
.nav__cta { flex-shrink: 0; }
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: .3s; }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: #07101e;
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 140px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero__left { max-width: 680px; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: var(--cyan); padding: 6px 14px;
  border: 1px solid var(--border-h); border-radius: 100px; margin-bottom: 32px;
}
.hero__tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.6)} }
.hero__title {
  font-family: var(--display);
  font-size: clamp(44px, 6.5vw, 82px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.025em;
  text-wrap: balance;
  margin-bottom: 24px;
}
.hero__title span {
  background: linear-gradient(130deg, #38c5e6 0%, #72e0f6 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero__sub {
  font-size: 18px; font-weight: 300;
  color: var(--muted); max-width: 500px;
  line-height: 1.8; margin-bottom: 40px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__right {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero__logo-wrap {
  position: relative; width: 340px; height: 340px;
  display: flex; align-items: center; justify-content: center;
}
.hero__logo-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(circle, rgba(56,197,230,.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: logoGlow 4s ease-in-out infinite alternate;
}
@keyframes logoGlow { from{opacity:.5;transform:scale(.95)} to{opacity:1;transform:scale(1.05)} }
.hero__logo-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(56,197,230,.15);
  animation: rotate 20s linear infinite;
}
.hero__logo-ring::before {
  content: ''; position: absolute; top: -3px; left: 50%; width: 6px; height: 6px;
  background: var(--cyan); border-radius: 50%; transform: translateX(-50%);
}
@keyframes rotate { to { transform: rotate(360deg); } }
.hero__logo-img { width: 220px; height: auto; position: relative; z-index: 1; }
.hero__scroll { position: absolute; bottom: 40px; left: 40px; z-index: 2; display: flex; align-items: center; gap: 12px; }
.hero__scroll-line { width: 40px; height: 1px; background: linear-gradient(to right, var(--cyan), transparent); animation: lineGrow 2s ease-in-out infinite; }
@keyframes lineGrow { 0%,100%{width:24px;opacity:.3} 50%{width:48px;opacity:1} }
.hero__scroll span { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }

/* ── Services ───────────────────────────────────────────────────────────── */
.services {
  background: #0a1525;
  padding: 110px 40px;
  position: relative;
}
.services::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-h), transparent);
}
.services__header {
  max-width: 1280px; margin: 0 auto 72px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
}
.services__header-left { flex: 1; }
.services__eyebrow {
  display: block; font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 16px;
}
.services__title {
  font-family: var(--display);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700; letter-spacing: -.02em; line-height: 1.12;
}
.services__sub {
  font-size: 16px; color: var(--muted); max-width: 320px;
  line-height: 1.7; font-weight: 300;
  padding-top: 6px;
}
.services__grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--border);
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
}
.svc {
  background: #0c1c34; padding: 48px 40px;
  position: relative; overflow: hidden;
  transition: background .3s;
  display: flex; flex-direction: column;
}
.svc::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform: scaleX(0); transition: transform .45s var(--ease);
}
.svc:hover { background: #0e2040; }
.svc:hover::after { transform: scaleX(1); }
.svc__icon { width: 36px; height: 36px; color: var(--cyan); margin-bottom: 20px; opacity: .8; }
.svc__title { font-family: var(--display); font-size: 19px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 12px; }
.svc__text { font-size: 14.5px; color: var(--muted); line-height: 1.7; font-weight: 300; margin-bottom: 28px; flex: 1; }
.svc__btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: #07101e;
  text-decoration: none; letter-spacing: .01em;
  background: var(--cyan);
  border: none; border-radius: 7px;
  padding: 11px 20px;
  box-shadow: 0 0 18px rgba(56,197,230,.25);
  transition: box-shadow .25s, opacity .2s, transform .2s;
  align-self: flex-start;
}
.svc__btn::after { content: '→'; font-size: 15px; transition: transform .25s; }
.svc__btn:hover {
  opacity: .9;
  box-shadow: 0 0 30px rgba(56,197,230,.45);
  transform: translateY(-1px);
}
.svc__btn:hover::after { transform: translateX(4px); }

/* ── Ciberseguridad ─────────────────────────────────────────────────────── */
.cyber {
  padding: 110px 40px;
  background: #030912;
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(56,197,230,.1);
}
.cyber__bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(56,197,230,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,197,230,.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cyber__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(56,197,230,.06) 0%, transparent 60%);
}
.cyber__inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }

.cyber__header { max-width: 660px; margin-bottom: 64px; }
.cyber__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 20px;
}
.cyber__eyebrow::before {
  content: ''; display: inline-block; width: 18px; height: 1px; background: var(--cyan);
}
.cyber__title {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 700; letter-spacing: -.02em; line-height: 1.08;
  margin-bottom: 20px;
}
.cyber__sub {
  font-size: 16.5px; color: var(--muted); line-height: 1.75; font-weight: 300;
  margin-bottom: 24px; max-width: 580px;
}
.cyber__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--cyan);
  padding: 7px 16px;
  background: rgba(56,197,230,.08);
  border: 1px solid rgba(56,197,230,.25);
  border-radius: 4px;
}

.cyber__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 40px;
}
.cyber__card {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(56,197,230,.12);
  border-radius: 10px; padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: border-color .3s, background .3s;
}
.cyber__card:hover {
  border-color: rgba(56,197,230,.35);
  background: rgba(56,197,230,.04);
}
.cyber__card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56,197,230,.4), transparent);
  opacity: 0; transition: opacity .35s;
}
.cyber__card:hover::before { opacity: 1; }
.cyber__card-head {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px;
}
.cyber__card-icon { width: 32px; height: 32px; color: var(--cyan); flex-shrink: 0; opacity: .85; margin-top: 2px; }
.cyber__card-title { font-family: var(--display); font-size: 17px; font-weight: 700; letter-spacing: -.01em; line-height: 1.2; }
.cyber__card-text { font-size: 13.5px; color: var(--muted); line-height: 1.7; font-weight: 300; margin-bottom: 20px; }
.cyber__list {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
}
.cyber__list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: #6b93b0; font-weight: 400;
}
.cyber__list li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--cyan); flex-shrink: 0; opacity: .7;
}

.cyber__method {
  display: flex; align-items: center;
  background: rgba(255,255,255,.015);
  border: 1px solid rgba(56,197,230,.1);
  border-radius: 8px; padding: 20px 32px;
  gap: 0;
}
.cyber__method-item {
  display: flex; align-items: center; gap: 12px;
  flex: 1; padding: 8px 16px;
  font-size: 13.5px; color: var(--muted); font-weight: 300;
}
.cyber__method-num {
  font-family: var(--display); font-size: 13px; font-weight: 700;
  color: var(--cyan); min-width: 24px; opacity: .8;
}
.cyber__method-sep {
  width: 1px; height: 32px; background: rgba(56,197,230,.15); flex-shrink: 0;
}

@media(max-width:900px){
  .cyber__grid{ grid-template-columns: 1fr; gap: 12px; }
  .cyber__method{ flex-direction: column; align-items: flex-start; gap: 4px; padding: 20px 24px; }
  .cyber__method-sep{ width: 100%; height: 1px; }
}
@media(max-width:640px){
  .cyber{ padding: 80px 20px; }
}

/* ── Stats band ─────────────────────────────────────────────────────────── */
.stats {
  background: #040c18;
  padding: 80px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px;
  background: var(--border); border-radius: 10px; overflow: hidden;
}
.stat { background: #040c18; padding: 48px 40px; position: relative; }
.stat--text { background: #040c18; padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.stat__num {
  font-family: var(--display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 700; letter-spacing: -.03em; line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #38c5e6, #7adeee);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat__label { font-size: 14px; color: var(--muted); letter-spacing: .02em; font-weight: 300; }
.stat--text p {
  font-size: 16px; color: var(--muted); line-height: 1.75; font-weight: 300;
  border-left: 2px solid var(--border-h); padding-left: 20px;
}

/* ── Process — dark moving section ─────────────────────────────────────── */
.process {
  padding: 110px 40px;
  background: #000;
  position: relative; overflow: hidden;
}
.process__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(14,32,72,.7) 0%, transparent 70%);
  animation: bgPulse 8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes bgPulse {
  from { opacity: .4; transform: scale(.95); }
  to   { opacity: 1; transform: scale(1.05); }
}
.process__inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.process__header { margin-bottom: 72px; }
.process__eyebrow {
  display: block; font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 16px;
}
.process__title {
  font-family: var(--display);
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 700; letter-spacing: -.02em; line-height: 1.1;
}
.process__steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  position: relative; gap: 0;
}
.process__connector {
  position: absolute; top: 26px;
  left: calc(12.5% + 10px); right: calc(12.5% + 10px);
  height: 1px; border-top: 1px dashed rgba(56,197,230,.25);
  pointer-events: none;
}
.step { padding: 0 20px; }
.step__num {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(56,197,230,.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 14px; font-weight: 700; color: var(--cyan);
  background: #000; margin-bottom: 24px; position: relative; z-index: 1;
  transition: border-color .3s, background .3s;
}
.step:hover .step__num { border-color: var(--cyan); background: rgba(56,197,230,.07); }
.step__title { font-family: var(--display); font-size: 16px; font-weight: 700; margin-bottom: 10px; letter-spacing: -.01em; }
.step__text { font-size: 13.5px; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ── CTA ────────────────────────────────────────────────────────────────── */
.cta {
  padding: 120px 40px;
  background: #07101e;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(56,197,230,.07) 0%, transparent 60%);
  pointer-events: none;
}
.cta__inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.cta__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.cta__left {}
.cta__eyebrow {
  display: block; font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 20px;
}
.cta__title {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700; letter-spacing: -.02em; line-height: 1.1;
  margin-bottom: 20px;
}
.cta__sub { font-size: 17px; color: var(--muted); line-height: 1.75; font-weight: 300; }
.cta__right {
  display: flex; flex-direction: column; gap: 16px;
}
.cta__card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  background: rgba(56,197,230,.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color .25s, background .25s;
}
.cta__card:hover { border-color: var(--border-h); background: rgba(56,197,230,.07); }
.cta__card-icon { color: var(--cyan); flex-shrink: 0; }
.cta__card-info {}
.cta__card-label { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.cta__card-value { font-size: 16px; font-weight: 500; color: var(--text); }
.cta__btn-wrap { margin-top: 8px; }

/* ── Contact form ────────────────────────────────────────────────────────── */
.cf { display: flex; flex-direction: column; gap: 16px; }
.cf__row { display: flex; gap: 14px; }
.cf__row--2 > * { flex: 1; min-width: 0; }
.cf__group { display: flex; flex-direction: column; gap: 6px; }
.cf__label { font-size: 12px; font-weight: 600; letter-spacing: .06em; color: var(--muted); text-transform: uppercase; }
.cf__input {
  background: #0d1f3a;
  border: 1px solid rgba(56,197,230,.22);
  border-radius: 7px;
  padding: 12px 16px;
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  font-size: 14.5px; font-weight: 400;
  color: #d8e8f5;
  outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;
  /* evitar que el browser pise el fondo con su propio estilo */
  -webkit-appearance: none;
  appearance: none;
  color-scheme: dark;
}
.cf__input::placeholder { color: rgba(123,154,184,.45); }
.cf__input:focus { border-color: rgba(56,197,230,.6); background: #0f2444; }
.cf__input.cf__input--err { border-color: #e05c5c; }
/* autofill de Chrome/Edge: evitar el fondo amarillo/blanco */
.cf__input:-webkit-autofill,
.cf__input:-webkit-autofill:hover,
.cf__input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #0d1f3a inset;
  -webkit-text-fill-color: #d8e8f5;
  caret-color: #d8e8f5;
}
.cf__textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.cf__footer { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cf__btn { flex-shrink: 0; }
.cf__btn:disabled { opacity: .6; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
.cf__meta { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--muted); }
.cf__status { font-size: 13.5px; min-height: 20px; }
.cf__status--ok  { color: #4ade80; }
.cf__status--err { color: #f87171; }
.cf__select {
  appearance: none; -webkit-appearance: none;
  background-color: #0d1f3a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237b9ab8' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px; cursor: pointer; color-scheme: dark;
}
.cf__select option { background: #0d1f3a; color: #d8e8f5; }
.cf__ok-icon { width: 48px; height: 48px; color: #4ade80; flex-shrink: 0; }
.cf--success {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  padding: 40px 36px;
  background: rgba(74,222,128,.04);
  border: 1px solid rgba(74,222,128,.2);
  border-radius: 10px;
}
.cf__ok-title { font-family: var(--display); font-size: 20px; font-weight: 700; color: #4ade80; }
.cf__ok-sub   { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.cf__alts { margin-top: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.cf__alt {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted);
  transition: color .2s;
}
.cf__alt:hover { color: var(--cyan); }

@media(max-width:520px){
  .cf__row--2 { flex-direction: column; }
  .cf__footer { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  background: #030810;
  border-top: 1px solid var(--border);
  padding: 36px 40px;
}
.footer__inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer__logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; }
.footer__logo img { height: 26px; }
.footer__copy { font-size: 13px; color: var(--muted); }
.footer__links { display: flex; gap: 24px; }
.footer__links a { font-size: 13px; color: var(--muted); transition: color .2s; }
.footer__links a:hover { color: var(--cyan); }

/* ── Reveal ─────────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.rd1{transition-delay:.07s} .rd2{transition-delay:.14s} .rd3{transition-delay:.21s}
.rd4{transition-delay:.28s} .rd5{transition-delay:.35s}

/* ── Reduced motion ─────────────────────────────────────────────────────── */
@media(prefers-reduced-motion:reduce){
  .reveal{transition:none;opacity:1;transform:none}
  .hero__tag::before,.hero__logo-ring,.hero__logo-glow,.process__bg,.hero__scroll-line{animation:none}
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media(max-width:1080px){
  .hero__inner{ grid-template-columns: 1fr; }
  .hero__right{ display: none; }
  .cta__grid{ grid-template-columns: 1fr; gap: 48px; }
  .services__header{ flex-direction: column; align-items: flex-start; }
}
@media(max-width:900px){
  .services__grid{ grid-template-columns: 1fr 1fr; }
  .svc:nth-child(2n){ border-right: none; }
  .process__steps{ grid-template-columns: 1fr 1fr; gap: 48px; }
  .process__connector{ display: none; }
  .stats__inner{ grid-template-columns: 1fr 1fr; }
}
@media(max-width:640px){
  .nav__links,.nav__cta{ display: none; }
  .nav__burger{ display: flex; }
  .nav__inner{ padding: 18px 20px; }
  .nav__links.open{
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(7,16,30,.98); backdrop-filter: blur(12px);
    padding: 20px; border-bottom: 1px solid var(--border); gap: 20px;
  }
  .hero__inner{ padding: 120px 20px 80px; }
  .services{ padding: 80px 20px; }
  .services__grid{ grid-template-columns: 1fr; }
  .stats__inner{ grid-template-columns: 1fr; }
  .process{ padding: 80px 20px; }
  .process__steps{ grid-template-columns: 1fr; gap: 40px; }
  .cta{ padding: 80px 20px; }
  .footer{ padding: 32px 20px; }
  .footer__inner{ flex-direction: column; text-align: center; }
  .hero__actions{ flex-direction: column; }
  .hero__actions .btn{ justify-content: center; }
}
