/* ===========================================================
   LenderView — Global Design System
   =========================================================== */

:root {
  --primary: #185FA5;
  --accent: #378ADD;
  --light-blue: #E6F1FB;
  --dark-blue-text: #0C447C;
  --body: #444444;
  --muted: #888888;
  --bg: #FFFFFF;
  --surface: #F7F7F5;
  --border: #E0E0E0;
  --nav-link: #666666;
  --radius-card: 12px;
  --radius-button: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  color: var(--primary);
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
}

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

.nav-links a {
  font-size: 14px;
  color: var(--nav-link);
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  background: var(--light-blue);
  color: var(--primary);
  border: none;
  border-radius: var(--radius-button);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.nav-cta:hover {
  background: #d6e7f8;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--primary);
  cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-button);
  padding: 11px 24px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  border: 1px solid transparent;
  line-height: 1.2;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-secondary {
  background: transparent;
  color: var(--body);
  border: 1px solid #CCC;
}

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

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background: var(--light-blue);
}

.btn-block {
  width: 100%;
}

/* ---------- Generic helpers ---------- */
.section-label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #999;
  font-weight: 500;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #999;
  font-weight: 500;
}

.center {
  text-align: center;
}

h1, h2, h3, h4 {
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.2;
}

p {
  margin: 0;
}

/* ---------- Chip / pill ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F0F0EE;
  border: 1px solid var(--border);
  font-size: 12px;
  color: #555;
  border-radius: 999px;
  padding: 6px 12px;
}

.chip i {
  color: var(--primary);
  font-size: 14px;
}

/* ===========================================================
   Homepage — Hero
   =========================================================== */
.hero {
  text-align: center;
  padding: 96px 0 80px;
}

.hero h1 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  max-width: 600px;
  margin: 24px auto 0;
}

.hero-sub {
  font-size: 17px;
  color: #666;
  max-width: 520px;
  margin: 20px auto 0;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.trust-bar {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-top: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================================================
   Section headers (shared)
   =========================================================== */
.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.section-head .section-label {
  display: block;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: 28px;
  font-weight: 500;
}

.section-head p {
  font-size: 15px;
  color: #666;
  max-width: 500px;
  margin: 16px auto 0;
}

/* ===========================================================
   Cards grid (pain points, insight cards)
   =========================================================== */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 24px;
}

.card-icon {
  font-size: 24px;
  color: var(--primary);
  display: block;
  margin-bottom: 14px;
}

.card h3 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.card p {
  font-size: 13px;
  color: #666;
}

/* ===========================================================
   Process section
   =========================================================== */
.process {
  background: var(--surface);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}

.step {
  flex: 1;
  text-align: center;
  max-width: 300px;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--light-blue);
  color: var(--dark-blue-text);
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.step p {
  font-size: 13px;
  color: #666;
}

.step-arrow {
  color: #C5C5C5;
  font-size: 20px;
  align-self: center;
  margin-top: 0;
  flex: 0 0 auto;
  padding-top: 6px;
}

/* ===========================================================
   Pricing
   =========================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.featured {
  border: 2px solid var(--accent);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--light-blue);
  color: var(--dark-blue-text);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 500;
}

.price-name {
  font-size: 18px;
  font-weight: 500;
  margin-top: 8px;
  color: #1a1a1a;
}

.price-amount {
  font-size: 34px;
  font-weight: 500;
  color: #1a1a1a;
  margin-top: 12px;
}

.price-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.price-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}

.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.price-list li {
  font-size: 13px;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.price-list li i {
  color: var(--primary);
  font-size: 15px;
  flex: 0 0 auto;
  margin-top: 1px;
}

.price-card .btn {
  margin-top: 20px;
}

.price-footer {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
}

.price-seeall {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
  margin-top: 12px;
  text-align: center;
  display: block;
}

.price-seeall:hover {
  color: var(--accent);
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  max-width: 640px;
  margin: 40px auto 0;
}

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

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-q i {
  color: var(--primary);
  font-size: 18px;
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}

.faq-item.open .faq-q i {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-a-inner {
  font-size: 15px;
  color: #666;
  padding: 0 40px 22px 0;
}

/* ===========================================================
   Services page header
   =========================================================== */
.page-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.page-head .section-label {
  display: block;
  margin-bottom: 12px;
}

.page-head h1 {
  font-size: 34px;
  font-weight: 500;
}

.page-head p {
  font-size: 16px;
  color: #666;
  margin-top: 16px;
}

/* ===========================================================
   Sample deliverable
   =========================================================== */
.memo {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--bg);
  overflow: hidden;
}

.memo-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  gap: 16px;
}

.memo-brand {
  color: var(--primary);
  font-weight: 500;
  font-size: 15px;
}

.memo-title {
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  margin-top: 6px;
}

.memo-date {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.memo-sample-badge {
  background: var(--light-blue);
  color: var(--dark-blue-text);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.memo-body {
  padding: 28px 32px;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-button);
  overflow: hidden;
  margin-bottom: 32px;
}

.meta-cell {
  background: var(--bg);
  padding: 16px;
}

.meta-cell .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-weight: 500;
}

.meta-cell .value {
  font-size: 15px;
  color: #1a1a1a;
  font-weight: 500;
  margin-top: 4px;
}

.memo-section-title {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 36px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.memo-section-title:first-child {
  margin-top: 0;
}

/* Scorecard */
.scorecard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric {
  border-radius: var(--radius-button);
  padding: 16px;
  border: 1px solid var(--border);
}

.metric .metric-label {
  font-size: 12px;
  color: #555;
  font-weight: 500;
}

.metric .metric-value {
  font-size: 24px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 4px 0;
}

.metric .metric-note {
  font-size: 12px;
  color: #666;
}

.metric.amber {
  background: #FAEEDA;
  border-color: #F0DCB8;
}

.metric.amber .metric-value { color: #854F0B; }

.metric.green {
  background: #E7F4EC;
  border-color: #CBE7D6;
}

.metric.green .metric-value { color: #1E7A45; }

.metric.red {
  background: #FCEBEB;
  border-color: #F4D2D2;
}

.metric.red .metric-value { color: #A32D2D; }

/* Findings */
.findings {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.finding {
  display: flex;
  gap: 16px;
}

.finding-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex: 0 0 auto;
}

.finding-icon.danger {
  background: #FCEBEB;
  color: #A32D2D;
}

.finding-icon.warning {
  background: #FAEEDA;
  color: #854F0B;
}

.finding-content h4 {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.finding-content p {
  font-size: 14px;
  color: #555;
}

.fix-box {
  background: var(--light-blue);
  border-radius: var(--radius-button);
  padding: 12px 16px;
  font-size: 13px;
  color: var(--dark-blue-text);
  margin-top: 12px;
}

.fix-box strong {
  font-weight: 500;
}

/* Borrowing capacity */
.capacity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.capacity-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-button);
  padding: 18px;
  background: var(--surface);
}

.capacity-card .metric-label {
  font-size: 12px;
  color: #555;
  font-weight: 500;
}

.capacity-card .metric-value {
  font-size: 22px;
  font-weight: 500;
  color: var(--primary);
  margin: 4px 0;
}

.capacity-card .metric-note {
  font-size: 12px;
  color: #666;
}

.disclaimer-box {
  background: #F2F2F2;
  border-radius: var(--radius-button);
  padding: 16px 20px;
  font-size: 12px;
  color: #777;
  margin-top: 32px;
  line-height: 1.6;
}

/* CTA section */
.cta-section {
  text-align: center;
}

.cta-section h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 24px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================================================
   About page
   =========================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-left .section-label {
  display: block;
  margin-bottom: 12px;
}

.about-left h1 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.25;
}

.about-left p {
  font-size: 16px;
  color: #555;
  margin-bottom: 18px;
}

.credential-box {
  background: var(--light-blue);
  border-radius: var(--radius-card);
  padding: 32px;
}

.credential-box .section-label {
  display: block;
  margin-bottom: 16px;
  color: var(--dark-blue-text);
}

.credential-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.credential-box li {
  font-size: 14px;
  color: var(--dark-blue-text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.credential-box li i {
  font-size: 16px;
  color: var(--primary);
  flex: 0 0 auto;
  margin-top: 2px;
}

.review-section {
  background: var(--surface);
}

.review-section h2 {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}

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

.review-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px;
  text-align: center;
}

.review-item i {
  font-size: 24px;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
}

.review-item span {
  font-size: 14px;
  color: #444;
  font-weight: 500;
}

/* ===========================================================
   Contact / intake form
   =========================================================== */
.form-note {
  background: var(--light-blue);
  border-radius: var(--radius-button);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--dark-blue-text);
  max-width: 760px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-note i {
  color: var(--primary);
  font-size: 18px;
  flex: 0 0 auto;
}

.intake {
  max-width: 760px;
  margin: 0 auto;
}

/* Progress bar */
.progress {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.progress-step {
  display: flex;
  align-items: center;
  flex: 1;
}

.progress-step:last-child {
  flex: 0 0 auto;
}

.progress-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-blue);
  color: var(--dark-blue-text);
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.progress-label {
  font-size: 13px;
  color: #555;
  font-weight: 500;
  margin-left: 8px;
  white-space: nowrap;
}

.progress-line {
  height: 1px;
  background: var(--border);
  flex: 1;
  margin: 0 12px;
}

.form-step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px;
  margin-bottom: 24px;
}

.form-step-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.form-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.form-step-head h3 {
  font-size: 17px;
  font-weight: 500;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 13px;
  font-weight: 500;
  color: #444;
}

.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 14px;
  color: #333;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-button);
  background: var(--bg);
  width: 100%;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.field textarea {
  resize: vertical;
  min-height: 90px;
}

/* Pill select */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  font-family: inherit;
  font-size: 13px;
  color: #555;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-button);
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.pill:hover {
  border-color: var(--accent);
}

.pill.active {
  background: var(--light-blue);
  border-color: var(--accent);
  color: var(--dark-blue-text);
}

/* Document checklist */
.doc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.doc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-button);
  background: var(--surface);
}

.doc-item .doc-name {
  font-size: 14px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
}

.doc-item .doc-name i {
  color: var(--primary);
  font-size: 16px;
}

.doc-badge {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.doc-badge.required {
  background: #FCEBEB;
  color: #A32D2D;
}

.doc-badge.optional {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
}

.upload-zone {
  border: 1.5px dashed #C5C5C5;
  border-radius: var(--radius-card);
  padding: 36px 24px;
  text-align: center;
  margin-top: 20px;
  background: var(--surface);
}

.upload-zone i {
  font-size: 28px;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}

.upload-zone p {
  font-size: 14px;
  color: #555;
}

.upload-zone span {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

/* Order summary */
.order-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 22px;
  margin-bottom: 24px;
}

.order-summary-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
  margin-bottom: 14px;
}

.order-summary-head .name {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
}

.order-summary-head .price {
  font-size: 22px;
  font-weight: 500;
  color: var(--primary);
}

.order-summary ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-summary li {
  font-size: 13px;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.order-summary li i {
  color: var(--primary);
  font-size: 15px;
  flex: 0 0 auto;
  margin-top: 1px;
}

.order-turnaround {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
}

.checkbox-row input {
  margin-top: 3px;
  flex: 0 0 auto;
}

.checkbox-row label {
  font-size: 13px;
  color: #555;
}

/* ===========================================================
   Footer
   =========================================================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  background: var(--bg);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand .logo {
  color: var(--primary);
  font-weight: 500;
  font-size: 16px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  max-width: 280px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: #666;
}

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

.footer-copy {
  font-size: 13px;
  color: var(--muted);
  text-align: right;
}

.footer-disclaimer {
  font-size: 11px;
  color: #999;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  line-height: 1.6;
}

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 16px;
  }

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

  .nav-links li {
    width: 100%;
    padding: 10px 0;
  }

  .nav-toggle {
    display: block;
  }

  .cards-3,
  .pricing-grid,
  .scorecard,
  .review-grid,
  .form-grid,
  .capacity-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-copy {
    text-align: left;
  }

  .hero h1 {
    font-size: 32px;
  }
}
