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

/* --- DESIGN SYSTEM TOKENS --- */
:root {
  /* Color Palette - Dark B2B SaaS Theme */
  --bg-dark-1: #03050d;      /* Very dark navy deep canvas */
  --bg-dark-2: #090e1f;      /* Lighter navy container background */
  --bg-card: rgba(10, 17, 36, 0.45);
  --bg-card-hover: rgba(15, 27, 56, 0.6);
  --border-card: rgba(255, 255, 255, 0.05);
  --border-card-hover: rgba(255, 255, 255, 0.12);

  /* Primary & Accent Glow Colors */
  --color-accent-cyan: #00f2fe;
  --color-accent-blue: #0066ff;
  --color-accent-purple: #9d4edd;

  /* Typography Colors */
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Layout Spacing */
  --header-height: 72px;
  --radius-soft: 16px;
  --radius-interactive: 8px;
  --radius-pill: 999px;

  /* Typography Families */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Custom Easing for Premium Motion */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark-1);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 0%, var(--bg-dark-2) 0%, var(--bg-dark-1) 70%);
  min-height: 100vh;
  line-height: 1.6;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* --- UTILITIES --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.glow-text {
  background: linear-gradient(135deg, var(--color-accent-cyan) 0%, var(--color-accent-blue) 50%, var(--color-accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- STICKY NAVIGATION --- */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav-header.scrolled {
  background-color: rgba(3, 5, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

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

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.14rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08rem;
  transition: background 0.3s var(--ease-spring), border-color 0.3s var(--ease-spring), transform 0.1s ease;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.nav-cta:active {
  transform: scale(0.97);
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle svg {
  stroke: var(--text-primary);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100dvh;
  padding-top: calc(var(--header-height) + 24px);
  padding-bottom: 64px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 10;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-weight: 500;
  padding: 8px 18px 8px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent-cyan);
  box-shadow: 0 0 8px 2px rgba(0, 242, 254, 0.6);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-subhead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 48ch;
  margin-bottom: 16px;
}

.hero-supporting {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 48ch;
  margin-bottom: 32px;
  font-style: italic;
  letter-spacing: 0.01em;
}

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

/* Button UI Components */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--color-accent-blue) 0%, var(--color-accent-purple) 100%);
  color: var(--text-primary);
  border: none;
  padding: 8px 8px 8px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.3s ease, transform 0.1s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.2);
}

.btn-primary svg {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  padding: 11px;
  width: 18px;
  height: 18px;
  box-sizing: content-box;
  flex-shrink: 0;
}

.btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 30px rgba(0, 102, 255, 0.4);
}

.btn-primary:active {
  transform: scale(0.97);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.1s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary:active {
  transform: scale(0.97);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-soft);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  background-color: var(--bg-dark-2);
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 500px;
  opacity: 0.9;
  mix-blend-mode: screen;
}

.hero-glow-blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, transparent 70%);
  top: -50px;
  right: -50px;
  z-index: 1;
  pointer-events: none;
  filter: blur(40px);
}

/* Floating annotation cards on the hero visual */
.hero-annotation {
  position: absolute;
  display: flex;
  align-items: center;
  z-index: 6;
  pointer-events: none;
}

.hero-annotation--metric {
  top: 10%;
  right: -7%;
  flex-direction: row;
}

.hero-annotation--sync {
  bottom: 8%;
  left: -8%;
  flex-direction: row-reverse;
}

.hero-annotation-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent-cyan);
  box-shadow: 0 0 8px 2px rgba(0, 242, 254, 0.6);
  flex-shrink: 0;
}

.hero-annotation-line {
  width: 32px;
  height: 1px;
  background: linear-gradient(to right, rgba(0, 242, 254, 0.7), rgba(0, 242, 254, 0));
  flex-shrink: 0;
}

.hero-annotation--sync .hero-annotation-line {
  background: linear-gradient(to left, rgba(0, 242, 254, 0.7), rgba(0, 242, 254, 0));
}

.hero-annotation-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 17, 36, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  padding: 8px 16px 8px 8px;
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.hero-annotation--sync .hero-annotation-card {
  padding: 8px 8px 8px 16px;
}

.hero-annotation-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 242, 254, 0.1);
  color: var(--color-accent-cyan);
  flex-shrink: 0;
}

.hero-annotation-icon svg {
  width: 14px;
  height: 14px;
}

.hero-annotation-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero-annotation-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.hero-annotation-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* --- TRUSTED LOGO WALL --- */
.logo-wall {
  position: relative;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  background: rgba(2, 4, 10, 0.3);
}

.logo-wall::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent-cyan);
  box-shadow: 0 0 12px 3px rgba(0, 242, 254, 0.55);
}

.logo-wall-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 24px;
}

.logo-wall-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.logo-wall-grid svg {
  height: 28px;
  width: auto;
  fill: var(--text-secondary);
  opacity: 0.85;
  transition: fill 0.3s ease, opacity 0.3s ease;
}

.logo-wall-grid svg:hover {
  fill: var(--text-primary);
  opacity: 1;
}

/* --- SECTIONS (GENERAL) --- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  max-width: 65ch;
  margin-bottom: 60px;
  text-align: left;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent-cyan);
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* --- SERVICES (BENTO & CARDS) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-soft);
  padding: 40px;
  overflow: hidden;
  transition: background 0.3s var(--ease-spring), border-color 0.3s var(--ease-spring), transform 0.3s var(--ease-spring);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-card-hover);
  transform: translateY(-4px);
}

/* Card Glow Spotlight Effect coordinates */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 255, 255, 0.05), transparent 40%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrapper {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-accent-cyan);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.2);
}

.service-icon-wrapper svg {
  stroke-width: 1.5;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 24px;
  color: var(--text-secondary);
}

.service-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
}

.service-list-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.service-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: auto;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.service-item svg {
  color: var(--color-accent-cyan);
  flex-shrink: 0;
}

/* --- WHY DATAPOR --- */
.why-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.why-content {
  display: flex;
  flex-direction: column;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-soft);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.why-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-card-hover);
}

.why-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-blue);
  flex-shrink: 0;
}

.why-card-title {
  font-size: 1.2rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.why-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* --- HOW WE WORK (TIMELINE) --- */
.work-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 24px;
}

/* Glowing timeline connector line */
.work-timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--color-accent-cyan), var(--color-accent-blue), var(--color-accent-purple));
  z-index: 1;
  opacity: 0.2;
}

.timeline-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.step-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-dark-2);
  border: 2px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent-cyan);
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.timeline-step:hover .step-badge {
  border-color: var(--color-accent-cyan);
  color: var(--text-primary);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.35);
}

.step-title {
  font-size: 1.35rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* --- FINAL CTA --- */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.cta-box {
  background: radial-gradient(100% 100% at 50% 0%, var(--bg-dark-2) 0%, rgba(10, 17, 36, 0.4) 100%);
  border: 1px solid var(--border-card);
  border-radius: 24px;
  padding: 80px 40px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-accent-cyan), var(--color-accent-blue), transparent);
}

.cta-title {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.cta-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 55ch;
  margin: 0 auto 36px auto;
}

.cta-glow-bg {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

/* --- FOOTER --- */
.footer {
  background-color: #020306;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 80px 0 40px 0;
  color: var(--text-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr;
  gap: 64px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent-cyan);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.footer-desc {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-email {
  font-size: 1rem;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-email:hover {
  color: var(--color-accent-cyan);
}

.footer-social-links {
  display: flex;
  gap: 16px;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-interactive);
  color: var(--text-secondary);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-social-icon:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- ANIMATIONS & REVEALS --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-spring), transform 0.8s var(--ease-spring);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE LAYOUTS --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-subhead {
    max-width: 60ch;
  }

  .why-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .hero-annotation {
    display: none;
  }

  .nav-links {
    display: none; /* JS implementation for drawer */
  }

  .mobile-toggle {
    display: block;
  }

  .nav-header .nav-cta {
    display: none; /* Move to drawer */
  }

  /* Timeline Responsive Fallback */
  .work-timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .work-timeline::before {
    top: 0;
    left: 32px;
    width: 2px;
    height: calc(100% - 32px);
    background: linear-gradient(to bottom, var(--color-accent-cyan), var(--color-accent-blue), var(--color-accent-purple));
  }

  .timeline-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
  }

  .step-badge {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .step-content {
    display: flex;
    flex-direction: column;
    padding-top: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* --- MOBILE DRAWER NAVIGATION --- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--bg-dark-1);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 200;
  padding: 80px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  transition: right 0.4s var(--ease-spring);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-drawer-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
}

.mobile-drawer-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-drawer-close svg {
  stroke: var(--text-primary);
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(2, 4, 10, 0.6);
  backdrop-filter: blur(4px);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

/* --- AI PRODUCTS (FUTURE VISION) --- */
.ai-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.product-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.product-card-header .service-icon-wrapper {
  margin-bottom: 0;
}

.status-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid;
  white-space: nowrap;
}

.status-research {
  color: var(--color-accent-cyan);
  border-color: rgba(0, 242, 254, 0.3);
  background: rgba(0, 242, 254, 0.08);
}

.status-concept {
  color: var(--color-accent-purple);
  border-color: rgba(157, 78, 221, 0.3);
  background: rgba(157, 78, 221, 0.08);
}

.status-exploration {
  color: var(--text-secondary);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.ai-products-cta {
  text-align: center;
  margin-top: 16px;
}

.ai-products-cta p {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.ai-roadmap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 56px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.roadmap-step {
  padding: 6px 14px;
  border: 1px solid var(--border-card);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.roadmap-arrow {
  color: var(--text-muted);
  opacity: 0.5;
}

@media (max-width: 1024px) {
  .ai-products-grid {
    grid-template-columns: 1fr;
  }
}
