:root {
  /* === Core Colors (Light Theme) === */
  --primary: #ffffff;
  --primary-light: #f8fafc;
  --secondary: #f1f5f9;
  --card-bg: #ffffff;

  /* === Accent System (Corporate Trust Blue) === */
  --accent: #0f4c81;
  --accent-hover: #0a355c;
  --accent-light: #186cb4;
  --accent-glow: rgba(15, 76, 129, 0.15);
  --accent-soft: rgba(15, 76, 129, 0.06);

  /* === Additional Accents === */
  --purple: #4f46e5;
  --purple-glow: rgba(79, 70, 229, 0.15);
  --cyan: #0284c7;
  --green: #059669;
  --orange: #ea580c;

  /* === Text === */
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;

  /* === Glass / Borders === */
  --glass-bg: #ffffff;
  --glass-border: #e2e8f0;
  --glass-border-hover: #cbd5e1;

  /* === Typography === */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* === Spacing === */
  --section-padding: 7rem 2rem;
  --header-height: 85px;

  /* === Transitions === */
  --t-fast: 0.2s ease;
  --t-smooth: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --t-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--primary);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-main);
}

a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--font-body); }

/* ============================================
   UTILITIES
============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center { text-align: center; }

.gradient-text {
  background: linear-gradient(135deg, #0f172a 10%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.accent-gradient-text {
  background: linear-gradient(135deg, #0f4c81 0%, #186cb4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.purple-gradient-text {
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.green-gradient-text {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   GLASS CARD (Now Clean Corporate Card)
============================================ */
.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: transform var(--t-smooth), box-shadow var(--t-smooth), border-color var(--t-fast);
}
.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--accent-light);
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.975rem;
  transition: all var(--t-fast);
  border: none;
  font-family: var(--font-body);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 10px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 15px var(--accent-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  font-size: 0.9rem;
  padding: 0.5rem 0;
  border-radius: 0;
  border-bottom: 2px solid transparent;
}
.btn-ghost:hover {
  border-bottom-color: var(--accent);
  gap: 0.9rem;
}

.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }

/* ============================================
   BADGE / LABEL
============================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-blue {
  background: rgba(15, 76, 129, 0.1);
  color: #0f4c81;
  border: 1px solid rgba(15, 76, 129, 0.2);
}
.badge-purple {
  background: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
  border: 1px solid rgba(79, 70, 229, 0.2);
}
.badge-green {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.2);
}

/* ============================================
   HEADER & NAVBAR
============================================ */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--glass-border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.logo { display: flex; align-items: center; }
.logo img { height: 42px; }

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

.nav-link {
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent);
  background: var(--accent-soft);
}

.nav-cta { margin-left: 0.75rem; }

/* ============================================
   MEGA MENU
============================================ */
.has-mega-menu { position: relative; }

.mega-menu-trigger {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--t-fast);
  user-select: none;
}
.mega-menu-trigger:hover {
  color: var(--accent);
  background: var(--accent-soft);
}
.mega-menu-trigger .chevron {
  transition: transform var(--t-fast);
  font-size: 0.75rem;
}
.has-mega-menu:hover .mega-menu-trigger .chevron { transform: rotate(180deg); }

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 860px;
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--t-smooth);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.mega-menu::before {
  content: '';
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
  height: 25px;
}
.has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-col-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-light);
}

.mega-link {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: background var(--t-fast);
  margin-bottom: 0.25rem;
}
.mega-link:hover { background: var(--primary-light); }

.mega-link-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: background var(--t-fast);
}
.mega-link:hover .mega-link-icon { background: rgba(15, 76, 129, 0.15); }

.mega-link-info .title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 0.1rem;
}
.mega-link-info .desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================
   MOBILE TOGGLE
============================================ */
.mobile-toggle {
  display: none;
  background: var(--primary-light);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  width: 42px;
  height: 42px;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  align-items: center;
  justify-content: center;
}

/* ============================================
   FORMS
============================================ */
.form-group { margin-bottom: 1.5rem; }

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

.form-control {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: #ffffff;
  border: 1px solid var(--glass-border-hover);
  border-radius: 0.5rem;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}
.form-control::placeholder { color: var(--text-light); }

.form-control-icon {
  position: relative;
}
.form-control-icon .icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 0.95rem;
  pointer-events: none;
}
.form-control-icon input {
  padding-left: 2.8rem;
}

textarea.form-control { resize: vertical; min-height: 140px; }

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

.form-submit-btn {
  width: 100%;
  padding: 1.1rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 0.5rem;
}

/* ============================================
   SECTION STYLES
============================================ */
.section { padding: var(--section-padding); }

.section-header {
  margin-bottom: 3.5rem;
}
.section-header.text-center { text-align: center; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.7;
}
.text-center .section-subtitle { margin-inline: auto; }

/* ============================================
   DIVIDER LINE
============================================ */
.divider {
  height: 1px;
  background: var(--glass-border);
  margin: 0;
}

/* ============================================
   STATS ROW
============================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  transition: all var(--t-smooth);
}
.stat-item:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

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

/* ============================================
   SERVICES GRID
============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

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

.service-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: all var(--t-fast);
}
.service-card:hover .service-icon-wrap,
.glass-card:hover .service-icon-wrap {
  background: var(--accent);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 8px 15px var(--accent-glow);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  transition: gap var(--t-fast), color var(--t-fast);
}
.service-link:hover { gap: 0.8rem; color: var(--accent-hover); }

/* ============================================
   FEATURE LIST
============================================ */
.feature-list { display: flex; flex-direction: column; gap: 1rem; }

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--primary-light);
  border: 1px solid var(--glass-border);
  border-radius: 0.75rem;
  transition: all var(--t-fast);
}
.feature-item:hover {
  background: #ffffff;
  border-color: var(--accent-light);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.feature-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-item-text h4 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.feature-item-text p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   PROCESS STEPS
============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0; right: 0;
  height: 2px;
  background: var(--glass-border);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.process-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--accent);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.process-step h4 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.process-step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   PRICING CARDS
============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card {
  border-radius: 1rem;
  padding: 2.5rem;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  position: relative;
  transition: all var(--t-smooth);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}
.pricing-card.featured {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: 0 10px 25px -5px rgba(15, 76, 129, 0.15);
  transform: translateY(-10px);
}
.pricing-card.featured:hover { transform: translateY(-15px); }
.pricing-card .price { font-size: 3rem; font-weight: 800; line-height: 1; margin-bottom: 0.25rem; color: var(--text-main); }
.pricing-card .price-period { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 2rem; font-weight: 600; }
.pricing-card ul { margin-bottom: 2.5rem; }
.pricing-card ul li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.95rem; color: var(--text-muted); }
.pricing-card ul li i { color: var(--accent); font-size: 0.8rem; }

/* ============================================
   TESTIMONIALS
============================================ */
.testimonial-card {
  padding: 2.5rem;
  border-radius: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}
.testimonial-card .quote { font-size: 2.5rem; color: var(--accent-light); line-height: 1; margin-bottom: 0.5rem; }
.testimonial-card p { font-size: 1rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.7; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--glass-border); }
.author-avatar-placeholder {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
}
.author-info .name { font-weight: 700; font-size: 0.95rem; color: var(--text-main); }
.author-info .role { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
  background: var(--accent);
  border-radius: 1.5rem;
  padding: 5rem 2rem;
  text-align: center;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255,255,255,0.8); }
.cta-section .btn-primary { background: #fff; color: var(--accent); }
.cta-section .btn-primary:hover { background: var(--primary-light); }
.cta-section .btn-outline { border-color: rgba(255,255,255,0.4); color: #fff; }
.cta-section .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ============================================
   FOOTER
============================================ */
footer {
  background: #0f172a;
  color: #f1f5f9;
  padding: 5rem 2rem 2rem;
}

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

.footer-brand p {
  color: #94a3b8;
  margin: 1.5rem 0 2rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #cbd5e1;
  transition: all var(--t-fast);
}
.social-link:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h5 {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-links a { font-size: 0.95rem; color: #94a3b8; transition: color var(--t-fast); }
.footer-links a:hover { color: #38bdf8; }

.footer-newsletter input {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-family: var(--font-body);
  margin-bottom: 1rem;
}
.footer-newsletter input:focus { outline: none; border-color: var(--accent-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;
  font-size: 0.85rem;
  color: #64748b;
}

/* ============================================
   FAQ ACCORDION
============================================ */
.faq-list { display: flex; flex-direction: column; gap: 1rem; }

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all var(--t-fast);
}
.faq-item.active { border-color: var(--accent); box-shadow: 0 4px 15px rgba(0,0,0,0.05); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--accent); }
.faq-question .faq-icon { transition: transform var(--t-fast); color: var(--accent); }
.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.active .faq-answer { display: block; }

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 15px var(--accent-glow); }
  50% { box-shadow: 0 0 25px var(--accent-glow); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.animate-fade-up { animation: fadeInUp 0.7s var(--t-smooth) both; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-float { animation: float 4s ease-in-out infinite; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1200px) {
  .footer-main { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 992px) {
  :root { --section-padding: 5rem 2rem; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .mega-menu { width: 100%; left: 0; transform: none; }
  .has-mega-menu:hover .mega-menu { transform: translateY(0); }
}

@media (max-width: 768px) {
  .mobile-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.5rem;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform var(--t-smooth);
    border-top: 1px solid var(--glass-border);
  }
  .nav-links.active { transform: translateX(0); }
  .nav-link, .mega-menu-trigger { padding: 1rem; font-size: 1.05rem; border-radius: 0.5rem; border-bottom: 1px solid var(--glass-border); }
  .has-mega-menu { width: 100%; }
  .mega-menu { position: static; transform: none; width: 100%; display: none; opacity: 1; visibility: visible; pointer-events: auto; padding: 1rem 0; gap: 1rem; box-shadow: none; border: none; }
  .has-mega-menu.mobile-open .mega-menu { display: grid; grid-template-columns: 1fr; margin-top: 0; }
  .nav-cta { margin: 1.5rem 0 0; }

  .form-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; }
  .process-steps::before { display: none; }

  .section-title { font-size: 2.25rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .stats-row { grid-template-columns: 1fr; }
  .btn-lg { padding: 0.9rem 1.5rem; font-size: 1rem; }
}
