/* ================================
   Zaes LLC — Main Stylesheet
   ================================ */

:root {
  --navy-950: #020A18;
  --navy-900: #060D1F;
  --navy-800: #0A1628;
  --navy-700: #0F2040;
  --navy-600: #162952;
  --blue-600: #0047CC;
  --blue-500: #0059FF;
  --blue-400: #3378FF;
  --blue-300: #66A3FF;
  --cyan:     #00C8E8;
  --gold:     #F5A623;
  --accent-rgb: 0, 89, 255;
  --cyan-rgb:   0, 200, 232;
  --white:    #FFFFFF;
  --gray-50:  #F7FAFC;
  --gray-100: #EDF2F7;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E0;
  --gray-400: #A0AEC0;
  --gray-500: #718096;
  --gray-700: #4A5568;
  --gray-900: #1A202C;

  --text-dark:  var(--gray-900);
  --text-body:  var(--gray-700);
  --text-muted: var(--gray-500);
  --accent:     var(--blue-500);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.10);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
  --shadow-blue: 0 8px 32px rgba(0,89,255,0.30);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================
   Reset & Base
   ================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; transition: color var(--transition); }
ul   { list-style: none; }

/* ================================
   Utilities
   ================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 12px;
  padding: 4px 14px;
  background: rgba(var(--accent-rgb),0.08);
  border-radius: 100px;
  border: 1px solid rgba(var(--accent-rgb),0.18);
}

.section-label.light {
  color: var(--cyan);
  background: rgba(var(--cyan-rgb),0.10);
  border-color: rgba(var(--cyan-rgb),0.25);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-title.text-left { text-align: left; }

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-subtitle.light { color: rgba(255,255,255,0.55); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  justify-content: center;
  line-height: 1;
}

.btn-primary {
  background: var(--blue-500);
  color: var(--white);
  border-color: var(--blue-500);
}
.btn-primary:hover {
  background: var(--blue-400);
  border-color: var(--blue-400);
  transform: translateY(-1px);
  box-shadow: var(--shadow-blue);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.65);
  color: var(--white);
}

.btn-full { width: 100%; }

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Scroll-in animation */
.animate-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-in:nth-child(1) { transition-delay: 0.00s; }
.animate-in:nth-child(2) { transition-delay: 0.08s; }
.animate-in:nth-child(3) { transition-delay: 0.16s; }
.animate-in:nth-child(4) { transition-delay: 0.24s; }
.animate-in:nth-child(5) { transition-delay: 0.32s; }
.animate-in:nth-child(6) { transition-delay: 0.40s; }
.animate-in:nth-child(7) { transition-delay: 0.48s; }
.animate-in:nth-child(8) { transition-delay: 0.56s; }

/* ================================
   Navigation
   ================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition-slow), box-shadow var(--transition-slow);
}

.navbar.scrolled {
  background: rgba(6, 13, 31, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.07);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-brand { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo  { height: 38px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-cta {
  background: var(--blue-500) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  padding: 8px 20px !important;
}
.nav-cta:hover {
  background: var(--blue-400) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ================================
   Hero
   ================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(140deg, var(--navy-950) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--accent-rgb),0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-rgb),0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: gridPulse 9s ease-in-out infinite;
}

.hero::before {
  content: '';
  position: absolute;
  top: -25%;
  right: -15%;
  width: 65%;
  height: 90%;
  background: radial-gradient(ellipse, rgba(var(--accent-rgb),0.14) 0%, transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -10%;
  width: 55%;
  height: 75%;
  background: radial-gradient(ellipse, rgba(var(--cyan-rgb),0.07) 0%, transparent 68%);
  pointer-events: none;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.45; }
  50%       { opacity: 1.00; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 72px) 24px 96px;
  text-align: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 8px 18px;
  background: rgba(var(--cyan-rgb),0.09);
  border: 1px solid rgba(var(--cyan-rgb),0.28);
  border-radius: 100px;
  margin-bottom: 36px;
}
.hero-badge-dot {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: dotPulse 2.2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1);   }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

.hero-title {
  font-size: clamp(2.75rem, 7.5vw, 5.25rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.hero-title-accent {
  background: linear-gradient(125deg, var(--blue-300) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255,255,255,0.62);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 22px;
  height: 22px;
  border-right: 2px solid rgba(255,255,255,0.28);
  border-bottom: 2px solid rgba(255,255,255,0.28);
  transform: translateX(-50%) rotate(45deg);
  animation: scrollBounce 2.2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) rotate(45deg) translateY(0);   }
  50%       { opacity: 0.8; transform: translateX(-50%) rotate(45deg) translateY(7px); }
}

/* ================================
   Stats Bar
   ================================ */
.stats-bar {
  background: var(--navy-800);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 32px 0;
}
.stats-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 52px;
}
.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.10);
  flex-shrink: 0;
}

/* ================================
   Services
   ================================ */
.services { background: var(--white); }

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

.service-card {
  padding: 32px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: rgba(var(--accent-rgb),0.18);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 46px;
  height: 46px;
  padding: 11px;
  background: rgba(var(--accent-rgb),0.07);
  border-radius: var(--radius-sm);
  color: var(--blue-500);
  margin-bottom: 20px;
  transition: all var(--transition);
}
.service-icon svg { width: 100%; height: 100%; }
.service-card:hover .service-icon {
  background: var(--blue-500);
  color: var(--white);
}

.service-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ================================
   About
   ================================ */
.about { background: var(--gray-50); }

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

.about-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--accent-rgb),0.18) 0%, transparent 55%);
}
.about-img-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.about-content .section-label { margin-bottom: 12px; }
.about-content .section-title  { margin-bottom: 36px; }

.about-block {
  margin-bottom: 28px;
  padding-left: 18px;
  border-left: 3px solid var(--blue-500);
}
.about-block-title {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--blue-400);
  margin-bottom: 7px;
}
.about-block p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.75;
}

/* ================================
   Why Us
   ================================ */
.why-us { background: var(--white); }

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

.feature-card {
  padding: 40px 26px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all var(--transition);
}
.feature-card:hover {
  background: var(--navy-800);
  border-color: var(--navy-700);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(var(--accent-rgb),0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue-500);
  transition: all var(--transition);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card:hover .feature-icon {
  background: var(--blue-500);
  color: var(--white);
}

.feature-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 12px;
  transition: color var(--transition);
}
.feature-card:hover h3 { color: var(--white); }

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  transition: color var(--transition);
}
.feature-card:hover p { color: rgba(255,255,255,0.60); }

/* ================================
   Contact
   ================================ */
.contact {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 52%; height: 85%;
  background: radial-gradient(ellipse, rgba(var(--accent-rgb),0.11) 0%, transparent 68%);
  pointer-events: none;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 36px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
}

.contact-icon {
  width: 48px;
  height: 48px;
  padding: 12px;
  background: rgba(var(--accent-rgb),0.14);
  border-radius: var(--radius-sm);
  color: var(--blue-300);
  flex-shrink: 0;
}
.contact-icon svg { width: 100%; height: 100%; }

.contact-card h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.42);
  margin: 0;
}
.contact-card p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin: 0;
}
.contact-card a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.78);
}
.contact-card a:hover { color: var(--white);
}

/* ================================
   Footer
   ================================ */
.footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  height: 34px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.85;
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.38);
  max-width: 270px;
  line-height: 1.65;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.38);
  transition: color var(--transition);
}
.footer-links a:hover { color: rgba(255,255,255,0.85); }

.footer-contact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
  margin-bottom: 9px;
}
.footer-contact a {
  color: rgba(255,255,255,0.38);
  transition: color var(--transition);
}
.footer-contact a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* ================================
   Inner Page Hero
   ================================ */
.page-hero {
  position: relative;
  background: linear-gradient(140deg, var(--navy-950) 0%, var(--navy-800) 100%);
  padding: calc(var(--nav-height) + 80px) 0 80px;
  overflow: hidden;
}
.page-hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--accent-rgb),0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-rgb),0.055) 1px, transparent 1px);
  background-size: 64px 64px;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-hero-title {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 14px 0 20px;
}
.page-hero-subtitle {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
}

/* ================================
   Careers — Perks
   ================================ */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.perk-card {
  padding: 32px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  background: var(--white);
  text-align: center;
  transition: all var(--transition);
}
.perk-card:hover {
  border-color: rgba(var(--accent-rgb),0.18);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.perk-icon {
  width: 50px;
  height: 50px;
  padding: 12px;
  background: rgba(var(--accent-rgb),0.07);
  border-radius: var(--radius-sm);
  color: var(--blue-500);
  margin: 0 auto 18px;
  transition: all var(--transition);
}
.perk-icon svg { width: 100%; height: 100%; }
.perk-card:hover .perk-icon {
  background: var(--blue-500);
  color: var(--white);
}
.perk-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.perk-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ================================
   Careers — Jobs
   ================================ */
.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.job-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.job-card:hover {
  border-color: rgba(var(--accent-rgb),0.2);
  box-shadow: var(--shadow-md);
}

.job-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 32px 24px;
  border-bottom: 1px solid var(--gray-100);
}
.job-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.job-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-500);
  background: var(--gray-100);
  padding: 4px 10px;
  border-radius: 100px;
}

.job-body {
  padding: 24px 32px 32px;
}
.job-body > p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 24px;
}
.job-requirements h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.job-requirements ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.job-requirements li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.55;
}
.job-requirements li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--blue-500);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.no-match-box {
  background: var(--white);
  border: 1.5px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 52px 32px;
  text-align: center;
}
.no-match-box h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.no-match-box p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
}
.no-match-box a {
  color: var(--blue-500);
  font-weight: 500;
}
.no-match-box a:hover {
  color: var(--blue-400);
  text-decoration: underline;
}

/* ================================
   Responsive
   ================================ */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .perks-grid     { grid-template-columns: repeat(2, 1fr); }
  .about-grid     { gap: 48px; }
  .contact-cards  { gap: 20px; }
}

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

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--navy-900);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li a {
    font-size: 1.25rem;
    padding: 13px 28px;
  }

  /* Hero */
  .hero-content {
    padding: calc(var(--nav-height) + 48px) 24px 72px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
  }

  /* Stats */
  .stats-container { flex-wrap: wrap; gap: 28px; }
  .stat-item { padding: 0 20px; }
  .stat-divider { display: none; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrapper img { height: 260px; }

  /* Why Us */
  .features-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-cards { grid-template-columns: 1fr; }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 24px 32px;
  }

  /* Careers */
  .perks-grid { grid-template-columns: 1fr; }
  .job-header {
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px 16px;
  }
  .job-header .btn { width: 100%; }
  .job-body { padding: 16px 20px 28px; }

  .section-header { margin-bottom: 44px; }
}

@media (max-width: 480px) {
  .stat-item { padding: 0 12px; }
  .stat-number { font-size: 1.6rem; }
}

/* ================================
   Nav Brand Text
   ================================ */
.nav-brand {
  gap: 10px;
}
.nav-brand-text {
  font-family: 'Lato', sans-serif;
  font-size: 1.50rem;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: lowercase;
  line-height: 1;
  padding-bottom: 5px;
}

/* ================================
   Theme Switcher — Dev Preview
   ================================ */
.theme-switcher {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: var(--font);
}

.theme-trigger {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  color: rgba(255,255,255,0.80);
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 24px rgba(0,0,0,0.40);
}
.theme-trigger:hover {
  background: var(--navy-700);
  border-color: rgba(255,255,255,0.26);
  color: var(--white);
}
.theme-trigger svg {
  width: 14px;
  height: 14px;
  color: var(--cyan);
  flex-shrink: 0;
}

.theme-panel {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  width: 260px;
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(8px) scale(0.97);
  pointer-events: none;
  transition: all 0.18s cubic-bezier(0.4,0,0.2,1);
  transform-origin: bottom right;
}
.theme-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.theme-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.theme-panel-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.theme-dev-badge {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.22);
  padding: 2px 7px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.theme-options {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.theme-swatch {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 10px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
}
.theme-swatch:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}
.theme-swatch.active {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}

.swatch-dots {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
}
.swatch-dots span {
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 3px;
  flex-shrink: 0;
}

.swatch-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.70);
  flex: 1;
}
.theme-swatch.active .swatch-name { color: var(--white); }

.swatch-check {
  width: 14px;
  height: 14px;
  color: var(--cyan);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.theme-swatch.active .swatch-check { opacity: 1; }

/* ================================
   Color Themes
   ================================ */

/* Forest — dark green + gold */
:root.theme-forest {
  --navy-950: #030804;
  --navy-900: #071209;
  --navy-800: #0C1E10;
  --navy-700: #122B16;
  --navy-600: #19391E;
  --blue-600: #15803D;
  --blue-500: #16A34A;
  --blue-400: #22C55E;
  --blue-300: #4ADE80;
  --cyan:       #FBBF24;
  --accent-rgb: 22, 163, 74;
  --cyan-rgb:   251, 191, 36;
}

/* Twilight — deep purple + pink */
:root.theme-twilight {
  --navy-950: #06040E;
  --navy-900: #0E091C;
  --navy-800: #170E2B;
  --navy-700: #201438;
  --navy-600: #2B1B49;
  --blue-600: #6D28D9;
  --blue-500: #7C3AED;
  --blue-400: #8B5CF6;
  --blue-300: #A78BFA;
  --cyan:       #F472B6;
  --accent-rgb: 124, 58, 237;
  --cyan-rgb:   244, 114, 182;
}

/* Arctic — dark teal + emerald */
:root.theme-arctic {
  --navy-950: #030C10;
  --navy-900: #06141B;
  --navy-800: #0B1F29;
  --navy-700: #102B38;
  --navy-600: #163849;
  --blue-600: #0E7490;
  --blue-500: #0891B2;
  --blue-400: #06B6D4;
  --blue-300: #22D3EE;
  --cyan:       #34D399;
  --accent-rgb: 8, 145, 178;
  --cyan-rgb:   52, 211, 153;
}

/* Ember — near-black + orange + gold */
:root.theme-ember {
  --navy-950: #0B0805;
  --navy-900: #160F09;
  --navy-800: #22180E;
  --navy-700: #2E2115;
  --navy-600: #3A2B1C;
  --blue-600: #C2410C;
  --blue-500: #EA580C;
  --blue-400: #F97316;
  --blue-300: #FB923C;
  --cyan:       #FACC15;
  --accent-rgb: 234, 88, 12;
  --cyan-rgb:   250, 204, 21;
}
