:root {
  --bg: #070A12;
  --bg-elev: #0D1220;
  --bg-card: #111729;
  --border: #1E2940;
  --border-hi: #2A3A5C;
  --text: #E8EDF7;
  --text-dim: #8793AD;
  --text-mute: #5A6785;
  --accent: #00D4FF;
  --accent-hot: #00B8E0;
  --accent-glow: rgba(0, 212, 255, 0.15);
  --success: #00FF9D;
  --font-display: 'Sora', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center top, black 20%, transparent 70%);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* NAV */
nav.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(7, 10, 18, 0.75);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
nav.site-nav.scrolled { border-bottom-color: var(--border); }

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.logo-mark {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo-mark::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 12px var(--accent-glow), 0 0 24px var(--accent-glow);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.logo-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-cta {
  background: var(--accent);
  color: var(--bg);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover {
  background: var(--accent-hot);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px var(--accent);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-hi);
  color: var(--text);
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-elev);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 32px;
    gap: 18px;
  }
}

/* HERO (generic across pages) */
.page-hero {
  padding: 200px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero.tall { padding: 220px 0 120px; }

/* Page-specific hero background images with dark overlay for text legibility */
body[data-page="home"] .page-hero.tall {
  background-image:
    linear-gradient(to right, rgba(7,10,18,0.92) 0%, rgba(7,10,18,0.78) 40%, rgba(7,10,18,0.55) 100%),
    url("images/hero-home.jpg");
  background-size: cover;
  background-position: center right;
}
body[data-page="about"] .page-hero {
  background-image:
    linear-gradient(to right, rgba(7,10,18,0.88) 0%, rgba(7,10,18,0.70) 60%, rgba(7,10,18,0.55) 100%),
    url("images/network-constellation.jpg");
  background-size: cover;
  background-position: center;
}
body[data-page="services"] .page-hero {
  background-image:
    linear-gradient(to right, rgba(7,10,18,0.90) 0%, rgba(7,10,18,0.65) 100%),
    url("images/fibre-curves.jpg");
  background-size: cover;
  background-position: center;
}
body[data-page="contact"] .page-hero {
  background-image:
    linear-gradient(to right, rgba(7,10,18,0.88) 0%, rgba(7,10,18,0.70) 100%),
    url("images/arch-network.jpg");
  background-size: cover;
  background-position: center;
}

/* Service detail pages */
body[data-page="cctv"] .page-hero {
  background-image:
    linear-gradient(to right, rgba(7,10,18,0.90) 0%, rgba(7,10,18,0.55) 100%),
    url("images/dark-swirl.jpg");
  background-size: cover;
  background-position: center right;
}
body[data-page="intercoms"] .page-hero {
  background-image:
    linear-gradient(to right, rgba(7,10,18,0.90) 0%, rgba(7,10,18,0.50) 100%),
    url("images/sonar-ripple.jpg");
  background-size: cover;
  background-position: center right;
}
body[data-page="alarms"] .page-hero {
  background-image:
    linear-gradient(to right, rgba(7,10,18,0.88) 0%, rgba(7,10,18,0.55) 100%),
    url("images/beam-ripple.jpg");
  background-size: cover;
  background-position: center right;
}
body[data-page="access-control"] .page-hero {
  background-image:
    linear-gradient(to right, rgba(7,10,18,0.92) 0%, rgba(7,10,18,0.55) 100%),
    url("images/arch-circles.jpg");
  background-size: cover;
  background-position: center;
}
body[data-page="networking"] .page-hero {
  background-image:
    linear-gradient(to right, rgba(7,10,18,0.88) 0%, rgba(7,10,18,0.55) 100%),
    url("images/fibre-curves.jpg");
  background-size: cover;
  background-position: center;
}

.page-hero-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
/* Hide the synthetic glow when a real background image is in place */
body[data-page="home"] .page-hero-glow,
body[data-page="about"] .page-hero-glow,
body[data-page="services"] .page-hero-glow,
body[data-page="contact"] .page-hero-glow,
body[data-page="cctv"] .page-hero-glow,
body[data-page="intercoms"] .page-hero-glow,
body[data-page="alarms"] .page-hero-glow,
body[data-page="access-control"] .page-hero-glow,
body[data-page="networking"] .page-hero-glow {
  display: none;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--accent-glow);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 100px;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--success);
}

h1 {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 900px;
  margin-bottom: 24px;
}
h1.hero-big { font-size: clamp(42px, 7vw, 88px); line-height: 0.98; }

h1 .accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--success) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h1 .outline {
  -webkit-text-stroke: 1px var(--accent);
  color: transparent;
  font-style: italic;
}

.hero-lead {
  font-size: 19px;
  color: var(--text-dim);
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  padding: 16px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--accent-hot);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px var(--accent);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 16px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid var(--border-hi);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-secondary:hover {
  border-color: var(--accent);
  background: rgba(0, 212, 255, 0.05);
}

/* SECTION */
section { padding: 100px 0; position: relative; }
section.tight { padding: 60px 0; }

.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}

h2 {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 800px;
}

h3 { font-weight: 600; letter-spacing: -0.02em; }

.section-lead {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 640px;
  margin-bottom: 56px;
}

/* Breadcrumbs */
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--text-mute); opacity: 0.6; }

/* Stat row */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 32px;
  max-width: 900px;
  margin-top: 64px;
}
.stat {
  padding-right: 24px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 13px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (max-width: 720px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .stat:nth-child(2) { border-right: none; }
}

/* Cards grid (features / reasons / etc) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 860px) { .feature-grid { grid-template-columns: 1fr; } }

.feature {
  background: var(--bg-elev);
  padding: 40px;
  transition: background 0.3s;
}
.feature:hover { background: var(--bg-card); }
.feature svg.feat-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature h4 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature p {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.6;
}

/* Two-col grid */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col.flip { grid-template-columns: 1fr 1.1fr; }
@media (max-width: 860px) {
  .two-col, .two-col.flip { grid-template-columns: 1fr; gap: 48px; }
}

.checklist { list-style: none; }
.checklist li {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  align-items: start;
}
.checklist li:last-child { border-bottom: none; }
.check-box {
  width: 32px;
  height: 32px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: var(--accent-glow);
  flex-shrink: 0;
}
.checklist h4 { font-size: 17px; margin-bottom: 6px; }
.checklist p { color: var(--text-dim); font-size: 14px; line-height: 1.55; }

/* Code card */
.code-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.9;
  position: relative;
  overflow: hidden;
}
.code-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.code-card::after {
  content: '● ● ●';
  position: absolute;
  top: 12px;
  left: 16px;
  color: var(--text-mute);
  font-size: 12px;
  letter-spacing: 4px;
}
.code-body { margin-top: 32px; color: var(--text-dim); }
.code-body .k { color: var(--accent); }
.code-body .s { color: var(--success); }
.code-body .v { color: var(--text); }
.code-body .c { color: var(--text-mute); }

/* Process grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 860px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
  position: relative;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.process-step::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--accent);
}
.process-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}
.process-step h4 { font-size: 20px; margin-bottom: 10px; }
.process-step p { color: var(--text-dim); font-size: 14px; line-height: 1.55; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 17px;
  font-weight: 500;
}
.faq-plus {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-hi);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.3s;
  font-size: 18px;
  line-height: 1;
}
.faq-item.open .faq-plus {
  background: var(--accent);
  color: var(--bg);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin 0.4s ease;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.65;
}
.faq-item.open .faq-a {
  max-height: 400px;
  margin-top: 16px;
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-elev) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 50%);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { margin: 0 auto 16px; }
.cta-banner p { color: var(--text-dim); max-width: 540px; margin: 0 auto 32px; font-size: 17px; }

/* FOOTER */
footer {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }

.footer-brand p {
  color: var(--text-dim);
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.6;
  max-width: 320px;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-mute);
  flex-wrap: wrap;
  gap: 16px;
}
.socials { display: flex; gap: 12px; }
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  text-decoration: none;
  transition: all 0.2s;
}
.social-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* FORM */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  position: relative;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.form-title { font-size: 22px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.02em; }
.form-sub { color: var(--text-dim); font-size: 14px; margin-bottom: 32px; }

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

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.field label .req { color: var(--accent); }

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: all 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.field textarea { resize: vertical; min-height: 110px; }

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 4px;
}
@media (max-width: 520px) { .checkbox-group { grid-template-columns: 1fr; } }

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
}
.checkbox-item:hover { border-color: var(--border-hi); }
.checkbox-item input { accent-color: var(--accent); width: 16px; height: 16px; }

.submit-btn {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.submit-btn:hover {
  background: var(--accent-hot);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -8px var(--accent);
}
.form-note {
  font-size: 12px;
  color: var(--text-mute);
  text-align: center;
  margin-top: 16px;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}
.success-msg {
  display: none;
  background: rgba(0, 255, 157, 0.08);
  border: 1px solid var(--success);
  border-radius: 8px;
  padding: 16px;
  color: var(--success);
  font-size: 14px;
  margin-top: 16px;
}
.success-msg.show { display: block; }

/* Service hub tiles */
.service-tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 860px) { .service-tile-grid { grid-template-columns: 1fr; } }

.service-tile {
  background: var(--bg-elev);
  padding: 48px;
  position: relative;
  transition: background 0.3s;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.service-tile:hover { background: var(--bg-card); }
.service-tile:hover .service-icon { color: var(--accent); transform: translateY(-4px); }
.service-tile:hover .service-arrow { color: var(--accent); transform: translate(4px, -4px); }

.service-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.2em;
  margin-bottom: 32px;
}
.service-icon {
  color: var(--text-dim);
  margin-bottom: 24px;
  transition: all 0.3s;
  width: 48px;
  height: 48px;
}
.service-tile h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.service-desc {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}
.service-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-list li {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  padding: 5px 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.service-arrow {
  position: absolute;
  top: 48px;
  right: 48px;
  color: var(--text-mute);
  transition: all 0.3s;
}

/* Pricing-style tier */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .tier-grid { grid-template-columns: 1fr; } }
.tier {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  position: relative;
}
.tier.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-elev) 100%);
}
.tier.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 36px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 6px 12px;
  border-radius: 4px;
}
.tier-name {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.tier h3 { font-size: 26px; margin-bottom: 12px; }
.tier p { color: var(--text-dim); font-size: 14px; margin-bottom: 24px; line-height: 1.55; }
.tier ul { list-style: none; margin-bottom: 28px; }
.tier li {
  padding: 10px 0;
  color: var(--text);
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.tier li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

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

/* Team cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}
.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--success) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--bg);
  font-size: 22px;
  margin-bottom: 20px;
}
.team-card h4 { font-size: 19px; margin-bottom: 4px; }
.team-card .role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.team-card p { color: var(--text-dim); font-size: 14px; line-height: 1.6; }

/* Timeline */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding-bottom: 40px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 4px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 4px var(--bg);
}
.timeline-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.timeline-item h4 { font-size: 18px; margin-bottom: 6px; }
.timeline-item p { color: var(--text-dim); font-size: 14.5px; line-height: 1.6; }

/* Info rows */
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 48px;
}
@media (max-width: 860px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .info-grid { grid-template-columns: 1fr; } }

.info-card {
  background: var(--bg-elev);
  padding: 32px;
}
.info-card svg { width: 28px; height: 28px; color: var(--accent); margin-bottom: 16px; }
.info-card .info-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.info-card .info-value { font-size: 17px; color: var(--text); font-weight: 500; }
.info-card a { color: var(--accent); text-decoration: none; }
.info-card a:hover { text-decoration: underline; }
