/* ============================================================
   Fast Track — Enterprise IT Landing
   Tokens + global styles
   ============================================================ */

:root {
  /* Surfaces */
  --bg-0: #05080f;          /* deepest midnight */
  --bg-1: #070b16;          /* page base */
  --bg-2: #0a1020;          /* raised */
  --surface: rgba(18, 26, 46, 0.55);
  --surface-solid: #0d1424;
  --border: rgba(120, 145, 200, 0.14);
  --border-strong: rgba(130, 160, 220, 0.28);

  /* Accents */
  --blue: #3b74ff;
  --blue-bright: #5b8cff;
  --cyan: #34e0ee;
  --cyan-soft: #8af2fb;
  --violet: #7c5cff;

  /* Text */
  --text: #eef2fb;
  --text-soft: #c2cbe0;
  --text-mute: #828fb0;
  --text-faint: #5d688a;

  /* Gradients */
  --grad-accent: linear-gradient(115deg, var(--cyan) 0%, var(--blue) 55%, var(--violet) 110%);
  --grad-text: linear-gradient(105deg, #ffffff 0%, #b8c6ff 45%, #5fe6f2 100%);

  /* Type */
  --font-display: "Space Grotesk", "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --radius: 18px;
  --radius-lg: 26px;

  --shadow-card: 0 24px 60px -28px rgba(0, 0, 0, 0.85);
  --shadow-glow: 0 0 0 1px var(--border-strong), 0 30px 80px -40px rgba(59, 116, 255, 0.55);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-1);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* ---------- Ambient page background ---------- */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.page-bg .grid {
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(to right, rgba(120, 150, 220, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(120, 150, 220, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 80%);
}
.page-bg .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.6;
}
.page-bg .g1 { width: 620px; height: 620px; top: -220px; left: -120px;
  background: radial-gradient(circle, rgba(52,224,238,0.30), transparent 70%); }
.page-bg .g2 { width: 720px; height: 720px; top: -160px; right: -200px;
  background: radial-gradient(circle, rgba(59,116,255,0.32), transparent 70%); }
.page-bg .g3 { width: 560px; height: 560px; top: 1400px; left: 40%;
  background: radial-gradient(circle, rgba(124,92,255,0.20), transparent 70%); }

/* Mouse-reactive glow */
#cursor-glow {
  position: fixed;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,116,255,0.10), transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.4s ease;
  will-change: left, top;
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }
section { position: relative; z-index: 2; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cyan-soft);
  padding: 7px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  background: rgba(52, 224, 238, 0.05);
  white-space: nowrap;
  max-width: 100%;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }

.section-head { max-width: 680px; margin: 0 auto 60px; text-align: center; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 600; line-height: 1.08; letter-spacing: -0.02em;
  margin: 22px 0 18px;
}
.section-head p { color: var(--text-soft); font-size: 17.5px; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 15px;
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1), box-shadow 0.3s, background 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  color: #051022;
  background: var(--grad-accent);
  background-size: 160% 160%;
  box-shadow: 0 14px 38px -12px rgba(52,224,238,0.55), inset 0 0 0 1px rgba(255,255,255,0.18);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 48px -12px rgba(59,116,255,0.7), inset 0 0 0 1px rgba(255,255,255,0.3); background-position: 100% 50%; }
.btn-ghost {
  color: var(--text); background: rgba(255,255,255,0.03);
  border-color: var(--border-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--cyan); background: rgba(52,224,238,0.07); }
.btn-sm { padding: 10px 17px; font-size: 13.5px; border-radius: 10px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 11, 22, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
.brand .logo-mark { height: 34px; width: auto; display: block; filter: drop-shadow(0 6px 16px rgba(59,116,255,0.45)); }
.brand .wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand .wordmark b { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: -0.02em; }
.brand .wordmark b span { color: var(--blue-bright); }
.brand .wordmark .sub { font-family: var(--font-display); font-size: 9.5px; font-weight: 600; letter-spacing: 0.34em; color: var(--text-faint); text-transform: uppercase; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { color: var(--text-soft); text-decoration: none; font-size: 14.5px; font-weight: 500; padding: 9px 14px; border-radius: 9px; transition: color 0.2s, background 0.2s; }
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--border-strong); border-radius: 9px; width: 42px; height: 40px; color: var(--text); cursor: pointer; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 168px 0 90px; text-align: center; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 6.6vw, 80px);
  font-weight: 600; line-height: 1.02; letter-spacing: -0.03em;
  max-width: 980px; margin: 28px auto 0;
  text-wrap: balance;
}
.hero .sub {
  max-width: 660px; margin: 26px auto 0;
  font-size: clamp(16px, 2vw, 19px); color: var(--text-soft);
  text-wrap: pretty;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  max-width: 980px; margin: 76px auto 0;
}
.stat-card {
  position: relative;
  padding: 26px 22px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  text-align: left; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.stat-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0; transition: opacity 0.35s;
}
.stat-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.stat-card:hover::before { opacity: 1; }
.stat-card .ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(52,224,238,0.10); border: 1px solid var(--border-strong); margin-bottom: 16px; }
.stat-card .ic svg { width: 20px; height: 20px; color: var(--cyan); }
.stat-card .val { font-family: var(--font-display); font-size: 30px; font-weight: 600; letter-spacing: -0.02em; line-height: 1; }
.stat-card .lbl { color: var(--text-mute); font-size: 13.5px; margin-top: 7px; }

/* ============================================================
   TRUST
   ============================================================ */
.trust { padding: 70px 0; }
.trust-label { text-align: center; color: var(--text-mute); font-size: 13.5px; letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--font-display); font-weight: 500; }
.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 46px; margin-top: 34px; }
.logos .logo { display: flex; align-items: center; gap: 10px; color: var(--text-soft); opacity: 0.62; transition: opacity 0.3s, color 0.3s, transform 0.3s; font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: -0.01em; }
.logos .logo svg { width: 24px; height: 24px; }
.logos .logo:hover { opacity: 1; color: var(--text); transform: translateY(-2px); }
.certs { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 40px; }
.cert { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; color: var(--text-soft); padding: 9px 15px; border-radius: 100px; border: 1px solid var(--border); background: var(--surface); }
.cert svg { width: 15px; height: 15px; color: var(--cyan); }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: 96px 0; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card {
  position: relative;
  padding: 30px 28px 26px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), border-color 0.35s, background 0.35s;
}
.svc-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(380px circle at var(--mx,50%) var(--my,0%), rgba(52,224,238,0.10), transparent 60%);
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.svc-card:hover { transform: translateY(-6px); border-color: var(--border-strong); background: rgba(20,30,52,0.7); }
.svc-card:hover::after { opacity: 1; }
.svc-ic {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(150deg, rgba(52,224,238,0.16), rgba(59,116,255,0.10));
  border: 1px solid var(--border-strong);
  position: relative;
}
.svc-ic svg { width: 24px; height: 24px; color: var(--cyan-soft); }
.svc-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }
.svc-card p { color: var(--text-mute); font-size: 14.5px; margin-top: 10px; min-height: 44px; }
.svc-more { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; color: var(--cyan); font-family: var(--font-display); font-size: 13.5px; font-weight: 600; text-decoration: none; opacity: 0.85; transition: gap 0.25s, opacity 0.25s; }
.svc-more svg { width: 15px; height: 15px; transition: transform 0.25s; }
.svc-card:hover .svc-more { opacity: 1; }
.svc-card:hover .svc-more svg { transform: translateX(4px); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why { padding: 96px 0; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card {
  position: relative; padding: 30px 28px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border); backdrop-filter: blur(14px);
  transition: transform 0.3s, border-color 0.3s;
}
.why-card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: 0 0 40px -18px rgba(59,116,255,0.6); }
.why-card .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(59,116,255,0.10); border: 1px solid var(--border-strong); margin-bottom: 18px; }
.why-card .ic svg { width: 22px; height: 22px; color: var(--blue-bright); }
.why-card h3 { font-family: var(--font-display); font-size: 17.5px; font-weight: 600; }
.why-card p { color: var(--text-mute); font-size: 14px; margin-top: 9px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process { padding: 96px 0; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 31px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), transparent);
  opacity: 0.4;
}
.step { position: relative; text-align: center; }
.step .num {
  width: 62px; height: 62px; margin: 0 auto 22px; border-radius: 50%;
  display: grid; place-items: center; position: relative; z-index: 2;
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  background: var(--bg-2); border: 1px solid var(--border-strong);
  color: var(--cyan); box-shadow: 0 0 0 6px rgba(7,11,22,0.9), 0 14px 30px -12px rgba(52,224,238,0.5);
}
.step h3 { font-family: var(--font-display); font-size: 17px; font-weight: 600; }
.step p { color: var(--text-mute); font-size: 13.5px; margin-top: 8px; }

/* ============================================================
   RESULTS
   ============================================================ */
.results { padding: 96px 0; }
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.metric {
  text-align: center; padding: 38px 22px; border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(20,30,52,0.7), rgba(10,16,32,0.5));
  border: 1px solid var(--border); backdrop-filter: blur(14px);
  position: relative; overflow: hidden;
}
.metric::before {
  content: ""; position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(52,224,238,0.16), transparent 70%);
}
.metric .num { font-family: var(--font-display); font-size: clamp(40px, 5vw, 56px); font-weight: 600; letter-spacing: -0.03em; line-height: 1; position: relative; }
.metric .num .grad-text { display: inline; }
.metric .desc { color: var(--text-soft); font-size: 14.5px; margin-top: 14px; position: relative; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 96px 0; }
.tcarousel { position: relative; max-width: 920px; margin: 0 auto; }
.ttrack { overflow: hidden; border-radius: var(--radius-lg); }
.tslides { display: flex; transition: transform 0.6s cubic-bezier(.4,.0,.2,1); }
.tslide { min-width: 100%; padding: 48px 52px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); backdrop-filter: blur(14px); }
.tslide .quote-mark { font-family: var(--font-display); font-size: 60px; line-height: 0.5; color: var(--cyan); opacity: 0.5; }
.tslide blockquote { font-size: clamp(18px, 2.4vw, 24px); line-height: 1.5; font-weight: 400; color: var(--text); margin: 22px 0 30px; letter-spacing: -0.01em; }
.tslide .who { display: flex; align-items: center; gap: 15px; }
.avatar { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 18px; color: #05101e; background: var(--grad-accent); flex-shrink: 0; }
.who .meta b { font-family: var(--font-display); font-size: 15.5px; font-weight: 600; display: block; }
.who .meta span { color: var(--text-mute); font-size: 13.5px; }
.tnav { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 28px; }
.tdots { display: flex; gap: 8px; }
.tdot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-strong); border: none; cursor: pointer; transition: width 0.3s, background 0.3s; padding: 0; }
.tdot.active { width: 26px; background: var(--cyan); border-radius: 100px; }
.tarrow { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border-strong); background: var(--surface); color: var(--text); cursor: pointer; display: grid; place-items: center; transition: border-color 0.25s, background 0.25s; }
.tarrow:hover { border-color: var(--cyan); background: rgba(52,224,238,0.08); }
.tarrow svg { width: 18px; height: 18px; }

/* ============================================================
   CTA
   ============================================================ */
.cta { padding: 60px 0 110px; }
.cta-box {
  position: relative; text-align: center; padding: 80px 40px; overflow: hidden;
  border-radius: 34px; border: 1px solid var(--border-strong);
  background: linear-gradient(165deg, rgba(20,32,60,0.8), rgba(8,14,30,0.6));
}
.cta-box .cta-glow { position: absolute; inset: 0; pointer-events: none; }
.cta-box .cta-glow span { position: absolute; border-radius: 50%; filter: blur(80px); }
.cta-box .cg1 { width: 420px; height: 420px; top: -180px; left: 10%; background: radial-gradient(circle, rgba(52,224,238,0.34), transparent 70%); }
.cta-box .cg2 { width: 420px; height: 420px; bottom: -220px; right: 8%; background: radial-gradient(circle, rgba(124,92,255,0.30), transparent 70%); }
.cta-box h2 { font-family: var(--font-display); font-size: clamp(30px, 4.6vw, 54px); font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; position: relative; max-width: 720px; margin: 0 auto; }
.cta-box p { color: var(--text-soft); font-size: 18px; max-width: 560px; margin: 20px auto 0; position: relative; }
.cta-box .btn { margin-top: 34px; position: relative; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border); padding: 72px 0 36px; background: var(--bg-0); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.foot-brand .brand { margin-bottom: 18px; }
.foot-brand p { color: var(--text-mute); font-size: 14px; max-width: 290px; }
.foot-social { display: flex; gap: 10px; margin-top: 22px; }
.foot-social a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--border); color: var(--text-soft); transition: border-color 0.25s, color 0.25s, transform 0.25s; }
.foot-social a:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }
.foot-social svg { width: 17px; height: 17px; }
.foot-col h4 { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 18px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.foot-col a { color: var(--text-soft); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.foot-col a:hover { color: var(--cyan); }
.foot-contact li { display: flex; gap: 10px; color: var(--text-soft); font-size: 14px; margin-bottom: 12px; align-items: flex-start; }
.foot-contact svg { width: 16px; height: 16px; color: var(--cyan); flex-shrink: 0; margin-top: 3px; }
.foot-bottom { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--border); }
.foot-bottom p { color: var(--text-faint); font-size: 13px; }
.foot-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.foot-badges .cert { background: transparent; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .svc-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 38px; }
  .steps::before { display: none; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 74px; left: 0; right: 0;
    background: rgba(7,11,22,0.96); backdrop-filter: blur(18px); padding: 16px; gap: 4px; border-bottom: 1px solid var(--border);
  }
  .nav.open .nav-links a { padding: 13px; }
  .hero { padding: 130px 0 70px; }
  .svc-grid, .why-grid, .results-grid { grid-template-columns: 1fr; }
  .tslide { padding: 34px 26px; }
  .cta-box { padding: 54px 24px; }
  .wrap { padding: 0 20px; }
}
@media (max-width: 460px) {
  .hero-stats { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}
