/* ============================================================
   ColdBoot — közös stíluslap (index, about, services, contact)
   start.html önálló: css/start.css
   ============================================================ */

/* === RESET / BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Sora', system-ui, sans-serif;
  background: #0A1726;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  animation: pg-in 0.55s ease both;
}
@keyframes pg-in { from { opacity: 0; } to { opacity: 1; } }
a { text-decoration: none; color: inherit; }

/* === SHARED UTILITIES === */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 48px; position: relative; z-index: 1; }

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #22D3EE; opacity: .78;
}

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: #22D3EE; color: #08172B;
  border: none; border-radius: 8px;
  padding: 10px 22px;
  font-family: 'Sora', sans-serif; font-size: 13.5px; font-weight: 600;
  cursor: pointer; transition: opacity .18s;
}
.btn-primary:hover { opacity: .84; }
.btn-primary:disabled { opacity: .5; cursor: not-allowed; }

.btn-ghost {
  display: inline-flex; align-items: center;
  background: transparent;
  color: rgba(255,255,255,.5);
  border: 1.5px solid rgba(255,255,255,.14);
  border-radius: 9px;
  padding: 10px 22px;
  font-family: 'Sora', sans-serif; font-size: 13.5px; font-weight: 500;
  cursor: pointer; transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.8); }

.wm { display: inline-flex; align-items: baseline; }
.wm-c { font-family: 'Sora', sans-serif; font-weight: 500; color: #22D3EE; letter-spacing: -0.022em; line-height: 1; }
.wm-b { font-family: 'Sora', sans-serif; font-weight: 700; color: #fff;    letter-spacing: -0.022em; line-height: 1; }

/* === NAV === */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: 64px;
  display: flex; align-items: center;
  padding: 0 48px;
  background: rgba(10,23,38,.88);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: border-color .3s;
}
.nav-brand { display: inline-flex; align-items: center; gap: 12px; }
.nav-links { display: flex; gap: 28px; margin-left: 44px; }
.nav-links a { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.46); transition: color .18s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta { margin-left: auto; padding: 9px 20px; font-size: 13px; position: relative; }
.nav-boot { position: absolute; top: calc(100% + 9px); right: 0; min-width: 130px; display: flex; flex-direction: column; gap: 4px; opacity: 0; transform: translateY(-4px); pointer-events: none; transition: opacity .25s ease, transform .25s ease; z-index: 60; }
.nav-cta:hover .nav-boot, .nav-cta:focus-within .nav-boot, .nav-cta.arming .nav-boot { opacity: 1; transform: none; }
.nav-boot-track { height: 3px; border-radius: 2px; background: rgba(255,255,255,.1); overflow: hidden; }
.nav-boot-fill { height: 100%; width: 0; background: linear-gradient(90deg, #22D3EE, #7fe9f7); box-shadow: 0 0 8px rgba(34,211,238,.7); }
.nav-cta.arming .nav-boot-fill { animation: navboot .7s cubic-bezier(.3,.7,.3,1) forwards; }
@keyframes navboot { to { width: 100%; } }
.nav-boot-label { font-family: 'JetBrains Mono', monospace; font-size: 8.5px; letter-spacing: .12em; color: #526070; text-align: right; transition: color .3s ease; }
.nav-cta.arming .nav-boot-label { color: #22D3EE; }

/* === PAGE HERO (about / services / contact) === */
.pg-hero {
  position: relative; overflow: hidden;
  background: #08172B;
  background-image: radial-gradient(circle, rgba(34,211,238,.09) 1px, transparent 1px);
  background-size: 28px 28px;
  padding: 64px 48px 52px;
}
.pg-hero-inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; }
.pg-hero h1 {
  margin-top: 14px;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700; letter-spacing: -0.026em; line-height: 1.12;
  color: #fff; max-width: 580px;
}
.pg-hero-sub {
  margin-top: 12px; font-size: 15px; line-height: 1.72;
  color: rgba(255,255,255,.4); max-width: 480px;
}

/* === SECTION HEADER === */
.section { padding: 80px 0; }
.sec-hdr { margin-bottom: 40px; }
.sec-hdr .eyebrow { margin-bottom: 10px; }
.sec-hdr h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 600; letter-spacing: -0.018em; color: #fff;
}
.sec-hdr .sub {
  margin-top: 10px; font-size: 14.5px;
  color: rgba(255,255,255,.38); max-width: 520px; line-height: 1.68;
}

/* === CTA SECTION + BOX (közös) === */
.cta-section { padding: 80px 0; }
.cta-box {
  background: linear-gradient(135deg, #0F1E30 0%, #152233 100%);
  border: 1px solid rgba(34,211,238,.11);
  border-radius: 22px; padding: 68px 48px;
  text-align: center; position: relative; overflow: hidden;
  animation: corepulse 3.6s ease-in-out infinite;
}
@keyframes corepulse {
  0%, 100% { box-shadow: 0 0 60px -20px rgba(34,211,238,.22); }
  50%      { box-shadow: 0 0 95px -14px rgba(34,211,238,.42); }
}
.cta-box::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(34,211,238,.055) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.cta-box::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  border-radius: 22px; padding: 1.6px;
  background: conic-gradient(from 0deg, transparent 0 68%, rgba(34,211,238,.85) 84%, rgba(34,211,238,0) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
  animation: sweep 4s linear infinite;
}
@keyframes sweep { to { transform: rotate(360deg); } }
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 {
  margin-top: 14px;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700; letter-spacing: -0.022em; color: #fff;
}
.cta-box p {
  margin: 12px auto 0; font-size: 15px;
  color: rgba(255,255,255,.4); max-width: 460px; line-height: 1.72;
}
.cta-box .btn-primary { margin-top: 28px; padding: 14px 34px; font-size: 15px; }
.cta-load { max-width: 260px; margin: 26px auto 0; }
.cta-bar { height: 3px; border-radius: 2px; background: rgba(255,255,255,.08); overflow: hidden; }
.cta-bar-fill { height: 100%; width: 0; background: linear-gradient(90deg, #22D3EE, #7fe9f7); box-shadow: 0 0 10px rgba(34,211,238,.7); }
.cta-load.armed .cta-bar-fill { animation: ctafill 1.1s cubic-bezier(.3,.7,.3,1) forwards; }
@keyframes ctafill { to { width: 100%; } }
.cta-ready {
  margin-top: 8px; text-align: center;
  font-family: 'JetBrains Mono', monospace; font-size: 9.5px;
  letter-spacing: .12em; color: #526070; opacity: .6;
  transition: color .3s ease;
}
.cta-load.armed .cta-ready { color: #22D3EE; opacity: 0; animation: ctaready .45s ease .85s forwards; }
@keyframes ctaready {
  from { opacity: 0; text-shadow: 0 0 12px rgba(34,211,238,.9); }
  to   { opacity: .85; text-shadow: none; }
}

/* === FOOTER === */
footer {
  background: #08172B;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 56px 48px 36px;
}
.foot-inner { max-width: 1180px; margin: 0 auto; }
.foot-top {
  display: grid; grid-template-columns: 1.9fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.06);
}
.foot-brand-text {
  margin-top: 14px; font-size: 13.5px;
  color: rgba(255,255,255,.33); line-height: 1.72; max-width: 260px;
}
.foot-col h4 {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.26); margin-bottom: 14px;
}
.foot-col a {
  display: block; width: fit-content; font-size: 13.5px;
  color: rgba(255,255,255,.43); margin-bottom: 10px; transition: color .18s;
}
.foot-col a:hover { color: #fff; }
.foot-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px;
}
.foot-bottom span {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: rgba(255,255,255,.2);
}

/* === COLDBOOT SYSTEM — animáció rendszer (közös) === */
#hero-grid { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }

/* page-transition wipe */
#xfade { position: fixed; inset: 0; z-index: 500; background: #08172B; opacity: 0; pointer-events: none; transition: opacity .42s ease; }
#xfade.on { opacity: 1; pointer-events: auto; }
#xfade::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(34,211,238,.95), transparent); box-shadow: 0 0 24px 4px rgba(34,211,238,.55); opacity: 0; }
#xfade.on::before { animation: wipe .46s ease forwards; }
@keyframes wipe { from { transform: translateY(0); opacity: 1; } to { transform: translateY(100vh); opacity: 1; } }

/* boot scanline */
.boot-scan { position: fixed; left: 0; right: 0; top: 0; height: 2px; z-index: 300; background: linear-gradient(90deg, transparent, rgba(34,211,238,.9), transparent); box-shadow: 0 0 24px 4px rgba(34,211,238,.5); opacity: 0; pointer-events: none; animation: boot-sweep 1.15s ease-in-out forwards; }
@keyframes boot-sweep { 0% { transform: translateY(0); opacity: 0; } 8% { opacity: 1; } 92% { opacity: 1; } 100% { transform: translateY(100vh); opacity: 0; } }

/* section boot reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .6s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.flick { animation: flick .3s steps(3,end) 1; }
@keyframes flick { 0%,100% { opacity: 1; } 30% { opacity: .45; } 55% { opacity: .9; } 75% { opacity: .6; } }
.reveal.boot { animation: bootcard .55s ease 1; }
@keyframes bootcard {
  0%   { opacity: .2;  box-shadow: 0 0 0 0 rgba(34,211,238,0); }
  30%  { opacity: .55; }
  50%  { box-shadow: 0 0 30px -6px rgba(34,211,238,.5); }
  62%  { opacity: .9; }
  100% { opacity: 1;   box-shadow: 0 0 0 0 rgba(34,211,238,0); }
}

/* scan-load: cyan vonal lehúz a kártyán (beszkennelés) */
.scanbar { position: absolute; left: 0; right: 0; top: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(34,211,238,.85), transparent); box-shadow: 0 0 12px rgba(34,211,238,.65); opacity: 0; pointer-events: none; z-index: 4; }
.boot .scanbar { animation: scanload .6s ease var(--d, 0s) forwards; }
@keyframes scanload { 0% { top: 0; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { top: 100%; opacity: 0; } }

/* stat scramble lock (index .stat-num + about .m-stat-num) */
.stat-num.lock, .m-stat-num.lock { animation: statlock .5s ease; }
@keyframes statlock {
  0%   { text-shadow: 0 0 18px rgba(34,211,238,.9); color: #9beef8; }
  100% { text-shadow: none; color: #22D3EE; }
}

/* targeting HUD */
.hud-target { position: relative; }
.hud-frame { position: absolute; inset: -7px; z-index: 3; pointer-events: none; opacity: 0; transition: opacity .16s ease; }
.hud-frame * { pointer-events: none; }
.hud-target:hover .hud-frame, .hud-target:focus-within .hud-frame { opacity: 1; }
.hud-corner { position: absolute; width: 12px; height: 12px; border: 1.5px solid #22D3EE; }
.hud-corner.tl { top: 0; left: 0;  border-right: none; border-bottom: none; }
.hud-corner.tr { top: 0; right: 0; border-left: none;  border-bottom: none; }
.hud-corner.bl { bottom: 0; left: 0;  border-right: none; border-top: none; }
.hud-corner.br { bottom: 0; right: 0; border-left: none;  border-top: none; }
.hud-target:hover .hud-corner { animation: hud-snap .22s ease both; }
@keyframes hud-snap { from { margin: 5px; opacity: 0; } to { margin: 0; opacity: 1; } }
.hud-tag {
  position: absolute; top: -9px; left: 10px;
  transform: translateY(-100%);
  font-family: 'JetBrains Mono', monospace; font-size: 9px;
  letter-spacing: .08em; color: #22D3EE;
  background: #08172B; padding: 2px 6px;
  border: 1px solid rgba(34,211,238,.3); border-radius: 3px;
  white-space: nowrap;
}

/* circuit background (JS injektálja) */
#services, .why-wrap, .cta-wrap, .mission-wrap, #team, .values-wrap, .how-wrap, .contact-wrap, .svc-detail { position: relative; }
.circuit {
  position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 90px, #000 calc(100% - 70px), transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0, #000 90px, #000 calc(100% - 70px), transparent 100%);
}
.circuit svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.circ-base {
  fill: none; stroke: rgba(34,211,238,.09); stroke-width: 1.3;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 1; stroke-dashoffset: 1;
}
.circuit.run .circ-base { animation: draw 1.2s ease forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.circ-pad  { fill: rgba(34,211,238,.14); opacity: 0; }
.circuit.run .circ-pad { animation: padin .5s ease forwards; }
@keyframes padin { to { opacity: 1; } }
.circ-pulse path {
  fill: none; stroke: #22D3EE; stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 26 4000;
  filter: drop-shadow(0 0 4px rgba(34,211,238,.85));
  animation-name: flow; animation-timing-function: linear;
  animation-iteration-count: infinite; animation-play-state: paused;
}
.circuit.run .circ-pulse path { animation-play-state: running; }
@keyframes flow { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -4026; } }

/* === RESPONSIVE (közös) === */
@media (max-width: 960px) {
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .pg-hero { padding: 44px 20px 36px; }
  .wrap { padding: 0 20px; }
  .cta-box { padding: 44px 24px; }
  footer { padding: 44px 20px 28px; }
  .foot-top { grid-template-columns: 1fr; gap: 28px; }
}

/* === REDUCED MOTION (közös) === */
@media (prefers-reduced-motion: reduce) {
  .boot-scan { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .reveal.flick, .reveal.boot { animation: none; }
  .scanbar { display: none; }
  .hud-corner { animation: none !important; }
  .circ-pulse { display: none; }
  .circ-base { stroke-dashoffset: 0; }
  .circ-pad { opacity: 1; }
  .circuit.run .circ-base, .circuit.run .circ-pad { animation: none; }
  .cta-box, .cta-box::after { animation: none; }
  .cta-bar-fill { animation: none; }
  .cta-ready { animation: none; }
  .ticker-rail { animation: none; }
  .tick-dot { animation: none; opacity: .8; }
  .ticker-line::after { display: none; }
  .svc-card::before, .why-card::before { display: none; }
  #boot-intro { display: none; }
  #bi-circ .pl { display: none; }
}

/* ============================================================
   INDEX — egyedi szekciók
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: #08172B;
  background-image: radial-gradient(circle, rgba(34,211,238,.09) 1px, transparent 1px);
  background-size: 28px 28px;
  padding: 96px 48px 80px;
}
.hero-inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; }
.hero h1 {
  margin-top: 18px;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700; letter-spacing: -0.026em; line-height: 1.1;
  color: #fff; max-width: 700px;
}
.hero-sub {
  margin-top: 16px; font-size: 16px; line-height: 1.72;
  color: rgba(255,255,255,.44); max-width: 500px;
}
.hero-btns { display: flex; gap: 12px; margin-top: 32px; }
.hero-btns .btn-primary { padding: 12px 26px; font-size: 14.5px; }
.hero-btns .btn-ghost   { padding: 12px 26px; font-size: 14.5px; }
.hero-stats {
  display: flex; gap: 0;
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 28px;
  max-width: 680px;
}
.stat-item { flex: 1; display: flex; flex-direction: column; }
.stat-item + .stat-item {
  border-left: 1px solid rgba(255,255,255,.06);
  padding-left: 30px; margin-left: 30px;
}
.stat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 26px; font-weight: 500;
  color: #22D3EE; letter-spacing: -0.02em;
}
.stat-lbl {
  margin-top: auto; padding-top: 12px; font-size: 12px;
  color: rgba(255,255,255,.33); line-height: 1.45;
}

/* SERVICES grid */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc-card {
  background: #0F1E30;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px; padding: 28px;
  display: flex; flex-direction: column;
  transition: border-color .22s, box-shadow .22s;
}
.svc-card:hover {
  border-color: rgba(34,211,238,.22);
  box-shadow: 0 0 36px -8px rgba(34,211,238,.13);
}
.svc-icon {
  width: 44px; height: 44px;
  background: rgba(34,211,238,.07);
  border: 1px solid rgba(34,211,238,.12);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; flex-shrink: 0;
}
.svc-card h3 { font-size: 15.5px; font-weight: 600; letter-spacing: -0.014em; color: #fff; margin-bottom: 8px; }
.svc-card p { font-size: 13.5px; color: rgba(255,255,255,.4); line-height: 1.68; margin-bottom: 16px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: .04em;
  color: rgba(34,211,238,.55);
  background: rgba(34,211,238,.06);
  border: 1px solid rgba(34,211,238,.1);
  border-radius: 5px; padding: 3px 8px;
}

/* WHY */
.why-wrap { background: #0F1E30; border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.why-card {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px; padding: 28px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: border-color .22s;
}
.why-card:hover { border-color: rgba(255,255,255,.1); }
.why-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(34,211,238,.38); flex-shrink: 0; padding-top: 3px; }
.why-card h3 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 7px; letter-spacing: -0.012em; }
.why-card p  { font-size: 13.5px; color: rgba(255,255,255,.38); line-height: 1.68; }

/* index scan-load (::before vonal a kártyákon) */
.svc-card::before, .why-card::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,.85), transparent);
  box-shadow: 0 0 12px rgba(34,211,238,.65);
  opacity: 0; pointer-events: none; z-index: 4;
}
.svc-card.boot::before, .why-card.boot::before { animation: scanload .6s ease var(--d, 0s) forwards; }

/* TICKER */
.ticker-wrap {
  overflow: hidden; position: relative;
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: #08172B;
}
.ticker-wrap::before, .ticker-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none; }
.ticker-wrap::before { left: 0;  background: linear-gradient(to right, #08172B, transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(to left, #08172B, transparent); }
.ticker-rail { display: flex; width: max-content; animation: tick 32s linear infinite; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tick-item {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 0 32px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 500;
  color: #526070; white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,.04);
  transition: color .2s;
}
.tick-item:hover { color: rgba(34,211,238,.65); }
.tick-item img { opacity: .4; transition: opacity .2s; filter: brightness(1.2); vertical-align: middle; }
.tick-item:hover img { opacity: .75; }
.tick-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; background: #22D3EE; box-shadow: 0 0 6px rgba(34,211,238,.8); animation: dotpulse 2s ease-in-out infinite; }
@keyframes dotpulse { 0%, 100% { opacity: .3; transform: scale(.8); } 50% { opacity: 1; transform: scale(1); } }
.ticker-line { position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: rgba(34,211,238,.1); z-index: 1; pointer-events: none; }
.ticker-line::after {
  content: ''; position: absolute; top: 0; height: 1px; width: 160px;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,.95), transparent);
  box-shadow: 0 0 8px rgba(34,211,238,.6);
  animation: railpulse 3.5s linear infinite;
}
@keyframes railpulse { from { left: -160px; } to { left: 100%; } }

/* INDEX BOOT INTRO (splash) */
.cb-booted #boot-intro { display: none; }
#boot-intro {
  position: fixed; inset: 0; z-index: 1000;
  background: #08172B;
  background-image: radial-gradient(circle, rgba(34,211,238,.07) 1px, transparent 1px);
  background-size: 28px 28px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: pointer; user-select: none; transition: opacity .6s ease; overflow: hidden;
}
#boot-intro.out { opacity: 0; pointer-events: none; }
#bi-circ { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 120px, #000 calc(100% - 120px), transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0, #000 120px, #000 calc(100% - 120px), transparent 100%); }
#bi-circ svg { position: absolute; inset: 0; width: 100%; height: 100%; }
#bi-circ .b { fill: none; stroke: rgba(34,211,238,.09); stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1; stroke-dashoffset: 1; animation: bi-draw 1.3s ease forwards; }
@keyframes bi-draw { to { stroke-dashoffset: 0; } }
#bi-circ .pad { fill: rgba(34,211,238,.14); opacity: 0; animation: bi-padin .5s ease forwards; }
@keyframes bi-padin { to { opacity: 1; } }
#bi-circ .pl path { fill: none; stroke: #22D3EE; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 26 4000; filter: drop-shadow(0 0 4px rgba(34,211,238,.85)); animation-name: bi-flow; animation-timing-function: linear; animation-iteration-count: infinite; }
@keyframes bi-flow { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -4026; } }
#bi-stage { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
#bi-mark { position: relative; width: 220px; height: 220px; display: flex; align-items: center; justify-content: center; }
#bi-mark .ring { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid rgba(34,211,238,.28); animation: bi-ring 2.8s ease-out infinite; }
#bi-mark .ring:nth-child(2) { animation-delay: 1.2s; border-color: rgba(34,211,238,.14); }
@keyframes bi-ring { 0% { transform: scale(.5); opacity: 1; } 100% { transform: scale(1.65); opacity: 0; } }
#bi-svg { display: block; position: relative; z-index: 2; animation: bi-breathe 3.4s ease-in-out infinite; filter: drop-shadow(0 0 20px rgba(34,211,238,.22)); transition: filter .55s ease; }
@keyframes bi-breathe { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
#boot-intro.booting #bi-svg { animation: none; filter: drop-shadow(0 0 28px rgba(34,211,238,1)) drop-shadow(0 0 60px rgba(34,211,238,.7)) drop-shadow(0 0 120px rgba(34,211,238,.4)); }
#boot-intro.booting #bi-mark .ring { animation: none; opacity: 0; transition: opacity .25s; }
#bi-wm { margin-top: 36px; display: inline-flex; align-items: baseline; font-family: 'Sora', sans-serif; }
#bi-wm .c { font-weight: 500; font-size: 44px; color: #22D3EE; letter-spacing: -.022em; line-height: 1; }
#bi-wm .b { font-weight: 700; font-size: 44px; color: #fff; letter-spacing: -.022em; line-height: 1; }
#bi-tag { margin-top: 12px; font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: #526070; opacity: .75; transition: opacity .4s; }
#bi-hint { margin-top: 56px; display: flex; flex-direction: column; align-items: center; gap: 11px; opacity: 0; animation: bi-hint-appear .7s ease 1.2s forwards; transition: opacity .3s; }
@keyframes bi-hint-appear { to { opacity: 1; } }
#bi-hint .ht { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(34,211,238,.5); animation: bi-hint-pulse 2.4s ease-in-out infinite; }
@keyframes bi-hint-pulse { 0%,100% { opacity: .4; } 50% { opacity: 1; } }
#bi-hint .ar { width: 16px; height: 16px; border-right: 2px solid rgba(34,211,238,.35); border-bottom: 2px solid rgba(34,211,238,.35); transform: rotate(45deg); animation: bi-arr 2.4s ease-in-out infinite; }
@keyframes bi-arr { 0%,100% { transform: rotate(45deg) translate(-2px,-2px); opacity: .3; } 50% { transform: rotate(45deg) translate(2px,2px); opacity: .85; } }
#boot-intro.booting #bi-hint, #boot-intro.booting #bi-tag { opacity: 0; }
#bi-term { position: fixed; bottom: 0; left: 0; right: 0; padding: 24px 56px 40px; z-index: 10; display: flex; flex-direction: column; gap: 5px; opacity: 0; transition: opacity .28s ease; }
#boot-intro.booting #bi-term { opacity: 1; }
.bi-line { display: flex; align-items: baseline; font-family: 'JetBrains Mono', monospace; font-size: 12px; gap: 8px; opacity: 0; overflow: hidden; animation: bi-in .14s ease forwards; }
@keyframes bi-in { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: translateX(0); } }
.bi-line .p { color: rgba(34,211,238,.28); flex-shrink: 0; }
.bi-line .t { color: rgba(34,211,238,.65); flex: 1; white-space: nowrap; }
.bi-line .dot { color: rgba(34,211,238,.12); flex: 1; overflow: hidden; white-space: nowrap; letter-spacing: .04em; }
.bi-line .s { flex-shrink: 0; font-weight: 600; color: #22D3EE; }
.bi-line .s.ready { font-size: 13px; letter-spacing: .1em; font-weight: 700; }
.bi-line.hdr { margin-bottom: 4px; }
.bi-line.hdr .t { color: rgba(255,255,255,.4); font-size: 11px; letter-spacing: .08em; }

@media (max-width: 960px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .hero { padding: 64px 20px 56px; }
  .hero-stats { flex-wrap: wrap; }
  .stat-item + .stat-item { border-left: none; padding-left: 0; margin-left: 0; border-top: 1px solid rgba(255,255,255,.06); padding-top: 18px; }
  .svc-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT — egyedi szekciók
   ============================================================ */
.mission-wrap { background: #0F1E30; border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); }
.mission-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 72px; align-items: center; padding: 72px 0; }
.mission-text h2 { font-size: clamp(22px, 2.6vw, 32px); font-weight: 600; letter-spacing: -0.02em; color: #fff; margin-bottom: 16px; margin-top: 12px; }
.mission-text p { font-size: 14.5px; color: rgba(255,255,255,.44); line-height: 1.76; margin-bottom: 14px; }
.mission-stats { display: flex; flex-direction: column; gap: 16px; }
.m-stat { background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.06); border-radius: 14px; padding: 20px 22px; display: flex; align-items: center; gap: 18px; }
.m-stat-num { font-family: 'JetBrains Mono', monospace; font-size: 28px; font-weight: 500; color: #22D3EE; letter-spacing: -.03em; flex-shrink: 0; min-width: 64px; }
.m-stat-lbl { font-size: 13.5px; color: rgba(255,255,255,.52); line-height: 1.5; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.team-card {
  background: #0F1E30; border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px; padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: border-color .22s, box-shadow .22s;
  position: relative;
}
.team-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, transparent, rgba(34,211,238,.3), transparent); opacity: 0; transition: opacity .3s; }
.team-card:hover { border-color: rgba(34,211,238,.18); box-shadow: 0 0 40px -10px rgba(34,211,238,.12); }
.team-card:hover::before { opacity: 1; }
.team-avatar {
  width: 72px; height: 72px; border-radius: 18px; margin-bottom: 20px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(34,211,238,.1) 0%, rgba(34,211,238,.04) 100%);
  border: 1px solid rgba(34,211,238,.18);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.team-avatar svg, .team-avatar img { position: relative; z-index: 1; }
.team-role { font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(34,211,238,.65); margin-bottom: 8px; }
.team-name { font-size: 18px; font-weight: 700; letter-spacing: -0.016em; color: #fff; margin-bottom: 10px; }
.team-desc { font-size: 13.5px; color: rgba(255,255,255,.4); line-height: 1.68; flex: 1; margin-bottom: 20px; }
.team-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.team-tag { font-family: 'JetBrains Mono', monospace; font-size: 9.5px; letter-spacing: .04em; color: rgba(34,211,238,.5); background: rgba(34,211,238,.06); border: 1px solid rgba(34,211,238,.1); border-radius: 5px; padding: 3px 8px; }
.team-email { display: inline-flex; align-items: center; gap: 7px; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(255,255,255,.28); margin-top: auto; transition: color .18s; }
.team-email:hover { color: #22D3EE; }

.values-wrap { background: #0A1726; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.val-card { background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.06); border-radius: 16px; padding: 28px; transition: border-color .22s; position: relative; }
.val-card:hover { border-color: rgba(255,255,255,.1); }
.val-icon { width: 44px; height: 44px; background: rgba(34,211,238,.06); border: 1px solid rgba(34,211,238,.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.val-card h3 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 8px; letter-spacing: -0.012em; }
.val-card p { font-size: 13.5px; color: rgba(255,255,255,.38); line-height: 1.68; }

.how-wrap { background: #0F1E30; border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); }
.how-steps { display: flex; flex-direction: column; gap: 0; max-width: 720px; }
.how-step { display: flex; gap: 24px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.how-step:last-child { border-bottom: none; }
.how-step-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(34,211,238,.35); flex-shrink: 0; padding-top: 4px; width: 28px; }
.how-step-content h3 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 6px; letter-spacing: -0.012em; }
.how-step-content p { font-size: 13.5px; color: rgba(255,255,255,.38); line-height: 1.68; }

@media (max-width: 960px) {
  .mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES — egyedi szekciók
   ============================================================ */
.quick-nav {
  background: #0A1726; border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 0 48px; overflow-x: auto;
  -ms-overflow-style: none; scrollbar-width: none;
}
.quick-nav::-webkit-scrollbar { display: none; }
.quick-nav-inner { max-width: 1180px; margin: 0 auto; display: flex; gap: 6px; padding: 14px 0; }
.qn-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 500; letter-spacing: 0.04em;
  color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 6px; padding: 7px 14px;
  white-space: nowrap;
  transition: background .18s, color .18s, border-color .18s;
}
.qn-pill:hover { background: rgba(34,211,238,.08); color: #22D3EE; border-color: rgba(34,211,238,.18); }

.svc-detail { padding: 88px 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.svc-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.svc-detail-grid.rev > :first-child { order: 2; }
.svc-detail-grid.rev > :last-child  { order: 1; }
.svc-big-icon { width: 68px; height: 68px; background: rgba(34,211,238,.06); border: 1px solid rgba(34,211,238,.14); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.svc-detail-content .eyebrow { margin-bottom: 10px; }
.svc-detail-content h2 { font-size: clamp(20px, 2.4vw, 28px); font-weight: 600; letter-spacing: -0.018em; color: #fff; margin-bottom: 14px; }
.svc-detail-content > p { font-size: 14.5px; color: rgba(255,255,255,.42); line-height: 1.72; margin-bottom: 24px; max-width: 440px; }
.svc-bullets { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.svc-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,.52); line-height: 1.58; }
.svc-bullets li::before { content: ''; display: block; flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; background: #22D3EE; opacity: .6; margin-top: 6px; }

.visual-panel { background: #0F1E30; border: 1px solid rgba(255,255,255,.06); border-radius: 20px; padding: 28px; position: relative; overflow: hidden; }
.visual-panel::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(34,211,238,.04) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; }
.visual-panel > * { position: relative; }
.vp-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.vp-title { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.26); }
.vp-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(34,211,238,.5); box-shadow: 0 0 8px rgba(34,211,238,.4); }
.vp-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.vp-row:last-child { border-bottom: none; }
.vp-row-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(255,255,255,.32); width: 90px; flex-shrink: 0; }
.vp-bar-wrap { flex: 1; height: 4px; background: rgba(255,255,255,.06); border-radius: 2px; }
.vp-bar { height: 100%; border-radius: 2px; background: linear-gradient(to right, rgba(34,211,238,.4), rgba(34,211,238,.8)); }
.vp-num { font-family: 'JetBrains Mono', monospace; font-size: 11.5px; color: rgba(34,211,238,.8); letter-spacing: -.01em; width: 48px; text-align: right; flex-shrink: 0; }
.vp-ok { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: #22D3EE; letter-spacing: .04em; width: 36px; flex-shrink: 0; }
.vp-ok.warn { color: #fb923c; }
.vp-stats { display: flex; gap: 24px; margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.04); }
.vp-stat-num { font-family: 'JetBrains Mono', monospace; font-size: 20px; font-weight: 500; color: #22D3EE; letter-spacing: -.02em; }
.vp-stat-lbl { font-size: 11px; color: rgba(255,255,255,.28); margin-top: 3px; }

.code-panel { background: #070f1c; border: 1px solid rgba(255,255,255,.07); border-radius: 16px; overflow: hidden; position: relative; }
.code-panel-bar { background: rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.05); padding: 9px 14px; display: flex; align-items: center; gap: 6px; }
.cp-dot { width: 8px; height: 8px; border-radius: 50%; }
.cp-dot.r { background: rgba(239,68,68,.4); }
.cp-dot.y { background: rgba(234,179,8,.4); }
.cp-dot.g { background: rgba(34,197,94,.4); }
.cp-filename { margin-left: 6px; font-family: 'JetBrains Mono', monospace; font-size: 10px; color: rgba(255,255,255,.2); }
.code-panel pre { padding: 22px 22px; font-family: 'JetBrains Mono', monospace; font-size: 11.5px; line-height: 1.85; overflow-x: auto; }
.ct { color: rgba(255,255,255,.2); }
.ck { color: rgba(129,140,248,.85); }
.cs { color: rgba(34,211,238,.75); }
.cv { color: rgba(249,168,212,.7); }
.cn { color: rgba(252,211,77,.7); }
.cf { color: rgba(110,231,183,.78); }

.wf-panel { padding: 24px; }
.wf-node { display: flex; align-items: center; gap: 12px; padding: 11px 14px; background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.06); border-radius: 10px; margin-bottom: 4px; font-size: 12.5px; color: rgba(255,255,255,.58); }
.wf-node-icon { width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0; background: rgba(34,211,238,.08); border: 1px solid rgba(34,211,238,.14); display: flex; align-items: center; justify-content: center; }
.wf-arrow { display: flex; justify-content: center; margin: 3px 0 3px 22px; }
.wf-status { margin-left: auto; flex-shrink: 0; font-family: 'JetBrains Mono', monospace; font-size: 10px; color: rgba(34,211,238,.55); letter-spacing: .04em; }

.audit-panel { padding: 24px; }
.audit-item { display: flex; align-items: flex-start; gap: 11px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.audit-item:last-child { border-bottom: none; }
.audit-check { width: 18px; height: 18px; border-radius: 5px; flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center; }
.audit-check.done { background: rgba(34,211,238,.1); border: 1px solid rgba(34,211,238,.24); }
.audit-check.todo { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); }
.audit-text { font-size: 12.5px; color: rgba(255,255,255,.52); line-height: 1.5; }
.audit-text.dim { opacity: .38; }

.sec-panel { padding: 24px; }
.sec-score { text-align: center; padding: 16px 0 20px; border-bottom: 1px solid rgba(255,255,255,.05); margin-bottom: 16px; }
.sec-score-num { font-family: 'JetBrains Mono', monospace; font-size: 52px; font-weight: 500; color: #22D3EE; line-height: 1; letter-spacing: -.03em; }
.sec-score-lbl { font-size: 10px; color: rgba(255,255,255,.28); margin-top: 5px; letter-spacing: .08em; text-transform: uppercase; font-family: 'JetBrains Mono', monospace; }

.edu-panel { padding: 24px; }
.edu-track { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.edu-track-label { font-size: 12px; color: rgba(255,255,255,.5); flex: 1; }
.edu-progress-wrap { width: 80px; height: 4px; background: rgba(255,255,255,.06); border-radius: 2px; flex-shrink: 0; }
.edu-progress { height: 100%; border-radius: 2px; background: linear-gradient(to right, rgba(34,211,238,.5), #22D3EE); }
.edu-pct { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: rgba(34,211,238,.65); width: 32px; text-align: right; flex-shrink: 0; }

@media (max-width: 960px) {
  .svc-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-detail-grid.rev > :first-child { order: 1; }
  .svc-detail-grid.rev > :last-child  { order: 2; }
}
@media (max-width: 680px) {
  .quick-nav { padding: 0 20px; }
  .svc-detail { padding: 56px 0; }
}

/* ============================================================
   CONTACT — egyedi szekciók
   ============================================================ */
.contact-section { padding: 72px 0 96px; }
.contact-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: start; }

.form-card { background: #0F1E30; border: 1px solid rgba(255,255,255,.06); border-radius: 20px; padding: 40px; position: relative; }
.form-title { font-size: 17px; font-weight: 600; letter-spacing: -0.014em; color: #fff; margin-bottom: 6px; }
.form-subtitle { font-size: 13.5px; color: rgba(255,255,255,.36); line-height: 1.6; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 7px; }
.form-label .req { color: rgba(34,211,238,.6); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: 'Sora', sans-serif; font-size: 13.5px; font-weight: 400;
  color: #fff; outline: none;
  transition: border-color .18s, background .18s;
  -webkit-appearance: none; appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,.2); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: rgba(34,211,238,.4); background: rgba(34,211,238,.03); }
.form-input.error, .form-textarea.error { border-color: rgba(239,68,68,.5); }
.form-error { font-size: 11.5px; color: rgba(239,68,68,.75); margin-top: 5px; display: none; }
.form-error.show { display: block; }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpolyline points='2,4 6,8 10,4' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 32px;
}
.form-select option { background: #0F1E30; color: #fff; }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.form-consent input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: #22D3EE; cursor: pointer; }
.form-consent label { font-size: 12.5px; color: rgba(255,255,255,.33); line-height: 1.55; cursor: pointer; }
.form-consent label a { color: rgba(34,211,238,.6); text-decoration: underline; text-underline-offset: 2px; }
.submit-btn { width: 100%; padding: 13px 24px; font-size: 14px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.spinner { width: 16px; height: 16px; border: 2px solid rgba(8,23,43,.3); border-top-color: #08172B; border-radius: 50%; animation: spin .6s linear infinite; display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.success-card { display: none; background: #0F1E30; border: 1px solid rgba(34,211,238,.18); border-radius: 20px; padding: 48px 40px; text-align: center; }
.success-icon { width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 20px; background: rgba(34,211,238,.08); border: 1px solid rgba(34,211,238,.2); display: flex; align-items: center; justify-content: center; }
.success-title { font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 10px; letter-spacing: -0.014em; }
.success-text { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.7; max-width: 340px; margin: 0 auto; }
.success-mono { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: rgba(34,211,238,.55); letter-spacing: .06em; text-transform: uppercase; margin-top: 20px; }

.info-panel { display: flex; flex-direction: column; gap: 14px; }
.info-card { background: #0F1E30; border: 1px solid rgba(255,255,255,.06); border-radius: 16px; padding: 24px; transition: border-color .22s; position: relative; }
.info-card:hover { border-color: rgba(255,255,255,.1); }
.info-card-label { font-family: 'JetBrains Mono', monospace; font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.24); margin-bottom: 10px; }
.info-card-main { font-size: 14.5px; font-weight: 500; color: #fff; margin-bottom: 4px; }
.info-card-sub { font-size: 12.5px; color: rgba(255,255,255,.34); line-height: 1.6; }
.info-card a.info-card-main { transition: color .18s; }
.info-card a.info-card-main:hover { color: #22D3EE; }
.info-icon { width: 36px; height: 36px; border-radius: 9px; margin-bottom: 12px; background: rgba(34,211,238,.06); border: 1px solid rgba(34,211,238,.1); display: flex; align-items: center; justify-content: center; }

.steps-card { background: linear-gradient(135deg, rgba(34,211,238,.06) 0%, rgba(34,211,238,.02) 100%); border: 1px solid rgba(34,211,238,.14); border-radius: 16px; padding: 24px; position: relative; }
.steps-card-title { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 16px; letter-spacing: -0.01em; }
.next-step { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.next-step:last-child { margin-bottom: 0; }
.next-step-num { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: rgba(34,211,238,.5); flex-shrink: 0; padding-top: 2px; }
.next-step-text { font-size: 12.5px; color: rgba(255,255,255,.46); line-height: 1.55; }

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .form-card { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
}
