/* ── COGSWELL IT – SHARED STYLES ── */
:root {
  --black:      #000000;
  --bg:         #0a0a0a;
  --surface:    #111111;
  --surface2:   #1a1a1a;
  --border:     rgba(255,255,255,0.09);
  --border-hov: rgba(255,255,255,0.18);
  --white:      #ffffff;
  --text:       rgba(255,255,255,0.92);
  --muted:      rgba(255,255,255,0.55);
  --subtle:     rgba(255,255,255,0.32);
  --blue:       #00aadd;
  --blue-bg:    rgba(0,170,221,0.10);
  --blue-bord:  rgba(0,170,221,0.28);
  --font:       'Inter', sans-serif;
  --ease:       cubic-bezier(0.16,1,0.3,1);
  --r:          12px;
  --r-lg:       16px;
  --r-xl:       20px;

  /* iOS 26 Liquid Glass tokens */
  --glass-bg:    rgba(255,255,255,0.05);
  --glass-bg-2:  rgba(255,255,255,0.09);
  --glass-bord:  rgba(255,255,255,0.14);
  --glass-bord-2:rgba(255,255,255,0.22);
  --glass-blur:  blur(28px) saturate(200%);
  --glass-shine: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 30%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.04) 100%);
  --glass-shine-strong: linear-gradient(180deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.08) 35%, rgba(255,255,255,0) 60%, rgba(255,255,255,0.06) 100%);
  --glass-shadow:0 1px 0 0 rgba(255,255,255,0.18) inset, 0 -1px 0 0 rgba(0,0,0,0.4) inset, 0 12px 40px rgba(0,0,0,0.5);
  --glossy-gradient: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.03) 50%, rgba(255,255,255,0) 100%);
}

/* ── iOS 26 GLASS UTILITIES ── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-bord);
  border-radius: var(--r-xl);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}
.glass::before {
  content: ''; position: absolute; inset: 0;
  background: var(--glass-shine);
  pointer-events: none;
  border-radius: inherit;
}
.glass::after {
  content: ''; position: absolute; top: 0; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  pointer-events: none;
}
.glass-strong {
  background: var(--glass-bg-2);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border: 1px solid var(--glass-bord-2);
  border-radius: var(--r-xl);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}
.glass-strong::before {
  content: ''; position: absolute; inset: 0;
  background: var(--glass-shine-strong);
  pointer-events: none;
  border-radius: inherit;
}
.glass-strong::after {
  content: ''; position: absolute; top: 0; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  pointer-events: none;
}
.glass-pill {
  background: var(--glass-bg-2);
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  border: 1px solid var(--glass-bord);
  border-radius: 100px;
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.18) inset, 0 4px 16px rgba(0,0,0,0.3);
  position: relative;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 3px; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }
.section    { padding: 100px 0; }
.section-sm { padding: 64px 0; }
hr.divider  { border: none; border-top: 1px solid var(--border); }

/* ── TYPOGRAPHY ── */
.label {
  display: inline-block;
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}
.heading {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.1;
  color: var(--white); margin-bottom: 16px;
}
.heading-lg {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700; letter-spacing: -0.04em; line-height: 1.05;
  color: var(--white); margin-bottom: 20px;
}
.heading-sub {
  font-size: 16px; color: var(--muted); max-width: 480px;
  line-height: 1.65; letter-spacing: -0.01em;
}
.heading-sub.wide { max-width: 600px; }

/* ── BUTTONS ── */
.btn-white {
  background: linear-gradient(180deg, #ffffff 0%, #d4d4d4 100%);
  color: var(--black);
  font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
  padding: 10px 22px; border-radius: 100px;
  text-decoration: none; border: none; cursor: pointer; font-family: var(--font);
  transition: opacity 0.15s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 7px;
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.6) inset,
    0 -1px 0 0 rgba(0,0,0,0.1) inset,
    0 4px 14px rgba(0,0,0,0.3);
}
.btn-white:hover { opacity: 0.92; transform: translateY(-1px); }
.btn-outline {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  color: var(--white);
  font-size: 14px; font-weight: 500; letter-spacing: -0.01em;
  padding: 10px 22px; border-radius: 100px;
  text-decoration: none; border: 1px solid var(--glass-bord); cursor: pointer; font-family: var(--font);
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 7px;
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.1) inset, 0 4px 12px rgba(0,0,0,0.2);
  position: relative;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--glass-bord-2); transform: translateY(-1px); }
.btn-blue {
  background: linear-gradient(180deg, #1ec4ec 0%, #0091bd 100%);
  color: #fff;
  font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
  padding: 10px 22px; border-radius: 100px;
  text-decoration: none; border: none; cursor: pointer; font-family: var(--font);
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 7px;
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.35) inset,
    0 -1px 0 0 rgba(0,0,0,0.15) inset,
    0 4px 16px rgba(0,170,221,0.35);
}
.btn-blue:hover { opacity: 0.92; transform: translateY(-1px); box-shadow: 0 1px 0 0 rgba(255,255,255,0.35) inset, 0 -1px 0 0 rgba(0,0,0,0.15) inset, 0 6px 24px rgba(0,170,221,0.55); }

/* ── NAV ── */
nav#nav {
  position: fixed; top: 12px; left: 50%; transform: translateX(-50%); z-index: 1000;
  height: 54px; display: flex; align-items: center;
  background: rgba(20,20,22,0.55);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.18) inset,
    0 -1px 0 0 rgba(0,0,0,0.4) inset,
    0 8px 32px rgba(0,0,0,0.4),
    0 0 0 1px rgba(0,0,0,0.2);
  transition: background 0.3s, max-width 0.3s;
  width: calc(100% - 32px);
  max-width: 1180px;
  overflow: visible;
}
nav#nav::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  border-radius: 100px;
  background: linear-gradient(180deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.02) 35%, rgba(255,255,255,0) 60%);
}
nav#nav::after {
  content: ''; position: absolute; top: 0; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  pointer-events: none;
}
.nav-inner {
  width: 100%; padding: 0 14px 0 22px;
  display: flex; align-items: center; gap: 6px;
  position: relative; z-index: 1;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 15px; color: var(--white);
  text-decoration: none; letter-spacing: -0.01em; margin-right: 32px; flex-shrink: 0;
}
.nav-logo img { height: 28px; width: auto; display: block; }
.nav-logo .logo-full  { display: block; }
.nav-logo .logo-icon  { display: none;  }
.nav-logo .logo-text  { display: none;  }
@media (max-width: 860px) {
  .nav-logo .logo-full { display: none;  }
  .nav-logo .logo-icon { display: block; }
}
.nav-logo-icon {
  width: 28px; height: 28px; border-radius: 7px;
  background: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #000;
}
.nav-links { display: flex; gap: 2px; list-style: none; flex: 1; }
.nav-link {
  color: var(--muted); text-decoration: none;
  font-size: 13px; font-weight: 500;
  padding: 6px 11px; border-radius: 100px;
  transition: color 0.15s, background 0.15s; display: block;
  display: flex; align-items: center; gap: 4px;
}
.nav-link.has-sub::after {
  content: ''; width: 7px; height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 1px; opacity: 0.6;
  transition: transform 0.2s;
}
.nav-item { position: relative; }
.nav-item:hover .nav-link.has-sub::after,
.nav-item.open .nav-link.has-sub::after {
  transform: rotate(225deg) translateY(0);
}

/* ── MEGA DROPDOWN ── */
.mega {
  position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(-8px);
  width: 720px; max-width: calc(100vw - 32px);
  background: rgba(20,20,22,0.85);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  padding: 14px;
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.18) inset,
    0 -1px 0 0 rgba(0,0,0,0.4) inset,
    0 16px 60px rgba(0,0,0,0.6);
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease, transform 0.25s var(--ease), visibility 0.2s;
  z-index: 1100;
}
.mega::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 30%, rgba(255,255,255,0) 60%);
}
.mega::after {
  content: ''; position: absolute; top: 0; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  pointer-events: none;
}
.nav-item:hover .mega,
.nav-item.open .mega {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px;
  position: relative; z-index: 1;
}
.mega-item {
  display: flex; gap: 12px;
  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.15s;
}
.mega-item:hover { background: rgba(255,255,255,0.06); }
.mega-item-icon {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px;
  background: rgba(0,170,221,0.1);
  border: 1px solid rgba(0,170,221,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}
.mega-item-icon::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 50%);
  pointer-events: none;
}
.mega-item-text { min-width: 0; }
.mega-item-title {
  font-size: 13px; font-weight: 600; color: var(--white);
  letter-spacing: -0.01em; margin-bottom: 3px;
}
.mega-item-desc {
  font-size: 12px; color: var(--muted); line-height: 1.45;
}
.mega-foot {
  margin-top: 10px; padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,170,221,0.12), rgba(0,170,221,0.04));
  border: 1px solid rgba(0,170,221,0.22);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; position: relative; z-index: 1;
  text-decoration: none;
  transition: background 0.2s;
  overflow: hidden;
}
.mega-foot::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), transparent 50%);
  pointer-events: none;
}
.mega-foot:hover { background: linear-gradient(135deg, rgba(0,170,221,0.18), rgba(0,170,221,0.06)); }
.mega-foot-text { position: relative; }
.mega-foot-title { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.mega-foot-desc { font-size: 12px; color: var(--muted); }
.mega-foot-arrow {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  color: #000;
  position: relative;
  box-shadow: 0 0 20px rgba(0,170,221,0.4);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-active {
  color: var(--white) !important;
  background: rgba(255,255,255,0.1);
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.15) inset;
}
.nav-right { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-btn-ghost {
  color: var(--muted); font-size: 14px; padding: 5px 14px; border-radius: 100px;
  background: transparent; border: none; cursor: pointer;
  text-decoration: none; transition: color 0.15s;
}
.nav-btn-ghost:hover { color: var(--white); }
.nav-btn-solid {
  color: var(--black); font-size: 13px; font-weight: 600;
  padding: 7px 18px; border-radius: 100px;
  background: linear-gradient(180deg, #ffffff 0%, #d4d4d4 100%);
  border: none; cursor: pointer;
  text-decoration: none; letter-spacing: -0.01em;
  transition: opacity 0.15s, transform 0.15s;
  position: relative;
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.6) inset,
    0 -1px 0 0 rgba(0,0,0,0.1) inset,
    0 4px 12px rgba(0,0,0,0.3);
}
.nav-btn-solid:hover { opacity: 0.92; transform: translateY(-1px); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; color: var(--muted); padding: 4px; margin-left: auto; }
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-right  { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 76px; left: 16px; right: 16px;
    background: rgba(20,20,22,0.85);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 22px;
    padding: 12px; gap: 2px; z-index: 999;
    box-shadow:
      0 1px 0 0 rgba(255,255,255,0.18) inset,
      0 -1px 0 0 rgba(0,0,0,0.4) inset,
      0 12px 40px rgba(0,0,0,0.5);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
  .nav-links.open .nav-link { font-size: 15px; padding: 11px 14px; }
  .nav-links.open .mega {
    position: static; transform: none; width: 100%;
    opacity: 1; visibility: visible;
    background: rgba(255,255,255,0.04);
    border: none; box-shadow: none;
    margin-top: 4px; padding: 8px;
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .nav-links.open .nav-item.open .mega {
    max-height: 600px; padding: 8px;
  }
  .nav-links.open .mega::before, .nav-links.open .mega::after { display: none; }
  .nav-links.open .mega-grid { grid-template-columns: 1fr; gap: 0; }
  .nav-links.open .mega-item { padding: 10px; }
}

/* ── HERO PILL ── */
.hero-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  border: 1px solid var(--glass-bord);
  border-radius: 100px; padding: 5px 14px 5px 7px;
  font-size: 13px; color: var(--muted); margin-bottom: 28px;
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.18) inset, 0 4px 14px rgba(0,0,0,0.25);
  position: relative;
}
.hero-pill::after {
  content: ''; position: absolute; top: 0; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  pointer-events: none; border-radius: inherit;
}
.hero-pill-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--blue-bg); border: 1px solid var(--blue-bord);
  display: flex; align-items: center; justify-content: center;
}
.hero-pill-dot::after { content: '●'; color: var(--blue); font-size: 7px; }
.hero-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 900px; height: 500px; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,153,255,0.11) 0%, transparent 70%);
}

/* ── SPLIT LAYOUT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split .split-visual { order: -1; }
}
.split-feat {
  display: flex; gap: 16px; padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.split-feat:first-child { border-top: 1px solid var(--border); }
.split-feat-icon { flex-shrink: 0; width: 20px; color: var(--blue); font-size: 13px; margin-top: 2px; }
.split-feat h4 { font-size: 14px; font-weight: 600; color: var(--white); letter-spacing: -0.01em; margin-bottom: 3px; }
.split-feat p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── CARDS ── */
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 30%, rgba(255,255,255,0) 100%), var(--surface);
  border: 1px solid var(--glass-bord);
  border-radius: var(--r-xl); padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.08) inset, 0 8px 24px rgba(0,0,0,0.25);
}
.card::after {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  pointer-events: none;
}
.card:hover { border-color: var(--glass-bord-2); transform: translateY(-2px); }
.card-icon {
  width: 44px; height: 44px; border-radius: var(--r);
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  border: 1px solid var(--glass-bord);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
  position: relative; overflow: hidden;
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.15) inset;
}
.card-title { font-size: 16px; font-weight: 600; color: var(--white); letter-spacing: -0.02em; margin-bottom: 8px; }
.card-desc  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── GRID CARDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* ── SERVICE GRID (bordered) ── */
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }
.svc-card {
  background: var(--black); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 10px;
  text-decoration: none; color: inherit;
  transition: background 0.2s; cursor: pointer;
}
.svc-card:hover { background: var(--surface); }
.svc-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--surface2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; margin-bottom: 4px;
}
.svc-title { font-size: 15px; font-weight: 600; color: var(--white); letter-spacing: -0.02em; }
.svc-desc  { font-size: 13px; color: var(--muted); line-height: 1.6; flex: 1; }
.svc-link  { font-size: 12px; color: var(--subtle); display: flex; align-items: center; gap: 5px; margin-top: 6px; transition: color 0.15s; }
.svc-card:hover .svc-link { color: var(--white); }

/* ── STATS ── */
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden;
}
@media (max-width: 700px) { .stats-row { grid-template-columns: 1fr 1fr; } }
.stat-item {
  padding: 36px 28px; border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--surface); }
.stat-num {
  font-size: clamp(28px,3.5vw,40px); font-weight: 700;
  letter-spacing: -0.04em; color: var(--white); line-height: 1; margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: var(--muted); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 60px 48px; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 500px; height: 200px;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(0,153,255,0.09), transparent 70%);
  pointer-events: none;
}
.cta-band h2 { font-size: clamp(26px,3.5vw,38px); font-weight: 700; letter-spacing: -0.03em; color: var(--white); margin-bottom: 12px; position: relative; }
.cta-band p  { font-size: 16px; color: var(--muted); margin-bottom: 28px; position: relative; max-width: 440px; margin-inline: auto; }
.cta-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── CONTACT FORM ── */
.form-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.fg label { font-size: 12px; color: var(--muted); font-weight: 500; }
.fg input, .fg textarea, .fg select {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 9px; padding: 10px 14px;
  font-size: 14px; color: var(--white); font-family: var(--font);
  outline: none; transition: border-color 0.15s; width: 100%;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--subtle); }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: rgba(255,255,255,0.3); }
.fg textarea { min-height: 110px; resize: vertical; }
.fg select option { background: #1a1a1a; }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 60px 0 32px; }
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border);
}
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 500px) { .footer-top { grid-template-columns: 1fr; } }
.footer-desc { font-size: 13px; color: var(--muted); line-height: 1.7; margin-top: 14px; max-width: 260px; }
.footer-col-title { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 14px; letter-spacing: -0.01em; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 24px; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--subtle);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--subtle); text-decoration: none; transition: color 0.15s; }
.footer-legal a:hover { color: var(--muted); }

/* ── REVEAL ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.07s; }
.d2 { transition-delay: 0.14s; }
.d3 { transition-delay: 0.21s; }
.d4 { transition-delay: 0.28s; }
.d5 { transition-delay: 0.35s; }
.d6 { transition-delay: 0.42s; }
.anim { animation: fadeUp 0.7s var(--ease) both; }
.anim-d1 { animation-delay: 0.05s; }
.anim-d2 { animation-delay: 0.10s; }
.anim-d3 { animation-delay: 0.15s; }

/* ── PREMIUM ANIMATIONS ── */
@keyframes auroraShift {
  0%, 100% { transform: translate(0%, 0%) rotate(0deg) scale(1); }
  33%      { transform: translate(8%, -6%) rotate(40deg) scale(1.1); }
  66%      { transform: translate(-6%, 8%) rotate(-30deg) scale(0.95); }
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes pulseGlow { 0%,100%{opacity:0.6} 50%{opacity:1} }
@keyframes shimmer { 0%{background-position:-200% 0} 100%{background-position:200% 0} }
@keyframes scrollMarquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes spinSlow { from{transform:rotate(0)} to{transform:rotate(360deg)} }
@keyframes orbit { from{transform:rotate(0) translateX(120px) rotate(0)} to{transform:rotate(360deg) translateX(120px) rotate(-360deg)} }
@keyframes revealMask {
  0% { clip-path: inset(0 100% 0 0); }
  100% { clip-path: inset(0 0% 0 0); }
}
@keyframes blink { 0%,49%{opacity:1} 50%,100%{opacity:0} }

.float-anim { animation: float 6s ease-in-out infinite; }
.spin-slow { animation: spinSlow 30s linear infinite; }

/* Gradient text — Cyan → Dark palette */
.grad-text {
  background: linear-gradient(135deg, #ffffff 0%, #1ec4ec 50%, #ffffff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}
.grad-text-blue {
  background: linear-gradient(135deg, #1ec4ec 0%, #00aadd 50%, #006699 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grad-text-deep {
  background: linear-gradient(135deg, #1ec4ec 0%, #006699 60%, #002d4a 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grad-text-silver {
  background: linear-gradient(135deg, #ffffff 0%, #aaaaaa 50%, #555555 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Gradient backgrounds for sections */
.grad-bg-blue {
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(0,170,221,0.14), transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(0,80,120,0.18), transparent 60%);
}
.grad-bg-deep {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,170,221,0.12), transparent 60%),
    linear-gradient(180deg, #0d1419 0%, #0a0a0a 100%);
}

/* Gradient borders (use as wrapper) */
.grad-border {
  position: relative;
  border-radius: var(--r-xl);
  background: var(--surface);
}
.grad-border::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,170,221,0.6), rgba(0,170,221,0.10) 60%, rgba(0,30,50,0.2));
  -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;
}

/* Gradient button — Cyan → Deep cyan */
.btn-grad {
  background: linear-gradient(135deg, #1ec4ec 0%, #0091bd 50%, #006699 100%);
  color: #fff;
  font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
  padding: 11px 24px; border-radius: 100px;
  text-decoration: none; border: none; cursor: pointer; font-family: var(--font);
  display: inline-flex; align-items: center; gap: 7px;
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.35) inset,
    0 -1px 0 0 rgba(0,0,0,0.15) inset,
    0 4px 20px rgba(0,170,221,0.4);
  transition: transform 0.2s, box-shadow 0.3s, opacity 0.15s;
}
.btn-grad:hover {
  transform: translateY(-1px); opacity: 0.95;
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.35) inset, 0 -1px 0 0 rgba(0,0,0,0.15) inset, 0 8px 28px rgba(0,170,221,0.55);
}

/* Gradient divider */
.grad-divider {
  height: 1px; border: none;
  background: linear-gradient(90deg, transparent, rgba(0,170,221,0.5), transparent);
  margin: 0;
}

/* Subtle radial cyan glow (replaces conic-orb) */
.cyan-glow {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,170,221,0.45) 0%, transparent 70%);
  filter: blur(60px); opacity: 0.5;
  pointer-events: none;
}

/* Aurora background blobs — cyan only */
.aurora { position: absolute; inset: -20%; pointer-events: none; overflow: hidden; }
.aurora-blob {
  position: absolute; border-radius: 50%; filter: blur(80px);
  opacity: 0.4; animation: auroraShift 18s ease-in-out infinite;
}
.aurora-blob.b1 { width: 50vw; height: 50vw; top: -10%; left: -15%; background: radial-gradient(circle, #00aadd 0%, transparent 70%); }
.aurora-blob.b2 { width: 45vw; height: 45vw; bottom: -10%; right: -10%; background: radial-gradient(circle, #006699 0%, transparent 70%); animation-delay: -6s; animation-duration: 22s; opacity: 0.35; }
.aurora-blob.b3 { width: 35vw; height: 35vw; top: 30%; left: 40%; background: radial-gradient(circle, #1ec4ec 0%, transparent 70%); opacity: 0.20; animation-delay: -12s; animation-duration: 26s; }

/* Aurora background blobs */
.aurora { position: absolute; inset: -20%; pointer-events: none; overflow: hidden; }
.aurora-blob {
  position: absolute; border-radius: 50%; filter: blur(80px);
  opacity: 0.5; animation: auroraShift 18s ease-in-out infinite;
}
.aurora-blob.b1 { width: 50vw; height: 50vw; top: -10%; left: -15%; background: radial-gradient(circle, #00aadd 0%, transparent 70%); }
.aurora-blob.b2 { width: 45vw; height: 45vw; bottom: -10%; right: -10%; background: radial-gradient(circle, #6366f1 0%, transparent 70%); animation-delay: -6s; animation-duration: 22s; }
.aurora-blob.b3 { width: 35vw; height: 35vw; top: 30%; left: 40%; background: radial-gradient(circle, #ec4899 0%, transparent 70%); opacity: 0.3; animation-delay: -12s; animation-duration: 26s; }

/* Magnetic CTA */
.magnetic { transition: transform 0.3s var(--ease); will-change: transform; }

/* Mouse-tracked card glow */
.glow-card { position: relative; overflow: hidden; }
.glow-card::before {
  content: ''; position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(0,170,221,0.18), transparent 60%);
  border-radius: 50%; pointer-events: none;
  left: var(--mx, 50%); top: var(--my, 50%);
  transform: translate(-50%,-50%); opacity: 0;
  transition: opacity 0.3s;
}
.glow-card:hover::before { opacity: 1; }

/* Tilt on hover */
.tilt { transition: transform 0.4s var(--ease); transform-style: preserve-3d; }

/* Marquee */
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: scrollMarquee 40s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* Cursor blink (typewriter) */
.cursor-blink { display: inline-block; width: 3px; height: 0.95em; background: var(--blue); margin-left: 4px; vertical-align: middle; animation: blink 1s steps(1) infinite; }

/* Reveal text by mask */
.reveal-mask { display: inline-block; }
.reveal-mask.in { animation: revealMask 1s var(--ease) both; }

/* ── FLOW LIST ── */
.flow-list { display: flex; flex-direction: column; }
.flow-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.flow-item:first-child { border-top: 1px solid var(--border); }
.flow-num {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--muted); font-weight: 500; margin-top: 1px;
}
.flow-body h4 { font-size: 14px; font-weight: 600; color: var(--white); letter-spacing: -0.01em; margin-bottom: 3px; }
.flow-body p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── PROCESS STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card { background: var(--black); padding: 32px 28px; }
.step-num { font-size: 12px; color: var(--blue); font-weight: 600; letter-spacing: 0.06em; margin-bottom: 16px; }
.step-title { font-size: 15px; font-weight: 600; color: var(--white); letter-spacing: -0.02em; margin-bottom: 8px; }
.step-desc  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── PAGE HERO ── */
.page-hero { padding: 130px 0 80px; text-align: center; position: relative; overflow: hidden; }
.page-hero-inner { position: relative; z-index: 1; }
