/* ============================================================
   NEURAL GROWTH MARKETING — core styles
   Palette: deep-space navy + synaptic green/cyan accents
   Type: Space Grotesk (display/body) + JetBrains Mono (labels)
   ============================================================ */

:root {
  --bg-0: #03060f;
  --bg-1: #060d1f;
  --bg-2: #0a1530;
  --bg-card: rgba(13, 26, 54, 0.55);
  --ink: #e9f1ff;
  --muted: #93a5c7;
  --faint: #5c6f93;
  --line: rgba(125, 165, 225, 0.14);
  --acc-a: #3df2a4;            /* synaptic green */
  --acc-b: #38d4ff;            /* signal cyan   */
  --acc-a-soft: rgba(61, 242, 164, 0.12);
  --acc-b-soft: rgba(56, 212, 255, 0.10);
  --grad: linear-gradient(92deg, var(--acc-a), var(--acc-b));
  --font-d: "Space Grotesk", "Helvetica Neue", sans-serif;
  --font-m: "JetBrains Mono", monospace;
  --cut: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-0);
  color: var(--ink);
  font-family: var(--font-d);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--acc-a); color: #03240f; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- utilities ---------- */

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

.mono {
  font-family: var(--font-m);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.chamfer {
  clip-path: polygon(
    var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)),
    calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut)
  );
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--acc-a);
}
.kicker::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--grad);
}

.section { padding: 110px 0; position: relative; }

.sec-head { max-width: 640px; margin-bottom: 64px; }
.sec-head h2 {
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 14px 0 16px;
  text-wrap: pretty;
}
.sec-head p { color: var(--muted); font-size: 18px; text-wrap: pretty; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: #02180c;
  box-shadow: 0 0 0 rgba(61, 242, 164, 0);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(61, 242, 164, 0.35);
}
.btn-ghost {
  border-color: rgba(125, 165, 225, 0.35);
  color: var(--ink);
  background: rgba(10, 21, 48, 0.4);
}
.btn-ghost:hover {
  border-color: var(--acc-b);
  box-shadow: 0 0 24px rgba(56, 212, 255, 0.2);
  transform: translateY(-2px);
}
.btn .arr { transition: transform 0.25s ease; }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.nav.scrolled {
  background: rgba(4, 8, 18, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.12em;
}
.logo .neuron { width: 34px; height: 34px; flex: none; }
.logo .logo-text { white-space: nowrap; }
.logo b { color: var(--ink); }
.logo span { color: var(--acc-a); font-weight: 500; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 18px; }

.lang-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.lang-switch button {
  background: none;
  border: none;
  color: var(--faint);
  font-family: var(--font-m);
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 8px 14px;
  transition: all 0.25s ease;
}
.lang-switch button.active {
  background: var(--acc-a-soft);
  color: var(--acc-a);
}

.nav .btn { padding: 11px 22px; font-size: 13.5px; }

/* ---------- hero shared ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
#neural-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--bg-0));
  z-index: 1;
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(61, 242, 164, 0.35);
  border-radius: 999px;
  background: rgba(4, 12, 26, 0.6);
  color: var(--acc-a);
  font-family: var(--font-m);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--acc-a);
  box-shadow: 0 0 10px var(--acc-a);
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero h1 {
  font-size: clamp(42px, 6.4vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-wrap: balance;
  margin-bottom: 26px;
}
.hero-sub {
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
  max-width: 560px;
  margin-bottom: 42px;
  text-wrap: pretty;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* variant visibility */
.hero-v { display: none; }
body[data-hero="core"]   #hero-core,
body[data-hero="console"] #hero-console,
body[data-hero="orbit"]  #hero-orbit { display: flex; }

/* V1 — core: centered */
#hero-core { text-align: center; }
#hero-core .hero-sub { margin-left: auto; margin-right: auto; }
#hero-core .hero-ctas { justify-content: center; }

/* V2 — console: split */
.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.console {
  background: rgba(5, 13, 28, 0.85);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(56, 212, 255, 0.07);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.console-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
}
.console-bar i {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--faint);
  opacity: 0.45;
}
.console-bar i:first-child { background: var(--acc-a); opacity: 0.8; }
.console-bar .mono { color: var(--faint); margin-left: 10px; letter-spacing: 0.08em; }
.console-body {
  padding: 22px 22px 26px;
  font-family: var(--font-m);
  font-size: 13.5px;
  line-height: 2.05;
  min-height: 300px;
}
.console-body .ln { display: flex; gap: 10px; opacity: 0; transform: translateY(6px); }
.console-body .ln.on { opacity: 1; transform: none; transition: all 0.4s ease; }
.console-body .ok { color: var(--acc-a); }
.console-body .tag { color: var(--acc-b); }
.console-body .dim { color: var(--faint); }
.console-body .caret {
  display: inline-block;
  width: 9px; height: 17px;
  background: var(--acc-a);
  vertical-align: middle;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* V3 — orbit: oversized type + rotating ring */
#hero-orbit { text-align: center; }
#hero-orbit h1 { font-size: clamp(48px, 7.6vw, 108px); }
#hero-orbit .outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(125, 165, 225, 0.5);
}
#hero-orbit .hero-sub { margin-left: auto; margin-right: auto; }
#hero-orbit .hero-ctas { justify-content: center; }
.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: min(72vw, 760px);
  aspect-ratio: 1;
  transform: translate(-50%, -54%);
  border: 1px dashed rgba(125, 165, 225, 0.22);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: spin 60s linear infinite;
}
.orbit-ring::before, .orbit-ring::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
}
.orbit-ring::before {
  top: -7px; left: 50%;
  background: var(--acc-a);
  box-shadow: 0 0 18px var(--acc-a);
}
.orbit-ring::after {
  bottom: 12%; left: 4%;
  background: var(--acc-b);
  box-shadow: 0 0 18px var(--acc-b);
}
@keyframes spin { to { transform: translate(-50%, -54%) rotate(360deg); } }

.marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  border-top: 1px solid var(--line);
  background: rgba(4, 8, 18, 0.6);
  overflow: hidden;
  padding: 14px 0;
  display: none;
}
body[data-hero="orbit"] .marquee { display: block; }
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-m);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  display: flex;
  align-items: center;
  gap: 56px;
}
.marquee-track span::after { content: "✦"; color: var(--acc-a); font-size: 10px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- stats strip ---------- */

.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(10, 21, 48, 0.35), rgba(10, 21, 48, 0.1));
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.stat {
  padding: 44px 28px;
  text-align: center;
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0; top: 25%;
  height: 50%; width: 1px;
  background: var(--line);
}
.stat .num {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stat .lbl { color: var(--muted); font-size: 14.5px; margin-top: 6px; }

/* ---------- services ---------- */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.svc {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 38px 32px 34px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  backdrop-filter: blur(6px);
}
.svc:hover {
  transform: translateY(-6px);
  border-color: rgba(61, 242, 164, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(61, 242, 164, 0.08);
}
.svc .idx {
  position: absolute;
  top: 26px; right: 28px;
  font-family: var(--font-m);
  font-size: 12px;
  color: var(--faint);
  letter-spacing: 0.14em;
}
.svc-icon {
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(61, 242, 164, 0.4);
  background: var(--acc-a-soft);
  margin-bottom: 26px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  font-family: var(--font-m);
  font-size: 19px;
  font-weight: 600;
  color: var(--acc-a);
}
.svc h3 { font-size: 23px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 12px; }
.svc > p { color: var(--muted); font-size: 15.5px; margin-bottom: 22px; text-wrap: pretty; }
.svc ul { list-style: none; display: grid; gap: 11px; }
.svc li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 15px;
  color: var(--ink);
}
.svc li::before {
  content: "▸";
  color: var(--acc-a);
  font-size: 12px;
  flex: none;
}

/* ---------- process ---------- */

#proceso { background: var(--bg-1); }
.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
}
.proc-grid::before {
  content: "";
  position: absolute;
  top: 29px; left: 7%; right: 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 12%, var(--line) 88%, transparent);
}
.step { position: relative; }
.step .node {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(56, 212, 255, 0.45);
  background: var(--bg-1);
  font-family: var(--font-m);
  font-size: 15px;
  color: var(--acc-b);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.step:hover .node {
  border-color: var(--acc-a);
  color: var(--acc-a);
  box-shadow: 0 0 26px rgba(61, 242, 164, 0.3);
}
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 15px; text-wrap: pretty; }

/* ---------- cases ---------- */

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.case {
  background: var(--bg-card);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.case:hover { transform: translateY(-6px); border-color: rgba(56, 212, 255, 0.4); }
.case image-slot { width: 100%; height: 200px; display: block; }
.case-img {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-2) 0%, rgba(10, 21, 48, 0.8) 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.case-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 30% 40%, var(--acc-a-soft), transparent 70%),
    radial-gradient(ellipse 50% 50% at 70% 60%, var(--acc-b-soft), transparent 70%);
}
.case-img-label {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  position: relative;
  z-index: 1;
}
.case-body { padding: 26px 26px 28px; }
.case .tag {
  font-family: var(--font-m);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--acc-b);
}
.case h3 { font-size: 20px; margin: 10px 0 8px; }
.case p { color: var(--muted); font-size: 14.5px; margin-bottom: 20px; }
.case .metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.case .metric b { font-size: 30px; font-weight: 700; color: var(--acc-a); letter-spacing: -0.02em; }
.case .metric span { color: var(--faint); font-size: 13.5px; }

/* ---------- testimonials ---------- */

#testimonios { background: var(--bg-1); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testi {
  background: rgba(5, 13, 28, 0.6);
  border: 1px solid var(--line);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.testi .quote-mark { font-size: 44px; line-height: 0.6; color: var(--acc-a); font-family: Georgia, serif; }
.testi blockquote { font-size: 16.5px; line-height: 1.65; color: var(--ink); text-wrap: pretty; flex: 1; }
.testi .who { display: flex; align-items: center; gap: 14px; }
.testi .avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #02180c;
  font-size: 15px;
  flex: none;
}
.testi .who b { display: block; font-size: 15px; }
.testi .who span { color: var(--faint); font-size: 13.5px; }

/* ---------- FAQ ---------- */

.faq-list { max-width: 760px; display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--line);
  background: var(--bg-card);
  transition: border-color 0.3s ease;
}
.faq-item.open { border-color: rgba(61, 242, 164, 0.4); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  padding: 22px 26px;
}
.faq-q .pm {
  font-family: var(--font-m);
  color: var(--acc-a);
  font-size: 18px;
  transition: transform 0.3s ease;
  flex: none;
}
.faq-item.open .pm { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.faq-a p { padding: 0 26px 24px; color: var(--muted); font-size: 15.5px; text-wrap: pretty; }

/* ---------- contact ---------- */

#contacto {
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(56, 212, 255, 0.07), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(61, 242, 164, 0.06), transparent 60%),
    var(--bg-1);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 14px 0 18px;
  text-wrap: balance;
}
.contact-info > p { color: var(--muted); font-size: 17.5px; margin-bottom: 38px; text-wrap: pretty; }
.contact-points { display: grid; gap: 18px; }
.cpoint { display: flex; gap: 16px; align-items: baseline; }
.cpoint .b {
  color: var(--acc-a);
  font-family: var(--font-m);
  font-size: 13px;
  flex: none;
}
.cpoint p { color: var(--muted); font-size: 15.5px; }
.cpoint b { color: var(--ink); font-weight: 600; }

.cform {
  background: rgba(5, 13, 28, 0.75);
  border: 1px solid var(--line);
  padding: 42px 40px;
  display: grid;
  gap: 20px;
  backdrop-filter: blur(8px);
}
.cform .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label {
  font-family: var(--font-m);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}
.field input, .field select, .field textarea {
  background: rgba(10, 21, 48, 0.5);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-d);
  font-size: 15.5px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--acc-a);
  box-shadow: 0 0 0 3px rgba(61, 242, 164, 0.12);
}
.field.invalid input, .field.invalid textarea { border-color: #ff6b81; }
.field .err { color: #ff8a9b; font-size: 12.5px; display: none; }
.field.invalid .err { display: block; }
.cform .btn { justify-self: start; margin-top: 6px; }

.form-success {
  display: none;
  text-align: center;
  padding: 60px 30px;
}
.cform.sent form { display: none; }
.cform.sent .form-success { display: block; }
.form-success .big {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--acc-a-soft);
  border: 1px solid var(--acc-a);
  color: var(--acc-a);
  font-size: 30px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
}
.form-success h3 { font-size: 24px; margin-bottom: 10px; }
.form-success p { color: var(--muted); }

/* ---------- footer ---------- */

footer {
  border-top: 1px solid var(--line);
  padding: 48px 0;
  background: var(--bg-0);
}
.foot-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.foot-inner .mono { color: var(--faint); letter-spacing: 0.1em; text-transform: none; }
.socials { display: flex; gap: 14px; }
.socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-family: var(--font-m);
  font-size: 12px;
  transition: all 0.25s ease;
}
.socials a:hover { border-color: var(--acc-a); color: var(--acc-a); transform: translateY(-2px); }

/* ---------- scroll reveals ---------- */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--rd, 0s);
  }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-split { grid-template-columns: 1fr; gap: 44px; }
  .svc-grid, .case-grid, .testi-grid { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr 1fr; gap: 40px 26px; }
  .proc-grid::before { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat + .stat::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .section { padding: 80px 0; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .cform { padding: 30px 22px; }
  .cform .row2 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .nav .btn-nav-cta { display: none; }
}
