:root {
  --navy: #071b2e;
  --navy-2: #0a2741;
  --blue: #0b4c6f;
  --teal: #00a7a5;
  --gold: #c9a24b;
  --ink: #172033;
  --muted: #64748b;
  --soft: #f6f8fb;
  --soft-2: #eef5fa;
  --line: #d9e2ec;
  --white: #ffffff;
  --danger: #b42318;
  --success: #087f5b;
  --shadow: 0 24px 70px rgba(7, 27, 46, 0.14);
  --shadow-soft: 0 16px 45px rgba(7, 27, 46, 0.09);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 52%, #ffffff 100%);
}

body.locked {
  background: radial-gradient(circle at 80% 10%, rgba(0, 167, 165, 0.25), transparent 28%), linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  min-height: 100vh;
}

img,
svg {
  max-width: 100%;
}

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

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 200;
  background: var(--teal);
  color: var(--navy);
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 900;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(217, 226, 236, 0.85);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  color: var(--navy);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 10px 28px rgba(7, 27, 46, 0.22);
  color: #ffffff;
  letter-spacing: -0.05em;
}

.brand-subtitle {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.04em;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #475569;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--navy);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 900;
}

.btn,
.button-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 13px 18px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.btn-primary {
  background: var(--teal);
  color: #00242b;
  box-shadow: 0 14px 34px rgba(0, 167, 165, 0.25);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(7, 27, 46, 0.08);
}

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

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-small {
  padding: 9px 13px;
  font-size: 13px;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 78% 12%, rgba(0, 167, 165, 0.28), transparent 31%), linear-gradient(135deg, var(--navy), #0a2741 58%, #09293e);
}

.hero-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 52px;
  align-items: center;
  padding: 76px 0;
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 22px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.hero-lead,
.page-lead {
  max-width: 740px;
  color: #d6e3f0;
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.decision-stack {
  display: grid;
  gap: 14px;
}

.decision-card {
  border-left: 6px solid var(--teal);
  border-radius: 20px;
  background: #ffffff;
  color: var(--ink);
  padding: 20px;
}

.decision-card:nth-child(2) {
  border-left-color: var(--gold);
}

.decision-card:nth-child(3) {
  border-left-color: #3aa3d8;
}

.decision-card:nth-child(4) {
  border-left-color: #28445e;
}

.decision-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
}

.decision-card p {
  margin: 0;
  color: #415166;
  line-height: 1.45;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.metric {
  padding: 16px;
  text-align: center;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
}

.metric strong {
  display: block;
  color: #ffffff;
  font-size: 28px;
}

.metric span {
  color: #c7d7e8;
  font-size: 12px;
  font-weight: 850;
}

.section {
  padding: 92px 0;
}

.section-alt {
  background: linear-gradient(180deg, #f5f9fe, #ffffff);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section h2,
.module h1 {
  margin: 10px 0 18px;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.section-dark h2 {
  color: var(--white);
}

.section-intro {
  max-width: 860px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.section-dark .section-intro {
  color: #c7d7e8;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.content-card {
  padding: 28px;
}

.content-card h3 {
  margin: 10px 0 12px;
  color: var(--navy);
  font-size: 22px;
}

.content-card p,
.content-card li {
  color: #475569;
  line-height: 1.62;
}

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

.card-number {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.value-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.flow-card {
  padding: 26px;
  border-radius: 22px;
  color: var(--white);
  background: var(--blue);
  box-shadow: var(--shadow-soft);
}

.flow-card:nth-child(2) {
  background: var(--teal);
  color: #00242b;
}

.flow-card:nth-child(3) {
  background: var(--gold);
  color: var(--navy);
}

.flow-card:nth-child(4) {
  background: var(--navy);
}

.flow-card strong {
  display: block;
  font-size: 22px;
  margin-bottom: 10px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--teal);
}

.service-card:nth-child(2)::before {
  background: var(--blue);
}

.service-card:nth-child(3)::before {
  background: var(--gold);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 13px;
  margin-top: 34px;
}

.step {
  min-height: 170px;
  padding: 20px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
}

.step span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--teal);
  color: #00242b;
  font-weight: 950;
}

.step h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 16px;
}

.step p {
  margin: 0;
  color: #53657b;
  font-size: 13.5px;
  line-height: 1.45;
}

.pipeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.pipe {
  min-width: 162px;
  padding: 18px 16px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.pipe b {
  display: block;
  color: var(--navy);
}

.pipe small {
  color: var(--muted);
}

.pipe-arrow {
  display: grid;
  place-items: center;
  color: var(--teal);
  font-size: 24px;
  font-weight: 950;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 26px;
  align-items: start;
}

.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.price-table th {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.price-table td {
  padding: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
  font-weight: 800;
}

.price-table td:first-child {
  border-left: 1px solid var(--line);
  border-radius: 14px 0 0 14px;
}

.price-table td:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 14px 14px 0;
  color: var(--navy);
  text-align: right;
}

.form-card {
  padding: 30px;
}

.form-card.dark {
  background: var(--navy);
  color: var(--white);
}

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

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

label,
.form-label {
  display: block;
  margin: 12px 0 7px;
  color: #334155;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dark label,
.dark .form-label {
  color: #c7d7e8;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  color: var(--ink);
  outline: none;
}

.dark input,
.dark select,
.dark textarea {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.dark option {
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 167, 165, 0.14);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fafc;
  color: #334155;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.checkbox-item input {
  width: auto;
  min-height: auto;
  margin-top: 3px;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  color: #475569;
  font-size: 13px;
  line-height: 1.4;
}

.consent-row input {
  width: auto;
  min-height: auto;
  margin-top: 2px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.quote-result {
  margin-top: 22px;
  border-radius: 20px;
  background: #ffffff;
  color: var(--navy);
  padding: 22px;
}

.quote-result small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-result strong {
  display: block;
  margin-top: 4px;
  font-size: 38px;
  letter-spacing: -0.04em;
}

.quote-lines {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #475569;
  font-size: 14px;
}

.quote-lines div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 5px 0;
}

.message {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.message.show {
  display: block;
}

.message.success {
  background: rgba(8, 127, 91, 0.1);
  color: var(--success);
  border: 1px solid rgba(8, 127, 91, 0.25);
}

.message.error {
  background: rgba(180, 35, 24, 0.08);
  color: var(--danger);
  border: 1px solid rgba(180, 35, 24, 0.22);
}

.cta {
  background: radial-gradient(circle at 20% 20%, rgba(201, 162, 75, 0.28), transparent 28%), linear-gradient(135deg, var(--navy), #0a2741);
  color: var(--white);
}

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

.cta h2 {
  color: var(--white);
}

.cta p {
  color: #d6e3f0;
}

.page-hero {
  padding: 76px 0 54px;
  color: var(--white);
  background: radial-gradient(circle at 78% 12%, rgba(0, 167, 165, 0.28), transparent 31%), linear-gradient(135deg, var(--navy), #0a2741 58%, #09293e);
}

.module {
  padding: 58px 0 92px;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.login-card {
  width: min(460px, 100%);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  color: var(--ink);
}

.login-card .brand {
  margin-bottom: 26px;
}

.login-card h1 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 34px;
  letter-spacing: -0.05em;
}

.login-note {
  color: var(--muted);
  line-height: 1.55;
}

.private-header {
  background: var(--navy);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.private-header .brand,
.private-header .brand-subtitle,
.private-header .nav-links {
  color: var(--white);
}

.private-header .brand-mark {
  background: rgba(255, 255, 255, 0.1);
}

.private-header .nav-links a {
  color: #d6e3f0;
}

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

.demo-card {
  padding: 28px;
}

.demo-card h3 {
  color: var(--navy);
  margin: 6px 0 12px;
}

.demo-card p,
.demo-card li {
  color: #475569;
  line-height: 1.55;
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.demo-path {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.status-pill {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(0, 167, 165, 0.1);
  color: #036e72;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  align-items: start;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.kpi-card {
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.kpi-card strong {
  display: block;
  color: var(--navy);
  font-size: 32px;
}

.records {
  display: grid;
  gap: 12px;
}

.record {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
}

.record strong {
  display: block;
  color: var(--navy);
}

.record small {
  color: var(--muted);
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: #64748b;
  font-size: 14px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-grid strong {
  color: var(--navy);
}

.not-found {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
}

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

  .grid-3,
  .grid-4,
  .demo-grid,
  .value-flow {
    grid-template-columns: 1fr 1fr;
  }

  .method-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 22px;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
  }

  .private-header .nav-links {
    background: var(--navy);
  }

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

  .nav-links a {
    padding: 12px 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .hero-grid {
    min-height: auto;
    padding: 60px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .section {
    padding: 66px 0;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .demo-grid,
  .value-flow,
  .method-grid,
  .form-grid,
  .checkbox-grid,
  .metrics-row,
  .kpi-row {
    grid-template-columns: 1fr;
  }

  .pipe-arrow {
    display: none;
  }

  .btn,
  .button-link {
    width: 100%;
  }

  .price-table {
    font-size: 14px;
  }
}

/* Tabbed public site */
body.tabbed-site {
  height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 27, 46, 0.94), rgba(8, 50, 74, 0.9)),
    url("/assets/logo.svg") center / 34rem no-repeat;
  color: var(--white);
}

.tab-header,
.tab-footer {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 226, 236, 0.72);
  backdrop-filter: blur(18px);
}

.tab-header {
  top: 0;
}

.tab-footer {
  bottom: 0;
  grid-template-columns: 1fr auto;
  color: #516174;
  font-size: 13px;
  border-top: 1px solid rgba(217, 226, 236, 0.72);
  border-bottom: 0;
}

.compact-brand {
  min-width: 230px;
}

.tab-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.tab-nav::-webkit-scrollbar {
  display: none;
}

.tab-button,
.access-link {
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #526173;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

.tab-button:hover,
.tab-button:focus,
.tab-button.active,
.access-link:hover,
.access-link:focus {
  background: var(--navy);
  color: var(--white);
}

.access-link {
  display: inline-grid;
  place-items: center;
  border-color: var(--line);
  background: #ffffff;
}

.tab-shell {
  height: 100vh;
  padding: 86px 24px 58px;
}

.tab-panel {
  display: none;
  height: 100%;
  max-width: 1320px;
  margin: 0 auto;
  overflow: auto;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 16%, rgba(0, 167, 165, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.tab-panel.active {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: 28px;
  align-items: center;
  padding: 30px;
}

.panel-copy h1,
.panel-copy h2 {
  margin: 10px 0 16px;
  color: var(--white);
  font-size: clamp(34px, 5.4vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.panel-copy h2 {
  font-size: clamp(30px, 4vw, 54px);
}

.panel-copy p {
  max-width: 720px;
  color: #d7e4ef;
  font-size: 18px;
  line-height: 1.55;
}

.panel-copy.narrow {
  align-self: start;
}

.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.decision-board,
.insight-grid,
.solution-grid,
.pricing-strip,
.demo-slots {
  display: grid;
  gap: 14px;
}

.decision-board {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.decision-board article,
.insight-grid article,
.solution-grid article,
.pricing-strip article,
.demo-slots article {
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.13);
}

.decision-board span,
.pricing-strip small {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.decision-board strong,
.solution-grid b,
.demo-slots strong {
  display: block;
  margin: 8px 0;
  color: var(--navy);
  font-size: 22px;
}

.decision-board p,
.insight-grid p,
.solution-grid p {
  margin: 0;
  color: #53657b;
  line-height: 1.48;
}

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

.insight-grid article h3 {
  margin: 0 0 10px;
  color: var(--navy);
}

.solution-grid {
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  align-self: stretch;
}

.solution-grid article {
  min-height: 210px;
}

.timeline-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-self: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-tabs li {
  min-height: 220px;
  padding: 20px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
}

.timeline-tabs span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--teal);
  color: #00242b;
  font-weight: 950;
}

.timeline-tabs strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
}

.timeline-tabs p {
  color: #53657b;
  line-height: 1.48;
}

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

.pricing-strip strong {
  display: block;
  margin: 12px 0 8px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 46px);
  letter-spacing: -0.04em;
}

.pricing-strip span,
.demo-slots span {
  color: #53657b;
  line-height: 1.45;
}

.demo-slots {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-layout {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
}

.mail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.mail-list a {
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: 900;
}

.tab-contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 22px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
}

.tab-contact-card label {
  margin: 0;
}

.tab-contact-card .wide {
  grid-column: 1 / -1;
}

.tab-contact-card textarea {
  min-height: 92px;
}

@media (max-width: 1100px) {
  body.tabbed-site {
    overflow: auto;
  }

  .tab-header,
  .tab-footer {
    position: static;
    grid-template-columns: 1fr;
  }

  .tab-shell {
    height: auto;
    min-height: 100vh;
    padding: 18px;
  }

  .tab-panel,
  .tab-panel.active {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .solution-grid,
  .timeline-tabs,
  .pricing-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .decision-board,
  .insight-grid,
  .solution-grid,
  .timeline-tabs,
  .pricing-strip,
  .demo-slots,
  .tab-contact-card {
    grid-template-columns: 1fr;
  }

  .compact-brand {
    min-width: 0;
  }

  .tab-panel.active {
    padding: 20px;
  }
}
