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

:root {
  --navy-900: #0a0a0a;
  --navy-800: #141414;
  --navy-700: #1a1a1a;
  --navy-600: #222222;
  --navy-500: #2a2a2a;
  --navy-400: #3a3a3a;
  
  --turquoise-500: #14b8a6;
  --turquoise-400: #2dd4bf;
  --turquoise-300: #5eead4;
  --turquoise-glow: rgba(20, 184, 166, 0.4);
  
  --orange-500: #f97316;
  --orange-400: #fb923c;
  --orange-300: #fdba74;
  --orange-glow: rgba(249, 115, 22, 0.4);
  
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  
  --white: #ffffff;
  --black: #000000;
  
  --font-mono: 'IBM Plex Mono', monospace;
  --font-sans: 'Inter', sans-serif;
  
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-smooth: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--slate-300);
  background-color: var(--navy-900);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { margin-bottom: 1rem; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

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

.section {
  padding: 4rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

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

.section--dark {
  background-color: var(--navy-900);
  position: relative;
}

.section--dark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--navy-900));
  pointer-events: none;
}

.section--navy {
  background-color: #0a1628;
  position: relative;
}

.section--navy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, var(--navy-900), transparent);
  pointer-events: none;
}

.section--navy::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #0a1628);
  pointer-events: none;
}

.section--light {
  background-color: var(--slate-50);
}

.section--light h2,
.section--light h3,
.section--light h4 {
  color: var(--navy-800);
}

.section--light p,
.section--light li {
  color: var(--slate-600);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--turquoise-500), var(--turquoise-400));
  color: var(--navy-900);
}

.btn--primary:hover {
  box-shadow: 0 0 30px var(--turquoise-glow), 0 0 60px var(--turquoise-glow);
  transform: translateY(-2px);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--turquoise-500);
}

.btn--secondary:hover {
  background: var(--turquoise-500);
  color: var(--navy-900);
  box-shadow: 0 0 20px var(--turquoise-glow);
}

.btn--accent {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  color: var(--navy-900);
}

.btn--accent:hover {
  box-shadow: 0 0 30px var(--orange-glow), 0 0 60px var(--orange-glow);
  transform: translateY(-2px);
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn--small {
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
}

.card {
  background: var(--navy-800);
  border: 1px solid var(--navy-600);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
  transition: all var(--transition-base);
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--turquoise-500), var(--orange-500));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.card:hover {
  border-color: var(--navy-500);
  transform: translateY(-4px);
}

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

.card--turquoise {
  border-top: 3px solid var(--turquoise-500);
}

.card--orange {
  border-top: 3px solid var(--orange-500);
}

.card--navy {
  border-top: 3px solid var(--navy-400);
}

.card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--turquoise-400);
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card__text {
  font-size: 0.9375rem;
  color: var(--slate-400);
  margin-bottom: 1rem;
}

.card__link {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--turquoise-400);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition-fast);
}

.card__link:hover {
  gap: 0.75rem;
}

.label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--turquoise-400);
  display: block;
  margin-bottom: 0.75rem;
}

.label--orange {
  color: var(--orange-400);
}

.label--navy {
  color: var(--navy-400);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header__title {
  margin-bottom: 1rem;
}

.section-header__subtitle {
  font-size: 1.125rem;
  color: var(--slate-400);
  font-weight: 400;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(20, 184, 166, 0.25), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(249, 115, 22, 0.15), transparent);
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(20, 184, 166, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 184, 166, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--navy-800);
  border: 1px solid var(--navy-600);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--turquoise-400);
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.1s;
  opacity: 0;
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--turquoise-400);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.hero__title {
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero__title span {
  background: linear-gradient(135deg, var(--turquoise-400), var(--orange-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__text {
  font-size: 1.25rem;
  color: var(--slate-400);
  margin-bottom: 2.5rem;
  max-width: 600px;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero__stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--navy-700);
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.hero__stat {
  text-align: left;
}

.hero__stat-value {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  display: block;
}

.hero__stat-label {
  font-size: 0.875rem;
  color: var(--slate-500);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--navy-700);
  transition: all var(--transition-base);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--turquoise-500), var(--orange-500));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__logo-icon svg {
  width: 20px;
  height: 20px;
  color: var(--navy-900);
}

.header__logo-text {
  font-family: var(--font-mono);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
}

.header__logo-text span {
  color: var(--turquoise-400);
}

.header__nav {
  display: none;
}

@media (min-width: 1024px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }
}

.header__link {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--slate-300);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 0.5rem 0;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--turquoise-400);
  transition: width var(--transition-base);
}

.header__link:hover,
.header__link--active {
  color: var(--white);
}

.header__link:hover::after,
.header__link--active::after {
  width: 100%;
}

.header__cta {
  display: none;
}

@media (min-width: 768px) {
  .header__cta {
    display: inline-flex;
  }
}

.header__mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 1024px) {
  .header__mobile-toggle {
    display: none;
  }
}

.header__mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-fast);
}

.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: var(--navy-900);
  border-top: 1px solid var(--navy-700);
  padding: 2rem;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  z-index: 999;
}

.mobile-nav--open {
  transform: translateX(0);
}

.mobile-nav__link {
  display: block;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--slate-300);
  padding: 1rem 0;
  border-bottom: 1px solid var(--navy-700);
}

.mobile-nav__link:hover {
  color: var(--turquoise-400);
}

.footer {
  background: var(--navy-900);
  border-top: 1px solid var(--navy-700);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer__logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--turquoise-500), var(--orange-500));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__logo-icon svg {
  width: 18px;
  height: 18px;
  color: var(--navy-900);
}

.footer__logo-text {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.footer__tagline {
  font-size: 0.875rem;
  color: var(--slate-500);
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-800);
  border: 1px solid var(--navy-600);
  border-radius: 4px;
  color: var(--slate-400);
  transition: all var(--transition-fast);
}

.footer__social-link:hover {
  background: var(--turquoise-500);
  border-color: var(--turquoise-500);
  color: var(--navy-900);
}

.footer__title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.75rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--slate-500);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--turquoise-400);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--navy-700);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__copyright {
  font-size: 0.8125rem;
  color: var(--slate-500);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.8125rem;
  color: var(--slate-500);
}

.footer__legal a:hover {
  color: var(--turquoise-400);
}

.performance-section {
  position: relative;
  overflow: hidden;
}

.performance-section--navy {
  background: var(--navy-800);
  position: relative;
}

.performance-section--navy::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--navy-800));
  pointer-events: none;
}

.performance-section--navy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 80% 50% at 20% 80%, rgba(26, 42, 66, 0.5), transparent);
  pointer-events: none;
}

.performance-section--turquoise {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  position: relative;
}

.performance-section--turquoise::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--navy-800));
  pointer-events: none;
}

.performance-section--turquoise::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 60% 40% at 70% 20%, rgba(20, 184, 166, 0.18), transparent);
  pointer-events: none;
}

.performance-section--orange {
  background: var(--navy-800);
  position: relative;
}

.performance-section--orange::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--navy-800));
  pointer-events: none;
}

.performance-section--orange::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 50% 40% at 80% 30%, rgba(249, 115, 22, 0.18), transparent);
  pointer-events: none;
}

.performance-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.performance-icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.performance-icon--navy {
  background: var(--navy-700);
  border: 1px solid var(--navy-500);
}

.performance-icon--turquoise {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(20, 184, 166, 0.1));
  border: 1px solid var(--turquoise-500);
}

.performance-icon--orange {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.1));
  border: 1px solid var(--orange-500);
}

.performance-icon svg {
  width: 28px;
  height: 28px;
}

.performance-icon--navy svg {
  color: var(--navy-400);
}

.performance-icon--turquoise svg {
  color: var(--turquoise-400);
}

.performance-icon--orange svg {
  color: var(--orange-400);
}

.performance-title {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.performance-tagline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.performance-tagline--navy {
  color: var(--navy-400);
}

.performance-tagline--turquoise {
  color: var(--turquoise-400);
}

.performance-tagline--orange {
  color: var(--orange-400);
}

.process-timeline {
  position: relative;
  padding-left: 3rem;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--turquoise-500), var(--orange-500));
}

.process-step {
  position: relative;
  padding-bottom: 3rem;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step__number {
  position: absolute;
  left: -3rem;
  top: 0;
  width: 24px;
  height: 24px;
  background: var(--navy-900);
  border: 2px solid var(--turquoise-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--turquoise-400);
  z-index: 1;
}

.process-step--active .process-step__number {
  background: var(--turquoise-500);
  color: var(--navy-900);
  border-color: var(--turquoise-500);
}

.process-step__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.process-step__text {
  color: var(--slate-400);
  font-size: 0.9375rem;
}

.audit-banner {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border: 1px solid var(--navy-600);
  border-radius: 8px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.audit-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--turquoise-500), var(--orange-500));
}

.audit-banner__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: var(--navy-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.audit-banner__icon svg {
  width: 32px;
  height: 32px;
  color: var(--turquoise-400);
}

.audit-banner__title {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.audit-banner__text {
  color: var(--slate-400);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.cta-section {
  background: var(--navy-800);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(20, 184, 166, 0.18), transparent);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.125rem;
  color: var(--slate-400);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info__text {
  color: var(--slate-400);
  margin-bottom: 2rem;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-details__icon {
  width: 40px;
  height: 40px;
  background: var(--navy-700);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details__icon svg {
  width: 20px;
  height: 20px;
  color: var(--turquoise-400);
}

.contact-details__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-500);
  display: block;
  margin-bottom: 0.25rem;
}

.contact-details__value {
  color: var(--white);
  font-size: 0.9375rem;
}

.contact-form {
  background: var(--navy-800);
  border: 1px solid var(--navy-600);
  border-radius: 8px;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--slate-300);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--navy-700);
  border: 1px solid var(--navy-500);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--turquoise-500);
  box-shadow: 0 0 0 3px var(--turquoise-glow);
}

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

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--slate-500);
}

.page-hero {
  padding-top: 160px;
  padding-bottom: 4rem;
  background: var(--navy-900);
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(20, 184, 166, 0.15), transparent);
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--turquoise-400);
  margin-bottom: 1rem;
}

.page-hero__title {
  margin-bottom: 1rem;
  max-width: 700px;
}

.page-hero__text {
  font-size: 1.125rem;
  color: var(--slate-400);
  max-width: 600px;
}

.page-content {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .page-content {
    padding: 6rem 0;
  }
}

.features-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--navy-800);
  border: 1px solid var(--navy-600);
  border-radius: 8px;
  padding: 2rem;
  transition: all var(--transition-base);
}

.feature-card:hover {
  border-color: var(--navy-500);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--navy-700);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--turquoise-400);
}

.feature-card__title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.feature-card__text {
  font-size: 0.9375rem;
  color: var(--slate-400);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table th,
.specs-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--navy-600);
}

.specs-table th {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-500);
  background: var(--navy-800);
  font-weight: 500;
}

.specs-table td {
  font-size: 0.9375rem;
  color: var(--slate-300);
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.compliance-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.compliance-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--navy-700);
  border: 1px solid var(--navy-500);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--slate-400);
}

.compliance-badge svg {
  width: 16px;
  height: 16px;
  color: var(--turquoise-400);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

::selection {
  background: var(--turquoise-500);
  color: var(--navy-900);
}

:focus-visible {
  outline: 2px solid var(--turquoise-500);
  outline-offset: 2px;
}

/* ===== SCROLL-SPY PROCESS STYLES ===== */
.process-steps-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .process-steps-container {
    grid-template-columns: 350px 1fr;
    gap: 4rem;
  }
}

.process-steps-nav {
  position: relative;
}

.process-steps-list {
  list-style: none;
  position: sticky;
  top: 120px;
}

.process-step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--navy-600);
  cursor: pointer;
  transition: all 0.2s ease;
}

.process-step-item:last-child {
  border-bottom: none;
}

.process-step-number {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border: 2px solid var(--navy-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-500);
  transition: all 0.3s ease;
}

.process-step-item:hover .process-step-number {
  border-color: var(--turquoise-400);
  color: var(--turquoise-400);
}

.process-step-item.active .process-step-number {
  background: var(--turquoise-500);
  border-color: var(--turquoise-500);
  color: var(--navy-900);
  box-shadow: 0 0 20px var(--turquoise-glow);
}

.process-step-label {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-500);
  margin-top: 0.5rem;
  transition: color 0.2s ease;
}

.process-step-item:hover .process-step-label {
  color: var(--slate-300);
}

.process-step-item.active .process-step-label {
  color: var(--white);
}

.process-step-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate-400);
  margin-bottom: 0.25rem;
  transition: color 0.2s ease;
}

.process-step-item:hover .process-step-title {
  color: var(--white);
}

.process-step-item.active .process-step-title {
  color: var(--white);
  font-weight: 600;
}

/* Right Panel - Sticky Detail View */
.process-panel {
  position: sticky;
  top: 120px;
  background: var(--navy-700);
  border: 1px solid var(--navy-500);
  border-radius: 8px;
  padding: 2rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.process-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--turquoise-500), var(--turquoise-400));
}

.process-panel-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--navy-500);
}

.process-panel-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--turquoise-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-900);
}

.process-panel-title {
  font-size: 1.25rem;
  margin-bottom: 0;
}

.process-panel-content {
  color: var(--slate-400);
  line-height: 1.7;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.process-panel-content p {
  margin-bottom: 1rem;
}

.process-panel-content p:last-child {
  margin-bottom: 0;
}

/* ===== GLOW & HIGHLIGHT UTILITIES ===== */

/* Subtle section header glow */
.section-header-glow {
  position: relative;
}

.section-header-glow::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 100px;
  background: radial-gradient(ellipse, rgba(20, 184, 166, 0.08), transparent 70%);
  pointer-events: none;
}

/* Card glow on hover */
.card-glow {
  transition: all 0.25s ease;
}

.card-glow:hover {
  box-shadow: 0 0 40px rgba(20, 184, 166, 0.1), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.card-glow-orange:hover {
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.1), 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Panel highlight */
.panel-highlight {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
}

.panel-highlight::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.05), transparent 70%);
  pointer-events: none;
}

/* CTA section subtle glow */
.cta-glow {
  position: relative;
}

.cta-glow::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(20, 184, 166, 0.06), transparent 60%);
  pointer-events: none;
}

/* Active step highlight in timeline */
.process-timeline-highlight {
  position: relative;
}

.process-timeline-highlight::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--turquoise-500), var(--orange-500));
  border-radius: 2px;
}

/* Subtle inner glow for panels */
.inner-glow {
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
}

/* Gradient text accent */
.text-gradient {
  background: linear-gradient(135deg, var(--turquoise-400), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== FASTER ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }

/* Snappy button hover */
.btn {
  transition: all 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

/* ===== PATHWAY SECTION ===== */
.pathway-section {
  background: var(--navy-800);
  position: relative;
}

.pathway-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, var(--navy-900), transparent);
  pointer-events: none;
  z-index: 1;
}

.pathway-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--navy-800));
  pointer-events: none;
  z-index: 1;
}
  pointer-events: none;
}

.pathway-card {
  background: var(--navy-700);
  border: 1px solid var(--navy-500);
  border-radius: 8px;
  padding: 2.5rem;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.pathway-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}

.pathway-card--individuals::before {
  background: linear-gradient(90deg, var(--turquoise-500), var(--turquoise-400));
}

.pathway-card--enterprise::before {
  background: linear-gradient(90deg, var(--orange-500), var(--orange-400));
}

.pathway-card:hover {
  transform: translateY(-4px);
  border-color: var(--navy-400);
}

.pathway-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pathway-card--individuals .pathway-card__icon {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(20, 184, 166, 0.1));
  border: 1px solid var(--turquoise-500);
}

.pathway-card--enterprise .pathway-card__icon {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.1));
  border: 1px solid var(--orange-500);
}

.pathway-card__icon svg {
  width: 36px;
  height: 36px;
}

.pathway-card--individuals .pathway-card__icon svg {
  color: var(--turquoise-400);
}

.pathway-card--enterprise .pathway-card__icon svg {
  color: var(--orange-400);
}

.pathway-card__title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.pathway-card__text {
  color: var(--slate-400);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.pathway-card__list {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.pathway-card__list li {
  font-size: 0.875rem;
  color: var(--slate-400);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.pathway-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.pathway-card--individuals .pathway-card__list li::before {
  background: var(--turquoise-400);
}

.pathway-card--enterprise .pathway-card__list li::before {
  background: var(--orange-400);
}

.pathway-card__btn {
  width: 100%;
}

/* ===== MOBILE STYLES ===== */
@media (max-width: 767px) {
  /* Base mobile adjustments */
  html {
    font-size: 14px;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  /* Header & Nav */
  .header {
    height: 60px;
  }
  
  .header__inner {
    height: 60px;
  }
  
  .header__logo-icon {
    width: 32px;
    height: 32px;
  }
  
  .header__logo-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .header__logo-text {
    font-size: 1rem;
  }
  
  .header__cta {
    padding: 0.5rem 0.75rem;
    font-size: 0.7rem;
  }
  
  .header__mobile-toggle {
    display: flex;
    padding: 0.5rem;
  }
  
  .header__mobile-toggle span {
    width: 24px;
    height: 2px;
  }
  
  .mobile-nav {
    top: 60px;
    height: calc(100vh - 60px);
    padding: 1rem;
  }
  
  /* Hero Section */
  .hero {
    min-height: auto;
    padding: 100px 0 3rem;
  }
  
  .hero__badge {
    font-size: 0.65rem;
    padding: 0.4rem 0.75rem;
  }
  
  .hero__title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  .hero__text {
    font-size: 0.95rem;
  }
  
  .hero__buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero__buttons .btn {
    width: 100%;
    padding: 0.875rem 1rem;
  }
  
  .hero__stats {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
  
  .hero__stat {
    text-align: center;
  }
  
  .hero__stat-value {
    font-size: 1.5rem;
  }
  
  /* Section padding */
  .section {
    padding: 3rem 0;
  }
  
  .section--dark,
  .section--navy {
    padding: 3rem 0;
  }
  
  /* Section headers */
  .section-header {
    margin-bottom: 2rem;
  }
  
  .section-header__title {
    font-size: 1.5rem;
  }
  
  .section-header__subtitle {
    font-size: 0.9rem;
  }
  
  /* Pathway Section */
  .pathway-section {
    padding: 2rem 0;
  }
  
  .pathway-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .pathway-card:last-child {
    margin-bottom: 0;
  }
  
  .pathway-card__icon {
    width: 56px;
    height: 56px;
  }
  
  .pathway-card__icon svg {
    width: 28px;
    height: 28px;
  }
  
  .pathway-card__title {
    font-size: 1.25rem;
  }
  
  /* Grids - stack on mobile */
  .grid,
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  /* Cards */
  .card {
    padding: 1.25rem;
  }
  
  .card__title {
    font-size: 1.1rem;
  }
  
  .card__text {
    font-size: 0.85rem;
  }
  
  /* Performance Sections */
  .performance-section {
    padding: 3rem 0;
  }
  
  .performance-section .grid--2 {
    grid-template-columns: 1fr;
  }
  
  .performance-section .grid--2 > div {
    order: unset !important;
  }
  
  .performance-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .performance-icon {
    width: 48px;
    height: 48px;
  }
  
  .performance-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .performance-title {
    font-size: 1.25rem;
  }
  
  /* Specs table */
  .specs-table {
    font-size: 0.8rem;
  }
  
  .specs-table th,
  .specs-table td {
    padding: 0.5rem;
  }
  
  /* Features grid */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .feature-card {
    padding: 1.25rem;
  }
  
  .feature-card__title {
    font-size: 1rem;
  }
  
  .feature-card__text {
    font-size: 0.85rem;
  }
  
  /* Page hero */
  .page-hero {
    padding: 100px 0 2rem;
  }
  
  .page-hero__title {
    font-size: 1.75rem;
  }
  
  .page-hero__text {
    font-size: 0.95rem;
  }
  
  /* Process steps */
  .process-steps-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .process-steps-list {
    position: relative;
    top: 0;
  }
  
  .process-step-item {
    padding: 1rem 0;
  }
  
  .process-panel {
    position: relative;
    top: 0;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 3rem 0;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-text {
    font-size: 0.95rem;
  }
  
  .cta-section .btn {
    width: 100%;
  }
  
  /* Footer */
  .footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer__brand {
    max-width: 100%;
  }
  
  .footer__logo {
    justify-content: center;
  }
  
  .footer__social {
    justify-content: center;
  }
  
  .footer__title {
    margin-bottom: 0.75rem;
  }
  
  .footer__links li {
    margin-bottom: 0.5rem;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
  }
  
  /* Contact page */
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-label {
    font-size: 0.8rem;
  }
  
  .form-input,
  .form-textarea {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
  
  /* Audit banner */
  .audit-banner {
    padding: 1.5rem;
  }
  
  .audit-banner__icon {
    width: 48px;
    height: 48px;
  }
  
  .audit-banner__icon svg {
    width: 24px;
    height: 24px;
  }
  
  .audit-banner__title {
    font-size: 1.25rem;
  }
  
  /* Compliance badges */
  .compliance-badges {
    justify-content: center;
  }
  
  .compliance-badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.75rem;
  }
  
  /* Animations */
  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
  
  /* Remove section blurs on mobile for performance */
  .section--dark::after,
  .section--navy::before,
  .section--navy::after,
  .pathway-section::before,
  .pathway-section::after,
  .performance-section--navy::after,
  .performance-section--turquoise::after,
  .performance-section--orange::after {
    display: none;
  }
  
  /* Touch-friendly improvements */
  a, button, .btn, input, select, textarea {
    min-height: 44px;
  }
  
  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
  }
  
  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
  }
  
  /* Image responsiveness */
  img {
    max-width: 100%;
    height: auto;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .hero__title {
    font-size: 1.5rem;
  }
  
  .section-header__title {
    font-size: 1.35rem;
  }
  
  .btn {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }
}

/* Tablet styles (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .hero__title {
    font-size: 2.5rem;
  }
  
  .hero__stats {
    gap: 2rem;
  }
  
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pathway-card {
    padding: 2rem;
  }
  
  .page-hero {
    padding: 140px 0 3rem;
  }
  
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
