/* ═══════════════════════════════════════════════════════════
   SICOM POC — Shared Styles
   Aesthetic: Technical Precision × Connectivity
   Teal accents from SICOM brand on deep architectural navy
   ═══════════════════════════════════════════════════════════ */

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

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

:root {
  /* Palette — deep tech */
  --bg-deep: #0a0f14;
  --bg-primary: #0e1319;
  --bg-elevated: #141a22;
  --bg-card: #181f2a;
  --bg-card-hover: #1d2636;
  --bg-warm: #f4f7f6;
  --bg-warm-alt: #e8eeec;

  /* Accent — SICOM teal (from logo) */
  --amber: #1cc8b0;
  --amber-light: #40e8d0;
  --amber-dim: #18a08c;
  --amber-glow: rgba(28, 200, 176, 0.15);
  --amber-glow-strong: rgba(28, 200, 176, 0.3);

  /* Secondary accent — brighter cyan */
  --copper: #0fb8a8;
  --copper-light: #30d4c4;

  /* Neutral */
  --text-primary: #ecf0f4;
  --text-secondary: #8b96a8;
  --text-muted: #556070;
  --text-dark: #141c28;
  --text-dark-secondary: #3e4d60;
  --border: rgba(255, 255, 255, 0.06);
  --border-warm: rgba(28, 200, 176, 0.12);
  --border-hover: rgba(28, 200, 176, 0.22);

  /* Typography */
  --font-display: 'Sora', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container-max: 1200px;
  --container-narrow: 800px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M5 3l14 9-6.5 1.5L9 20z' fill='%231cc8b0' stroke='%230e1319' stroke-width='1'/%3E%3C/svg%3E") 5 3, auto;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ═══ LAYOUT ═══ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--container-narrow); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ═══ SCROLL REVEAL ═══ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.4s; }
.reveal-d6 { transition-delay: 0.48s; }

/* ═══ NAVIGATION ═══ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(12, 16, 23, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo img {
  height: 36px;
  width: auto;
}
.nav-logo .logo-fiber {
  display: none;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-primary); }
.nav-links a.nav-cta,
.nav-links a.nav-cta:hover,
.nav-links a.nav-cta:active { color: #0a0f14 !important; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--amber);
  border-radius: 1px;
}

/* Nav CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--amber);
  color: var(--bg-deep);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(28, 200, 176, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(12, 16, 23, 0.98);
  backdrop-filter: blur(24px);
  z-index: 999;
  padding: 40px 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.75rem;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--amber); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ═══ BUTTONS ═══ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: var(--amber);
  color: var(--bg-deep);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(28, 200, 176, 0.3), 0 0 60px rgba(28, 200, 176, 0.08);
}
.btn-primary svg { width: 16px; height: 16px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.12);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}
.btn-ghost:hover { border-color: var(--text-muted); color: var(--text-primary); }

.btn-outline-amber {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--amber);
  border: 1px solid var(--amber-dim);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s;
}
.btn-outline-amber:hover {
  background: rgba(28, 200, 176, 0.06);
  box-shadow: 0 0 24px rgba(28, 200, 176, 0.1);
}

/* ═══ SECTION PRIMITIVES ═══ */
.section { padding: var(--section-pad) 0; position: relative; }
.section--dark { background: var(--bg-primary); }
.section--elevated { background: var(--bg-elevated); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--warm { background: var(--bg-warm); color: var(--text-dark); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--amber);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--amber-dim);
}
.section--warm .section-tag { color: var(--copper); }
.section--warm .section-tag::before { background: var(--copper); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.section-title em {
  font-style: normal;
  color: var(--amber);
  font-weight: 700;
}
.section--warm .section-title { color: var(--text-dark); }
.section--warm .section-title em { color: var(--copper); font-style: normal; }

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}
.section--warm .section-sub { color: var(--text-dark-secondary); }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-deep);
  padding-left: 24px;
  padding-right: 24px;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.12;
  filter: saturate(0.2) brightness(0.8);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(28, 200, 176, 0.04) 0%, transparent 70%),
    linear-gradient(180deg, rgba(12,16,23,0.3) 0%, var(--bg-deep) 100%);
}

/* Fibre falling lines */
.hero-fibres {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-fibres .fiber {
  position: absolute;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, var(--amber) 50%, transparent 100%);
  opacity: 0;
  animation: fiber-fall linear infinite;
}
.hero-fibres .fiber:nth-child(1) { left: 10%; height: 160px; animation-duration: 4.5s; animation-delay: 0s; }
.hero-fibres .fiber:nth-child(2) { left: 25%; height: 100px; animation-duration: 5.5s; animation-delay: 1.5s; }
.hero-fibres .fiber:nth-child(3) { left: 50%; height: 180px; animation-duration: 3.8s; animation-delay: 0.8s; }
.hero-fibres .fiber:nth-child(4) { left: 70%; height: 130px; animation-duration: 5s; animation-delay: 2.2s; }
.hero-fibres .fiber:nth-child(5) { left: 85%; height: 150px; animation-duration: 4.2s; animation-delay: 1s; }
.hero-fibres .fiber:nth-child(6) { left: 38%; height: 120px; animation-duration: 6s; animation-delay: 3.5s; }

@keyframes fiber-fall {
  0% { top: -200px; opacity: 0; }
  8% { opacity: 0.12; }
  92% { opacity: 0.12; }
  100% { top: 110%; opacity: 0; }
}

/* Grid texture */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(28, 200, 176, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 200, 176, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: normal;
  color: var(--amber);
  text-shadow: 0 0 60px rgba(28, 200, 176, 0.2);
}
.hero-sub {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(28, 200, 176, 0.05);
  border: 1px solid rgba(28, 200, 176, 0.12);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.hero-trust-badge svg {
  width: 14px; height: 14px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 2;
}

@media (max-width: 768px) {
  .hero-content { padding-top: 100px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-trust { flex-wrap: wrap; gap: 8px; }
}

/* ═══ STATS ROW ═══ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.stat-item {
  background: var(--bg-elevated);
  padding: 32px 28px;
  text-align: center;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}
.stat-value span { color: var(--amber); }
.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
}

/* ═══ SERVICE CARDS ═══ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 48px; height: 48px;
  background: rgba(28, 200, 176, 0.06);
  border: 1px solid rgba(28, 200, 176, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg {
  width: 24px; height: 24px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }

/* ═══ SECTOR CARDS ═══ */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.sector-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.sector-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s;
  filter: saturate(0.5) brightness(0.45);
}
.sector-card:hover img {
  transform: scale(1.06);
  filter: saturate(0.7) brightness(0.55);
}
.sector-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 16, 23, 0.95) 0%, rgba(12, 16, 23, 0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}
.sector-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.sector-card:hover .sector-overlay h3 { transform: translateY(-8px); }
.sector-overlay p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
}
.sector-card:hover .sector-overlay p { max-height: 100px; opacity: 1; }
.sector-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--amber);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s 0.05s;
  margin-top: 8px;
}
.sector-card:hover .sector-link { max-height: 40px; opacity: 1; }
.sector-link svg { width: 14px; height: 14px; stroke: var(--amber); fill: none; stroke-width: 2; }

@media (max-width: 768px) {
  .sectors-grid { grid-template-columns: 1fr; }
  .sector-card { aspect-ratio: 16/9; }
}

/* ═══ TESTIMONIAL ═══ */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--amber);
  opacity: 0.2;
  position: absolute;
  top: 12px;
  left: 28px;
  line-height: 1;
}
.testimonial-card blockquote {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid rgba(28, 200, 176, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--amber);
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.9375rem;
}
.testimonial-role {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ═══ PROCESS STEPS ═══ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
  counter-reset: process;
}
.process-step {
  position: relative;
  counter-increment: process;
}
.process-step::before {
  content: counter(process, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--amber);
  opacity: 0.2;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Connecting line between steps */
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  right: -16px;
  width: calc(100% - 48px);
  height: 1px;
  background: linear-gradient(90deg, var(--amber-dim), transparent);
  opacity: 0.2;
}

@media (max-width: 768px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-step:not(:last-child)::after { display: none; }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ═══ CLIENT LOGOS ═══ */
.clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.3s, background 0.3s;
  white-space: nowrap;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.client-logo:hover {
  border-color: var(--border-hover);
  background: rgba(28, 200, 176, 0.03);
  color: var(--text-secondary);
}

/* ═══ TEAM CARDS ═══ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
  max-width: 840px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s;
}
.team-card:hover { border-color: var(--border-hover); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(28, 200, 176, 0.2);
  overflow: hidden;
}
.team-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.7);
  transition: filter 0.3s;
}
.team-card:hover .team-avatar img { filter: saturate(1); }
.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.team-role {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--amber-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: -8px;
}
.team-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.team-email {
  font-size: 0.8125rem;
  color: var(--amber);
  transition: color 0.2s;
}
.team-email:hover { color: var(--amber-light); }

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

/* ═══ FAQ ═══ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 48px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}
.faq-q svg {
  width: 18px; height: 18px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s, stroke 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-q svg { transform: rotate(45deg); stroke: var(--amber); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ═══ CTA SECTION ═══ */
.cta-section { background: var(--bg-deep); position: relative; overflow: hidden; }
.cta-inner {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 80px 64px;
  text-align: center;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(28, 200, 176, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner .section-tag { justify-content: center; }
.cta-inner .section-sub { max-width: 480px; margin: 0 auto 40px; text-align: center; }
.cta-contact-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.875rem;
}
.cta-contact-item svg {
  width: 18px; height: 18px;
  stroke: var(--amber-dim);
  fill: none;
  stroke-width: 1.5;
}
.cta-contact-item a {
  color: var(--text-secondary);
  transition: color 0.2s;
}
.cta-contact-item a:hover { color: var(--amber); }

@media (max-width: 640px) { .cta-inner { padding: 48px 24px; } }

/* ═══ TRUST BADGES ROW ═══ */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(28, 200, 176, 0.04);
  border: 1px solid rgba(28, 200, 176, 0.1);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}
.trust-badge svg {
  width: 16px; height: 16px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 1.5;
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 64px 0 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand {
  height: 28px;
  margin-bottom: 16px;
}
.footer-brand img {
  height: 100%;
  width: auto;
  opacity: 0.5;
}
.footer-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}
.footer h4 {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--amber); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer-legal a { color: var(--text-secondary); transition: color 0.2s; }
.footer-legal a:hover { color: var(--amber); }

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

/* ═══ IMAGE BREAK ═══ */
.image-break {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.image-break img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.3) brightness(0.35);
}
.image-break::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, transparent 30%, transparent 70%, var(--bg-deep) 100%);
  z-index: 1;
}

/* ═══ FORM STYLES ═══ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.form-input,
.form-textarea {
  padding: 12px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus,
.form-textarea:focus { border-color: var(--amber-dim); }
.form-textarea { resize: vertical; min-height: 120px; }

/* ═══ PAGE HERO (inner pages) ═══ */
.page-hero {
  padding: 160px 0 80px;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at right center, rgba(28, 200, 176, 0.03) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .section-title { margin-bottom: 20px; }
.page-hero .section-sub { margin-bottom: 32px; }

/* ═══ FEATURE LIST ═══ */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
.feature-check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: rgba(28, 200, 176, 0.06);
  border: 1px solid rgba(28, 200, 176, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.feature-check svg {
  width: 12px; height: 12px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 2.5;
}

/* ═══ TWO-COL LAYOUT ═══ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }
.two-col-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.two-col-image img { width: 100%; height: 100%; object-fit: cover; }
.two-col-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(28, 200, 176, 0.08);
  border-radius: 12px;
  pointer-events: none;
}

@media (max-width: 768px) {
  .two-col,
  .two-col--reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
}

/* ═══ CASE STUDY CARD ═══ */
.case-study {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.case-study-image {
  aspect-ratio: 21/9;
  overflow: hidden;
}
.case-study-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.6);
}
.case-study-body { padding: 40px; }
.case-study-tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.case-study-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.case-study-body p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
}
.case-study-stats {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.case-study-stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--amber);
}
.case-study-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ═══ ACCREDITATIONS ═══ */
.accreditations {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.accreditation {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(28, 200, 176, 0.04);
  border: 1px solid rgba(28, 200, 176, 0.1);
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.accreditation svg {
  width: 20px; height: 20px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 1.5;
}

/* ═══ DATA STREAM EFFECT ═══ */
.data-stream {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.data-stream canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

/* ═══ CURSOR GLOW ═══ */
.cursor-glow {
  position: fixed;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(28, 200, 176, 0.6);
  background: transparent;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s,
              opacity 0.3s;
  opacity: 0;
}
.cursor-glow.active { opacity: 1; }
.cursor-glow.hovering {
  width: 56px; height: 56px;
  border-color: rgba(28, 200, 176, 1);
}
