:root {
  --bg: #f4f0e8;
  --bg-soft: #ece5d9;
  --card: #fffdf8;
  --card-2: #f8f3eb;
  --text: #12202c;
  --muted: #596672;
  --line: rgba(18, 32, 44, 0.11);
  --line-strong: rgba(18, 32, 44, 0.2);
  --accent: #c86d32;
  --accent-2: #0f8f86;
  --shadow: 0 24px 60px rgba(39, 43, 49, 0.12);
  --section-space: 88px;
  --section-space-mobile: 60px;
  --grid-gap: 20px;
  --card-gap: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(200, 109, 50, 0.18), transparent 24%),
    radial-gradient(circle at left center, rgba(15, 143, 134, 0.14), transparent 22%),
    linear-gradient(180deg, #f5f1e9 0%, #efe7da 48%, #f8f4ec 100%);
  color: var(--text);
}

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

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

pre {
  white-space: pre-wrap;
}

input,
textarea,
button,
select {
  font: inherit;
}

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

section[id] {
  scroll-margin-top: 108px;
}

.container {
  width: min(1400px, calc(100vw - 32px));
  margin: 0 auto;
}

.narrow {
  max-width: 840px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(244, 240, 232, 0.84);
  border-bottom: 1px solid var(--line);
}

.nav {
  position: relative;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  color: var(--text);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-lockup img {
  width: 176px;
  height: auto;
  flex: 0 0 auto;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  font-size: 1.95rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand-wordmark-moto {
  color: var(--text);
}

.brand-wordmark-bot {
  color: var(--accent-2);
}

.menu {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}

.menu a {
  color: var(--muted);
  font-weight: 700;
}

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

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  flex-direction: column;
  gap: 4px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: var(--text);
  transition: transform 160ms ease, opacity 160ms ease, width 160ms ease;
}

.section {
  padding: var(--section-space) 0;
}

.section:first-of-type {
  padding-top: 112px;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.hero-section {
  padding: 108px 0 68px;
}

.hero-grid,
.dashboard-grid,
.voice-grid,
.contact-layout,
.demo-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-grid {
  align-items: center;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 18ch;
}

h3 {
  font-size: 1.14rem;
}

.hero-copy-wrap h1 {
  max-width: 13ch;
}

.hero-copy,
p,
li {
  color: var(--muted);
  line-height: 1.72;
}

.hero-copy {
  max-width: 58ch;
  font-size: 1.05rem;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-bar span,
.plan-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
}

.trust-bar-compact {
  margin-top: 20px;
}

.section-copy {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.05rem;
}

.article-container {
  max-width: 720px;
}

.article-hero {
  display: grid;
  gap: 24px;
  margin-bottom: 28px;
}

.article-hero-copy {
  display: grid;
  gap: 14px;
}

.article-hero-media {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.article-hero-image,
.card-media {
  display: block;
  width: 100%;
  height: auto;
}

.article-lead {
  max-width: 68ch;
  margin: 0;
  font-size: 1.05rem;
  color: var(--text);
}

.article-copy {
  max-width: 66ch;
}

.article-prose {
  gap: 16px;
}

.article-prose p:last-child {
  margin-bottom: 0;
}

.article-tags {
  margin-top: 4px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  gap: 18px;
  align-items: start;
}

.detail-card {
  min-height: 100%;
}

.article-card {
  padding: 0;
}

.article-card-body {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.card-media-link {
  display: block;
}

.card-media {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.text-link {
  color: var(--accent-2);
  font-weight: 700;
}

.text-link:hover {
  color: var(--accent);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-cta-row .button {
  min-width: 210px;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #111;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(245, 158, 11, 0.16);
}

.secondary-button,
.ghost-button {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

.button:hover,
button:hover {
  transform: translateY(-1px);
}

.hero-points,
.contact-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.hero-point {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.hero-point strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.hero-point span {
  display: block;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.card-grid,
.stats-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.benefits-grid,
.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-card,
.setup-card,
.demo-prompt-panel,
.contact-card,
.conversation-card,
.pricing-intro-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.compact-list {
  margin: 0;
}

.pricing-copy {
  margin: 0;
  min-height: 4.8em;
  font-size: 0.96rem;
}

.price-tag {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--accent);
}

.plan-badge {
  justify-self: start;
  border-color: rgba(245, 158, 11, 0.28);
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent-2);
}

.pricing-card-featured {
  border-color: rgba(245, 158, 11, 0.26);
  box-shadow: 0 22px 48px rgba(245, 158, 11, 0.12);
}

.setup-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #111;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.16);
}

.info-card,
.chat-mockup,
.demo-conversation,
.flash,
.code-block,
.voice-panel {
  background: linear-gradient(180deg, rgba(20, 29, 40, 0.98), rgba(12, 18, 28, 0.98));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.info-card {
  position: relative;
  overflow: hidden;
}

.info-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.10), transparent 70%);
}

.audience-card {
  min-height: 100%;
}

.example-line {
  margin-top: 4px;
  padding-top: 14px;
  color: var(--accent-2);
  font-size: 0.94rem;
}

.widget-preview {
  position: relative;
  min-height: 430px;
  padding: 28px;
  display: grid;
  align-content: end;
  gap: 16px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 14%, rgba(245, 158, 11, 0.16), transparent 24%),
    radial-gradient(circle at 96% 10%, rgba(59, 130, 246, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(20, 29, 40, 0.98), rgba(11, 18, 27, 0.98));
  box-shadow: var(--shadow);
}

.widget-preview::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.widget-launcher {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #111;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(245, 158, 11, 0.22);
  animation: pulse-soft 2.8s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.widget-launcher img {
  width: 42px;
  height: 42px;
}

.widget-card {
  margin-left: auto;
  width: min(100%, 336px);
  border-radius: 22px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 32, 0.90);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  gap: 8px;
}

.widget-card .chat-bubble {
  margin-bottom: 0;
  animation: float-in 0.7s ease both;
}

.widget-card .chat-bubble:last-child {
  margin-bottom: 0;
}

.chat-mockup {
  position: relative;
  padding: 28px;
  isolation: isolate;
}

.chat-mockup::before {
  content: "Widget MotoBot";
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chat-mockup::after {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 110px;
  height: 110px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 30% 30%, rgba(245, 158, 11, 0.28), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  transform: rotate(8deg);
  z-index: -1;
}

.chat-bubble {
  width: fit-content;
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 18px;
  margin-bottom: 10px;
  animation: float-in 0.7s ease both;
  line-height: 1.5;
}

.chat-bubble.user {
  margin-left: auto;
  background: rgba(245, 158, 11, 0.16);
  color: #fff2c2;
}

.chat-bubble.bot {
  background: rgba(255, 255, 255, 0.05);
}

.chat-hint {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.chat-hint::before {
  content: "Tryb głosowy";
  display: inline-flex;
  margin-right: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent-2);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.app-preview {
  display: grid;
  gap: 16px;
}

.app-preview-shell {
  position: relative;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 26%),
    radial-gradient(circle at right center, rgba(59, 130, 246, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(16, 25, 38, 0.98), rgba(9, 14, 23, 0.98));
  box-shadow: var(--shadow);
}

.app-preview-shell::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.app-preview-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.88rem;
}

.app-preview-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.2fr 0.8fr;
}

.app-panel {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(8, 13, 21, 0.74);
  overflow: hidden;
}

.app-panel::after {
  content: "";
  position: absolute;
  inset: auto -12% -34% auto;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
}

.app-panel-primary {
  grid-row: span 2;
}

.app-panel-accent {
  background:
    linear-gradient(180deg, rgba(245, 158, 11, 0.10), rgba(255, 255, 255, 0.03)),
    rgba(8, 13, 21, 0.78);
}

.app-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.app-panel-head strong {
  color: var(--text);
}

.app-panel-head span {
  color: var(--accent-2);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.app-data-list {
  margin: 0;
}

.app-metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.app-metric-row div {
  padding: 14px 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.app-metric-row strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.5rem;
  color: var(--text);
}

.app-metric-row span {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.45;
}

.section-head {
  max-width: 780px;
  margin-bottom: 32px;
}

.feature-list,
.plain-list {
  display: grid;
  gap: 12px;
  list-style: none;
  padding-left: 0;
}

.feature-list li,
.plain-list li {
  position: relative;
  padding-left: 28px;
}

.feature-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.08);
}

.demo-layout {
  align-items: start;
}

.prompt-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
}

.prompt-chip {
  width: auto;
  max-width: 100%;
  min-height: 44px;
  padding: 12px 16px;
  text-align: left;
  line-height: 1.25;
  white-space: normal;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  box-shadow: none;
}

.prompt-chip:hover {
  border-color: rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.10);
}

.demo-line {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.revenue-grid,
.safety-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.voice-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.voice-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.voice-badge {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.92rem;
}

.panel-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
}

.panel-intro p {
  margin: 0;
  max-width: 62ch;
}

.panel-intro h1 {
  max-width: none;
  margin-bottom: 8px;
}

.stats-grid .info-card strong,
.dashboard-grid .info-card h2 {
  letter-spacing: -0.04em;
}

.stats-grid .info-card {
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stats-grid .info-card strong {
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  color: var(--text);
}

.stats-grid .info-card span {
  color: var(--muted);
}

.dashboard-grid .info-card h2 {
  font-size: 1.4rem;
}

.dashboard-grid .info-card p,
.dashboard-grid .info-card li {
  font-size: 0.96rem;
}

.dashboard-grid .info-card .muted-text,
.dashboard-grid .info-card .code-block {
  font-size: 0.92rem;
}

.logo-admin-card {
  grid-column: 1 / -1;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  align-items: center;
}

.logo-admin-preview {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    rgba(255, 255, 255, 0.035);
  background-size: 18px 18px;
}

.logo-admin-preview img {
  width: min(100%, 360px);
  max-height: 120px;
  object-fit: contain;
}

.logo-upload-form {
  margin-top: 18px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--text);
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  color: var(--text);
}

select {
  appearance: none;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.08);
}

.form-submit-row {
  display: grid;
  gap: 10px;
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(89, 102, 114, 0.82);
}

.contact-side-note {
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(200, 109, 50, 0.16);
  background: rgba(200, 109, 50, 0.08);
  color: var(--text);
  line-height: 1.6;
}

.contact-checklist {
  display: grid;
  gap: 12px;
}

.contact-check-item {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.contact-check-item strong,
.cta-band strong {
  color: var(--text);
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
}

.checkbox-field input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 4px;
  padding: 0;
}

.checkbox-field span {
  line-height: 1.6;
}

.checkbox-field a {
  color: var(--accent-2);
}

.flash-success {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.08);
  color: #166534;
}

.flash-error {
  border-color: rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.08);
  color: #991b1b;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.simple-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.simple-list li,
.feature-list li,
.muted-text,
.contact-side-note,
.contact-check-item span {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.code-block {
  color: #355063;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.muted-text {
  color: var(--muted);
}

.policy-card {
  margin-top: 24px;
}

.policy-card h2 {
  max-width: none;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}

.cta-band {
  margin-top: 28px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 24px;
  border: 1px solid rgba(245, 158, 11, 0.18);
  background:
    radial-gradient(circle at left top, rgba(245, 158, 11, 0.10), transparent 32%),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.cta-band p {
  max-width: 58ch;
  margin: 8px 0 0;
}

.footer-intro p {
  max-width: 34ch;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand img {
  width: 176px;
  height: auto;
  flex: 0 0 auto;
}

.footer-intro .brand-wordmark {
  font-size: 2.05rem;
}

.footer-phone {
  color: var(--accent-2);
  font-weight: 700;
}

.footer-links strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
}

.footer-grid a {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.inline-form {
  margin: 0;
}

.hero-mobile {
  padding-top: 24px;
}

.hero-mobile-grid,
.journey-grid,
.screen-grid,
.architecture-grid,
.risk-grid,
.roadmap-grid {
  display: grid;
  gap: var(--grid-gap);
}

.hero-mobile-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 28px;
}

.hero-mobile-copy {
  display: grid;
  gap: 12px;
}

.hero-mobile-copy h1 {
  max-width: 11ch;
}

.hero-mobile-stage {
  display: grid;
  gap: var(--card-gap);
}

.hero-visual-card {
  padding: 16px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 15%, rgba(15, 143, 134, 0.12), transparent 22%),
    radial-gradient(circle at 85% 18%, rgba(200, 109, 50, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(244, 236, 225, 0.98));
  box-shadow: var(--shadow);
}

.hero-visual-card img {
  width: 100%;
  border-radius: 22px;
}

.hero-stat-row,
.hero-signal-grid {
  display: grid;
  gap: var(--card-gap);
}

.hero-stat-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-signal-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.hero-stat-card,
.hero-signal-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.hero-stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.15rem;
}

.journey-grid,
.architecture-grid,
.risk-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.screen-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.roadmap-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.journey-card,
.screen-card,
.architecture-card,
.risk-card,
.roadmap-card,
.contact-card-mobile {
  min-height: 0;
}

.hero-signal-card h3,
.screen-card h3,
.risk-card h3,
.architecture-card h3,
.roadmap-card h3,
.journey-card h3 {
  margin-bottom: 10px;
}

.section-gallery {
  position: relative;
}

.section-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(15, 143, 134, 0.08), transparent 24%),
    radial-gradient(circle at 84% 76%, rgba(200, 109, 50, 0.1), transparent 20%);
  pointer-events: none;
}

.visual-story-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
}

.visual-story-card {
  position: relative;
  display: grid;
  align-content: start;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.visual-story-card-featured {
  grid-template-rows: minmax(320px, auto) 1fr;
}

.visual-story-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.visual-story-copy {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.visual-story-copy h3 {
  max-width: 16ch;
}

.visual-story-copy p:last-child {
  margin: 0;
}

.contact-layout-mobile {
  align-items: start;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.18)),
    rgba(255, 255, 255, 0.22);
  border-top: 1px solid rgba(18, 32, 44, 0.04);
  border-bottom: 1px solid rgba(18, 32, 44, 0.04);
}

.trust-bar span,
.plan-badge,
.hero-point,
.contact-check-item,
.secondary-button,
.ghost-button {
  background: rgba(255, 255, 255, 0.6);
}

.button,
button {
  background: linear-gradient(135deg, var(--accent) 0%, #e5a35f 100%);
  color: #fff;
  box-shadow: 0 14px 26px rgba(200, 109, 50, 0.18);
}

.menu-toggle {
  background: rgba(255, 255, 255, 0.55);
  box-shadow: none;
  color: var(--text);
}

.secondary-button,
.ghost-button {
  color: var(--text);
  box-shadow: none;
}

.setup-step {
  background: linear-gradient(135deg, var(--accent), #e5a35f);
  color: #fff;
  box-shadow: 0 12px 24px rgba(200, 109, 50, 0.16);
}

.info-card,
.chat-mockup,
.demo-conversation,
.flash,
.code-block,
.voice-panel {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(250, 245, 238, 0.98));
}

.info-card::after {
  background: radial-gradient(circle, rgba(15, 143, 134, 0.10), transparent 70%);
}

.site-footer {
  background: rgba(255, 255, 255, 0.34);
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-soft {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.18);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(245, 158, 11, 0);
  }
}

@media (max-width: 980px) {
  .site-header {
    background: rgba(2, 2, 2, 0.92);
  }

  .nav {
    min-height: 68px;
  }

  .brand-lockup img {
    width: 300px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
  }

  .menu-toggle[aria-expanded="true"] {
    border-color: rgba(255, 255, 255, 0.22);
    background: linear-gradient(135deg, #ffffff, #bdbdbd);
  }

  .menu-toggle[aria-expanded="true"] span {
    background: #050505;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    width: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background:
      linear-gradient(180deg, rgba(13, 13, 13, 0.98), rgba(4, 4, 4, 0.98));
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .menu.is-open {
    display: grid;
  }

  .menu a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.2;
  }

  .menu a:hover {
    background: rgba(255, 255, 255, 0.07);
  }

  .menu .button,
  .menu .inline-form button {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    padding: 0 12px;
  }

  .menu .button {
    grid-column: 1 / -1;
    margin-top: 2px;
    color: #050505;
    background: linear-gradient(135deg, #ffffff, #bdbdbd);
  }

  .menu .inline-form {
    grid-column: 1 / -1;
  }

  .hero-grid,
  .hero-mobile-grid,
  .dashboard-grid,
  .footer-grid,
  .card-grid,
  .stats-grid,
  .pricing-grid,
  .voice-grid,
  .contact-layout,
  .demo-layout,
  .faq-grid,
  .detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .journey-grid,
  .architecture-grid,
  .risk-grid,
  .roadmap-grid,
  .screen-grid,
  .visual-story-grid,
  .benefits-grid,
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .app-preview-grid {
    grid-template-columns: 1fr;
  }

  .app-panel-primary {
    grid-row: auto;
  }

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

  .panel-intro {
    flex-direction: column;
    align-items: start;
  }

  .logo-admin-card {
    grid-template-columns: 1fr;
  }

  .cta-band {
    flex-direction: column;
    align-items: start;
  }

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

@media (max-width: 720px) {
  .hero-grid,
  .hero-mobile-grid,
  .dashboard-grid,
  .footer-grid,
  .card-grid,
  .stats-grid,
  .pricing-grid,
  .voice-grid,
  .hero-points,
  .contact-points,
  .contact-layout,
  .faq-grid,
  .benefits-grid,
  .steps-grid,
  .demo-layout,
  .form-two-columns,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .journey-grid,
  .screen-grid,
  .architecture-grid,
  .risk-grid,
  .roadmap-grid,
  .visual-story-grid,
  .hero-stat-row,
  .hero-signal-grid {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: var(--section-space-mobile) 0;
  }

  .hero-section {
    padding-top: 84px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
    max-width: none;
  }

  .button-row {
    flex-direction: column;
  }

  .button-row .button,
  .form-submit-row .button {
    width: 100%;
  }

  .brand-lockup img,
  .footer-brand img {
    width: 148px;
    height: auto;
  }

  .widget-preview {
    min-height: 380px;
  }

  .panel-intro {
    padding: 20px;
  }

  .contact-section {
    padding-bottom: 132px;
  }

  .site-footer {
    padding-bottom: 132px;
  }

  .pricing-copy {
    min-height: 0;
  }

  .article-card-body {
    padding: 20px;
  }

  .article-hero {
    gap: 18px;
    margin-bottom: 22px;
  }
}

/* Omnexa visual skin */
:root {
  --bg: #020202;
  --bg-soft: #090909;
  --card: rgba(8, 8, 8, 0.82);
  --card-2: rgba(12, 12, 12, 0.96);
  --text: #f3f3f3;
  --muted: #a1a1a1;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --accent: #ffffff;
  --accent-2: #bdbdbd;
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.5);
}

html {
  background: #000;
}

body {
  background-color: #000;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.04), transparent 22%),
    linear-gradient(180deg, #000000 0%, #020202 40%, #090909 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 95%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 95%);
}

.site-header {
  background: rgba(2, 2, 2, 0.84);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
}

.brand-lockup img {
  width: 352px;
}

.footer-brand img {
  width: 180px;
}

.menu a {
  color: var(--muted);
}

.menu a:hover,
.footer-grid a:hover,
.text-link:hover {
  color: var(--text);
}

.section {
  position: relative;
  overflow: hidden;
}

.section:not(.hero-section),
.section-alt,
.contact-section {
  width: min(1440px, calc(100vw - 32px));
  margin-block: 18px;
  margin-inline: auto;
  padding: 30px 0 46px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 40%, rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(12, 12, 12, 0.92), rgba(3, 3, 3, 0.96));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.section:not(.hero-section) > .container,
.section-alt > .container,
.contact-section > .container {
  width: min(1368px, calc(100% - 56px));
}

.hero-section {
  margin: 18px auto;
  padding: 34px 0 38px;
  width: min(1440px, calc(100vw - 32px));
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 40%, rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(12, 12, 12, 0.92), rgba(3, 3, 3, 0.96));
  box-shadow: var(--shadow);
}

.hero-section .container {
  width: min(1368px, calc(100vw - 64px));
}

.hero-mobile-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(600px, 1.1fr);
  align-items: center;
  gap: 48px;
}

.hero-mobile-copy {
  gap: 10px;
}

.hero-mobile-copy h1,
h1 {
  max-width: 14ch;
  font-size: clamp(2.75rem, 4.4vw, 4.55rem);
  line-height: 1.04;
}

.hero-copy {
  max-width: 62ch;
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.64;
}

.hero-cta-row {
  margin-top: 18px;
}

.trust-bar-compact {
  margin-top: 14px;
}

.hero-mobile-stage {
  align-self: center;
  gap: 14px;
}

.hero-visual-card {
  padding: 14px;
}

.hero-visual-card img {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
}

.hero-stat-row {
  gap: 12px;
  margin-top: 2px;
}

.hero-stat-card,
.hero-signal-card {
  padding: 16px;
  border-radius: 18px;
}

.hero-stat-card strong {
  margin-bottom: 6px;
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.18;
}

.hero-stat-card span,
.hero-signal-card p,
.hero-signal-card li,
.info-card p,
.screen-card p,
.journey-card p,
.architecture-card p,
.risk-card p,
.roadmap-card p {
  font-size: 0.95rem;
  line-height: 1.58;
}

.hero-signal-card h3,
.info-card h3 {
  font-size: clamp(1.04rem, 1.08vw, 1.16rem);
  line-height: 1.18;
}

.section-head {
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  line-height: 1.08;
  max-width: 21ch;
}

.section-copy {
  margin-bottom: 22px;
  font-size: 1rem;
  line-height: 1.62;
}

.journey-grid,
.screen-grid,
.architecture-grid,
.risk-grid,
.roadmap-grid {
  gap: 16px;
}

.eyebrow {
  color: var(--accent);
  letter-spacing: 0.2em;
}

.eyebrow::before {
  background: currentColor;
}

h1,
h2,
h3 {
  color: var(--text);
  letter-spacing: 0;
}

.hero-copy,
p,
li,
.section-copy,
.muted-text,
.footer-grid a,
.footer-intro p,
.article-lead {
  color: var(--muted);
}

.button,
button {
  color: #050505;
  background: linear-gradient(135deg, #ffffff, #bdbdbd);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.12);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.secondary-button,
.ghost-button,
.menu-toggle {
  color: var(--text);
  border-color: var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025));
  box-shadow: none;
}

.menu-toggle span {
  background: var(--text);
}

.trust-bar span,
.plan-badge,
.hero-point,
.hero-stat-card,
.hero-signal-card,
.contact-check-item,
.voice-badge,
.prompt-chip {
  border-color: var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.02);
  color: var(--text);
  box-shadow: none;
}

.hero-visual-card,
.visual-story-card,
.info-card,
.chat-mockup,
.demo-conversation,
.flash,
.code-block,
.voice-panel,
.widget-preview,
.app-preview-shell,
.panel-intro,
.cta-band,
.article-hero-media {
  border-color: var(--line);
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.96), rgba(4, 4, 4, 0.96));
  box-shadow: var(--shadow);
}

.hero-visual-card {
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.08), transparent 22%),
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.96), rgba(4, 4, 4, 0.96));
}

.hero-visual-card img,
.visual-story-image {
  border-color: rgba(255, 255, 255, 0.08);
  filter: saturate(0.92) contrast(1.04);
}

.visual-story-copy {
  background: transparent;
}

.info-card::after {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.10), transparent 70%);
}

.setup-step,
.widget-launcher {
  color: #050505;
  background: linear-gradient(135deg, #ffffff, #bdbdbd);
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.12);
}

.feature-list li::before,
.plain-list li::before {
  background: linear-gradient(135deg, #ffffff, #bdbdbd);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.12);
}

.price-tag,
.footer-phone,
.text-link,
.app-panel-head span,
.example-line,
.checkbox-field a {
  color: var(--accent);
}

.plan-badge,
.chat-mockup::before,
.chat-hint::before {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.07);
  color: var(--accent);
}

.pricing-card-featured {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.24);
}

.contact-side-note {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

input,
textarea,
select {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

input::placeholder,
textarea::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.chat-bubble.user {
  color: #050505;
  background: rgba(255, 255, 255, 0.86);
}

.chat-bubble.bot,
.app-panel,
.app-panel-accent,
.app-metric-row div,
.widget-card,
.app-preview-topbar {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.code-block {
  color: #d7d7d7;
}

.flash-success {
  color: #d9ffe7;
  border-color: rgba(34, 197, 94, 0.32);
  background: rgba(34, 197, 94, 0.09);
}

.flash-error {
  color: #ffd7d7;
  border-color: rgba(239, 68, 68, 0.32);
  background: rgba(239, 68, 68, 0.09);
}

.site-footer {
  margin-top: 24px;
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.92), rgba(3, 3, 3, 0.96));
  border-top: 1px solid var(--line);
}

.journey-grid,
.screen-grid,
.architecture-grid,
.risk-grid,
.roadmap-grid,
.stats-grid,
.card-grid,
.dashboard-grid,
.pricing-grid,
.benefits-grid,
.steps-grid {
  align-items: start;
}

.journey-card,
.screen-card,
.architecture-card,
.risk-card,
.roadmap-card,
.stats-grid .info-card,
.dashboard-grid .info-card,
.pricing-card,
.setup-card,
.contact-card,
.conversation-card,
.pricing-intro-card {
  min-height: 0;
  height: auto;
  align-self: start;
}

.journey-card {
  display: grid;
  gap: 14px;
}

.roadmap-card {
  display: grid;
  gap: 14px;
}

.journey-card .setup-step,
.roadmap-card .setup-step {
  margin-bottom: 2px;
}

.journey-card h3,
.journey-card p,
.roadmap-card h3,
.roadmap-card p {
  margin: 0;
}

.info-card {
  align-content: start;
}

.pricing-copy {
  min-height: 0;
}

@media (max-width: 980px) {
  .hero-mobile-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 24px;
  }

  .hero-mobile-copy h1,
  h1 {
    font-size: clamp(2.45rem, 5.6vw, 3.8rem);
  }

  .hero-stat-row,
  .hero-signal-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual-card img {
    aspect-ratio: 4 / 3;
  }

  .section:not(.hero-section) > .container,
  .section-alt > .container,
  .contact-section > .container {
    width: min(100% - 40px, 1368px);
  }

  .menu {
    border-color: var(--line);
    background:
      linear-gradient(180deg, rgba(13, 13, 13, 0.98), rgba(4, 4, 4, 0.98));
  }
}

@media (max-width: 720px) {
  .hero-section {
    width: min(100% - 24px, 1440px);
    padding: 22px 0 32px;
  }

  .hero-section .container {
    width: min(100% - 28px, 1368px);
  }

  .hero-mobile-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-mobile-copy h1,
  h1 {
    max-width: none;
    font-size: clamp(2.15rem, 10vw, 3.25rem);
    line-height: 1.06;
  }

  .hero-copy {
    max-width: none;
    font-size: 0.98rem;
  }

  .hero-cta-row {
    margin-top: 14px;
  }

  .trust-bar {
    gap: 8px;
  }

  .trust-bar span {
    min-height: 34px;
    padding: 7px 11px;
    font-size: 0.8rem;
  }

  .hero-stat-card,
  .hero-signal-card,
  .info-card {
    padding: 16px;
  }

  .section-head {
    margin-bottom: 20px;
  }

  .section-head h2 {
    max-width: none;
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  .section:not(.hero-section),
  .section-alt,
  .contact-section {
    margin-block: 18px;
    padding: 26px 0 38px;
    border-radius: 24px;
  }

  .brand-lockup img {
    width: 296px;
  }

  .footer-brand img {
    width: 160px;
  }

  .nav {
    min-height: 64px;
    gap: 10px;
  }

  .brand-lockup img {
    width: min(264px, calc(100vw - 92px));
  }

  .menu {
    grid-template-columns: 1fr 1fr;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
  }

  .menu a {
    min-height: 42px;
    padding: 9px 10px;
    font-size: 0.88rem;
  }
}
