:root {
  --ink: #082f38;
  --ink-soft: #25434a;
  --muted: #5b6f74;
  --brand: #005a5b;
  --brand-dark: #003f43;
  --accent: #0f8f87;
  --line: #dbe7e6;
  --soft: #f6faf9;
  --white: #fff;
  --shadow: 0 18px 45px rgba(0, 42, 48, .08);
  --radius: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html.no-scroll { overflow: hidden; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow { max-width: 850px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 50;
  background: var(--brand);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus { left: 12px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.header-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  position: relative;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  font-size: 28px;
  font-weight: 850;
  letter-spacing: 0;
  color: var(--ink);
}

.brand-mark {
  width: 1.18em;
  height: 1.18em;
  flex: 0 0 auto;
  object-fit: contain;
}

.nav-list,
.footer-list,
.legal-list {
  list-style: none;
  display: flex;
  gap: 28px;
  padding: 0;
  margin: 0;
}

.nav-list {
  justify-content: center;
  font-size: 15px;
  align-items: center;
}

.main-nav {
  position: relative;
  min-width: 0;
}

.nav-list a,
.footer-list a,
.legal-list a {
  color: var(--ink-soft);
}

.nav-item-head {
  display: flex;
  align-items: center;
}

.nav-parent-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.nav-submenu {
  position: absolute;
  left: 50%;
  top: calc(100% + 12px);
  width: min(980px, calc(100vw - 40px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow);
  z-index: 25;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-item-has-children:hover .nav-submenu,
.nav-item-has-children:focus-within .nav-submenu,
.nav-item-has-children.is-open .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-submenu-intro {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
}

.nav-submenu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 8px;
}

@media (max-width: 1180px) {
  .nav-submenu {
    width: min(820px, calc(100vw - 32px));
  }
}

.nav-submenu-list a {
  display: grid;
  gap: 4px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-submenu-list strong {
  color: var(--ink);
  font-size: 14px;
}

.nav-submenu-list span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.nav-list a:hover,
.nav-list a[aria-current="page"],
.footer-list a:hover,
.legal-list a:hover {
  color: var(--brand);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--brand);
  border-radius: 6px;
  padding: 11px 20px;
  font-weight: 750;
  line-height: 1.2;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

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

.button-primary {
  background: var(--brand-dark);
  color: var(--white);
}

.button-secondary {
  background: var(--white);
  color: var(--brand-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero-section,
.page-hero {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 0 100%, rgba(15,143,135,.12), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f9fcfb 100%);
}

.hero-section { padding: 72px 0 66px; }
.page-hero { padding: 74px 0 58px; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: 58px;
  align-items: center;
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  max-width: 850px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: 0;
  margin-bottom: 14px;
}

h3 {
  font-size: 21px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 760px;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.hero-benefit {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.35;
}

.hero-benefit-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 90, 91, .12);
  border-radius: 12px;
  background: rgba(15, 143, 135, .07);
  color: var(--brand);
}

.hero-benefit-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-copy > .button-row {
  margin-top: 24px;
}

.hero-action-note {
  max-width: 760px;
  margin-top: 22px;
  color: var(--ink);
  font-weight: 700;
}

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

.home-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-cta-row {
  justify-content: center;
}

.linked-sector-strip a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  background: var(--white);
  color: var(--ink-soft);
  font-weight: 700;
}

.linked-sector-strip a:hover {
  color: var(--brand);
  border-color: rgba(0, 90, 91, .28);
}

.dashboard-preview {
  display: grid;
  grid-template-columns: 130px 1fr;
  min-height: 370px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.preview-sidebar {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 20px 14px;
  border-right: 1px solid var(--line);
  background: #fbfdfd;
  font-size: 12px;
  color: var(--muted);
}

.preview-sidebar strong {
  color: var(--ink);
  font-size: 16px;
  margin-bottom: 8px;
}

.preview-main { padding: 22px; }

.preview-top,
.metric-grid,
.chart-row {
  display: grid;
  gap: 14px;
}

.preview-top {
  grid-template-columns: 1fr auto;
  color: var(--ink-soft);
  font-weight: 700;
  margin-bottom: 16px;
}

.metric-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 18px;
}

.metric-grid div {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 14px;
}

.metric-grid strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.metric-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.chart-row { grid-template-columns: 1.35fr .65fr; }

.line-chart,
.donut {
  min-height: 130px;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.line-chart {
  background:
    linear-gradient(145deg, transparent 42%, rgba(15,143,135,.26) 43%, rgba(15,143,135,.26) 45%, transparent 46%),
    repeating-linear-gradient(0deg, #fff, #fff 24px, #eef4f3 25px);
}

.donut {
  background:
    radial-gradient(circle, #fff 0 34%, transparent 35%),
    conic-gradient(var(--brand) 0 42%, #4aa4b3 42% 67%, #8cc6ce 67% 86%, #d9eceb 86% 100%);
}

.section { padding: 62px 0; }

.band {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 28px;
}

.centered {
  text-align: center;
}

.centered p {
  margin-inline: auto;
  max-width: 760px;
  color: var(--muted);
}

.cards-grid {
  display: grid;
  gap: 18px;
}

.cards-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.service-card,
.plain-card,
.detail-main,
.side-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 26px;
}

.service-card p,
.plain-card p,
.detail-main p,
.side-panel p {
  color: var(--muted);
}

.service-card ul,
.check-list {
  padding-left: 18px;
  margin-bottom: 0;
}

.service-card li,
.check-list li {
  margin: 7px 0;
}

.icon {
  color: var(--brand);
  margin-bottom: 16px;
}

.split-feature,
.contact-grid,
.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: start;
}

.feature-list,
.feature-matrix {
  display: grid;
  gap: 12px;
}

.feature-list span,
.feature-matrix article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px;
  font-weight: 700;
}

.feature-list.as-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px;
}

.feature-list.as-list li strong {
  font-weight: 700;
}

.feature-list.as-list li p {
  margin: 8px 0 0;
  font-weight: 400;
}

.feature-list.as-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.card-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 650;
}

.related-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.area-card,
.compact-link-card,
.blog-card {
  display: flex;
  flex-direction: column;
}

.compact-link-card {
  min-height: 100%;
}

.compact-link-card .text-link,
.blog-card .text-link {
  margin-top: auto;
}

.mini-grid {
  align-content: start;
}

.sector-focus-grid {
  margin-top: 18px;
}

.meta-line {
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 750;
}

.blog-card-fallback {
  grid-column: 1 / -1;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--brand);
  font-weight: 750;
}

.feature-matrix {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-matrix h2,
.plain-card h2,
.side-panel h2 {
  font-size: 20px;
}

.sector-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.sector-strip span {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px 14px;
  background: var(--white);
  font-weight: 700;
}

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

.process-grid article {
  border-left: 3px solid var(--brand);
  padding-left: 20px;
}

.process-grid span {
  color: var(--brand);
  font-weight: 850;
}

.voice-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.voice-list-grid span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 14px 16px;
  font-weight: 700;
}

.voice-level-card {
  border-top: 4px solid var(--brand);
}

.voice-cta-list {
  width: min(860px, 100%);
  margin: 0 auto 24px;
  padding-left: 22px;
  text-align: left;
  color: rgba(255,255,255,.92);
}

.voice-cta-list li {
  margin: 8px 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px 20px;
}

.faq-item summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
}

.cta-band {
  padding: 46px 0;
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-dark), #032f36);
}

.cta-band p {
  color: rgba(255,255,255,.82);
  max-width: 820px;
  margin: 0 auto 22px;
}

.cta-band .button {
  border-color: rgba(255,255,255,.55);
}

.conversion-band-grid {
  display: grid;
  gap: 20px;
  justify-items: center;
}

.conversion-band h2,
.conversion-band p,
.conversion-band .eyebrow {
  max-width: 860px;
  margin-inline: auto;
}

.conversion-points {
  width: min(860px, 100%);
  margin: 0;
  padding-left: 22px;
  text-align: left;
  color: rgba(255,255,255,.92);
}

.conversion-points li {
  margin: 9px 0;
}

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

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--white);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(15,143,135,.25);
  border-color: var(--accent);
}

.contact-form label span {
  color: #9f2f2f;
  font-size: 14px;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-message {
  border-radius: 6px;
  padding: 12px 14px;
  font-weight: 750;
}

.form-message.success {
  background: #e8f6f0;
  color: #155c3a;
}

.form-message.error {
  background: #fcecec;
  color: #8a2525;
}

.legal-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
}

.legal-section {
  margin-top: 26px;
}

.legal-section h2 {
  font-size: 24px;
}

.legal-section ul {
  padding-left: 20px;
}

.legal-section li {
  margin: 8px 0;
  color: var(--muted);
}

.legal-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  font-size: 15px;
}

.legal-table th,
.legal-table td {
  border: 1px solid var(--line);
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--ink);
  background: var(--soft);
}

.site-footer {
  background: #00363d;
  color: var(--white);
  padding-top: 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 34px;
}

.site-footer h2 {
  font-size: 16px;
  margin-bottom: 12px;
}

.site-footer p,
.site-footer a {
  color: rgba(255,255,255,.78);
}

.footer-list {
  flex-direction: column;
  gap: 7px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.16);
  font-size: 13px;
}

.legal-list {
  gap: 18px;
  flex-wrap: wrap;
}

.back-to-top,
.cookie-fab {
  position: fixed;
  z-index: 30;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.94);
  color: var(--brand-dark);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.chat-notice {
  position: fixed;
  left: 50%;
  bottom: 82px;
  z-index: 34;
  width: min(680px, calc(100% - 28px));
  transform: translate(-50%, 14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  border: 1px solid rgba(0, 90, 91, .15);
  border-radius: 10px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: var(--shadow);
  padding: 14px 16px;
  font-weight: 650;
}

.chat-notice.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.back-to-top {
  right: 18px;
  bottom: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-fab {
  left: 18px;
  bottom: 18px;
}

.back-to-top:hover,
.cookie-fab:hover,
.cookie-modal__close:hover {
  border-color: rgba(0, 63, 67, .25);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 28;
  padding: 14px 14px calc(14px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(10px);
  border-top: 1px solid rgba(0, 0, 0, .06);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .14);
}

.cookie-banner__text {
  font-size: .95rem;
  color: var(--ink);
}

.cookie-banner__text a {
  color: var(--brand);
  font-weight: 700;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: none;
}

.cookie-modal.is-open {
  display: block;
}

.cookie-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, .55);
}

.cookie-modal__panel {
  position: relative;
  max-width: 640px;
  width: calc(100% - 28px);
  margin: min(10vh, 72px) auto 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
  overflow: hidden;
}

.cookie-modal__header,
.cookie-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
}

.cookie-modal__header {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(0, 90, 91, .06), rgba(255, 255, 255, 0));
}

.cookie-modal__footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .55);
}

.cookie-modal__title {
  font-weight: 850;
  color: var(--ink);
}

.cookie-modal__close {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
}

.cookie-modal__body {
  padding: 16px 18px;
  color: var(--muted);
}

.cookie-toggle {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-top: 12px;
  background: #fbfdfd;
  color: var(--ink);
}

.cookie-toggle input {
  margin-top: 3px;
}

.cookie-toggle strong {
  color: var(--ink);
}

#zsiq_float,
.zsiq_float,
iframe[id*="zsiq"],
div[id*="zsiq"] {
  z-index: 2147483647 !important;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav.is-open {
    display: block;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    grid-column: 1 / -1;
    max-height: calc(100dvh - 94px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open .nav-list {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    padding: 12px;
  }

  .main-nav.is-open .nav-item-head {
    display: block;
  }

  .main-nav.is-open .nav-parent-link,
  .main-nav.is-open > .nav-list > li > a {
    display: block;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 11px 12px;
    background: var(--white);
  }

  .main-nav.is-open .nav-submenu {
    position: static;
    width: 100%;
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 12px;
  }

  .main-nav.is-open .nav-submenu-list {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .hero-grid,
  .split-feature,
  .contact-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

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

  .preview-sidebar {
    display: none;
  }

  .cards-grid.three,
  .cards-grid.four,
  .feature-matrix,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .hero-section,
  .page-hero {
    padding: 44px 0;
  }

  .section {
    padding: 42px 0;
  }

  h1 {
    font-size: 36px;
  }

  .lead {
    font-size: 17px;
  }

  .metric-grid,
  .chart-row,
    .cards-grid.two,
    .cards-grid.three,
    .cards-grid.four,
    .feature-matrix,
    .voice-list-grid,
    .process-grid,
    .footer-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-preview {
    min-height: auto;
  }

  .preview-main {
    padding: 16px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-modal__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-modal__footer .button,
  .cookie-banner__actions .button {
    width: 100%;
  }

  .cookie-fab {
    bottom: 86px;
  }

  .chat-notice {
    bottom: 136px;
  }
}
