/* ============================================================
   CIRCLEPOINT — New Design System
   Dark Midnight Navy · Electric Blue · Glassmorphism
   ============================================================ */

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

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  /* Background layers */
  --bg-base:        #040B14;
  --bg-surface:     #071120;
  --bg-elevated:    #0A1830;
  --bg-glass:       rgba(10, 28, 60, 0.55);
  --bg-glass-light: rgba(255, 255, 255, 0.04);

  /* Blue palette */
  --blue-900: #0C1A2E;
  --blue-800: #0F2545;
  --blue-700: #0D3875;
  --blue-600: #1250A8;
  --blue-500: #1A6FE8;
  --blue-400: #3D8EF0;
  --blue-300: #6AAFF5;
  --blue-200: #A8CEFA;
  --blue-100: #D6EAFF;

  /* Accent / glow */
  --accent:      #2979FF;
  --accent-soft: #1565D8;
  --accent-glow: rgba(41, 121, 255, 0.35);
  --neon:        #00D4FF;
  --neon-glow:   rgba(0, 212, 255, 0.25);

  /* Text */
  --text-primary:   #EEF3FF;
  --text-secondary: #8BA8D4;
  --text-muted:     #4A6785;
  --text-accent:    #5BA4FF;

  /* Borders */
  --border:       rgba(255, 255, 255, 0.07);
  --border-blue:  rgba(41, 121, 255, 0.25);
  --border-glow:  rgba(41, 121, 255, 0.5);

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(0, 0, 0, 0.4);
  --shadow-md:   0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-lg:   0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-blue: 0 8px 40px rgba(41, 121, 255, 0.3);
  --shadow-neon: 0 0 30px rgba(0, 212, 255, 0.2);

  /* Radii */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 999px;

  /* Transitions */
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 160ms;
  --t-med:  320ms;
  --t-slow: 600ms;

  /* Layout */
  --radius: var(--r-md);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Background canvas ─────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% -10%, rgba(41,121,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 110%, rgba(0,212,255,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 60% 40%, rgba(18,80,168,0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ── Grid noise overlay ─────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(41,121,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,121,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── Page wrapper (above decorations) ─────────────────────── */
.page-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Typography helpers ─────────────────────────────────────── */
.display-font { font-family: 'Space Grotesk', sans-serif; }

.gradient-text {
  background: linear-gradient(135deg, #5BA4FF 0%, #00D4FF 50%, #A78BFA 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 4s linear infinite;
}

@keyframes gradient-shift {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-accent);
  background: rgba(41,121,255,0.1);
  border: 1px solid var(--border-blue);
  border-radius: var(--r-full);
  padding: 4px 14px;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--neon);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: var(--r-md);
  cursor: pointer;
  padding: 12px 24px;
  text-decoration: none;
  transition:
    transform var(--t-fast) var(--ease),
    box-shadow var(--t-fast) var(--ease),
    background var(--t-fast);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #1250A8 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(41,121,255,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(41,121,255,0.55);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.09);
  border-color: var(--border-blue);
  transform: translateY(-2px);
}

.btn-neon {
  background: transparent;
  color: var(--neon);
  border: 1px solid rgba(0,212,255,0.4);
  box-shadow: 0 0 12px rgba(0,212,255,0.1);
}
.btn-neon:hover {
  background: rgba(0,212,255,0.08);
  box-shadow: 0 0 24px rgba(0,212,255,0.25);
  transform: translateY(-2px);
}

/* ── Glass cards ────────────────────────────────────────────── */
.glass-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition:
    border-color var(--t-med) var(--ease),
    transform var(--t-med) var(--ease),
    box-shadow var(--t-med) var(--ease);
}

.glass-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-5px);
  box-shadow: var(--shadow-blue);
}

/* ── NAV ────────────────────────────────────────────────────── */
#site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(4, 11, 20, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t-med) var(--ease);
}
#site-nav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  border-bottom-color: var(--border-blue);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--neon));
  border-radius: 10px;
  display: grid;
  place-items: center;
  box-shadow: 0 0 16px rgba(41,121,255,0.4);
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-logo-text span { color: var(--text-accent); }

.nav-links-row {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: var(--r-full);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-link:hover       { color: var(--text-primary); background: var(--bg-glass-light); }
.nav-link.active      { color: var(--text-accent); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--r-sm);
}
.ham-bar {
  width: 22px; height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast);
}

/* Mobile nav */
@media (max-width: 820px) {
  .nav-hamburger { display: flex; }
  .nav-links-row {
    position: fixed;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 28px 28px;
    background: rgba(4,11,20,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    gap: 4px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--t-med) var(--ease), opacity var(--t-med) var(--ease);
  }
  .nav-links-row.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link { font-size: 15px; width: 100%; padding: 10px 14px; }
  .nav-actions { display: none; }
}

/* ── HERO ───────────────────────────────────────────────────── */
#hero {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orb-float 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(41,121,255,0.18) 0%, transparent 70%);
  top: -150px; left: -100px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%);
  top: 0px; right: -80px;
  animation-delay: -3s;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(167,139,250,0.1) 0%, transparent 70%);
  bottom: -50px; left: 40%;
  animation-delay: -6s;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0px) scale(1); }
  33%       { transform: translateY(-30px) scale(1.05); }
  66%       { transform: translateY(20px) scale(0.95); }
}

.hero-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge { margin-bottom: 28px; }

.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

/* Stats bar */
.stats-bar {
  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;
  backdrop-filter: blur(10px);
}

.stat-item {
  background: var(--bg-glass);
  padding: 24px 20px;
  text-align: center;
  transition: background var(--t-fast);
}
.stat-item:hover { background: rgba(41,121,255,0.08); }

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 640px) {
  #hero { padding: 80px 0 60px; }
  .hero-headline { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-sub { font-size: 16px; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
}

/* ── SECTIONS ───────────────────────────────────────────────── */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin-inline: auto; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
}

/* Divider line */
.section-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-blue), transparent);
  margin: 0;
}

/* ── SERVICES ───────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--neon), transparent);
  opacity: 0;
  transition: opacity var(--t-med);
}
.service-card:hover::before { opacity: 1; }

.service-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(41,121,255,0.15), rgba(0,212,255,0.08));
  border: 1px solid rgba(41,121,255,0.2);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  font-size: 22px;
  transition: box-shadow var(--t-med), transform var(--t-med);
}
.service-card:hover .service-icon-wrap {
  box-shadow: 0 0 24px rgba(41,121,255,0.35);
  transform: scale(1.05);
}

.service-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tech-pill {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-accent);
  background: rgba(41,121,255,0.1);
  border: 1px solid rgba(41,121,255,0.2);
  border-radius: var(--r-full);
  padding: 3px 10px;
}

/* ── PROCESS ────────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 30px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-blue), var(--accent), var(--border-blue), transparent);
}

@media (max-width: 768px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
}
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
  text-align: center;
  padding: 28px 20px;
  position: relative;
}

.step-num-wrap {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--neon));
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 24px rgba(41,121,255,0.4);
  position: relative;
}

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 640px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card { padding: 32px; }

.quote-mark {
  font-size: 48px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.4;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.author-title {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  border-radius: var(--r-xl);
  padding: 64px 48px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0D2B6E 0%, #071A4A 50%, #040E2E 100%);
  border: 1px solid rgba(41,121,255,0.3);
  box-shadow: 0 0 80px rgba(41,121,255,0.15);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(41,121,255,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,212,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-banner-sub {
  font-size: 15px;
  color: var(--blue-200);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn { position: relative; z-index: 1; }

@media (max-width: 600px) {
  .cta-banner { padding: 40px 24px; }
}

/* ── FOOTER ─────────────────────────────────────────────────── */
#site-footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 260px;
  margin-top: 14px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--t-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links-list a:hover { color: var(--text-accent); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  padding: 80px 0 60px;
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-align: center;
}

.page-hero-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.7;
}

/* ── ABOUT PAGE ─────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
@media (max-width: 640px) { .values-grid { grid-template-columns: 1fr; } }

.value-card { padding: 28px; text-align: center; }

.value-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(41,121,255,0.15), rgba(0,212,255,0.08));
  border: 1px solid rgba(41,121,255,0.2);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin: 0 auto 16px;
}

.value-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.value-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 640px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  padding: 32px 24px;
  text-align: center;
}

.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 0 24px rgba(41,121,255,0.3);
}

.team-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── WORK PAGE ──────────────────────────────────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 640px) { .work-grid { grid-template-columns: 1fr; } }

.work-card { padding: 0; overflow: hidden; }

.work-thumbnail {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
}

.work-card-body { padding: 24px; }

.work-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-accent);
  margin-bottom: 8px;
}

.work-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.work-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.work-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-accent);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--t-fast);
}
.work-link:hover { gap: 10px; }

/* ── CONTACT PAGE ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: rgba(41,121,255,0.1);
  border: 1px solid rgba(41,121,255,0.2);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 15px;
  color: var(--text-primary);
}

/* Form */
.form-card { padding: 36px; }

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-control {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  outline: none;
}

.form-control::placeholder { color: var(--text-muted); }

.form-control:focus {
  border-color: var(--accent);
  background: rgba(41,121,255,0.06);
  box-shadow: 0 0 0 3px rgba(41,121,255,0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

/* ── SCROLL ANIMATIONS ──────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.65s var(--ease);
}
.fade-in.visible { opacity: 1; }

/* ── HOVER LIFT (utility) ───────────────────────────────────── */
.hover-lift {
  transition:
    transform var(--t-med) var(--ease),
    box-shadow var(--t-med) var(--ease) !important;
}
.hover-lift:hover {
  transform: translateY(-5px) !important;
  box-shadow: var(--shadow-blue) !important;
}

/* ── LOGO HOVER ─────────────────────────────────────────────── */
.logo-hover { transition: opacity var(--t-fast); }
.logo-hover:hover { opacity: 0.8; }

/* ── SERVICES PAGE specific ─────────────────────────────────── */
.service-detail-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 32px;
  margin-bottom: 16px;
}

.service-detail-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(41,121,255,0.2), rgba(0,212,255,0.1));
  border: 1px solid rgba(41,121,255,0.25);
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}

/* Pricing cards on services page */
.pricing-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 700px) { .pricing-grid-3 { grid-template-columns: 1fr; } }

.pricing-card-new {
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.pricing-card-new.featured {
  border-color: var(--border-glow) !important;
  background: linear-gradient(160deg, rgba(41,121,255,0.12) 0%, var(--bg-glass) 100%) !important;
}

.pricing-card-new.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--neon));
}

.pricing-popular-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neon);
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: var(--r-full);
  padding: 3px 12px;
  margin-bottom: 16px;
}

.pricing-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pricing-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-divider {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 10px;
}

.pricing-feature-item::before {
  content: '✓';
  color: var(--neon);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Gradient backgrounds for avatars/thumbs ─────────────────── */
.grad-a { background: linear-gradient(135deg, #2979FF, #00D4FF); }
.grad-b { background: linear-gradient(135deg, #7C3AED, #2979FF); }
.grad-c { background: linear-gradient(135deg, #0891B2, #06B6D4); }
.grad-d { background: linear-gradient(135deg, #1565D8, #5BA4FF); }

.thumb-a { background: linear-gradient(135deg, #071A4A 0%, #0D2B6E 100%); }
.thumb-b { background: linear-gradient(135deg, #0A1830 0%, #071A4A 100%); }

/* ── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up, .fade-in { opacity: 1; transform: none; }
}
