/* ============================================================
   Techzolution — Global Stylesheet
   Colors: Cloud White #F7FAFC | Slate #64748B | Tech Blue #135AA6
            Signal Teal #14AD9F | Deep Navy #0B1F3A | Volt Coral #FF6B4A
   Fonts:  Space Grotesk (headings) | Inter (body) | JetBrains Mono (labels)
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: #F7FAFC;
  color: #64748B;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0B1F3A;
}

.mono, label, .tag, .role-label, input, select, textarea {
  font-family: 'JetBrains Mono', monospace;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #F7FAFC; }
::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #135AA6; }

/* ---------- Custom Utilities ---------- */

/* Gradient text (Home hero) */
.gradient-text {
  background: linear-gradient(135deg, #135AA6, #14AD9F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section padding */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 9999px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: #FF6B4A;
  color: #fff;
  border-color: #FF6B4A;
}
.btn-primary:hover {
  background: #e85a39;
  border-color: #e85a39;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,74,0.35);
}

.btn-outline {
  background: transparent;
  color: #135AA6;
  border-color: #135AA6;
}
.btn-outline:hover {
  background: #135AA6;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ---------- Navigation ---------- */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(247,250,252,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(20,173,159,0.12);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
#navbar.scrolled {
  background: rgba(247,250,252,0.97);
  box-shadow: 0 2px 24px rgba(19,90,166,0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  border-radius: 50%;
  background: #0B1F3A;
  padding: 10px;
  box-shadow: 0 2px 12px rgba(11,31,58,0.25);
}
.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: #0B1F3A;
}
.nav-logo-text span { color: #14AD9F; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #64748B;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #135AA6; background: rgba(19,90,166,0.06); }

/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid rgba(19,90,166,0.1);
  border-radius: 16px;
  padding: 8px;
  min-width: 280px;
  box-shadow: 0 16px 48px rgba(19,90,166,0.12);
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  color: #0B1F3A;
  text-decoration: none;
  transition: background 0.15s;
}
.nav-dropdown-menu a:hover { background: #F7FAFC; }
.nav-dropdown-menu .dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}

.nav-cta { margin-left: 8px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0B1F3A;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid rgba(19,90,166,0.08);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #0B1F3A;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid #F1F5F9;
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: #135AA6; }
.mobile-nav .mobile-service-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #14AD9F;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 0 4px;
}

/* ---------- Hero (shared) ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: blobFloat 8s ease-in-out infinite;
}

/* ---------- Home Hero Extra ---------- */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero-split-left { position: relative; z-index: 1; }
.hero-split-right {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 16px;
}

/* Floating service pills */
.service-pill {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(19,90,166,0.1);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 24px rgba(19,90,166,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.service-pill:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(19,90,166,0.14);
}
.service-pill .pill-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.service-pill .pill-text strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0B1F3A;
  margin-bottom: 2px;
}
.service-pill .pill-text span {
  font-size: 12px;
  color: #94A3B8;
}

/* Floating badge cards */
.hero-badge {
  position: absolute;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(19,90,166,0.1);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(19,90,166,0.12);
  animation: floatY 4s ease-in-out infinite;
}
.hero-badge-2 { animation-delay: -2s; }

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

/* Scrolling ticker */
.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(19,90,166,0.08);
  padding: 12px 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  white-space: nowrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #64748B;
  letter-spacing: 0.04em;
}
.ticker-item .dot { width: 5px; height: 5px; border-radius: 50%; background: #14AD9F; flex-shrink: 0; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; gap: 48px; }
  .hero-split-right { display: none; }
}
@media (max-width: 768px) {
  .hero-split-right { display: none; }
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(20px,-30px) scale(1.05); }
  66%       { transform: translate(-15px, 15px) scale(0.95); }
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 20px; }
.page-hero p  { color: rgba(255,255,255,0.8); font-size: 1.2rem; max-width: 600px; margin: 0 auto 32px; }

/* ---------- Section Labels ---------- */
.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #14AD9F;
  display: inline-block;
  margin-bottom: 12px;
}

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(19,90,166,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(19,90,166,0.1);
  border-color: rgba(20,173,159,0.25);
}

.service-card { padding: 40px 36px; }
.service-card .icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
}
.service-card h3 { font-size: 1.2rem; color: #0B1F3A; margin-bottom: 10px; }
.service-card p  { font-size: 14px; line-height: 1.7; }
.service-card .card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 600;
  margin-top: 20px;
  text-decoration: none;
  color: #135AA6;
  transition: gap 0.2s;
}
.service-card .card-link:hover { gap: 10px; }

/* ---------- Why Choose Checklist ---------- */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: #0B1F3A; font-weight: 500;
}
.checklist li::before {
  content: '✓';
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: linear-gradient(135deg, #135AA6, #14AD9F);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  line-height: 24px;
  text-align: center;
}

/* ---------- Industry Tags ---------- */
.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.industry-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 9999px;
  background: rgba(19,90,166,0.06);
  color: #135AA6;
  border: 1px solid rgba(19,90,166,0.15);
  transition: background 0.2s, color 0.2s;
}
.industry-tag:hover {
  background: #135AA6;
  color: #fff;
}

/* ---------- CTA Band ---------- */
.cta-band {
  background: linear-gradient(135deg, #135AA6, #14AD9F);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; position: relative; }
.cta-band p  { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-bottom: 32px; position: relative; }
.cta-band .btn-wrap { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: #fff;
  border-top: 1px solid rgba(19,90,166,0.07);
  border-bottom: 1px solid rgba(19,90,166,0.07);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid #E2E8F0;
}
.stat-item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid #E2E8F0;
}
.stat-item:last-child { border-right: none; }
.stat-item .number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #135AA6, #14AD9F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94A3B8;
}

/* ---------- Team Card ---------- */
.team-card { text-align: center; overflow: hidden; }
.team-card .photo-wrap {
  width: 100%; aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
.team-card .photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}
.team-card:hover .photo-wrap img { transform: scale(1.05); }
.team-card .info {
  padding: 20px 20px 24px;
  background: #fff;
  border-radius: 0 0 16px 16px;
}
.team-card .name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0B1F3A;
  margin-bottom: 4px;
}
.team-card .role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #14AD9F;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- Contact Form ---------- */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94A3B8;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  color: #0B1F3A;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  font-family: 'Inter', sans-serif;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #135AA6;
  box-shadow: 0 0 0 3px rgba(19,90,166,0.1);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

/* ---------- Footer ---------- */
footer {
  background: #0B1F3A;
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand .nav-logo-text { color: #fff; font-size: 22px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 12px; max-width: 280px; }
.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: #14AD9F; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: #14AD9F; text-decoration: none; }

/* ---------- Floating Buttons ---------- */
.floating-btns {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.float-btn:hover { transform: scale(1.12); }
.float-btn-wa {
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  color: #fff;
}
.float-btn-wa:hover { box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.float-btn-mail {
  background: #135AA6;
  box-shadow: 0 4px 20px rgba(19,90,166,0.3);
  color: #fff;
}
.float-btn-mail:hover { box-shadow: 0 6px 28px rgba(19,90,166,0.5); }
.float-btn .ping {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: ping 1.5s ease-out infinite;
  opacity: 0.4;
  z-index: -1;
}
@keyframes ping {
  0%   { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.7); opacity: 0; }
}
.float-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: #0B1F3A;
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: all 0.2s ease;
}
.float-tooltip::after {
  content: '';
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #0B1F3A;
}
.float-btn:hover .float-tooltip { opacity: 1; transform: translateX(0); }

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
  filter: blur(4px);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

/* ---------- Grid Helpers ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---------- Process Steps ---------- */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px; top: 40px;
  width: 2px;
  bottom: 0;
  background: linear-gradient(to bottom, #14AD9F, rgba(20,173,159,0.1));
}
.step-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #135AA6, #14AD9F);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.step-content h4 { color: #0B1F3A; font-size: 1rem; margin-bottom: 6px; }
.step-content p  { font-size: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid #E2E8F0; }
  .stat-item:nth-child(even) { border-right: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}
