/* ArabaMind — base styles */

:root {
  --bg: #0a0b14;
  --bg-alt: #0e1020;
  --surface: #12142a;
  --surface-2: #171a36;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --primary: #5b4fe0;
  --primary-2: #8a5cf0;
  --primary-light: #9a8bff;
  --accent: #c9a8ff;

  --text: #f3f4fb;
  --text-muted: #a7abc9;
  --text-faint: #6d7196;

  --gradient: linear-gradient(135deg, #4338ca 0%, #5b4fe0 35%, #8a5cf0 70%, #b26fe8 100%);
  --gradient-soft: linear-gradient(135deg, rgba(91, 79, 224, 0.18), rgba(138, 92, 240, 0.10));

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow: 0 20px 60px -20px rgba(20, 12, 60, 0.55);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60rem 40rem at 85% -10%, rgba(138, 92, 240, 0.22), transparent 60%),
    radial-gradient(50rem 34rem at -10% 10%, rgba(67, 56, 202, 0.20), transparent 55%),
    var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

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

.arabic {
  font-family: "Tajawal", "Inter", sans-serif;
  direction: rtl;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-light);
  background: var(--gradient-soft);
  border: 1px solid var(--border-strong);
  padding: 6px 14px;
  border-radius: 999px;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(28px, 4vw, 40px);
}

h3 {
  font-size: 20px;
}

p {
  margin: 0;
}

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 17px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
  align-items: center;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(91, 79, 224, 0.65);
}

.btn-primary:hover {
  box-shadow: 0 16px 36px -10px rgba(138, 92, 240, 0.75);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-ghost:hover {
  border-color: var(--primary-light);
  background: rgba(255, 255, 255, 0.06);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 14px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 11, 20, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 19px;
  color: var(--text);
}

.brand img {
  height: 34px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

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

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

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  width: 42px;
  height: 42px;
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Hero */

.hero {
  padding: 88px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
}

.hero h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
  color: var(--text-faint);
  font-size: 13.5px;
}

.dot-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-faint);
}

/* Hero visual: dashboard mock */

.hero-visual {
  position: relative;
}

.mock-window {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mock-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

.mock-titlebar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.mock-titlebar small {
  margin-inline-start: 10px;
  color: var(--text-faint);
  font-size: 12.5px;
}

.mock-body {
  padding: 22px;
  display: grid;
  gap: 16px;
}

.mock-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
}

.mock-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.mock-card h4 {
  font-size: 12.5px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  font-weight: 600;
}

.sentiment-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sentiment-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-muted);
}

.sentiment-bar-row .label {
  width: 64px;
  flex-shrink: 0;
}

.bar-track {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 999px;
}

.bar-fill.positive { background: linear-gradient(90deg, #33d6a6, #6ee7b7); }
.bar-fill.neutral { background: linear-gradient(90deg, #7c85b8, #a7abc9); }
.bar-fill.negative { background: linear-gradient(90deg, #f2578c, #fb7185); }

.mock-feed {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feed-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--border);
}

.feed-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tag {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.tag.pos { background: rgba(51, 214, 166, 0.15); color: #5eead4; }
.tag.neg { background: rgba(251, 113, 133, 0.15); color: #fda4b1; }
.tag.neu { background: rgba(167, 171, 201, 0.15); color: #c2c5de; }

.mock-donut {
  width: 120px;
  height: 120px;
  margin: 4px auto 6px;
  border-radius: 50%;
  background: conic-gradient(#6ee7b7 0 42%, #a7abc9 42% 70%, #fb7185 70% 100%);
  position: relative;
}

.mock-donut::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: var(--surface);
}

.donut-legend {
  display: flex;
  justify-content: center;
  gap: 14px;
  font-size: 12px;
  color: var(--text-muted);
}

.donut-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.floating-chip {
  position: absolute;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
}

.floating-chip.chip-1 {
  top: -18px;
  right: -14px;
}

.floating-chip.chip-2 {
  bottom: -16px;
  left: -18px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #33d6a6;
  box-shadow: 0 0 0 0 rgba(51, 214, 166, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(51, 214, 166, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(51, 214, 166, 0); }
  100% { box-shadow: 0 0 0 0 rgba(51, 214, 166, 0); }
}

/* Logos / trust strip */

.trust-strip {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.trust-strip p {
  color: var(--text-faint);
  font-size: 13.5px;
  white-space: nowrap;
}

.dialect-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dialect-chips span {
  font-size: 13.5px;
  color: var(--text-muted);
  border: 1px solid var(--border-strong);
  padding: 7px 14px;
  border-radius: 999px;
}

/* Generic sections */

.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--bg-alt);
}

/* Feature grid */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gradient-soft);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* Dialects */

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

.dialect-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dialect-card .ar {
  font-family: "Tajawal", sans-serif;
  font-size: 22px;
  color: var(--primary-light);
}

.dialect-card .en {
  font-weight: 600;
  font-size: 15px;
}

.dialect-card .region {
  font-size: 13px;
  color: var(--text-faint);
}

/* How it works */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 28px 22px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-number {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-light);
  background: var(--gradient-soft);
  border: 1px solid var(--border-strong);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step h3 {
  margin-bottom: 8px;
}

.step p {
  color: var(--text-muted);
  font-size: 14.5px;
}

/* Use cases */

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

.usecase-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.usecase-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.usecase-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
  font-size: 14.5px;
}

.usecase-card li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: #33d6a6;
}

.usecase-tag {
  align-self: flex-start;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary-light);
  background: var(--gradient-soft);
  border: 1px solid var(--border-strong);
  padding: 5px 12px;
  border-radius: 999px;
}

/* API section */

.api-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.api-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.api-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.api-feature svg {
  flex-shrink: 0;
  color: var(--primary-light);
  margin-top: 2px;
}

.api-feature strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

.api-feature span {
  color: var(--text-muted);
  font-size: 14px;
}

.code-window {
  background: #0d0e1c;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.code-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
}

.code-tab {
  padding: 12px 20px;
  font-size: 13px;
  color: var(--text-faint);
  border-bottom: 2px solid transparent;
}

.code-tab.active {
  color: var(--text);
  border-color: var(--primary-light);
}

pre {
  margin: 0;
  padding: 22px;
  overflow-x: auto;
  font-family: "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.7;
  color: #d7dae8;
}

.tok-key { color: #9a8bff; }
.tok-str { color: #6ee7b7; }
.tok-num { color: #fbbf7f; }
.tok-com { color: var(--text-faint); }
.tok-fn { color: #7cc3ff; }

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-card.featured {
  border-color: var(--primary-light);
  background: linear-gradient(180deg, rgba(91, 79, 224, 0.10), var(--surface) 40%);
  position: relative;
}

.price-badge {
  position: absolute;
  top: -13px;
  right: 24px;
  background: var(--gradient);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
}

.price-card h3 {
  font-size: 18px;
}

.price-card .plan-desc {
  color: var(--text-muted);
  font-size: 14px;
}

.price-value {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 600;
}

.price-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.price-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-muted);
}

.price-card li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: #33d6a6;
}

/* CTA band */

.cta-band {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(40rem 20rem at 90% 0%, rgba(255, 255, 255, 0.18), transparent 60%);
}

.cta-band h2, .cta-band p {
  position: relative;
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 10px;
  max-width: 480px;
}

.cta-actions {
  position: relative;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-band .btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.cta-band .btn-primary {
  background: #fff;
  color: #4338ca;
  box-shadow: none;
}

/* Contact / form */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info-item svg {
  flex-shrink: 0;
  color: var(--primary-light);
  margin-top: 3px;
}

.contact-info-item strong {
  display: block;
  font-size: 15px;
}

.contact-info-item span, .contact-info-item a {
  color: var(--text-muted);
  font-size: 14px;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.field label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 14.5px;
  outline: none;
  transition: border-color 0.15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary-light);
}

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

.form-note {
  font-size: 12.5px;
  color: var(--text-faint);
  margin-top: 12px;
}

.form-status {
  font-size: 14px;
  margin-top: 14px;
  display: none;
}

.form-status.show {
  display: block;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand .brand {
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 13.5px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 14.5px;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  color: var(--text-faint);
  font-size: 13.5px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.social-links a:hover {
  color: var(--text);
  border-color: var(--primary-light);
}

/* Simple content pages (privacy/terms) */

.doc-page {
  padding: 64px 0 100px;
}

.doc-page .container {
  max-width: 780px;
}

.doc-page h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 8px;
}

.doc-page .updated {
  color: var(--text-faint);
  font-size: 14px;
  margin-bottom: 40px;
  display: block;
}

.doc-page h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 14px;
}

.doc-page p, .doc-page li {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 14px;
}

.doc-page ul {
  padding-inline-start: 20px;
}

.doc-page a {
  color: var(--primary-light);
  text-decoration: underline;
}

/* 404 */

.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

.error-page .eyebrow {
  margin-bottom: 20px;
}

.error-page h1 {
  font-size: clamp(40px, 8vw, 72px);
}

.error-page p {
  color: var(--text-muted);
  margin: 16px 0 28px;
  font-size: 17px;
}

/* Responsive */

@media (max-width: 980px) {
  .hero-grid,
  .api-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .usecase-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    margin-top: 20px;
  }
}

@media (max-width: 760px) {
  .nav-links,
  .nav-actions .btn-ghost {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .section {
    padding: 64px 0;
  }

  .feature-grid,
  .dialect-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 36px 24px;
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .mock-row {
    grid-template-columns: 1fr;
  }

  .trust-strip .container {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Mobile nav drawer */

.mobile-nav {
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--bg);
  z-index: 90;
  padding: 32px 24px;
  display: none;
  flex-direction: column;
  gap: 28px;
  overflow-y: auto;
}

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 600;
}

.mobile-nav .btn {
  margin-top: 8px;
}
