:root {
  /* Brand Colors */
  --color-brand: #7D95B6;
  --color-brand-light: #A5B6CE;
  --color-brand-dark: #586F8E;
  
  --color-navy: #212660;
  --color-navy-light: #2D3376;
  --color-navy-dark: #12153B;
  
  /* Product Colors */
  --color-orange: #F97316; /* AdmissionBoard */
  --color-blue: #3B82F6;   /* InsuranceBoard */
  --color-teal: #14B8A6;   /* Booky */
  
  /* UI Colors */
  --color-bg: #FAFAFA;
  --color-bg-elevated: #FFFFFF;
  --color-text: #111827;
  --color-text-muted: #4B5563;
  --color-text-light: #9CA3AF;
  
  --color-border: rgba(0, 0, 0, 0.08);
  --color-border-hover: rgba(0, 0, 0, 0.15);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 4px 24px -6px rgba(0, 0, 0, 0.06);
  --shadow-glow: 0 0 40px rgba(125, 149, 182, 0.3);
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Layout */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  
  --transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --container-width: 1200px;
}

/* Base Reset */
*, *::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-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

/* Typography utilities */
h1, h2, h3, h4, strong {
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.section-desc {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--color-text-muted);
  max-width: 600px;
  margin-bottom: 3rem;
}

.text-center {
  text-align: center;
}
.text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.mt-8 { margin-top: 2rem; }

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

/* Animations & Visibility */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  background: rgba(33, 38, 96, 0.1);
  color: var(--color-navy);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 99px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(33, 38, 96, 0.15);
}

.badge-small {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--color-navy);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--color-navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: white;
  color: var(--color-text);
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--color-bg);
  border-color: var(--color-border-hover);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all 0.3s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 101;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--color-navy);
}

.logo-dot {
  color: var(--color-brand);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 101;
}

.hamburger, .hamburger::before, .hamburger::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-navy);
  position: absolute;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.hamburger {
  top: 11px;
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  top: 6px;
}

.mobile-menu-btn.active .hamburger {
  background-color: transparent;
}

.mobile-menu-btn.active .hamburger::before {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero Section */
.hero {
  padding: 12rem 0 8rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: 
    linear-gradient(to right, rgba(125, 149, 182, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(125, 149, 182, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.hero-glow {
  position: absolute;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.4;
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-brand) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-navy) 0%, transparent 70%);
  bottom: -100px;
  left: -200px;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(50px) scale(1.1); }
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  color: var(--color-navy);
}

.hero-subtitle {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

/* About Section */
.about {
  background-color: white;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-list .icon {
  color: var(--color-brand);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.stats-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-navy), var(--color-brand));
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
  letter-spacing: -0.05em;
}

.stat-label {
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 1.1rem;
}

.stat-divider {
  height: 1px;
  background-color: var(--color-border);
  width: 100%;
}

/* Products Section */
.products-section {
  position: relative;
  overflow: hidden;
}

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

.product-card {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  group: hover;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.product-border {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  pointer-events: none;
  z-index: 2;
  transition: border-color 0.3s ease;
}

.product-card:hover .product-border {
  border-color: var(--color-border-hover);
}

.product-banner {
  height: 6px;
  width: 100%;
}

.product-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product-logo-placeholder {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-navy);
  font-size: 1.25rem;
}

/* Individual Product Accents */
.product-orange .product-logo-placeholder { color: var(--color-orange); border-color: rgba(249, 115, 22, 0.2); background: rgba(249, 115, 22, 0.05); }
.product-blue .product-logo-placeholder { color: var(--color-blue); border-color: rgba(59, 130, 246, 0.2); background: rgba(59, 130, 246, 0.05); }
.product-teal .product-logo-placeholder { color: var(--color-teal); border-color: rgba(20, 184, 166, 0.2); background: rgba(20, 184, 166, 0.05); }
.product-brand .product-logo-placeholder { color: var(--color-brand); border-color: rgba(125, 149, 182, 0.3); background: rgba(125, 149, 182, 0.1); }

.product-orange .badge-small { color: var(--color-orange); background: rgba(249, 115, 22, 0.1); }
.product-blue .badge-small { color: var(--color-blue); background: rgba(59, 130, 246, 0.1); }
.product-teal .badge-small { color: var(--color-teal); background: rgba(20, 184, 166, 0.1); }
.product-brand .badge-small { color: var(--color-navy); background: rgba(125, 149, 182, 0.15); }

.product-logo-container h3 {
  font-size: 1.5rem;
  margin: 0;
}

.product-industry {
  align-self: flex-start;
  margin-bottom: 1rem;
}

.product-desc {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-features {
  margin-bottom: 2rem;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.product-features li::before {
  content: '✓';
  color: var(--color-text-light);
  font-size: 0.8rem;
}

.product-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-navy);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: auto;
}

.product-link svg {
  transition: transform 0.2s ease;
}

.product-link:hover svg {
  transform: translateX(4px);
}

.products-footer {
  text-align: center;
  margin-top: 4rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Difference Section */
.difference-section {
  background-color: var(--color-navy-dark);
  color: white;
}

.difference-section .section-title {
  color: white;
}

.difference-section .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: stretch;
  margin-top: 4rem;
}

.comparison-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.comparison-card.bad {
  opacity: 0.7;
}

.comparison-card.good {
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
  border-color: rgba(125, 149, 182, 0.3);
}

.comparison-blur {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: var(--color-brand);
  filter: blur(100px);
  opacity: 0.2;
  border-radius: 50%;
  pointer-events: none;
}

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

.comparison-header h3 {
  color: white;
  font-size: 1.5rem;
  margin: 0;
}

.icon-bad { color: #ef4444; }
.icon-good { color: var(--color-brand-light); }

.comparison-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
}

.comparison-list li::before {
  content: '×';
  position: absolute;
  left: 0;
  top: 0;
  color: #ef4444;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 700;
}

.good .comparison-list li::before {
  content: '✓';
  color: var(--color-brand-light);
  font-size: 1rem;
  top: 0.2rem;
}

.comparison-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.3);
  padding: 0 1rem;
}

/* Tech Section */
.tech-section {
  padding: 6rem 0;
  border-bottom: 1px solid var(--color-border);
}

.tech-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  background: white;
  border-radius: var(--radius-xl);
  padding: 4rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.tech-content {
  flex: 1;
}

.tech-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.tech-desc {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tech-badge {
  padding: 0.5rem 1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 99px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
}

.deploy-banner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.deploy-icon {
  width: 64px;
  height: 64px;
  background: var(--color-navy);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.deploy-text {
  display: flex;
  flex-direction: column;
}

.deploy-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.deploy-title {
  font-size: 1.25rem;
  color: var(--color-navy);
  line-height: 1.2;
}

.deploy-subtitle {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

/* Careers Section */
.careers-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.culture-item {
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
  border-left: 2px solid var(--color-brand-light);
}

.culture-item strong {
  margin-bottom: 0.25rem;
  color: var(--color-navy);
}

.culture-item span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.careers-jobs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.job-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
}

.job-card.active {
  box-shadow: var(--shadow-sm);
}

.job-card.active:hover {
  border-color: var(--color-navy);
  box-shadow: var(--shadow-md);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.job-title {
  font-size: 1.25rem;
  margin: 0;
}

.job-tag {
  background: rgba(20, 184, 166, 0.1);
  color: var(--color-teal);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.job-meta {
  display: flex;
  gap: 1rem;
  color: var(--color-text-light);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.job-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.job-card.empty {
  background: var(--color-bg);
  border-style: dashed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
}

.job-card.empty a {
  color: var(--color-navy);
  font-weight: 600;
  text-decoration: underline;
}

/* Contact Section */
.contact {
  background-color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: var(--color-text);
  font-weight: 500;
}

.contact-info svg {
  color: var(--color-brand);
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border-hover);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(125, 149, 182, 0.1);
  background: white;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234B5563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

/* Footer */
.footer {
  background-color: var(--color-navy-dark);
  color: white;
  padding-top: 5rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .logo-text {
  color: white;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--color-brand);
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-col h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.privacy-link:hover {
  color: white;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .comparison-vs {
    padding: 1rem 0;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }
  
  .hero {
    padding: 8rem 0 5rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 100;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.25rem;
    color: var(--color-navy);
  }

  .nav-btn {
    margin-top: 1rem;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-actions {
    flex-direction: column;
  }
  
  .btn-large {
    width: 100%;
  }

  .about-grid,
  .careers-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .stats-card {
    padding: 2rem;
  }

  .tech-container {
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
    align-items: flex-start;
  }
  
  .deploy-banner {
    width: 100%;
  }

  .footer-container {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-bottom-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
