:root {
  --black: #f8fafc;
  /* Slate-50 body background */
  --off-black: #090d16;
  /* Deep charcoal for footer */
  --surface: #ffffff;
  /* White cards */
  --surface2: #f1f5f9;
  /* Slate-100 for nested containers */
  --border: rgba(15, 23, 42, 0.08);
  /* Subtle dark border for light surfaces */
  --border-bright: rgba(15, 23, 42, 0.15);
  /* More visible border */
  --accent12: #0d9488;
  /* Rich teal (600) for readable text/buttons */
  --accent: #ec1f25;
/*  --accent: #F36B5B;*/
  /* Rich red (600) for readable text/buttons */
  --accent2: #005fff;
  /* Vibrant blue accent */
  --accent-glow: rgba(13, 148, 136, 0.08);
  /* Glow backgrounds */
  --text: #0f172a;
  /* Slate-900 primary text */
  --muted: #475569;
  /* Slate-600 secondary text */
  --muted2: #64748b;
  /* Slate-500 metadata/badges */
  --heading: 'Syne', sans-serif;
  --body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  z-index: 100;
  height: 64px;
  background: rgba(9, 13, 22, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px -10px rgba(9, 13, 22, 0.4), 0 1px 2px rgba(9, 13, 22, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  /* Aligns with section padding of 48px */
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo span {
  color: var(--accent);
}

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

.nav-links a {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.3s;
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a:hover::after {
  width: 100%;
}

/* SERVICES DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.arrow-indicator {
  font-size: 8px;
  vertical-align: middle;
  transition: transform 0.3s ease;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 340px;
  background: #121620;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(9, 13, 22, 0.4), 0 1px 3px rgba(9, 13, 22, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 10px 12px !important;
  text-decoration: none !important;
  border-radius: 10px !important;
  transition: all 0.2s ease !important;
  background: transparent !important;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  transform: translateY(-1px);
}

.drop-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.dropdown-item:hover .drop-icon {
  background: var(--accent-glow);
  color: var(--accent);
}

.drop-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.drop-text strong {
  font-size: 13px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
}

.drop-text span {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 3px;
  font-weight: 400;
  line-height: 1.3;
}

.dropdown.active .dropdown-trigger .arrow-indicator {
  transform: rotate(180deg);
  color: var(--accent);
}

.nav-cta {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #ffffff;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 95, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 95, 255, 0.3);
  opacity: 1;
}

.nav-toggle {
  display: none;
}

.mobile-cta-wrapper {
  display: none;
}


/* HERO */
#hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 100px 48px 0px;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 148, 136, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 148, 136, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.05) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero-glow2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 95, 255, 0.04) 0%, transparent 70%);
  bottom: -100px;
  left: 100px;
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(13, 148, 136, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.6);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

h1 {
  font-family: var(--heading);
  font-size: clamp(38px, 4.5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 28px;
}

h1 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 48px;
  line-height: 1.7;
}

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

.btn-primary {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 32px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-ghost {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 32px;
  color: var(--text);
  border: 1px solid var(--border-bright);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  background: transparent;
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-certs {
  /* margin-top: 64px; */
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cert-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted2);
  font-weight: 600;
}

.cert-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cert-badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--border-bright);
  border-radius: 6px;
  padding: 6px 14px;
  background: var(--surface);
}

/* SECTIONS */
section {
  padding: 100px 48px 10px;
  max-width: 1200px;
  margin: 0 auto;
}

section.full-bleed {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
}

h2 {
  font-family: var(--heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 20px;
}

h2 em {
  font-style: normal;
  color: var(--accent);
}

.section-lead {
  font-size: 17px;
  font-weight: 400;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
}

h3 {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

/* AUTOMATION STRIP */
#automation-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  overflow: hidden;
}

.strip-track {
  display: flex;
  gap: 48px;
  animation: scroll-left 25s linear infinite;
  white-space: nowrap;
}

.strip-item {
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted2);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.strip-item::after {
  content: '✦';
  color: var(--accent);
  font-size: 10px;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* WHAT WE DO */
#intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.stat-num {
  font-family: var(--heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.automation-diagram {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.automation-diagram::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
}

.diag-nodes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.diag-node {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  transition: border-color 0.3s;
}

.diag-node:hover {
  border-color: rgba(13, 148, 136, 0.4);
}

.diag-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent-glow);
  border: 1px solid rgba(13, 148, 136, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.diag-text {
  flex: 1;
}

.diag-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  display: block;
}

.diag-text span {
  font-size: 12px;
  color: var(--muted);
}

.diag-arrow {
  text-align: center;
  color: var(--muted2);
  font-size: 18px;
  line-height: 1;
  margin: 2px 0;
}

.diag-status {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-glow);
  border-radius: 4px;
  padding: 3px 8px;
  flex-shrink: 0;
}



.services-header {
  margin-bottom: 56px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

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

.service-card.featured {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.04), rgba(0, 95, 255, 0.03));
  border-color: rgba(13, 148, 136, 0.2);
  grid-column: span 2;
}

.service-card.featured::after {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-glow);
  border: 1px solid rgba(13, 148, 136, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.service-card.featured .service-icon {
  background: rgba(13, 148, 136, 0.12);
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 10px;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--border-bright);
  color: var(--muted);
  background: var(--surface);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin-top: 20px;
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 10px;
}

/* WHY ZOVAYA */
#why {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}

.why-item:first-child {
  padding-top: 0;
}

.why-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.why-num {
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  min-width: 28px;
  padding-top: 2px;
}

.why-content h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.why-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.creed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.creed-card {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.creed-letter {
  font-family: var(--heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.creed-card h4 {
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.creed-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* CONTRACT */
#contract {
  padding-bottom: 0;
}

.contract-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}

.contract-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.contract-card .label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 8px;
  font-weight: 600;
}

.contract-card .value {
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.contract-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* AUTOMATION PHILOSOPHY */
#philosophy {
  border-top: 1px solid var(--border);
}

.philosophy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  /* margin-top: 56px; */
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-step {
  display: flex;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}

.timeline-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  font-family: var(--heading);
}

.step-body h4 {
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  padding-top: 4px;
}

.step-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

.big-statement {
  font-family: var(--heading);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text);
}

.big-statement em {
  font-style: normal;
  color: var(--accent);
}

.big-statement p {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 20px;
  font-family: var(--body);
  letter-spacing: 0;
}

/* CAREERS */
#careers {
  background: linear-gradient(135deg, var(--surface) 0%, var(--black) 100%);
  border-top: 1px solid var(--border);
}

.careers-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.roles-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.role-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  transition: border-color 0.2s;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.01);
}

.role-chip:hover {
  border-color: rgba(13, 148, 136, 0.3);
}

.role-chip span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.role-chip small {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

/* CTA */
#cta {
  text-align: center;
  padding: 70px 48px;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.cta-glow {
  position: absolute;
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(13, 148, 136, 0.04) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

#cta .inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

#cta h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 20px;
}

#cta p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

#cta .actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  padding: 56px 48px 32px;
  color: #94a3b8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

footer .nav-logo {
  color: #ffffff;
}

.footer-brand p {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 12px;
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h5 {
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #cbd5e1;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: #64748b;
}

.naics-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.naics-list span {
  font-size: 12px;
  color: #64748b;
}

/* OUTCOMES / INDUSTRIES / EXPERIENCE */
.outcomes-grid,
.industries-grid,
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mission-vision {
  padding: 60px 48px;
}

.outcome-card,
.industry-card,
.experience-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  min-height: 190px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.outcome-card h3,
.industry-card h3,
.experience-card h3 {
  font-size: 18px;
}

.outcome-card p,
.industry-card p,
.experience-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.mini-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent-glow);
  border: 1px solid rgba(13, 148, 136, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 18px;
}

.proof-bar {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.proof-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}

.proof-item strong {
  display: block;
  font-family: var(--heading);
  font-size: 16px;
  color: var(--text);
  margin-bottom: 6px;
}

.proof-item span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  display: block;
}

/* STRATEGIC IMAGERY */
.hero-layout {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-visual,
.visual-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-bright);
  background: var(--surface);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.hero-visual img,
.visual-frame img {
  width: 100%;
  display: block;
}

.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-visual::after,
.visual-frame::after,
.card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 23, 42, 0.08));
}

.visual-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 48px;
}

.visual-caption {
  padding: 18px 20px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
}

.visual-caption strong {
  display: block;
  font-family: var(--heading);
  color: var(--text);
  font-size: 16px;
  margin-bottom: 4px;
}

.visual-caption span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.card-visual {
  position: relative;
  margin: -32px -32px 24px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  height: 200px;
}

.service-card:not(.featured) .card-visual {
  margin: -32px -32px 22px;
}

.industry-card,
.experience-card,
.outcome-card,
.contract-card {
  overflow: hidden;
}

.mini-card-visual {
  margin: -28px -28px 22px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.mini-card-visual img {
  width: 100%;
  display: block;
}

.experience-card .mini-card-visual {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  padding: 20px;
}

.experience-card .mini-card-visual img {
  height: 120px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.contract-card .mini-card-visual {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  /* padding: 20px; */
  gap: 16px;
}

.contract-card .mini-card-visual img {
  height: 120px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.contract-card .mini-card-visual.dual-logos img {
  max-width: 45%;
  height: 120px;
}

.cta-visual-bg {
  position: absolute;
  inset: 0;
  opacity: .08;
  background: url('../zovaya_site_assets/cta-network.png') center/cover no-repeat;
  filter: saturate(1.2);
}

/* DIVIDER */
.section-divider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  border: none;
  border-top: 1px solid var(--border);
}

/* SUBPAGES */
.subpage-hero {
  min-height: 62vh;
  padding-top: 180px;
}

.subpage-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .85fr;
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.capability-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.capability-item h3 {
  font-size: 17px;
}

.capability-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.process-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-panel {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.05), rgba(0, 95, 255, 0.04));
  border: 1px solid rgba(13, 148, 136, 0.18);
  border-radius: 22px;
  padding: 42px;
  margin-top: 42px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}

input,
textarea,
select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--text);
  font-family: var(--body);
  outline: none;
  transition: border-color 0.2s;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
}

textarea {
  grid-column: 1/-1;
  min-height: 140px;
}

/* SUCCESS TOAST / MESSAGE */
.alert-success {
  background: #ecfdf5;
  border: 1px solid #10b981;
  color: #065f46;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav {
    padding: 0;
    width: 100%;
  }

  .nav-container {
    padding: 0 24px;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: rgba(9, 13, 22, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 20px 40px rgba(9, 13, 22, 0.4);
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: flex-start;
    z-index: 99;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
    list-style: none;
  }

  .nav-links a {
    font-size: 15px;
    display: block;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links li:last-child a,
  .nav-links li.mobile-cta-wrapper a {
    border-bottom: none;
  }

  .nav-links a::after {
    display: none !important;
  }

  /* Services dropdown inline expansion on mobile */
  .dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    width: 100%;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    padding: 0 0 0 16px !important;
    display: none !important;
    flex-direction: column;
    gap: 4px !important;
    margin-top: 8px !important;
  }

  .dropdown.active .dropdown-menu {
    display: flex !important;
  }

  .dropdown-item {
    padding: 8px 0 !important;
  }

  .dropdown-item:hover {
    background: transparent !important;
    transform: none !important;
  }

  .drop-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.04) !important;
  }

  .drop-text span {
    display: none;
  }

  /* Hamburger Toggle */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
    outline: none;
  }

  .nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Hide normal header CTA on small screen sizes */
  @media (max-width: 600px) {
    .nav-cta {
      display: none;
    }
  }

  /* Mobile CTA Styles */
  .mobile-cta-wrapper {
    display: block;
    width: 100%;
    margin-top: 10px;
  }

  .mobile-nav-cta {
    display: block !important;
    text-align: center;
    padding: 12px 24px !important;
    background: linear-gradient(135deg, var(--accent), var(--accent2)) !important;
    color: #ffffff !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(0, 95, 255, 0.15) !important;
    border-bottom: none !important;
  }

  section,
  .mission-vision {
    padding: 40px 24px;
  }

  #hero,
  .support-page {
    padding: 120px 24px 60px;
  }

  .subpage-hero {
    padding-top: 120px;
    padding-bottom: 40px;
  }

  #cta {
    padding: 50px 24px;
  }

  #intro,
  .why-grid,
  .philosophy-layout,
  .careers-layout,
  .hero-layout,
  .visual-grid-2,
  .subpage-layout,
  .capability-list,
  .form-grid,
  .pipeline-header-grid,
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .service-card.featured {
    grid-column: span 1;
  }

  .contract-grid,
  .outcomes-grid,
  .industries-grid,
  .experience-grid,
  .proof-bar {
    grid-template-columns: 1fr;
  }

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

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

  .stat-row {
    grid-template-columns: 1fr;
  }

  .subpage-hero {
    padding-top: 120px;
  }
}

/* ==========================================
   ABOUT, TEAM, BLUEPRINT, & BIO PAGES STYLES
   ========================================== */

/* Story Section */
.story-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.story-quote {
  background: linear-gradient(135deg, rgba(243, 107, 91, 0.08), rgba(0, 95, 255, 0.08));
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  padding: 40px;
  font-family: var(--heading);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text);
  position: relative;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.05);
}

.story-quote::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  color: rgba(243, 107, 91, 0.15);
  line-height: 1;
}

/* Team Grid & Cards */
.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}

.member-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.member-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
}

.member-card-headshot {
  height: 220px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(243, 107, 91, 0.12), rgba(0, 95, 255, 0.12));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.member-card:hover .member-card-headshot {
  background: linear-gradient(135deg, rgba(243, 107, 91, 0.18), rgba(0, 95, 255, 0.18));
}

.member-card-headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.member-card:hover .member-card-headshot img {
  transform: scale(1.05);
}

.member-card-headshot-placeholder {
  font-size: 32px;
  color: var(--accent);
  background: rgba(243, 107, 91, 0.06);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading);
  font-weight: 800;
}

.member-card-role {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.member-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-family: var(--heading);
  font-weight: 800;
}

.member-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Bio Page */
.bio-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}

.bio-sidebar {
  position: sticky;
  top: 100px;
}

.bio-photo {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-bright);
  background: var(--surface);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
  margin-bottom: 24px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-photo-placeholder {
  font-size: 48px;
  color: var(--accent);
  background: rgba(243, 107, 91, 0.06);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading);
  font-weight: 800;
}

.bio-meta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.bio-meta-item {
  margin-bottom: 16px;
}

.bio-meta-item:last-child {
  margin-bottom: 0;
}

.bio-meta-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted2);
  font-weight: 700;
  margin-bottom: 4px;
}

.bio-meta-val {
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}

.bio-content h1 {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 8px;
}

.bio-content .bio-title {
  font-size: 18px;
  color: var(--accent);
  font-weight: 700;
  font-family: var(--heading);
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bio-section {
  margin-bottom: 40px;
}

.bio-section h3 {
  font-size: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin-bottom: 20px;
  font-family: var(--heading);
}

.bio-section p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.bio-certs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bio-cert-pill {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--border-bright);
  background: var(--surface);
  border-radius: 100px;
  padding: 8px 16px;
}

/* Pipeline Header Grid */
.pipeline-header-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 48px;
}

/* Blueprint Pipeline */
.blueprint-pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.blueprint-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
  transition: all 0.3s ease;
  position: relative;
}

.blueprint-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  border-color: var(--accent);
}

.blueprint-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 800;
  font-family: var(--heading);
  font-size: 18px;
  margin-bottom: 24px;
}

.blueprint-step h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.blueprint-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* Responsive adjustments for new pages */
@media (max-width: 1000px) {
  .team-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blueprint-pipeline {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .bio-sidebar {
    position: static;
  }

  .bio-photo {
    height: 300px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {

  .team-cards-grid,
  .blueprint-pipeline {
    grid-template-columns: 1fr;
  }

  .story-layout {
    grid-template-columns: 1fr;
  }
}