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

:root {
  --primary: #062E1D;
  --primary-light: #0C4A2E;
  --primary-dark: #02170E;
  --secondary: #059669;
  --secondary-glow: rgba(16, 185, 129, 0.45);
  --accent: #10B981;
  --gold: #D97706;
  --gold-light: #F59E0B;
  --gold-glow: rgba(245, 158, 11, 0.45);
  --emerald-glow: rgba(16, 185, 129, 0.65);
  --dark: #0F172A;
  --light: #F0FDF4;
  --white: #FFFFFF;
  --gray-50: #F8FAF8;
  --gray-100: #F0FDF4;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  
  --shadow-3d: 0 10px 30px -10px rgba(6, 46, 29, 0.08), 0 4px 6px -2px rgba(6, 46, 29, 0.04);
  --shadow-3d-hover: 0 24px 48px -12px rgba(6, 46, 29, 0.16), 0 0 35px var(--secondary-glow);
  
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--gray-800);
  background-color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -0.025em;
}

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

a:hover {
  color: var(--gold-light);
}

/* Animations */
@keyframes beaconPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@keyframes subtleFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes logoFloatMotion {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12), 0 0 20px rgba(16, 185, 129, 0.35), 0 0 32px rgba(245, 158, 11, 0.2);
  }
  50% {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22), 0 0 32px rgba(16, 185, 129, 0.65), 0 0 48px rgba(245, 158, 11, 0.45);
  }
}

/* Top Credential Bar */
.top-bar {
  background: linear-gradient(90deg, #02170E 0%, #062E1D 100%);
  color: var(--gray-300);
  font-size: 0.815rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
  position: relative;
  z-index: 1001;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.gov-badges {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.gov-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 4px 11px;
  border-radius: 6px;
  font-weight: 600;
  color: #E2E8F0;
  letter-spacing: 0.4px;
  font-size: 0.775rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  backdrop-filter: blur(8px);
}

.gov-badge .status-dot {
  width: 7px;
  height: 7px;
  background-color: #10B981;
  border-radius: 50%;
  display: inline-block;
  animation: beaconPulse 2s infinite;
}

.gov-badge span.value {
  color: var(--gold-light);
  font-weight: 700;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.825rem;
}

.top-contact a {
  color: #CBD5E1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

.top-contact a:hover {
  color: var(--white);
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.brand-logo-img {
  height: 64px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12), 0 0 20px rgba(16, 185, 129, 0.35), 0 0 32px rgba(245, 158, 11, 0.2);
  border: 1.5px solid rgba(16, 185, 129, 0.3);
  animation: logoFloatMotion 3.5s ease-in-out infinite;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}

.brand-logo:hover .brand-logo-img {
  animation-play-state: paused;
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25), 0 0 45px rgba(16, 185, 129, 0.7), 0 0 60px rgba(245, 158, 11, 0.5);
  border-color: var(--gold);
}

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

.brand-name {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

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

.nav-links a {
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.885rem;
  padding: 0.4rem 0.1rem;
  position: relative;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--secondary);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--secondary);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--secondary-glow);
}

.nav-btn {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: var(--white) !important;
  padding: 0.65rem 1.35rem !important;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35), 0 0 15px rgba(16, 185, 129, 0.2);
  transition: var(--transition);
}

.nav-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5), 0 0 25px rgba(16, 185, 129, 0.35);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

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

/* 3D Glowing Hero Section - Deep Emerald & Grid Pattern from user screenshot */
.hero {
  background: radial-gradient(circle at 85% 20%, rgba(16, 185, 129, 0.35) 0%, transparent 45%),
              radial-gradient(circle at 15% 85%, rgba(5, 150, 105, 0.25) 0%, transparent 45%),
              linear-gradient(180deg, #052E1B 0%, #02170E 100%);
  color: var(--white);
  padding: 6rem 0 5.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid rgba(16, 185, 129, 0.3);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(16, 185, 129, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

.hero-content {
  max-width: 880px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.12);
  color: var(--gold-light);
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 0.4rem 1.05rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.25);
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: 3.25rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--white);
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero p {
  font-size: 1.15rem;
  color: #CBD5E1;
  margin-bottom: 2.35rem;
  line-height: 1.7;
  max-width: 780px;
}

.hero-btns {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.85rem;
  font-size: 0.975rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.4), 0 0 20px rgba(16, 185, 129, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.55), 0 0 30px rgba(16, 185, 129, 0.35);
  color: var(--white);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1.5px solid rgba(16, 185, 129, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline:hover {
  border-color: #34D399;
  background: rgba(16, 185, 129, 0.2);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* Credential Metrics Bar */
.credential-bar {
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 2.25rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.credential-item {
  border-right: 1px solid var(--gray-200);
  padding: 0.5rem 1rem;
}

.credential-item:last-child {
  border-right: none;
}

.credential-item h4 {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.credential-item p {
  font-size: 0.8rem;
  color: var(--gray-600);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Partner Ecosystem Strip */
.ecosystem-strip {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 2.25rem 0;
  text-align: center;
}

.ecosystem-label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gray-600);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  display: block;
}

.ecosystem-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.ecosystem-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.15rem;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--gray-800);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.02em;
}

.ecosystem-item:hover {
  transform: translateY(-3px);
  border-color: var(--secondary);
  box-shadow: 0 8px 22px rgba(16, 185, 129, 0.25), 0 0 16px rgba(5, 150, 105, 0.15);
  color: var(--primary);
}

.ecosystem-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section-alt {
  background-color: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

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

.section-tag {
  color: var(--secondary);
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 0.5rem;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  padding: 5px 14px;
  border-radius: 50px;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.12);
}

.section-header h2 {
  font-size: 2.45rem;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* 3D Glowing Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.25rem;
  perspective: 1200px;
}

.card {
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-3d);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--gold-light));
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 48px -12px rgba(6, 46, 29, 0.16), 0 0 35px rgba(16, 185, 129, 0.3);
  border-color: rgba(16, 185, 129, 0.5);
}

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

.card-icon-svg {
  width: 56px;
  height: 56px;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
  transition: var(--transition);
}

.card:hover .card-icon-svg {
  background: linear-gradient(135deg, #059669 0%, #062E1D 100%);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.card-icon-svg svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.card h3 {
  font-size: 1.45rem;
  color: var(--primary);
  margin-bottom: 0.85rem;
  font-weight: 700;
}

.card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-features {
  list-style: none;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--gray-100);
  padding-top: 1.25rem;
}

.card-features li {
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 0.65rem;
  line-height: 1.5;
  position: relative;
  padding-left: 1.15rem;
}

.card-features li::before {
  content: '•';
  color: var(--secondary);
  font-size: 1.25rem;
  position: absolute;
  left: 0;
  top: -2px;
  line-height: 1;
}

.card-link {
  font-weight: 700;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  margin-top: auto;
}

.card-link:hover {
  color: var(--gold-light);
  transform: translateX(5px);
}

/* Feature Split */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.feature-text h3 {
  font-size: 2.15rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
}

.feature-text p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  font-size: 1.025rem;
  line-height: 1.7;
}

.feature-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: var(--shadow-3d);
}

.spec-list {
  list-style: none;
}

.spec-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.spec-list li:last-child {
  border-bottom: none;
}

.spec-list .label {
  font-weight: 600;
  color: var(--gray-700);
}

.spec-list .value {
  color: var(--secondary);
  font-weight: 700;
  text-align: right;
}

/* Tables */
.table-wrapper {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3d);
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.925rem;
}

th {
  background-color: var(--primary);
  color: var(--white);
  padding: 1.15rem 1.4rem;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

td {
  padding: 1.15rem 1.4rem;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
}

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

tr:nth-child(even) {
  background-color: #FAFAFC;
}

/* Callout */
.callout {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(245, 158, 11, 0.06) 100%);
  border-left: 4px solid var(--secondary);
  padding: 1.85rem 2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.callout h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.callout p {
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}

/* RFQ Form */
.rfq-form-container {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: var(--shadow-3d);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
  color: var(--gray-800);
}

input, select, textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  background-color: var(--white);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25), 0 0 15px rgba(5, 150, 105, 0.15);
}

/* Footer - Deep Emerald Green with Grid Pattern */
footer {
  background: linear-gradient(180deg, #052E1B 0%, #02170E 100%);
  color: var(--gray-300);
  padding: 5rem 0 2.5rem;
  font-size: 0.9rem;
  border-top: 2px solid rgba(16, 185, 129, 0.3);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(16, 185, 129, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, 0.05) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1.35rem;
  font-weight: 700;
}

.footer-col p {
  line-height: 1.65;
  margin-bottom: 1rem;
  color: var(--gray-400);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: var(--gray-300);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.825rem;
  color: var(--gray-400);
}

@media print {
  .top-bar, .navbar, footer, .hero-btns, .mobile-toggle {
    display: none !important;
  }
  body {
    background: white !important;
    color: black !important;
    font-size: 11pt;
  }
  .container {
    max-width: 100% !important;
    padding: 0 !important;
  }
  .feature-box {
    border: 1px solid #333 !important;
    box-shadow: none !important;
  }
}

@media (max-width: 992px) {
  .feature-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .credential-item {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .brand-logo-img {
    height: 50px;
  }
  .brand-name {
    font-size: 1.25rem;
  }
  .hero h1 {
    font-size: 2.25rem;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    gap: 1rem;
    border-bottom: 1px solid var(--gray-200);
  }
  .nav-links.open {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .top-bar .container {
    flex-direction: column;
    text-align: center;
  }
}
