@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --brand: #1d6cf5;
  --cyan: #38bdf8;
  --dark-900: #020b18;
  --dark-800: #07152a;
  --dark-700: #0b1e35;
  --dark-600: #0f2744;
  --white-8: rgba(255,255,255,0.08);
  --white-40: rgba(255,255,255,0.4);
  --white-60: rgba(255,255,255,0.6);
  --gradient: linear-gradient(135deg, #1d6cf5 0%, #38bdf8 100%);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark-900);
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

@media (min-width: 1024px) { .container { padding: 0 2rem; } }

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

/* ────────────────────────────────────────────
   BUTTONS
──────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #fff;
  background: var(--gradient);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: inherit;
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(29,108,245,0.4);
}
.btn-primary.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease;
  font-family: inherit;
}
.btn-outline:hover { border-color: var(--brand); color: #60a5fa; }
.btn-outline.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* ────────────────────────────────────────────
   SCROLL REVEAL
──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ────────────────────────────────────────────
   NAVBAR
──────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(2,11,24,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--white-8);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) { .nav-inner { padding: 0 2rem; } }

.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 38px; width: auto; }

.nav-links {
  display: none;
  list-style: none;
  gap: 0.25rem;
  margin-left: auto;
}
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-link {
  display: block;
  padding: 0.5rem 0.875rem;
  border-radius: 0.375rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-link.active { color: #fff; }

.nav-cta { display: none; margin-left: 1rem; }
@media (min-width: 768px) { .nav-cta { display: inline-flex; } }

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
@media (min-width: 768px) { .nav-hamburger { display: none; } }

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  background: rgba(2,11,24,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--white-8);
  padding: 1rem 1.5rem 1.5rem;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 0.25rem; }
.nav-mobile .nav-link { padding: 0.75rem 1rem; font-size: 1rem; }

/* ────────────────────────────────────────────
   HERO
──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(29,108,245,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(56,189,248,0.08) 0%, transparent 60%),
    #020b18;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
}
.hero-glow-left {
  top: 25%;
  left: -16rem;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #1d6cf5, transparent);
  opacity: 0.1;
}
.hero-glow-right {
  bottom: 25%;
  right: -16rem;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #38bdf8, transparent);
  opacity: 0.08;
}

.hero-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 7rem 1.5rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .hero-inner {
    flex-direction: row;
    padding: 7rem 2rem 5rem;
    gap: 4rem;
  }
}

.hero-content { flex: 1; text-align: center; }
@media (min-width: 1024px) { .hero-content { text-align: left; } }

/* hero-anim: triggered by JS adding .loaded to body */
.hero-anim {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
body.loaded .hero-anim {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--d, 0s);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(29,108,245,0.3);
  background: rgba(29,108,245,0.1);
  color: #60a5fa;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #60a5fa;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-headline {
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--white-60);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 36rem;
}
@media (min-width: 1024px) { .hero-sub { max-width: none; } }
.hero-sub strong { color: #fff; font-weight: 600; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) { .hero-actions { justify-content: flex-start; } }

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
@media (min-width: 1024px) { .hero-tags { justify-content: flex-start; } }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}
.hero-tag svg { color: #60a5fa; flex-shrink: 0; }

/* Hero floating card */
.hero-card-wrap {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) { .hero-card-wrap { width: 460px; } }

.hero-float { position: relative; animation: heroFloat 6s ease-in-out infinite; }
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-card-glow {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  filter: blur(24px);
  opacity: 0.25;
  background: var(--gradient);
}
.hero-card-outer {
  position: relative;
  border-radius: 1.5rem;
  padding: 1px;
  background: var(--gradient);
}
.hero-card-inner {
  background: var(--dark-800);
  border-radius: calc(1.5rem - 1px);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.htile {
  background: rgba(7,21,38,0.8);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 0.75rem;
  padding: 1rem;
}
.htile-val { font-size: 1.5rem; font-weight: 900; margin-bottom: 0.25rem; }
.htile-label { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 0.25rem; }
.htile-sub { font-size: 0.6875rem; color: rgba(255,255,255,0.4); line-height: 1.4; }

/* Hero bottom platforms row */
.hero-bottom { position: relative; padding-bottom: 4rem; }
.hero-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(29,108,245,0.3), transparent);
  margin-bottom: 3rem;
}
.platforms-eyebrow {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.5rem;
}
.platforms-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 4rem;
}
.platforms-row span {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  cursor: default;
  transition: color 0.2s ease;
}
.platforms-row span:hover { color: rgba(255,255,255,0.8); }

/* ────────────────────────────────────────────
   STATS
──────────────────────────────────────────── */
.stats-section {
  position: relative;
  padding: 5rem 0;
}
.stats-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,21,38,0.5) 0%, rgba(12,30,53,0.3) 50%, rgba(7,21,38,0.5) 100%);
}
.stats-border-top,
.stats-border-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(29,108,245,0.12);
}
.stats-border-top { top: 0; }
.stats-border-bottom { bottom: 0; }

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stats-grid .stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,0.08); }
@media (max-width: 1023px) {
  .stats-grid .stat-item:nth-child(2n+1):not(:first-child) { border-left: none; }
  .stats-grid .stat-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.08); }
}

.stat-item { text-align: center; padding: 2rem; }
.stat-val {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
  display: block;
}
.stat-name { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 0.25rem; }
.stat-desc { font-size: 0.875rem; color: var(--white-40); }

/* ────────────────────────────────────────────
   SECTIONS (shared)
──────────────────────────────────────────── */
.section {
  position: relative;
  padding: 7rem 0;
}

.radial-top {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(29,108,245,0.07) 0%, transparent 70%);
}
.radial-bottom {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 40% at 50% 100%, rgba(56,189,248,0.05) 0%, transparent 70%);
}
.radial-sides {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 0% 50%, rgba(29,108,245,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 50%, rgba(56,189,248,0.05) 0%, transparent 60%);
}

.section-head {
  text-align: center;
  margin-bottom: 5rem;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(29,108,245,0.3);
  background: rgba(29,108,245,0.1);
  color: #60a5fa;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.section-sub {
  font-size: 1.125rem;
  color: var(--white-60);
  line-height: 1.7;
  max-width: 40rem;
  margin: 0 auto;
}

/* ────────────────────────────────────────────
   CARD
──────────────────────────────────────────── */
.card {
  background: var(--dark-700);
  border: 1px solid var(--white-8);
  border-radius: 1rem;
  padding: 2rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(4px);
}
.card:hover {
  border-color: rgba(29,108,245,0.4);
  box-shadow: 0 0 40px rgba(29,108,245,0.08);
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .two-col-grid { grid-template-columns: repeat(2, 1fr); } }

/* ────────────────────────────────────────────
   SERVICES CARDS
──────────────────────────────────────────── */
.card-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.card-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: color-mix(in srgb, var(--c, #1d6cf5) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--c, #1d6cf5) 25%, transparent);
}

.card-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 0.375rem;
}
.card-title-row h3 { font-size: 1.125rem; font-weight: 700; }
.pill {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--c, #1d6cf5) 15%, transparent);
  color: var(--c, #1d6cf5);
  border: 1px solid color-mix(in srgb, var(--c, #1d6cf5) 30%, transparent);
}

.card-summary { font-size: 0.875rem; color: var(--white-60); }

.card-body {
  font-size: 0.9375rem;
  color: var(--white-60);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.how-block { margin-bottom: 1.5rem; }
.how-title, .caps-title {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.75rem;
}
.how-items { display: flex; flex-direction: column; gap: 0.625rem; }
.how-row { display: flex; align-items: flex-start; gap: 0.625rem; }
.how-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: color-mix(in srgb, var(--c, #1d6cf5) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--c, #1d6cf5) 25%, transparent);
}
.how-row span { font-size: 0.875rem; color: var(--white-60); line-height: 1.5; padding-top: 3px; }

.deliverables { margin-bottom: 1.5rem; }
.del-title {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.625rem;
}
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c, #1d6cf5);
  text-decoration: none;
  transition: gap 0.2s ease;
}
.card-cta:hover { gap: 0.75rem; }

/* ────────────────────────────────────────────
   PLATFORMS
──────────────────────────────────────────── */
.meta-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(29,108,245,0.2);
  background: rgba(29,108,245,0.05);
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .meta-banner { flex-direction: row; text-align: left; }
}
.meta-title { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.25rem; }
.meta-sub { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.meta-sub strong { color: #fff; font-weight: 500; }

.platform-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.plat-logo {
  width: 52px;
  height: 52px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.375rem;
  color: #fff;
  flex-shrink: 0;
}
.platform-title-row { display: flex; align-items: center; flex-wrap: wrap; gap: 0.625rem; }
.platform-title-row h3 { font-size: 1.125rem; font-weight: 700; }

.caps-block { margin-top: 0.5rem; }
.caps-list { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.caps-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--white-60);
  line-height: 1.5;
}
.caps-list li svg { flex-shrink: 0; margin-top: 2px; }

/* ────────────────────────────────────────────
   ABOUT
──────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 360px 1fr; align-items: start; }
}

.photo-wrap { position: relative; margin-bottom: 2rem; }
.photo-glow {
  position: absolute;
  inset: -20px;
  border-radius: 1.5rem;
  filter: blur(40px);
  opacity: 0.15;
  background: var(--gradient);
  pointer-events: none;
}
.photo-frame {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(29,108,245,0.25);
}
.photo-frame img { width: 100%; height: 380px; object-fit: cover; object-position: top center; display: block; }
.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(2,11,24,0.95), transparent);
}
.founder-name { font-size: 1.125rem; font-weight: 700; color: #fff; }
.founder-role { font-size: 0.875rem; color: var(--white-60); margin-top: 0.25rem; }

.contact-info-list { display: flex; flex-direction: column; gap: 1rem; }
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}
.ci-link { transition: color 0.2s ease; }
.ci-link:hover .ci-val { color: #60a5fa; }
.ci-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); font-weight: 500; margin-bottom: 0.125rem; }
.ci-val { font-size: 0.875rem; color: rgba(255,255,255,0.75); line-height: 1.5; }
.ci-icon { margin-top: 2px; flex-shrink: 0; }

.bio { margin-bottom: 2rem; }
.bio-lead { font-size: 1.125rem; font-weight: 600; color: #fff; line-height: 1.65; margin-bottom: 1.25rem; }
.bio-body { font-size: 0.9375rem; color: var(--white-60); line-height: 1.7; margin-bottom: 1rem; }
.bio-body:last-child { margin-bottom: 0; }
.bio-body strong { color: #fff; font-weight: 600; }

.ach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ach-card {
  background: var(--dark-700);
  border: 1px solid var(--white-8);
  border-radius: 0.875rem;
  padding: 1.25rem;
  transition: border-color 0.3s ease;
}
.ach-card:hover { border-color: rgba(29,108,245,0.3); }
.ach-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 0.625rem;
  background: rgba(96,165,250,0.1);
  border: 1px solid rgba(96,165,250,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.ach-card h4 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 0.375rem; }
.ach-card p { font-size: 0.8125rem; color: var(--white-60); line-height: 1.5; }

/* ────────────────────────────────────────────
   CONTACT
──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1.5fr; align-items: start; }
}

.contact-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }

.response-box {
  background: rgba(29,108,245,0.06);
  border: 1px solid rgba(29,108,245,0.15);
  border-radius: 0.75rem;
  padding: 1.25rem;
}
.response-title { font-size: 0.875rem; font-weight: 600; color: #fff; margin-bottom: 0.375rem; }
.response-body { font-size: 0.875rem; color: var(--white-60); line-height: 1.6; }

/* Form */
form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.req { color: #60a5fa; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: #fff;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--dark-800); color: #fff; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(29,108,245,0.5);
  box-shadow: 0 0 0 3px rgba(29,108,245,0.1);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
  position: relative;
}

.form-success {
  text-align: center;
  padding: 3rem 2rem;
}
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(96,165,250,0.1);
  border: 1px solid rgba(96,165,250,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.form-success h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.form-success p { color: var(--white-60); }

.form-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #fca5a5;
}

.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────── */
.footer {
  position: relative;
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--white-8);
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse at top, rgba(29,108,245,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
}

.footer-logo { height: 36px; width: auto; margin-bottom: 1rem; display: block; }
.footer-tagline { font-size: 0.9375rem; color: var(--white-40); line-height: 1.7; margin-bottom: 1.25rem; max-width: 280px; }

.footer-li-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(29,108,245,0.3);
  color: #60a5fa;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer-li-btn:hover { border-color: var(--brand); color: #fff; }

.footer-col-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col ul li a,
.footer-col ul li span {
  font-size: 0.875rem;
  color: var(--white-40);
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.5;
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--white-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-bottom p { font-size: 0.875rem; color: rgba(255,255,255,0.25); }
.footer-right { font-size: 0.875rem; color: rgba(255,255,255,0.25); }

/* ────────────────────────────────────────────
   SCROLLBAR
──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #020b18; }
::-webkit-scrollbar-thumb { background: var(--gradient); border-radius: 3px; }
::selection { background: rgba(29,108,245,0.3); color: #fff; }
