/* ============================================
   FRACTIONAL CPO — STATIC LANDING PAGE STYLES
   
   Color Reference:
   - Navy 950:  #0A1628
   - Navy 900:  #0F1F35
   - Navy 800:  #162A46
   - Navy 700:  #1E3A5F
   - Teal 400:  #2DD4BF
   - Teal 500:  #14B8A6
   - Amber 400: #FBBF24
   - Foreground: #E8E6E3
   - Muted:     #9CA3AF
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  background-color: #0A1628;
  color: #E8E6E3;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

ul { list-style: none; }

/* ---- UTILITY CLASSES ---- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.relative { position: relative; }
.teal { color: #2DD4BF; }
.teal-text { color: #2DD4BF; }
.amber-text { color: #FBBF24; }
.mono { font-family: 'JetBrains Mono', monospace; }
.font-semibold { font-weight: 600; }
.text-center { text-align: center; }
.mb-16 { margin-bottom: 4rem; }
.opacity-20 { opacity: 0.2; }
.opacity-10 { opacity: 0.1; }

.section-label {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: rgba(45, 212, 191, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.section-desc {
  margin-top: 1rem;
  font-size: 1rem;
  color: #9CA3AF;
  max-width: 42rem;
  line-height: 1.7;
}

.section-desc-center {
  margin-top: 1rem;
  font-size: 1rem;
  color: #9CA3AF;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

h2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.15;
  color: #E8E6E3;
}

@media (min-width: 640px) { h2 { font-size: 2.5rem; } }
@media (min-width: 1024px) { h2 { font-size: 3rem; } }

/* ---- SECTION ---- */
.section {
  position: relative;
  padding: 6rem 0;
}

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

/* ---- GRID PATTERN ---- */
.grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 212, 191, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  line-height: 1.5;
}

.btn-primary {
  background: #2DD4BF;
  color: #0A1628;
  box-shadow: 0 8px 24px rgba(45, 212, 191, 0.2);
}
.btn-primary:hover {
  background: #14B8A6;
  box-shadow: 0 8px 32px rgba(45, 212, 191, 0.3);
}

.btn-outline {
  border: 1px solid #1E3A5F;
  color: #E8E6E3;
  background: transparent;
}
.btn-outline:hover {
  background: rgba(14, 31, 53, 0.8);
  border-color: rgba(45, 212, 191, 0.3);
}

.btn-outline-amber {
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: #FBBF24;
  background: transparent;
}
.btn-outline-amber:hover {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.5);
}

.btn-full { width: 100%; }

/* Icon sizes */
.icon-xs { width: 14px; height: 14px; }
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

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

.animate-up {
  animation: fadeUp 0.7s ease forwards;
}

.animate-right {
  opacity: 0;
  animation: fadeRight 0.5s ease forwards;
}

.pulse-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2DD4BF;
  animation: pulse 2s infinite;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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


/* ============================================
   NAVBAR
   ============================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.5s ease;
  background: transparent;
}

#navbar.scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45, 212, 191, 0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 1024px) {
  .nav-container { height: 80px; padding: 0 2rem; }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon span {
  font-family: 'JetBrains Mono', monospace;
  color: #2DD4BF;
  font-size: 0.875rem;
  font-weight: 600;
}

.logo-icon-sm {
  width: 28px;
  height: 28px;
}

.logo-icon-sm span {
  font-size: 0.75rem;
}

.logo-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #E8E6E3;
  letter-spacing: -0.02em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-links a {
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  color: #9CA3AF;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-links a:hover {
  color: #2DD4BF;
  background: rgba(45, 212, 191, 0.05);
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: #2DD4BF;
  color: #0A1628;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 6px;
  transition: background 0.25s;
}

.nav-cta:hover { background: #14B8A6; }

@media (min-width: 1024px) {
  .nav-cta { display: inline-flex; }
}

.mobile-toggle {
  display: flex;
  padding: 0.5rem;
  color: #9CA3AF;
  cursor: pointer;
  transition: color 0.2s;
}

.mobile-toggle:hover { color: #2DD4BF; }

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

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem;
  gap: 0.25rem;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45, 212, 191, 0.1);
}

.mobile-menu.open { display: flex; }

@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu a {
  display: block;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  color: #9CA3AF;
  border-radius: 6px;
  transition: all 0.2s;
}

.mobile-menu a:hover {
  color: #2DD4BF;
  background: rgba(45, 212, 191, 0.05);
}

.mobile-cta {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(30, 58, 95, 0.5);
  background: #2DD4BF !important;
  color: #0A1628 !important;
  text-align: center;
  font-weight: 600;
  border-radius: 6px;
}


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,22,40,0.6), rgba(10,22,40,0.8), #0A1628);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 7rem 1rem 5rem;
  width: 100%;
}

@media (min-width: 640px) { .hero-content { padding: 7rem 1.5rem 5rem; } }
@media (min-width: 1024px) { .hero-content { padding: 8rem 2rem 7rem; } }

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 7fr 5fr;
    gap: 2rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(45, 212, 191, 0.2);
  background: rgba(45, 212, 191, 0.05);
  margin-bottom: 1.5rem;
}

.hero-badge span:last-child {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #2DD4BF;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #E8E6E3;
}

@media (min-width: 640px) { .hero h1 { font-size: 3.25rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4rem; } }
@media (min-width: 1280px) { .hero h1 { font-size: 4.5rem; } }

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: #9CA3AF;
  max-width: 36rem;
  line-height: 1.7;
}

@media (min-width: 640px) { .hero-subtitle { font-size: 1.25rem; } }

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  background: rgba(15, 31, 53, 0.6);
  border: 1px solid rgba(30, 58, 95, 0.5);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s;
}

.stat-card:hover {
  border-color: rgba(45, 212, 191, 0.2);
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: rgba(45, 212, 191, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 20px;
  height: 20px;
  color: #2DD4BF;
}

.stat-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2DD4BF;
}

.stat-label {
  font-size: 0.875rem;
  color: #9CA3AF;
}

.hero-footnote {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(156, 163, 175, 0.6);
  text-align: center;
}

@media (min-width: 1024px) { .hero-footnote { text-align: left; } }

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, #0A1628, transparent);
}


/* ============================================
   SERVICES
   ============================================ */
.section-header-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .section-header-grid {
    grid-template-columns: 5fr 7fr;
    gap: 3rem;
  }
}

.section-header-desc {
  display: flex;
  align-items: flex-end;
}

.section-header-desc p {
  font-size: 1rem;
  color: #9CA3AF;
  max-width: 42rem;
  line-height: 1.7;
}

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

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

.services-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: rgba(15, 31, 53, 0.4);
  border: 1px solid rgba(30, 58, 95, 0.4);
  transition: all 0.4s ease;
}

.service-card:hover {
  border-color: rgba(45, 212, 191, 0.2);
  background: rgba(15, 31, 53, 0.6);
}

.service-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: rgba(30, 58, 95, 0.8);
  font-weight: 500;
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.3s;
}

.service-card:hover .service-icon {
  background: rgba(45, 212, 191, 0.15);
}

.service-icon svg {
  width: 20px;
  height: 20px;
  color: #2DD4BF;
}

.service-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #E8E6E3;
  margin-bottom: 0.25rem;
}

.service-subtitle {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: rgba(45, 212, 191, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.875rem;
  color: #9CA3AF;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tags span {
  display: inline-flex;
  padding: 0.25rem 0.625rem;
  border-radius: 6px;
  background: rgba(22, 42, 70, 0.6);
  border: 1px solid rgba(30, 58, 95, 0.4);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: rgba(45, 212, 191, 0.8);
}

.service-image {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(30, 58, 95, 0.4);
  background: rgba(15, 31, 53, 0.4);
}

.service-image img {
  width: 100%;
  height: 224px;
  object-fit: cover;
  opacity: 0.8;
}


/* ============================================
   PACKAGES
   ============================================ */
.packages-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #0A1628, rgba(15, 31, 53, 0.3), #0A1628);
}

.packages-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

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

.package-card {
  position: relative;
  border-radius: 1rem;
  padding: 2rem;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s;
}

@media (min-width: 1024px) { .package-card { padding: 2.5rem; } }

.package-featured {
  border: 1px solid rgba(45, 212, 191, 0.3);
  background: rgba(15, 31, 53, 0.5);
  box-shadow: 0 0 60px rgba(45, 212, 191, 0.06);
}

.package-secondary {
  border: 1px solid rgba(251, 191, 36, 0.2);
  background: rgba(15, 31, 53, 0.4);
}

.package-secondary:hover {
  border-color: rgba(251, 191, 36, 0.3);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: #2DD4BF;
  color: #0A1628;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-header {
  margin-bottom: 1.5rem;
}

.package-featured .package-header { padding-top: 0.5rem; }

.package-option {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.package-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #E8E6E3;
  margin-top: 0.25rem;
}

.package-sub {
  font-size: 0.875rem;
  color: #9CA3AF;
  margin-top: 0.25rem;
}

.package-price {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(30, 58, 95, 0.5);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.25rem;
  font-weight: 700;
}

.price-period {
  font-size: 0.875rem;
  color: #9CA3AF;
}

.price-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: #9CA3AF;
}

.price-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.price-meta svg {
  color: rgba(45, 212, 191, 0.6);
}

.package-secondary .price-meta svg {
  color: rgba(251, 191, 36, 0.6);
}

.package-includes, .package-excludes, .package-audit-areas {
  margin-bottom: 2rem;
}

.package-excludes {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(30, 58, 95, 0.5);
}

.package-audit-areas {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(30, 58, 95, 0.5);
}

.package-section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.package-section-label.muted {
  color: rgba(156, 163, 175, 0.5);
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}

.check-item svg {
  margin-top: 2px;
  flex-shrink: 0;
}

.check-item.teal svg { color: #2DD4BF; }
.check-item.amber svg { color: #FBBF24; }

.check-item span {
  font-size: 0.875rem;
  color: rgba(232, 230, 227, 0.8);
}

.x-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
}

.x-item svg {
  width: 14px;
  height: 14px;
  color: rgba(156, 163, 175, 0.3);
  margin-top: 2px;
  flex-shrink: 0;
}

.x-item span {
  font-size: 0.75rem;
  color: rgba(156, 163, 175, 0.5);
}

.audit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.audit-tags span {
  display: inline-flex;
  padding: 0.25rem 0.625rem;
  border-radius: 6px;
  background: rgba(22, 42, 70, 0.6);
  border: 1px solid rgba(30, 58, 95, 0.4);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: rgba(251, 191, 36, 0.7);
}

.package-note {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(156, 163, 175, 0.5);
}


/* ============================================
   KPIs
   ============================================ */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) { .kpi-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .kpi-grid { grid-template-columns: repeat(5, 1fr); gap: 1rem; } }

.kpi-card {
  padding: 1rem;
  border-radius: 0.5rem;
  background: rgba(15, 31, 53, 0.4);
  border: 1px solid rgba(30, 58, 95, 0.3);
  transition: border-color 0.3s;
}

.kpi-card:hover {
  border-color: rgba(45, 212, 191, 0.2);
}

.kpi-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.kpi-header svg {
  color: rgba(45, 212, 191, 0.6);
  transition: color 0.3s;
}

.kpi-card:hover .kpi-header svg {
  color: #2DD4BF;
}

.kpi-cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  color: rgba(45, 212, 191, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.kpi-card p {
  font-size: 0.875rem;
  color: rgba(232, 230, 227, 0.8);
  line-height: 1.4;
}

/* Benchmarks */
.benchmarks-box {
  border-radius: 0.75rem;
  border: 1px solid rgba(45, 212, 191, 0.2);
  background: rgba(15, 31, 53, 0.3);
  padding: 2rem;
}

@media (min-width: 1024px) { .benchmarks-box { padding: 2.5rem; } }

.benchmarks-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .benchmarks-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.benchmarks-header h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #E8E6E3;
}

.benchmarks-header > div > p {
  font-size: 0.875rem;
  color: #9CA3AF;
  margin-top: 0.25rem;
}

.benchmark-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(45, 212, 191, 0.2);
  background: rgba(45, 212, 191, 0.05);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #2DD4BF;
  align-self: flex-start;
}

.benchmarks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.benchmark-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.875rem;
  font-weight: 700;
  color: #2DD4BF;
  margin-bottom: 0.25rem;
}

.benchmark-label {
  font-size: 0.875rem;
  color: #9CA3AF;
}


/* ============================================
   PROCESS
   ============================================ */
.process-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #0A1628, rgba(15, 31, 53, 0.2), #0A1628);
}

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

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: 7fr 5fr;
    gap: 3rem;
  }
}

.timeline {
  position: relative;
}

.timeline-line {
  display: none;
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, rgba(45, 212, 191, 0.3), rgba(45, 212, 191, 0.1), transparent);
}

@media (min-width: 640px) { .timeline-line { display: block; } }

.timeline-step {
  position: relative;
  display: flex;
  gap: 1.25rem;
}

@media (min-width: 640px) { .timeline-step { gap: 1.5rem; } }

.step-icon {
  position: relative;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background: #0F1F35;
  border: 1px solid rgba(45, 212, 191, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon svg {
  width: 18px;
  height: 18px;
  color: #2DD4BF;
}

.step-content {
  flex: 1;
  padding-bottom: 2rem;
}

.step-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: rgba(45, 212, 191, 0.5);
}

.step-duration {
  display: inline-flex;
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  background: rgba(45, 212, 191, 0.1);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  color: rgba(45, 212, 191, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.step-content h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #E8E6E3;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.875rem;
  color: #9CA3AF;
  line-height: 1.7;
}

.process-image {
  display: flex;
  align-items: center;
}

.process-image img {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(30, 58, 95, 0.4);
  opacity: 0.85;
}


/* ============================================
   MARKET
   ============================================ */
.market-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .market-grid {
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
  }
}

.market-image img {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(30, 58, 95, 0.4);
  opacity: 0.85;
}

.market-desc {
  font-size: 1rem;
  color: #9CA3AF;
  max-width: 36rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.traits-grid {
  display: grid;
  gap: 1rem;
}

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

.trait-card {
  display: flex;
  gap: 0.75rem;
  padding: 0.875rem;
  border-radius: 0.5rem;
  background: rgba(15, 31, 53, 0.3);
  border: 1px solid rgba(30, 58, 95, 0.3);
  transition: border-color 0.3s;
}

.trait-card:hover {
  border-color: rgba(45, 212, 191, 0.15);
}

.trait-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(45, 212, 191, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trait-icon svg {
  width: 16px;
  height: 16px;
  color: #2DD4BF;
}

.trait-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: #E8E6E3;
  margin-bottom: 0.125rem;
}

.trait-card p {
  font-size: 0.75rem;
  color: #9CA3AF;
  line-height: 1.6;
}

.market-callout {
  margin-top: 2rem;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(251, 191, 36, 0.2);
  background: rgba(251, 191, 36, 0.05);
}

.market-callout p {
  font-size: 0.875rem;
  color: rgba(232, 230, 227, 0.8);
  line-height: 1.7;
}


/* ============================================
   CONTACT
   ============================================ */
.contact-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #0A1628, rgba(15, 31, 53, 0.4), #0A1628);
}

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

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
  }
}

.contact-text h2 {
  margin-bottom: 1.5rem;
}

.contact-text > p {
  font-size: 1rem;
  color: #9CA3AF;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-facts {
  display: flex;
  flex-direction: column;
}

.fact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(30, 58, 95, 0.3);
}

.fact-row span:first-child {
  font-size: 0.875rem;
  color: #9CA3AF;
}

.fact-row span:last-child {
  font-size: 0.875rem;
}

.contact-form-wrap {
  border-radius: 1rem;
  border: 1px solid rgba(30, 58, 95, 0.4);
  background: rgba(15, 31, 53, 0.4);
  backdrop-filter: blur(8px);
  padding: 2rem;
}

@media (min-width: 1024px) { .contact-form-wrap { padding: 2.5rem; } }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

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

.form-group label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: rgba(22, 42, 70, 0.6);
  border: 1px solid rgba(30, 58, 95, 0.5);
  font-size: 0.875rem;
  color: #E8E6E3;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(156, 163, 175, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(45, 212, 191, 0.4);
  box-shadow: 0 0 0 2px rgba(45, 212, 191, 0.1);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: none;
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(156, 163, 175, 0.4);
  margin-top: 0.25rem;
}

/* Form success */
.form-success {
  text-align: center;
  padding: 3rem 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-icon svg {
  width: 32px;
  height: 32px;
  color: #2DD4BF;
}

.form-success h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #E8E6E3;
  margin-bottom: 0.75rem;
}

.form-success p {
  font-size: 1rem;
  color: #9CA3AF;
  max-width: 28rem;
  margin: 0 auto;
  line-height: 1.7;
}


/* ============================================
   FOOTER
   ============================================ */
#footer {
  border-top: 1px solid rgba(30, 58, 95, 0.3);
  background: #0A1628;
  padding: 3rem 0;
}

@media (min-width: 1024px) { #footer { padding: 4rem 0; } }

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

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

.footer-brand p {
  font-size: 0.875rem;
  color: #9CA3AF;
  line-height: 1.7;
  max-width: 20rem;
  margin-top: 1rem;
}

.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: rgba(45, 212, 191, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: #9CA3AF;
  transition: color 0.2s;
}

.footer-col a:hover { color: #2DD4BF; }

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(45, 212, 191, 0.2);
  background: rgba(45, 212, 191, 0.05);
  font-size: 0.875rem;
  color: #2DD4BF;
  transition: all 0.2s;
}

.footer-cta:hover {
  background: rgba(45, 212, 191, 0.1);
  border-color: rgba(45, 212, 191, 0.3);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(30, 58, 95, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(156, 163, 175, 0.4);
}

.footer-author {
  font-family: 'JetBrains Mono', monospace;
  color: rgba(156, 163, 175, 0.3) !important;
}
