/* homa-gardow - Minimalist Blue & White Design System */
:root {
  --navy-950: #071324;
  --navy-900: #0b1a30;
  --navy-800: #0f2649;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --green-600: #059669;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-subtle: 0 1px 3px rgba(11, 26, 48, 0.05), 0 1px 2px rgba(11, 26, 48, 0.03);
  --shadow-card: 0 4px 16px -2px rgba(11, 26, 48, 0.06), 0 2px 4px -1px rgba(11, 26, 48, 0.03);
  --shadow-hover: 0 10px 25px -4px rgba(11, 26, 48, 0.1), 0 4px 6px -2px rgba(11, 26, 48, 0.04);
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  color: var(--slate-700);
  background-color: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background-color: var(--white);
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5 {
  color: var(--navy-950);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p {
  color: var(--slate-600);
}

a {
  color: var(--blue-600);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--blue-700);
}

/* Layout Utilities */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-muted { color: var(--slate-500); }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 999px;
  background-color: var(--blue-50);
  color: var(--blue-700);
  border: 1px solid var(--blue-100);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.15rem;
  margin-bottom: 12px;
  color: var(--navy-950);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--slate-500);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background-color: var(--blue-600);
  color: #ffffff;
  box-shadow: 0 1px 3px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background-color: var(--blue-700);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.25);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--slate-200);
  color: var(--navy-900);
}

.btn-outline:hover {
  background-color: var(--slate-50);
  border-color: var(--blue-500);
  color: var(--blue-700);
}

.btn-sm {
  padding: 7px 14px;
  font-size: 0.825rem;
}

.btn-lg {
  padding: 12px 24px;
  font-size: 0.975rem;
}

/* Top Notification / Trust Bar */
.trust-topbar {
  background: var(--navy-900);
  color: #cbd5e1;
  font-size: 0.775rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-topbar-pills {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.trust-topbar-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Header & Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-950);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.brand-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--navy-900), var(--blue-600));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-600);
  transition: color 0.15s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: var(--navy-900);
}

/* Hero Section */
.hero-section {
  padding: 56px 0 64px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid var(--slate-200);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
}

.hero-title {
  font-size: 2.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 16px;
  color: var(--navy-950);
}

.hero-highlight {
  color: var(--blue-600);
}

.hero-description {
  font-size: 1.1rem;
  color: var(--slate-600);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--navy-900);
  box-shadow: var(--shadow-subtle);
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--slate-200);
}

.hero-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.hero-floating-card {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-card);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Metrics Strip */
.metrics-strip {
  padding: 24px 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--slate-200);
}

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

.metric-card {
  text-align: center;
  padding: 12px 16px;
  border-right: 1px solid var(--slate-200);
}

.metric-card:last-child {
  border-right: none;
}

.metric-val {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--blue-700);
  line-height: 1.1;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 0.825rem;
  color: var(--slate-500);
  font-weight: 500;
}

/* Sections */
.section {
  padding: 72px 0;
}

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

/* How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-subtle);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--blue-50);
  border: 1px solid var(--blue-100);
  color: var(--blue-700);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.5;
}

/* Service Image Grid */
.services-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-img-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  background: white;
  box-shadow: var(--shadow-subtle);
  transition: box-shadow 0.2s ease;
}

.service-img-card:hover {
  box-shadow: var(--shadow-card);
}

.service-img-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.service-img-body {
  padding: 18px;
}

.service-img-body h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.service-img-body p {
  font-size: 0.85rem;
  color: var(--slate-500);
  line-height: 1.45;
}

.service-meta-tag {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: var(--blue-700);
  font-size: 0.8rem;
}

/* Pricing Grid ($100 - $300) */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.pricing-card {
  background-color: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-subtle);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card.featured {
  border-color: var(--blue-600);
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.12);
}

.pricing-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--blue-600);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 999px;
}

.pricing-header {
  margin-bottom: 16px;
}

.pricing-title {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--slate-500);
  min-height: 38px;
}

.pricing-amount {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--navy-950);
  margin-bottom: 2px;
  line-height: 1;
}

.pricing-amount span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-500);
}

.pricing-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--blue-700);
  padding: 8px 0;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 0.875rem;
  color: var(--slate-700);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.pricing-features li svg {
  color: var(--blue-600);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Interactive Calculator */
.calc-container {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  max-width: 840px;
  margin: 0 auto;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.calc-control-group {
  margin-bottom: 16px;
}

.calc-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 6px;
}

.calc-select, .calc-input {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  background-color: white;
  color: var(--slate-700);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.calc-select:focus, .calc-input:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.calc-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--slate-700);
  margin-bottom: 8px;
  cursor: pointer;
}

.calc-summary-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc-price-display {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy-950);
  line-height: 1;
  margin: 6px 0 2px;
}

.calc-range-note {
  font-size: 0.75rem;
  color: var(--green-600);
  font-weight: 600;
}

/* Standards Grid */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.standard-card {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-subtle);
}

.standard-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--blue-50);
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.standard-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.standard-card p {
  font-size: 0.85rem;
  color: var(--slate-500);
  line-height: 1.45;
}

/* Trust Grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  gap: 14px;
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-subtle);
}

.trust-item-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item-content h4 {
  font-size: 0.975rem;
  margin-bottom: 4px;
}

.trust-item-content p {
  font-size: 0.85rem;
  color: var(--slate-500);
  line-height: 1.45;
}

/* Corporate Entity Card */
.entity-box {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 840px;
  margin: 0 auto;
  box-shadow: var(--shadow-subtle);
}

.entity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-top: 1px solid var(--slate-200);
  padding-top: 18px;
  margin-top: 18px;
}

.entity-col h4 {
  font-size: 0.9rem;
  color: var(--navy-950);
  margin-bottom: 6px;
}

.entity-col p {
  font-size: 0.825rem;
  color: var(--slate-500);
  line-height: 1.45;
}

/* FAQ Accordion */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  background: white;
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.faq-item.active {
  border-color: var(--blue-500);
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  text-align: left;
  background: none;
  border: none;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--navy-950);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:hover {
  background-color: var(--slate-50);
}

.faq-answer {
  padding: 0 20px 16px;
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.55;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-chevron {
  transition: transform 0.2s ease;
  font-size: 0.75rem;
  color: var(--slate-400);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--blue-600);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-card {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-subtle);
}

.contact-meta-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.contact-meta-icon {
  width: 32px;
  height: 32px;
  background: var(--blue-50);
  color: var(--blue-700);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Collapsible Bottom Legal Vault */
.legal-vault-section {
  background-color: var(--navy-950);
  color: #cbd5e1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 44px 0 52px;
}

.legal-toggle-bar {
  background-color: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.15s ease, border-color 0.15s ease;
  margin-bottom: 20px;
}

.legal-toggle-bar:hover {
  background-color: var(--navy-800);
  border-color: rgba(255, 255, 255, 0.2);
}

.legal-toggle-title {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-vault-body {
  display: none;
  animation: fadeIn 0.25s ease;
}

.legal-vault-body.is-open {
  display: block;
}

.legal-tabs {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.legal-tab-btn {
  background: transparent;
  border: none;
  color: var(--slate-400);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.15s ease;
}

.legal-tab-btn:hover {
  color: white;
}

.legal-tab-btn.active {
  color: var(--blue-500);
  border-bottom-color: var(--blue-500);
}

.legal-tab-content {
  display: none;
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 24px;
  line-height: 1.6;
  font-size: 0.875rem;
}

.legal-tab-content.active {
  display: block;
}

.legal-tab-content h3 {
  color: #f8fafc;
  font-size: 1.15rem;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 6px;
}

.legal-tab-content h4 {
  color: #93c5fd;
  font-size: 0.95rem;
  margin: 14px 0 6px;
}

.legal-tab-content p, .legal-tab-content ul {
  margin-bottom: 10px;
  color: #cbd5e1;
}

.legal-tab-content ul {
  padding-left: 18px;
}

.legal-tab-content li {
  margin-bottom: 4px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 0.825rem;
}

.legal-table th, .legal-table td {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 10px;
  text-align: left;
}

.legal-table th {
  background: var(--navy-800);
  color: white;
  font-weight: 600;
}

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

/* Modal styling */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 19, 36, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 28px;
  box-shadow: var(--shadow-hover);
  position: relative;
  animation: fadeIn 0.2s ease;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.35rem;
  cursor: pointer;
  color: var(--slate-400);
}

.modal-close:hover {
  color: var(--slate-700);
}

/* Cookie / Consent Banner */
.consent-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 420px;
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-hover);
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: fadeIn 0.3s ease;
}

.consent-banner.hidden {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-3px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-grid, .contact-grid, .calc-grid { grid-template-columns: 1fr; }
  .pricing-grid, .services-image-grid, .standards-grid { grid-template-columns: 1fr; }
  .steps-grid, .metrics-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid, .entity-grid { grid-template-columns: 1fr; }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--slate-200);
    box-shadow: var(--shadow-card);
  }

  .nav-links.is-open {
    display: flex;
  }

  .mobile-nav-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .steps-grid, .metrics-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.15rem; }
  .section-title { font-size: 1.65rem; }
  .trust-topbar-pills { gap: 8px; }
  .header-inner { height: 60px; }
}
