/* =====================================================================
   Petersen Premium — Section components
   ===================================================================== */

/* ============================================================== HERO */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
  isolation: isolate;
}
#fx-net {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.hero::before {
  content: "";
  position: absolute;
  top: -260px; left: 50%;
  width: 1300px; height: 860px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 50% 50% at 50% 40%, rgba(30, 155, 240, .22), rgba(14, 99, 200, .07) 50%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(transparent, var(--night));
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  z-index: 2;
}
.hero-eyebrow { margin-bottom: 26px; }
.hero-copy .display { margin-bottom: 30px; }
.hero-copy .lead { margin-bottom: 40px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-badges { display: flex; gap: 26px; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted);
}
.hero-badge svg { width: 17px; height: 17px; color: var(--blue-2); flex: none; }

/* Hero visual: floating glowing logo + terminal */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
}
.hero-logo {
  width: min(100%, 460px);
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 60px rgba(30, 155, 240, .45));
  animation: floatY 7s ease-in-out infinite;
  will-change: transform;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-22px) rotate(1deg); }
}
.hero-ring {
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  border: 1px dashed rgba(120, 175, 245, .22);
  animation: spin 50s linear infinite;
}
.hero-ring.r2 { width: 700px; height: 700px; border-style: solid; border-color: rgba(120, 175, 245, .1); animation-duration: 90s; animation-direction: reverse; }
.hero-ring i {
  position: absolute;
  top: -4px; left: 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 14px var(--blue-glow);
}
@keyframes spin { to { transform: rotate(360deg); } }

.log-card {
  position: absolute;
  bottom: -8px; right: -6px;
  width: 300px;
  background: rgba(8, 14, 30, .82);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-d-strong);
  border-radius: 16px;
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: .68rem;
  box-shadow: var(--shadow-card);
  z-index: 3;
}
.log-head {
  display: flex; align-items: center; gap: 6px;
  color: var(--muted);
  margin-bottom: 10px;
  letter-spacing: .08em;
}
.log-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.log-dot.r { background: #ff5f57; } .log-dot.y { background: #febc2e; } .log-dot.g { background: #28c840; }
.log-card [data-log] { display: flex; flex-direction: column; gap: 7px; min-height: 86px; }
.log-line { color: var(--muted); animation: logIn .4s var(--ease-out); }
.log-line .tag { color: var(--blue-2); }
.log-line .ok { color: #35d07f; }
@keyframes logIn { from { opacity: 0; transform: translateY(8px); } }

.hero-stat-chip {
  position: absolute;
  top: 34px; left: -10px;
  background: rgba(8, 14, 30, .82);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-d-strong);
  border-radius: 100px;
  padding: 12px 22px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  box-shadow: var(--shadow-card);
  z-index: 3;
  animation: floatY 9s ease-in-out 1.2s infinite;
}
.hero-stat-chip b { font-family: var(--font-display); font-size: 1.3rem; color: var(--blue-2); }
.hero-stat-chip span { font-size: .8rem; color: var(--muted); }

.scroll-cue {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-cue::after {
  content: "";
  width: 1px; height: 44px;
  background: linear-gradient(var(--blue), transparent);
  animation: cueDrop 2s var(--ease) infinite;
}
@keyframes cueDrop { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ============================================================= STATS */
.shead { max-width: 780px; margin-bottom: clamp(40px, 5vw, 70px); }
.shead.center { margin-inline: auto; text-align: center; }
.shead.center .eyebrow { justify-content: center; }
.shead .h2 { margin-bottom: 20px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-d);
}
.stat {
  padding: 36px 28px 8px 0;
  border-right: 1px solid var(--line-d);
  margin-right: 28px;
}
.stat:last-child { border-right: 0; margin-right: 0; }
.stat b {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.6vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -.04em;
  display: block;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--ice) 30%, var(--blue-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat .unit { font-size: .55em; }
.stat p { color: var(--muted); font-size: .94rem; }

/* ========================================================== PIPELINE */
.flow-line {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--line-d-strong) 12%, var(--line-d-strong) 88%, transparent);
  margin: 64px 8% 26px;
}
.packet {
  position: absolute;
  top: 50%; left: 0;
  width: 36px; height: 4px;
  border-radius: 4px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, var(--blue));
  box-shadow: 0 0 16px var(--blue-glow);
  animation: packet 4.5s linear infinite;
}
.packet:nth-child(2) { animation-delay: 1.5s; }
.packet:nth-child(3) { animation-delay: 3s; }
@keyframes packet { from { left: -5%; opacity: 0; } 8% { opacity: 1; } 92% { opacity: 1; } to { left: 103%; opacity: 0; } }

.pipeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pipe-step {
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-d-strong);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.pipe-step .pico {
  width: 58px; height: 58px;
  margin: 0 auto 20px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: rgba(30, 155, 240, .12);
  border: 1px solid rgba(30, 155, 240, .3);
  color: var(--blue-2);
}
.pipe-step .pico svg { width: 26px; height: 26px; }
.pipe-step .h3 { margin-bottom: 10px; }
.pipe-step p { color: var(--muted); font-size: .96rem; }

/* ============================================================= CARDS */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  position: relative;
  display: block;
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-d);
  border-radius: var(--radius);
  padding: 34px 30px 38px;
  overflow: hidden;
  transition: transform .45s var(--ease-out), border-color .35s, box-shadow .45s;
  will-change: transform;
}
.card::before { /* mouse glare */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(60, 170, 250, .14), transparent 65%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.card:hover::before { opacity: 1; }
.card:hover { transform: translateY(-7px); border-color: var(--line-d-strong); box-shadow: var(--shadow-card); }
.card .idx { display: block; margin-bottom: 26px; }
.card .cico {
  width: 52px; height: 52px;
  border-radius: 15px;
  display: grid; place-items: center;
  background: rgba(30, 155, 240, .1);
  border: 1px solid rgba(30, 155, 240, .3);
  color: var(--blue-2);
  margin-bottom: 22px;
}
.card .cico svg { width: 24px; height: 24px; }
.card .h3 { margin-bottom: 12px; }
.card p { color: var(--muted); font-size: .96rem; }
.card .card-go {
  position: absolute;
  top: 26px; right: 26px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-d-strong);
  display: grid; place-items: center;
  color: var(--blue-2);
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: .35s var(--ease);
}
.card .card-go svg { width: 15px; height: 15px; }
.card:hover .card-go { opacity: 1; transform: none; }

/* Light variant — kept selector for compatibility, now uses same dark cards */
.light .card { background: linear-gradient(165deg, var(--panel-2), var(--panel)); border-color: var(--line-d); box-shadow: var(--shadow-card); }
.light .card:hover { box-shadow: var(--shadow-card), 0 0 40px rgba(30, 155, 240, .12); border-color: var(--line-d-strong); }
.light .card::before { background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(60, 170, 250, .14), transparent 65%); }
.light .card p { color: var(--muted); }
.light .card .cico { color: var(--blue-2); }

/* ============================================================= SPLIT */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.split.flip .split-media { order: -1; }
.split-copy .h2 { margin-bottom: 22px; }
.split-copy .lead { margin-bottom: 34px; }

.feature-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-list .fi {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: rgba(30, 155, 240, .1);
  border: 1px solid rgba(30, 155, 240, .3);
  color: var(--blue-2);
}
.light .feature-list .fi { color: var(--blue-2); background: rgba(30, 155, 240, .1); }
.feature-list .fi svg { width: 20px; height: 20px; }
.feature-list b { display: block; font-size: 1.02rem; letter-spacing: -.01em; }
.feature-list span { color: var(--muted); font-size: .93rem; }
.light .feature-list span { color: var(--muted); }

.split-media { position: relative; }

/* Tilt frame for media */
.tilt-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-d-strong);
  box-shadow: var(--shadow-card);
  transition: transform .2s ease-out;
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
}
.tilt-frame img { width: 100%; }
.tilt-frame::after { /* glare */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(560px circle at var(--mx, 50%) var(--my, 50%), rgba(160, 215, 255, .16), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.tilt-frame:hover::after { opacity: 1; }
.light .tilt-frame { border-color: var(--line-d-strong); box-shadow: var(--shadow-card); }

/* Phone mock */
.phone {
  width: min(320px, 78vw);
  margin-inline: auto;
  background: #060a16;
  border: 1px solid var(--line-d-strong);
  border-radius: 44px;
  padding: 12px;
  box-shadow: var(--shadow-card), 0 0 80px rgba(30, 155, 240, .14);
  position: relative;
  transform-style: preserve-3d;
}
.phone-notch {
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 24px;
  background: #060a16;
  border-radius: 100px;
  z-index: 3;
}
.phone-screen {
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9 / 18.5;
}
.phone-screen > img { width: 100%; height: 100%; object-fit: cover; }
.phone-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(4, 8, 18, .25), rgba(4, 8, 18, .65));
}
.push {
  position: absolute;
  left: 12px; right: 12px;
  background: rgba(12, 20, 40, .88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-d-strong);
  border-radius: 16px;
  padding: 11px 14px;
  display: flex;
  gap: 11px;
  align-items: center;
  z-index: 2;
  box-shadow: 0 14px 34px rgba(2, 6, 16, .5);
}
.push .pi {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(30, 155, 240, .16);
  color: var(--blue-2);
}
.push .pi svg { width: 17px; height: 17px; }
.push b { display: block; font-size: .8rem; letter-spacing: -.01em; }
.push span { font-size: .7rem; color: var(--muted); }
.push.p1 { top: 64px; animation: pushIn 1s var(--ease-out) both; }
.push.p2 { top: 138px; animation: pushIn 1s .25s var(--ease-out) both; }
.push.p3 { top: 212px; animation: pushIn 1s .5s var(--ease-out) both; }
@keyframes pushIn { from { opacity: 0; transform: translateY(-18px) scale(.96); } }

/* Server rack */
.rack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-d-strong);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  font-family: var(--font-mono);
}
.rack-unit {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(4, 8, 18, .6);
  border: 1px solid var(--line-d);
  border-radius: 13px;
  padding: 15px 18px;
  font-size: .8rem;
}
.rack-unit span:not(.leds) { color: var(--ice); letter-spacing: .04em; }
.rack-unit small { margin-left: auto; color: var(--muted); font-size: .7rem; letter-spacing: .1em; }
.leds { display: flex; gap: 5px; }
.led { width: 7px; height: 7px; border-radius: 50%; background: rgba(140, 185, 245, .15); display: inline-block; }
.led.on { background: #35d07f; box-shadow: 0 0 8px rgba(53, 208, 127, .8); animation: ledBlink 2.4s infinite; }
.led.blue.on { background: var(--blue); box-shadow: 0 0 8px var(--blue-glow); animation-delay: .9s; }
@keyframes ledBlink { 0%, 88%, 100% { opacity: 1; } 94% { opacity: .25; } }

/* ============================================================ BRANDS */
.brands { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.brand-panel {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(34px, 4vw, 54px);
  border: 1px solid var(--line-d-strong);
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s;
}
.brand-panel:hover { transform: translateY(-7px); box-shadow: var(--shadow-card); }
.brand-panel.b-blue {
  background: linear-gradient(150deg, #0c3a73, #0a1e44 55%, var(--panel));
  border-color: rgba(90, 180, 255, .4);
}
.brand-panel.b-blue::before {
  content: "";
  position: absolute;
  top: -160px; right: -160px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(60, 175, 255, .3), transparent 70%);
  pointer-events: none;
}
.bp-label {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--blue-2);
  margin-bottom: 18px;
}
.bp-claim {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.brand-panel > p { color: var(--muted); margin-bottom: 24px; max-width: 44ch; }
.brand-panel.b-blue > p { color: #b9d6f5; }
.bp-list { list-style: none; padding: 0; margin: 0 0 34px; display: flex; flex-direction: column; gap: 10px; }
.bp-list li { display: flex; gap: 12px; align-items: baseline; font-size: .95rem; color: var(--ice); }
.bp-list li::before { content: "—"; color: var(--blue); flex: none; }

/* ========================================================== TIMELINE */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: tl;
}
.tl-step {
  counter-increment: tl;
  position: relative;
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-d);
  border-radius: var(--radius);
  padding: 76px 26px 32px;
  box-shadow: var(--shadow-card);
  transition: transform .4s var(--ease-out), box-shadow .4s, border-color .3s;
}
.tl-step:hover { transform: translateY(-6px); border-color: var(--line-d-strong); box-shadow: var(--shadow-card), 0 0 40px rgba(30, 155, 240, .12); }
.tl-step::before {
  content: "0" counter(tl);
  position: absolute;
  top: 24px; left: 26px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: .85rem;
  color: var(--blue-2);
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(30, 155, 240, .12);
  border: 1px solid rgba(30, 155, 240, .3);
}
.tl-step::after {
  content: "";
  position: absolute;
  top: 40px; right: -22px;
  width: 22px; height: 1px;
  background: var(--line-d-strong);
}
.tl-step:last-child::after { display: none; }
.tl-step h3 { font-size: 1.12rem; margin-bottom: 10px; }
.tl-step p { color: var(--muted); font-size: .93rem; }

/* ========================================================== CTA BAND */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 80px);
  background:
    radial-gradient(ellipse 70% 120% at 80% -20%, rgba(60, 175, 255, .28), transparent 60%),
    linear-gradient(150deg, #0b2c5c, #081735 55%, var(--night-2));
  border: 1px solid rgba(90, 180, 255, .35);
  color: var(--ice);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(140, 195, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 195, 255, .05) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 70% 0%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 0%, #000, transparent 75%);
}
.cta-band > * { position: relative; }
.cta-band .h2 { margin: 14px 0 16px; }
.cta-band p { color: #b9d6f5; max-width: 58ch; margin-bottom: 30px; }
.cta-band .eyebrow { color: var(--blue-2); }

.consult-steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; counter-reset: cs; }
.consult-steps li { counter-increment: cs; display: flex; gap: 16px; }
.consult-steps li::before {
  content: counter(cs);
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--blue-2);
  border: 1px solid rgba(90, 180, 255, .4);
  background: rgba(30, 155, 240, .12);
}
.consult-steps b { display: block; }
.consult-steps span { color: #b9d6f5; font-size: .92rem; }

/* ========================================================= PAGE HERO */
.page-hero {
  padding: 190px 0 90px;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -300px; left: 50%;
  width: 1200px; height: 760px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 50% 50% at 50% 40%, rgba(30, 155, 240, .2), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.page-hero .wrap { z-index: 1; }
.page-hero .display { margin-bottom: 26px; }

/* =========================================================== SERVICES */
.svc { padding: clamp(56px, 8vw, 110px) 0; }
.svc:nth-child(even of .svc) { background: var(--night-2); }
.svc-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.svc-num { font-family: var(--font-mono); font-size: .78rem; color: var(--blue-2); letter-spacing: .08em; margin-bottom: 16px; }
.svc h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); letter-spacing: -.03em; margin-bottom: 18px; }
.svc-img {
  margin-top: 34px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-d-strong);
  box-shadow: var(--shadow-card);
}
.svc-img img { width: 100%; aspect-ratio: 16 / 8.5; object-fit: cover; filter: saturate(.85) contrast(1.05); }

.svc-card {
  position: sticky;
  top: 110px;
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-d-strong);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-card);
}
.sc-head {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--blue-2);
  margin-bottom: 18px;
}
.checks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.checks li { display: flex; gap: 12px; align-items: baseline; font-size: .95rem; color: var(--ice); }
.checks li::before {
  content: "";
  flex: none;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue-glow);
  transform: translateY(-1px);
}

/* =========================================================== MODULES */
.modules { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.module {
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-d);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: transform .4s var(--ease-out), box-shadow .4s, border-color .3s;
}
.module:hover { transform: translateY(-6px); border-color: var(--line-d-strong); box-shadow: var(--shadow-card), 0 0 40px rgba(30, 155, 240, .14); }
.module .idx { display: block; margin-bottom: 18px; }
.module .m-ico {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: rgba(30, 155, 240, .12);
  border: 1px solid rgba(30, 155, 240, .28);
  color: var(--blue-2);
  margin-bottom: 16px;
}
.module .m-ico svg { width: 22px; height: 22px; }
.module h3 { font-size: 1.05rem; margin-bottom: 8px; }
.module p { color: var(--muted); font-size: .88rem; }

/* =========================================================== CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.ci-item { display: flex; gap: 18px; }
.ci-ico {
  flex: none;
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(30, 155, 240, .1);
  border: 1px solid rgba(30, 155, 240, .3);
  color: var(--blue-2);
}
.ci-ico svg { width: 21px; height: 21px; }
.ci-item b { display: block; margin-bottom: 4px; font-family: var(--font-display); letter-spacing: -.01em; }
.ci-item a, .ci-item p { color: var(--muted); display: block; font-size: .95rem; transition: color .25s; }
.ci-item a:hover { color: var(--blue-2); }

.form-card {
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-d-strong);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.4vw, 44px);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  font: inherit;
  color: var(--ice);
  background: rgba(4, 8, 18, .6);
  border: 1px solid var(--line-d-strong);
  border-radius: 13px;
  padding: .85em 1em;
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--blue-2) 50%), linear-gradient(135deg, var(--blue-2) 50%, transparent 50%); background-position: calc(100% - 21px) 50%, calc(100% - 15px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(30, 155, 240, .18);
}
.form-note { font-size: .8rem; color: var(--muted); text-align: center; }

/* =============================================================== FAQ */
.faq { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-d);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item[open] { border-color: rgba(30, 155, 240, .55); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line-d-strong);
  color: var(--blue-2);
  font-weight: 400;
  font-size: 1.2rem;
  transition: transform .35s var(--ease), background .3s, color .3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); background: var(--blue); color: #fff; border-color: var(--blue); }
.faq-item .faq-body { padding: 0 26px 24px; color: var(--muted); font-size: .96rem; max-width: 64ch; }

/* ============================================================= LEGAL */
.legal { max-width: 820px; }
.legal h2 { font-size: 1.25rem; margin: 38px 0 10px; }
.legal p { color: var(--muted); }
.legal .note {
  font-size: .88rem;
  color: var(--blue-2);
  border: 1px dashed var(--line-d-strong);
  border-radius: 13px;
  padding: 14px 18px;
  margin-top: 10px;
  background: rgba(30, 155, 240, .06);
}

/* ======================================================== RESPONSIVE */
@media (max-width: 1060px) {
  .modules { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .tl-step::after { display: none; }
}

@media (max-width: 960px) {
  .hero { min-height: 0; padding: 150px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 420px; margin-top: 10px; }
  .hero-ring { width: 420px; height: 420px; }
  .hero-ring.r2 { width: 540px; height: 540px; }
  .hero-logo { width: min(80%, 360px); }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding-top: 28px; }
  .stat:nth-child(2) { border-right: 0; margin-right: 0; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .split, .svc-grid, .contact-grid { grid-template-columns: 1fr; }
  .split.flip .split-media { order: 0; }
  .svc-card { position: static; }
  .brands { grid-template-columns: 1fr; }
  .scroll-cue { display: none; }
}

@media (max-width: 640px) {
  .grid-3, .pipeline, .stats, .timeline, .modules, .form-row { grid-template-columns: 1fr; }
  .stat { border-right: 0; margin-right: 0; border-bottom: 1px solid var(--line-d); padding: 24px 0 20px; }
  .stat:last-child { border-bottom: 0; }
  .log-card { position: static; width: 100%; margin-top: 18px; }
  .hero-visual { min-height: 0; }
  .hero-stat-chip { top: 10px; left: 0; }
  .cta-band { padding: 34px 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo, .hero-ring, .hero-stat-chip, .packet, .push.p1, .push.p2, .push.p3, .led.on { animation: none; }
  .scroll-cue::after { animation: none; }
}
