@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --font-sans: "Inter", "Segoe UI", Arial, sans-serif;
  --bg: #f6f8fc;
  --surface: #ffffff;
  --surface-soft: #f0f5fa;
  --ink: #1e2f41;
  --text: #384b60;
  --muted: #5f7285;
  --line: #d8e2ec;
  --teal: #0e9488;
  --teal-deep: #0a7f76;
  --teal-soft: #e3f3f1;
  --mint: #cfeae7;
  --dark: #0f1b33;
  --dark-text: #e7f0ff;
  --shadow-soft: 0 10px 24px rgba(30, 47, 65, 0.08);
  --shadow-card: 0 8px 18px rgba(30, 47, 65, 0.07);
  --max: 1240px;
  --space-1: 10px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --header-height: 76px;
  --footer-fixed-height: 84px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100dvh;
  padding-bottom: var(--footer-fixed-height);
  background:
    radial-gradient(circle at 86% 4%, rgba(14, 148, 136, 0.08), transparent 32%),
    radial-gradient(circle at 6% 26%, rgba(66, 110, 180, 0.07), transparent 28%),
    var(--bg);
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.34s ease, transform 0.38s ease;
}

body.page-ready {
  opacity: 1;
  transform: translateX(0);
}

body.page-enter-left {
  opacity: 0;
  --page-enter-offset: -34px;
  transform: translateX(var(--page-enter-offset));
}

body.page-enter-right {
  opacity: 0;
  --page-enter-offset: 34px;
  transform: translateX(var(--page-enter-offset));
}

body.page-leaving,
body.page-leaving-left,
body.page-leaving-right {
  opacity: 0;
}

body.page-leaving-left {
  transform: translateX(-34px);
}

body.page-leaving-right {
  transform: translateX(34px);
}

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

.page {
  width: min(100% - 56px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.22s ease, border-color 0.22s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-soft);
  border-bottom-color: #cdd9e4;
}

.navbar-shell {
  display: flex;
  align-items: center;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}

.brand img {
  display: block;
  width: auto;
  height: 46px;
  max-width: min(42vw, 320px);
}

.navbar-toggler {
  border: 1px solid #d3e0eb;
  border-radius: 8px;
  padding: 5px 8px;
  margin-left: auto;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(13, 139, 132, 0.2);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833,52,74,0.88%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.topnav {
  gap: 2px;
  width: 100%;
  justify-content: flex-end;
}

.topnav .nav-link {
  border: 1px solid transparent;
  color: #2e3f53;
  border-radius: 10px;
  padding: 9px 11px;
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  background: transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  position: relative;
}

.topnav .nav-link::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 5px;
  height: 2px;
  background: #1ba9a0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
  border-radius: 999px;
}

.topnav .nav-link:hover,
.topnav .nav-link:focus-visible {
  background: #f0f6fb;
  color: #1f2f42;
  border-color: #e0e8f1;
}

.topnav .nav-link:hover::after,
.topnav .nav-link:focus-visible::after,
.topnav .nav-link.active::after {
  transform: scaleX(1);
}

.topnav .nav-link.active {
  background: var(--teal-soft);
  color: #0b7c73;
  border-color: #bee6e1;
  font-weight: 600;
}

.topnav .nav-link.active::after {
  transform: scaleX(1);
  background: #0e9488;
}

.btn-brand {
  margin-left: 10px;
  padding: 8px 14px;
  background: var(--teal);
  border: 1px solid var(--teal);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
}

.btn-brand:hover,
.btn-brand:focus-visible {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: #fff;
}

main.page {
  padding: var(--space-4) 0 var(--space-5);
}

h1,
h2,
h3 {
  color: var(--ink);
  margin: 0 0 var(--space-2);
  line-height: 1.06;
  font-family: var(--font-sans);
  letter-spacing: -0.025em;
  font-weight: 800;
}

h1 {
  font-size: clamp(2.6rem, 4.8vw, 5.05rem);
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.45rem);
}

h3 {
  font-size: clamp(1.32rem, 2.2vw, 2.08rem);
}

p,
li {
  font-size: 1.04rem;
  line-height: 1.72;
  color: var(--text);
}

.kicker {
  display: inline-block;
  color: #2f6577;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: #e8f4f8;
  border: 1px solid #cfe2ec;
  border-radius: 999px;
  padding: 7px 14px;
  margin-bottom: var(--space-2);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-4);
  align-items: stretch;
}

.hero-copy {
  padding: var(--space-2) 0;
}

.hero-media {
  border-radius: 8px;
  min-height: 450px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  background:
    linear-gradient(#ffffff, #ffffff) 8% 10% / 34% 30% no-repeat,
    linear-gradient(#ffffff, #ffffff) 46% 10% / 46% 20% no-repeat,
    linear-gradient(#ffffff, #ffffff) 46% 34% / 46% 46% no-repeat,
    linear-gradient(#ffffff, #ffffff) 8% 45% / 34% 35% no-repeat,
    linear-gradient(165deg, #eaf2fa 0%, #dee9f6 55%, #edf5fb 100%);
  position: relative;
  overflow: hidden;
}

.hero-media::before {
  content: "";
  position: absolute;
  left: 9%;
  bottom: 14%;
  width: 36%;
  height: 30%;
  border-radius: 8px;
  background:
    linear-gradient(to top, #20b6aa 0 34%, transparent 34% 100%) 0 100% / 18% 100% no-repeat,
    linear-gradient(to top, #20b6aa 0 52%, transparent 52% 100%) 24% 100% / 18% 100% no-repeat,
    linear-gradient(to top, #20b6aa 0 72%, transparent 72% 100%) 48% 100% / 18% 100% no-repeat,
    linear-gradient(to top, #20b6aa 0 61%, transparent 61% 100%) 72% 100% / 18% 100% no-repeat,
    linear-gradient(180deg, #f6fbff, #ecf4fb);
}

.hero-media::after {
  content: "";
  position: absolute;
  right: 11%;
  top: 17%;
  width: 32%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #f8fcff 57%, transparent 58%),
    conic-gradient(#20b6aa 0 36%, #8bcad7 36% 62%, #d5e4f2 62% 100%);
  box-shadow: inset 0 0 0 1px rgba(31, 63, 97, 0.08);
}

.infographic-surface {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-content: stretch;
  justify-content: flex-start;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 252, 255, 0.96)),
    linear-gradient(165deg, #eaf2fa 0%, #dee9f6 55%, #edf5fb 100%);
}

.hero-media.infographic-surface {
  min-height: 450px;
}

.img-box.infographic-surface {
  min-height: 430px;
}

.infographic-surface::before,
.infographic-surface::after {
  display: none;
}

.info-chip {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid #c6dceb;
  background: #eef6fb;
  color: #2a536f;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-title {
  margin: 0;
  font-size: clamp(1.18rem, 2vw, 1.56rem);
  line-height: 1.18;
  color: #20364f;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.info-card {
  border: 1px solid #cfe0ec;
  border-radius: 10px;
  padding: 11px 12px 10px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(30, 47, 65, 0.06);
  min-height: 94px;
}

.info-card strong {
  display: block;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  line-height: 1;
  color: #0e9488;
  letter-spacing: -0.02em;
}

.info-card span {
  display: block;
  margin-top: 6px;
  color: #3f566f;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.info-bars {
  display: grid;
  gap: 8px;
}

.info-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
}

.info-row p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: #314b66;
  white-space: nowrap;
}

.info-track {
  position: relative;
  height: 9px;
  border-radius: 999px;
  background: #cfe8ea;
  border: 1px solid #b4d8d8;
  overflow: hidden;
}

.info-track span {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--value, 50%);
  border-radius: inherit;
  background: linear-gradient(90deg, #1fb5a8, #178f95);
}

.info-row em {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 800;
  color: #20374f;
  min-width: 0;
  max-width: 130px;
  line-height: 1.28;
  text-align: right;
}

.hero-media--services {
  background:
    linear-gradient(#ffffff, #ffffff) 8% 10% / 34% 30% no-repeat,
    linear-gradient(#ffffff, #ffffff) 46% 10% / 46% 20% no-repeat,
    linear-gradient(#ffffff, #ffffff) 46% 34% / 46% 46% no-repeat,
    linear-gradient(#ffffff, #ffffff) 8% 45% / 34% 35% no-repeat,
    linear-gradient(165deg, #e8f5f3 0%, #d9eee9 55%, #e9f8f4 100%);
}

.hero-media--results {
  background:
    linear-gradient(#ffffff, #ffffff) 8% 10% / 34% 30% no-repeat,
    linear-gradient(#ffffff, #ffffff) 46% 10% / 46% 20% no-repeat,
    linear-gradient(#ffffff, #ffffff) 46% 34% / 46% 46% no-repeat,
    linear-gradient(#ffffff, #ffffff) 8% 45% / 34% 35% no-repeat,
    linear-gradient(165deg, #eef0fa 0%, #e1e5f6 55%, #f1f4fc 100%);
}

.hero-media--case {
  background:
    linear-gradient(#ffffff, #ffffff) 8% 10% / 34% 30% no-repeat,
    linear-gradient(#ffffff, #ffffff) 46% 10% / 46% 20% no-repeat,
    linear-gradient(#ffffff, #ffffff) 46% 34% / 46% 46% no-repeat,
    linear-gradient(#ffffff, #ffffff) 8% 45% / 34% 35% no-repeat,
    linear-gradient(165deg, #f0ecfa 0%, #e6def8 55%, #f3effc 100%);
}

.hero-media--contact {
  background:
    linear-gradient(#ffffff, #ffffff) 8% 10% / 34% 30% no-repeat,
    linear-gradient(#ffffff, #ffffff) 46% 10% / 46% 20% no-repeat,
    linear-gradient(#ffffff, #ffffff) 46% 34% / 46% 46% no-repeat,
    linear-gradient(#ffffff, #ffffff) 8% 45% / 34% 35% no-repeat,
    linear-gradient(165deg, #edf6f8 0%, #deedf2 55%, #f2f9fc 100%);
}

.img-box {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(#ffffff, #ffffff) 8% 10% / 84% 18% no-repeat,
    linear-gradient(#ffffff, #ffffff) 8% 34% / 40% 50% no-repeat,
    linear-gradient(#ffffff, #ffffff) 52% 34% / 40% 50% no-repeat,
    linear-gradient(165deg, #eaf2fa 0%, #dee9f6 55%, #edf5fb 100%);
  position: relative;
  overflow: hidden;
}

.img-box::before {
  content: "";
  position: absolute;
  left: 12%;
  bottom: 18%;
  width: 31%;
  height: 20%;
  border-radius: 8px;
  background:
    linear-gradient(to top, #20b6aa 0 44%, transparent 44% 100%) 0 100% / 20% 100% no-repeat,
    linear-gradient(to top, #20b6aa 0 68%, transparent 68% 100%) 26% 100% / 20% 100% no-repeat,
    linear-gradient(to top, #20b6aa 0 56%, transparent 56% 100%) 52% 100% / 20% 100% no-repeat,
    linear-gradient(to top, #20b6aa 0 82%, transparent 82% 100%) 78% 100% / 20% 100% no-repeat;
}

.img-box::after {
  content: "";
  position: absolute;
  right: 11%;
  top: 38%;
  width: 30%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #f7fcff 57%, transparent 58%),
    conic-gradient(#20b6aa 0 42%, #89c8d6 42% 69%, #d6e6f2 69% 100%);
  box-shadow: inset 0 0 0 1px rgba(31, 63, 97, 0.08);
}

.img-box--framework {
  background:
    linear-gradient(#ffffff, #ffffff) 8% 10% / 84% 18% no-repeat,
    linear-gradient(#ffffff, #ffffff) 8% 34% / 40% 50% no-repeat,
    linear-gradient(#ffffff, #ffffff) 52% 34% / 40% 50% no-repeat,
    linear-gradient(165deg, #e9f6f4 0%, #ddeee9 55%, #ecf8f5 100%);
}

.img-box--contact {
  background:
    linear-gradient(#ffffff, #ffffff) 8% 10% / 84% 18% no-repeat,
    linear-gradient(#ffffff, #ffffff) 8% 34% / 40% 50% no-repeat,
    linear-gradient(#ffffff, #ffffff) 52% 34% / 40% 50% no-repeat,
    linear-gradient(165deg, #edf6f8 0%, #deedf2 55%, #f2f9fc 100%);
}

.home-hero {
  margin: 0 calc(50% - 50vw);
  padding: 82px 0 58px;
  border-top: 1px solid #1e2938;
  border-bottom: 1px solid #1b2635;
  background:
    radial-gradient(circle at 68% 38%, rgba(14, 148, 136, 0.2), rgba(6, 10, 16, 0) 44%),
    radial-gradient(circle at 20% 110%, rgba(98, 80, 255, 0.18), rgba(6, 10, 16, 0) 45%),
    linear-gradient(120deg, #04070d 0%, #080d15 48%, #0b111b 100%);
  position: relative;
  overflow: hidden;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(189, 204, 225, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(189, 204, 225, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 45% 40%, rgba(0, 0, 0, 0.4), transparent 86%);
}

.home-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.home-hero-pro {
  color: #ecf2ff;
}

.home-hero-top {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
  gap: 54px;
  align-items: end;
}

.hero-kicker {
  margin: 0 0 18px;
  color: #9eb1c9;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-kicker-highlight {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(54, 205, 192, 0.42);
  background: linear-gradient(180deg, rgba(24, 60, 86, 0.68), rgba(12, 34, 54, 0.68));
  color: #bdf7ef;
  box-shadow: inset 0 0 0 1px rgba(120, 224, 215, 0.1), 0 0 18px rgba(26, 187, 176, 0.2);
}

.home-hero-main h1 {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: clamp(3rem, 6vw, 6.35rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #f4f7ff;
  text-transform: uppercase;
}

.home-hero-main h1 span {
  color: #20b6aa;
}

.home-hero-panel {
  border: 1px solid rgba(207, 221, 240, 0.2);
  border-radius: 12px;
  padding: 28px 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(2px);
}

.panel-line {
  display: block;
  width: 58px;
  height: 4px;
  border-radius: 999px;
  background: #20b6aa;
  margin-bottom: 18px;
}

.home-hero-panel h2 {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  line-height: 1.2;
  font-weight: 700;
  color: #f4f8ff;
}

.home-hero-panel p {
  margin: 16px 0 0;
  color: #c3cfdf;
  font-size: 1.1rem;
  line-height: 1.65;
}

.panel-link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f4f8ff;
  font-weight: 700;
  font-size: 1.05rem;
}

.panel-link::after {
  content: ">";
  color: #20b6aa;
  font-size: 1.35rem;
  line-height: 1;
}

.home-hero-actions {
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.home-hero-actions .btn {
  min-width: 260px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 1rem;
  border-radius: 10px;
  font-weight: 700;
}

.home-hero-actions .btn.fill {
  border: 1px solid #0e9488;
  background: #0e9488;
}

.home-hero-actions .btn:not(.fill) {
  border: 1px solid #8f9db0;
  color: #dce6f7;
  background: rgba(6, 10, 16, 0.22);
}

.home-kpis {
  margin: 54px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 100%;
}

.home-kpis article {
  text-align: left;
  border: 1px solid rgba(205, 220, 239, 0.2);
  border-radius: 12px;
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.03);
}

.home-kpis strong {
  display: block;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1;
  color: #20b6aa;
  letter-spacing: -0.02em;
}

.home-kpis span {
  display: block;
  margin-top: 10px;
  font-size: 0.95rem;
  color: #b5c3d7;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-kpis .kpi-note {
  margin: 8px 0 10px;
  color: #8fa2ba;
  font-size: 0.86rem;
  line-height: 1.35;
}

.home-kpi-line {
  position: relative;
  height: 9px;
  border-radius: 999px;
  background: rgba(197, 218, 240, 0.26);
  border: 1px solid rgba(173, 196, 220, 0.34);
  overflow: hidden;
}

.home-kpi-line span {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--value, 50%);
  background: linear-gradient(90deg, #27c0b4, #189ba2);
}

[data-animate-bars] .home-kpi-line span,
[data-animate-bars] .info-track span,
[data-animate-bars] .impact-track span,
[data-animate-bars] .benchmark-track span,
[data-animate-bars] .bar .fill {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-animate-bars].is-visible .home-kpi-line span,
[data-animate-bars].is-visible .info-track span,
[data-animate-bars].is-visible .impact-track span,
[data-animate-bars].is-visible .benchmark-track span,
[data-animate-bars].is-visible .bar .fill {
  transform: scaleX(1);
}

.section {
  margin-top: var(--space-4);
}

.section-lg {
  margin-top: var(--space-5);
}

.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 2px;
}

.section-title span {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.lead {
  font-size: 1.11rem;
  color: #4b5f76;
  max-width: 80ch;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--space-2);
}

.btn {
  border: 1px solid #b7c7d8;
  border-radius: 10px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: #223243;
  background: #fff;
  cursor: pointer;
}

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

.btn.ghost {
  background: transparent;
}

.btn.fill:hover,
.btn.fill:focus-visible {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
}

.btn.call-highlight {
  box-shadow: 0 10px 24px rgba(16, 117, 127, 0.24);
  border-width: 2px;
}

.btn.call-highlight:hover,
.btn.call-highlight:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(16, 117, 127, 0.3);
}

.btn:hover,
.btn:focus-visible {
  border-color: #8ea6be;
}

.rule {
  border-top: 2px solid #afbac6;
  margin: var(--space-3) 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  align-items: stretch;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
  align-items: stretch;
}

.card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  background: #fff;
  box-shadow: var(--shadow-card);
  height: 100%;
}

.grid-2 > article,
.grid-3 > article {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(30, 47, 65, 0.05);
  height: 100%;
}

.grid-2 > article.card,
.grid-3 > article.card {
  background: rgba(255, 255, 255, 0.9);
}

.card.left,
.grid-2 > article.left,
.grid-3 > article.left {
  border-left: 4px solid #20b0a4;
}

.card.tint {
  background: #e7f5f3;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}

.audience-list span {
  background: #e5f4f2;
  color: #0c6a6f;
  border: 1px solid #b4deda;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.88rem;
  font-weight: 700;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.metric-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.metric-card strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #0e9488;
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.metric-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.big-number {
  text-align: center;
  font-size: clamp(3rem, 8vw, 5.1rem);
  font-weight: 800;
  color: #2e353f;
}

.metrics-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.metric {
  text-align: center;
}

.metric .num {
  font-size: clamp(2.2rem, 3.9vw, 3.8rem);
  font-weight: 800;
  color: #2f343d;
}

.metric .label {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}

.bars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.bar {
  height: 16px;
  background: #cce9e7;
  border-radius: 99px;
  overflow: hidden;
  margin: 8px 0 10px;
}

.bar .fill {
  height: 100%;
  background: linear-gradient(90deg, #21aca7, #1f9aa2);
  border-radius: 99px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.impact-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.impact-ring {
  --ring-size: 150px;
  width: var(--ring-size);
  height: var(--ring-size);
  margin: 0 auto 14px;
  border-radius: 50%;
  background: conic-gradient(#1fb5a8 var(--value, 45%), #d2ecea 0);
  display: grid;
  place-items: center;
  position: relative;
}

.impact-ring::before {
  content: "";
  position: absolute;
  width: calc(var(--ring-size) - 30px);
  height: calc(var(--ring-size) - 30px);
  border-radius: 50%;
  background: #fff;
  border: 1px solid #d6e4ef;
}

.impact-ring span {
  position: relative;
  z-index: 1;
  font-size: 1.55rem;
  font-weight: 800;
  color: #1d364f;
  letter-spacing: -0.02em;
}

.impact-card h3 {
  margin-bottom: 8px;
}

.impact-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
}

.impact-compare {
  margin-top: 22px;
  border: 1px solid #cfe0ec;
  border-radius: 12px;
  background: #fff;
  padding: 16px;
}

.impact-row + .impact-row {
  margin-top: 14px;
}

.impact-row p {
  margin: 0 0 7px;
  color: #2d4762;
  font-size: 0.9rem;
  font-weight: 600;
}

.impact-track {
  height: 11px;
  border-radius: 999px;
  background: #d8eceb;
  border: 1px solid #c2dbdb;
  overflow: hidden;
  position: relative;
}

.impact-track span {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--value, 50%);
  background: linear-gradient(90deg, #24b9ae, #1d98a4);
}

.impact-row em {
  margin-top: 5px;
  display: block;
  font-style: normal;
  text-align: right;
  font-weight: 800;
  color: #1e2f41;
  font-size: 0.92rem;
}

.framework-board {
  margin-top: 18px;
  border: 1px solid #d1dce7;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  padding: 18px;
  box-shadow: 0 12px 28px rgba(18, 36, 62, 0.08);
}

.framework-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  position: relative;
}

.framework-flow::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 38px;
  height: 2px;
  background: linear-gradient(90deg, #b7d8d8, #20b0a4 35%, #b7d8d8 70%, #b7d8d8 100%);
  z-index: 0;
}

.framework-phase {
  border: 1px solid #d2dde8;
  border-radius: 14px;
  padding: 15px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 8px 22px rgba(18, 36, 62, 0.06);
  position: relative;
  z-index: 1;
}

.phase-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0e9488, #27b8ad);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.phase-title {
  margin: 0 0 8px;
  font-size: 1.02rem;
  line-height: 1.24;
  color: #1f3248;
}

.phase-kpi {
  margin-top: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0f766d;
}

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

.pillar-card {
  border: 1px solid #d3e0ea;
  border-radius: 12px;
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.pillar-card h3 {
  margin-bottom: 8px;
}

.pillar-meta {
  margin-top: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #0f7f77;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gov-operating-model {
  margin-top: 24px;
  border: 1px solid #cfdeea;
  border-radius: 12px;
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow-card);
}

.gov-layers {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.gov-layer {
  border-radius: 10px;
  border: 1px solid #c8dae8;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 12px;
  align-items: center;
  background: #f8fbfd;
}

.gov-layer strong {
  color: #21364e;
  font-size: 0.95rem;
}

.gov-layer span {
  color: #44607b;
  font-size: 0.95rem;
}

.engagement-roadmap {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  position: relative;
}

.engagement-roadmap::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 34px;
  height: 2px;
  background: linear-gradient(90deg, #b8d9d8, #24b8ac, #b8d9d8);
}

.roadmap-step {
  border: 1px solid #ccddea;
  border-radius: 12px;
  background: #fff;
  padding: 14px;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 16px rgba(24, 44, 76, 0.06);
}

.roadmap-step .step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0e9488, #25b9ad);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.roadmap-step h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.roadmap-step p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.roadmap-step .step-meta {
  display: block;
  margin-top: 10px;
  color: #0f7f77;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.about-principles article {
  border: 1px solid #d1e0ea;
  border-radius: 12px;
  padding: 16px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.contact-shell {
  margin-top: 12px;
  border: 1px solid #cbdce8;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  box-shadow: var(--shadow-card);
  padding: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 18px;
}

.contact-panel {
  border: 1px solid #d3e0ea;
  border-radius: 12px;
  background: #fff;
  padding: 18px;
}

.contact-panel h3 {
  margin-bottom: 10px;
}

.captcha-wrap {
  margin-top: 14px;
  border: 1px solid #bfd5e3;
  border-radius: 10px;
  padding: 12px;
  background: #f4f9fc;
}

.captcha-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
}

.captcha-question {
  margin: 0 0 8px;
  color: #2c4762;
  font-size: 0.9rem;
  font-weight: 700;
}

.captcha-refresh {
  border: 1px solid #aac5d7;
  border-radius: 8px;
  padding: 9px 11px;
  background: #fff;
  color: #24425e;
  font-size: 0.85rem;
  font-weight: 700;
}

.contact-note {
  margin-top: 10px;
  font-size: 0.86rem;
  color: #5b7188;
}

.schedule-call-panel {
  margin-bottom: 14px;
}

.schedule-call-panel > p {
  margin: 0 0 10px;
  color: #4d657d;
}

.calendar-timezone {
  display: inline-flex;
  align-items: center;
  margin: 0 0 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #c6dceb;
  background: #f4fbff;
  color: #1f4f67;
  font-weight: 700;
}

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

[data-calendar-status],
[data-calendar-embed-status],
[data-payment-booking-status] {
  min-height: 1.4em;
}

.calendar-embed-wrap {
  margin-top: 10px;
  border: 1px solid #c7d9e7;
  border-radius: 12px;
  background: #f8fcff;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.calendar-embed-frame {
  width: 100%;
  min-height: 540px;
  border: 0;
  display: block;
  background: #ffffff;
}

.page-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 44px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d8e2ec;
}

.page-pills a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  padding: 0 0 10px;
  color: #5c7088;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: transparent;
  position: relative;
  transition: color 0.2s ease;
}

.page-pills a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: #1aa39c;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.page-pills a:hover,
.page-pills a:focus-visible {
  color: #273e58;
}

.page-pills a:hover::after,
.page-pills a:focus-visible::after {
  transform: scaleX(0.6);
}

.page-pills a.active {
  color: #12263f;
}

.page-pills a.active::after {
  transform: scaleX(1);
}

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

.section-block h2 {
  margin-bottom: 16px;
}

.section-block > h1 {
  max-width: 20ch;
  margin-bottom: 14px;
}

.section-block > .lead {
  max-width: 92ch;
  color: #506478;
}

.inner-hero {
  margin-top: 10px;
  border: 1px solid #d1deeb;
  border-radius: 18px;
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  gap: 26px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(22, 175, 165, 0.2), transparent 36%),
    radial-gradient(circle at 4% 94%, rgba(88, 120, 200, 0.15), transparent 40%),
    linear-gradient(140deg, #eef4fb 0%, #e5effa 55%, #f2f7fd 100%);
  box-shadow: 0 18px 34px rgba(18, 36, 62, 0.08);
}

.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(154, 178, 204, 0.18) 1px, transparent 1px), linear-gradient(90deg, rgba(154, 178, 204, 0.18) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 44% 38%, rgba(0, 0, 0, 0.42), transparent 84%);
}

.inner-hero-main,
.inner-hero-panel {
  position: relative;
  z-index: 1;
}

.inner-hero-main .kicker {
  margin-bottom: 14px;
}

.inner-hero-title {
  margin: 0;
  color: #102a4a;
  font-size: clamp(2rem, 4.1vw, 3.55rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.inner-hero-title span {
  color: #0f9990;
}

.inner-hero-main .lead {
  margin-top: 16px;
  max-width: 60ch;
}

.inner-hero-main .btn-row {
  margin-top: 22px;
}

.inner-hero-panel {
  border: 1px solid rgba(168, 194, 219, 0.66);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 250, 255, 0.92));
  padding: 16px;
}

.inner-hero-panel-title {
  margin: 0 0 12px;
  font-size: 0.8rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #365778;
  font-weight: 700;
}

.inner-hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.inner-hero-kpis article {
  border: 1px solid #d2e1ee;
  border-radius: 10px;
  background: #f8fcff;
  padding: 10px;
}

.inner-hero-kpis strong {
  display: block;
  color: #0e9488;
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.inner-hero-kpis span {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4e6680;
}

.inner-hero-bars {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.inner-hero-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  align-items: center;
}

.inner-hero-bar p,
.inner-hero-bar em {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.2;
  color: #3e5874;
}

.inner-hero-bar em {
  font-style: normal;
  font-weight: 700;
  color: #193654;
}

.inner-hero-bar .track {
  grid-column: 1 / -1;
  height: 8px;
  border: 1px solid #bfd3e6;
  border-radius: 999px;
  background: #e5eff8;
  overflow: hidden;
}

.inner-hero-bar .track span {
  display: block;
  height: 100%;
  width: var(--value, 50%);
  background: linear-gradient(90deg, #27c0b4, #189ba2);
}

.inner-hero[data-animate-bars] .inner-hero-bar .track span {
  width: 0;
  transition: width 1s cubic-bezier(0.2, 0.72, 0.2, 1);
}

.inner-hero[data-animate-bars].is-visible .inner-hero-bar .track span {
  width: var(--value, 50%);
}

.section-lg {
  margin-top: 74px;
}

.split-content {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: start;
}

.split-content.align-center {
  align-items: center;
}

.illustration-panel {
  min-height: 360px;
  border: 1px solid #d1deea;
  border-radius: 12px;
  background:
    radial-gradient(circle at 25% 16%, rgba(10, 148, 136, 0.11), transparent 36%),
    radial-gradient(circle at 75% 72%, rgba(30, 70, 140, 0.12), transparent 34%),
    linear-gradient(160deg, #edf3f8 0%, #e7eef7 55%, #f1f6fb 100%);
  box-shadow: 0 8px 18px rgba(30, 47, 65, 0.07);
  position: relative;
  overflow: hidden;
}

.illustration-panel::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 14%;
  bottom: 12%;
  border-radius: 10px;
  border: 1px solid rgba(47, 86, 125, 0.18);
  background:
    linear-gradient(#ffffff, #ffffff) 8% 16% / 38% 22% no-repeat,
    linear-gradient(#ffffff, #ffffff) 50% 16% / 40% 18% no-repeat,
    linear-gradient(#ffffff, #ffffff) 50% 40% / 40% 42% no-repeat,
    linear-gradient(#ffffff, #ffffff) 8% 46% / 36% 34% no-repeat,
    linear-gradient(165deg, #e7f0f8 0%, #dce8f3 52%, #ecf3fb 100%);
}

.begin-infographic {
  min-height: 410px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #cedae6;
  border-radius: 14px;
  background:
    radial-gradient(circle at 80% 8%, rgba(16, 153, 143, 0.12), transparent 34%),
    radial-gradient(circle at 18% 85%, rgba(25, 85, 165, 0.08), transparent 30%),
    linear-gradient(160deg, #f7fbff 0%, #edf4fb 56%, #f7fbff 100%);
  box-shadow: 0 12px 28px rgba(18, 36, 62, 0.09);
}

.begin-infographic::before {
  display: none;
}

.begin-infographic .info-chip {
  background: #ecf7fc;
  border-color: #c8deec;
  color: #2c5d7d;
}

.begin-infographic .info-title {
  margin-bottom: 2px;
}

.begin-infographic .info-card {
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.begin-infographic .info-card:hover,
.begin-infographic .info-card:focus-visible {
  transform: translateY(-2px);
  border-color: #8dc5d4;
  box-shadow: 0 10px 22px rgba(22, 54, 88, 0.12);
}

.begin-infographic .info-card.active {
  border-color: #1ea49c;
  box-shadow: 0 12px 24px rgba(20, 68, 106, 0.16);
  transform: translateY(-2px);
}

.begin-infographic .info-card.active strong {
  color: #0f8d84;
}

.dashboard-detail {
  margin-top: 2px;
  padding: 11px 12px;
  border: 1px solid #cde0ec;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
}

.dashboard-detail h4 {
  margin: 0 0 4px;
  color: #1d334d;
  font-size: 1rem;
  font-weight: 700;
}

.dashboard-detail p {
  margin: 0;
  color: #45607c;
  font-size: 0.88rem;
  line-height: 1.45;
}

.page-hero-alt {
  margin-top: 12px;
  border: 1px solid #d8e6f1;
  border-radius: 18px;
  padding: 28px;
  background:
    radial-gradient(circle at 82% 18%, rgba(27, 177, 166, 0.12), transparent 38%),
    radial-gradient(circle at 11% 92%, rgba(103, 86, 255, 0.1), transparent 42%),
    linear-gradient(155deg, #ffffff 0%, #f7fbff 58%, #f2f7fd 100%);
  box-shadow: 0 18px 34px rgba(18, 36, 62, 0.08);
}

.page-hero-alt h1,
.page-hero-alt h2 {
  letter-spacing: -0.02em;
}

.assurance-panel {
  margin-top: 20px;
  border: 1px solid #cbdeea;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
  box-shadow: 0 12px 26px rgba(18, 36, 62, 0.08);
  padding: 18px 20px 20px;
}

.assurance-panel h3 {
  margin: 0 0 6px;
}

.assurance-panel p {
  margin: 0;
}

.assurance-tagline {
  margin-top: 8px !important;
  color: #0f7d74 !important;
  font-weight: 700;
}

.assurance-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.assurance-grid > * {
  border: 1px solid #cfe1ec;
  border-radius: 11px;
  padding: 10px 12px;
  background: #ffffff;
}

.assurance-grid strong {
  display: block;
  margin: 0 0 4px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1b3d5c;
}

.assurance-grid span {
  display: block;
  font-size: 0.88rem;
  line-height: 1.48;
  color: #4a647f;
}

.problem-intro {
  margin: 14px 0 16px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 12px;
  align-items: stretch;
}

.problem-number-card {
  border: 1px solid #c7ddea;
  border-radius: 15px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f9fd 100%);
  box-shadow: 0 10px 22px rgba(22, 42, 73, 0.07);
  padding: 14px 18px 16px;
}

.problem-overline {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #426587;
  font-weight: 700;
}

.problem-number {
  text-align: center;
  margin: 8px 0 6px;
  font-size: clamp(3rem, 7.5vw, 5.3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #2e333c;
}

.problem-sub {
  text-align: center;
  margin: 0;
  color: #3f4f5f;
}

.problem-interactive .problem-sub {
  margin-bottom: 0;
}

.problem-intro-kpis {
  display: grid;
  gap: 10px;
}

.problem-intro-kpis article {
  border: 1px solid #c9dce9;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(20, 42, 71, 0.06);
  padding: 12px 14px;
}

.problem-intro-kpis span {
  display: block;
  margin: 0;
  color: #4d6a86;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 700;
}

.problem-intro-kpis strong {
  display: block;
  margin-top: 6px;
  color: #173456;
  font-size: 1.34rem;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.problem-infographic {
  border: 1px solid #c8dde9;
  border-radius: 16px;
  background: linear-gradient(180deg, #fdfefe 0%, #f3f9fc 100%);
  padding: 18px 20px 20px;
  box-shadow: 0 10px 28px rgba(22, 42, 73, 0.08);
}

.problem-controls label {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #25506f;
}

.problem-controls p {
  margin: 4px 0 10px;
  color: #55708a;
  font-size: 0.9rem;
}

.problem-lock-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border: 1px solid #c8dceb;
  border-radius: 999px;
  background: #eef5fb;
  color: #2d516f;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.problem-lock-note::before {
  content: "Locked";
  font-size: 0.64rem;
  line-height: 1;
  color: #0b8f84;
  background: #dff3f0;
  border: 1px solid #bde4df;
  border-radius: 999px;
  padding: 3px 6px;
}

.problem-range {
  width: 100%;
  accent-color: #11998f;
}

.problem-range-labels {
  margin-top: 4px;
  display: flex;
  justify-content: space-between;
  color: #5f768f;
  font-size: 0.76rem;
  font-weight: 700;
}

.problem-bars {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.problem-bars .impact-track {
  background: #cde8ea;
  border: 1px solid #b5dbdc;
}

.problem-bars .impact-track span {
  background: linear-gradient(90deg, #1cb8ac, #158f95);
}

.problem-kpis {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.problem-kpis article {
  border: 1px solid #cae0ea;
  border-radius: 12px;
  background: #fff;
  padding: 10px 12px;
  box-shadow: 0 6px 14px rgba(21, 44, 74, 0.07);
}

.problem-kpis strong {
  display: block;
  color: #12324f;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.problem-kpis span {
  display: block;
  margin-top: 6px;
  font-size: 0.76rem;
  color: #55708b;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.problem-grid article {
  border: 1px solid #d2dde8;
  border-left: 4px solid #1fa8a0;
  border-radius: 14px;
  padding: 20px 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfeff 100%);
  box-shadow: 0 8px 24px rgba(18, 36, 62, 0.06);
}

.problem-interactive .problem-grid article {
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.problem-interactive .problem-grid article:hover,
.problem-interactive .problem-grid article:focus-visible {
  border-color: #91cada;
  box-shadow: 0 12px 26px rgba(21, 55, 88, 0.12);
  transform: translateY(-2px);
  outline: none;
}

.problem-interactive .problem-grid article.is-active {
  border-color: #1fa8a0;
  box-shadow: 0 14px 28px rgba(17, 75, 111, 0.13);
}

.problem-detail-panel {
  margin-top: 14px;
  border: 1px solid #c9ddeb;
  border-radius: 12px;
  padding: 14px 16px;
  background: #f7fbfe;
}

.problem-detail-panel h3 {
  margin: 0 0 6px;
  color: #163253;
}

.problem-detail-panel p {
  margin: 0;
  color: #48617a;
}

.problem-detail-metric {
  margin-top: 8px !important;
  font-weight: 700;
  color: #0f7e77 !important;
}

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

.challenge-grid article {
  border: 1px solid #d2dde8;
  border-left: 4px solid #1fa8a0;
  border-radius: 14px;
  padding: 20px 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfeff 100%);
  box-shadow: 0 8px 24px rgba(18, 36, 62, 0.06);
}

.challenge-grid article h3,
.problem-grid article h3 {
  margin-bottom: 8px;
}

.challenge-chip {
  display: inline-flex;
  margin-bottom: 10px;
  border: 1px solid #b7d9d7;
  border-radius: 999px;
  background: #eaf7f5;
  color: #0f7a73;
  padding: 4px 9px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.challenge-meta {
  margin-top: 10px !important;
  font-size: 0.84rem !important;
  color: #0f7e77 !important;
  font-weight: 700;
}

.dark-impact {
  margin-top: 48px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 46px 0 56px;
  background: linear-gradient(180deg, #11172d, #0d1326);
}

.dark-impact .inner {
  width: min(100% - 56px, var(--max));
  margin: 0 auto;
}

.dark-impact h2,
.dark-impact h3 {
  color: #f0f4ff;
}

.dark-impact p,
.dark-impact li {
  color: #dbe4f5;
}

.donut-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 34px;
}

.donut-item {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.donut {
  --size: 250px;
  width: var(--size);
  height: var(--size);
  margin: 0 auto 12px;
  border-radius: 50%;
  background: conic-gradient(#21b3ab var(--value, 35%), #c6eeed 0);
  display: grid;
  place-items: center;
  position: relative;
}

.donut::before {
  content: "";
  width: calc(var(--size) - 44px);
  height: calc(var(--size) - 44px);
  border-radius: 50%;
  background: #0f1730;
}

.donut span {
  position: absolute;
  color: #f1f5ff;
  font-size: 3.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.donut-info {
  margin-top: -2px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(106, 216, 210, 0.55);
  background: rgba(9, 28, 52, 0.7);
  color: #8de8e1;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.donut-info:hover,
.donut-info:focus-visible {
  border-color: #7ae0d8;
  background: rgba(11, 44, 74, 0.92);
  transform: translateY(-1px);
  outline: none;
}

.donut-tooltip {
  position: absolute;
  left: 50%;
  top: 300px;
  transform: translate(-50%, 10px);
  width: min(330px, calc(100vw - 40px));
  border: 1px solid rgba(130, 226, 220, 0.42);
  background: linear-gradient(180deg, rgba(15, 35, 59, 0.98), rgba(10, 25, 47, 0.99));
  color: #e5eefc;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.87rem;
  line-height: 1.46;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 10;
}

.donut-tooltip strong {
  color: #9ff0e8;
}

.donut-tooltip::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -8px;
  width: 12px;
  height: 12px;
  transform: translateX(-50%) rotate(45deg);
  border-left: 1px solid rgba(130, 226, 220, 0.42);
  border-top: 1px solid rgba(130, 226, 220, 0.42);
  background: rgba(13, 30, 53, 0.98);
}

.donut-item:hover .donut-tooltip,
.donut-item:focus-within .donut-tooltip,
.donut-item.tooltip-open .donut-tooltip {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.service-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-line {
  border: 1px solid #d1dce7;
  border-top: 4px solid #20aba4;
  border-radius: 14px;
  padding: 18px 20px 20px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(18, 36, 62, 0.06);
}

.service-line .num {
  display: block;
  color: #7d8ea2;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
}

.service-line h3 {
  margin-bottom: 8px;
}

.service-showcase {
  margin-top: 8px;
}

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

.showcase-card {
  border: 1px solid #ccdce8;
  border-top: 4px solid #1ca89f;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 10px 24px rgba(18, 36, 62, 0.06);
  padding: 18px 20px;
}

.showcase-card h3 {
  margin-bottom: 8px;
}

.showcase-metrics {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.showcase-metrics article {
  border: 1px solid #ccdde8;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(18, 36, 62, 0.06);
  padding: 14px 14px 12px;
}

.showcase-metrics strong {
  display: block;
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  line-height: 1;
  color: #1a3251;
}

.showcase-metrics span {
  display: block;
  margin-top: 8px;
  color: #4d6680;
  font-weight: 600;
  font-size: 0.88rem;
}

.showcase-metrics .track {
  margin-top: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid #b8d2e3;
  background: #ebf4fa;
  overflow: hidden;
}

.showcase-metrics .track span {
  display: block;
  width: var(--value, 72%);
  height: 100%;
  background: linear-gradient(90deg, #20b3aa, #1d9ca5);
  margin: 0;
}

.impact-initiative {
  border: 1px solid #cfe0ea;
  border-radius: 14px;
  background: linear-gradient(180deg, #f7fcff 0%, #f1f8fd 100%);
  box-shadow: 0 10px 24px rgba(18, 36, 62, 0.06);
  padding: 20px;
}

.impact-initiative-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.impact-initiative-grid article {
  border: 1px solid #cfdee8;
  border-radius: 12px;
  background: #fff;
  padding: 14px 16px;
}

.impact-initiative-grid h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
}

.light-panel {
  border: 1px solid #cee4e2;
  border-radius: 14px;
  background: linear-gradient(180deg, #f2fbfa 0%, #ecf8f7 100%);
  box-shadow: 0 8px 22px rgba(18, 36, 62, 0.05);
  padding: 20px 22px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.discovery-call-banner {
  margin-top: 14px;
  border: 1px solid #c7dce9;
  border-radius: 12px;
  background: linear-gradient(180deg, #f4fbff 0%, #eef8fd 100%);
  box-shadow: 0 8px 20px rgba(18, 36, 62, 0.06);
  padding: 16px 18px;
}

.discovery-call-banner h3 {
  margin-bottom: 6px;
}

.discovery-call-banner p {
  margin: 0;
}

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

.package-card {
  position: relative;
  border: 1px solid #d1dde8;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(18, 36, 62, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.package-card.selectable {
  cursor: pointer;
}

.package-card.selectable:hover {
  transform: translateY(-3px);
  border-color: #9ecbc9;
  box-shadow: 0 14px 28px rgba(18, 36, 62, 0.12);
}

.package-card.selectable:focus-visible {
  outline: 3px solid rgba(31, 177, 165, 0.38);
  outline-offset: 2px;
}

.package-card.is-selected {
  border-color: #1ca79d;
  box-shadow: 0 16px 30px rgba(14, 148, 136, 0.2);
  background: linear-gradient(180deg, #ffffff 0%, #f5fbfa 100%);
}

.package-card.is-selected .package-head {
  background: linear-gradient(180deg, #d9f4f1 0%, #cbedea 100%);
}

.package-head {
  background: linear-gradient(180deg, #f1fbfa 0%, #e8f7f5 100%);
  border-bottom: 1px solid #d1dde8;
  text-align: center;
  padding: 12px 12px;
}

.package-head strong {
  display: block;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.25;
  color: #273743;
}

.package-body {
  padding: 16px 18px;
}

.package-body p {
  margin: 0 0 10px;
}

.package-body [data-select-subscription] {
  min-width: 190px;
}

.package-body [data-select-subscription].is-active {
  border-color: var(--teal);
  background: var(--teal);
  color: #ffffff;
}

.package-body hr {
  margin: 16px 0;
  border-color: #9da8ad;
  opacity: 1;
}

.dark-two-col {
  margin-top: 42px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 44px 0 56px;
  background: linear-gradient(180deg, #121a31, #0d1326);
}

.dark-two-col .inner {
  width: min(100% - 56px, var(--max));
  margin: 0 auto;
}

.dark-two-col h2,
.dark-two-col h3 {
  color: #f2f6ff;
}

.dark-two-col p,
.dark-two-col li {
  color: #d6e0f3;
}

.dark-columns {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.dark-columns article {
  border: 1px solid rgba(202, 216, 239, 0.34);
  border-radius: 14px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.03);
}

.measure-split {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: start;
}

.measure-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.measure-points li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 14px;
}

.measure-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #20b3aa;
}

.measure-kpis {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.measure-kpis article {
  text-align: center;
  border: 1px solid #d2dde8;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(18, 36, 62, 0.05);
  padding: 18px 14px;
}

.measure-kpis strong {
  display: block;
  font-size: clamp(2.55rem, 4vw, 4.2rem);
  line-height: 1;
  color: #2f343c;
  letter-spacing: -0.02em;
}

.measure-kpis h3 {
  margin: 8px 0 4px;
  font-size: 1.2rem;
}

.cmmi-infographic {
  border: 1px solid #cdddea;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 10px 24px rgba(18, 36, 62, 0.08);
  padding: 18px;
}

.cmmi-subtitle {
  margin: 6px 0 0;
  color: #4d657d;
  font-size: 0.9rem;
}

.cmmi-tabs {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cmmi-tabs button {
  border: 1px solid #b8cfdf;
  border-radius: 999px;
  background: #f1f7fc;
  color: #1f405e;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 7px 11px;
  cursor: pointer;
}

.cmmi-tabs button.active,
.cmmi-tabs button:hover,
.cmmi-tabs button:focus-visible {
  border-color: #1da69c;
  background: #e4f6f4;
  color: #0d7f76;
  outline: none;
}

.cmmi-bars {
  margin-top: 14px;
  display: grid;
  gap: 9px;
}

.cmmi-bar-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.2fr auto;
  align-items: center;
  gap: 8px;
}

.cmmi-bar-row > span {
  font-size: 0.82rem;
  color: #35506b;
  font-weight: 700;
}

.cmmi-track {
  height: 10px;
  border-radius: 999px;
  border: 1px solid #bad4e6;
  background: #e8f1f8;
  overflow: hidden;
}

.cmmi-track span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #22b9ad, #1b92a0);
  transition: width 0.45s ease;
}

.cmmi-bar-row em {
  margin: 0;
  font-style: normal;
  font-weight: 800;
  color: #183655;
  font-size: 0.84rem;
}

.cmmi-detail {
  margin-top: 12px;
  border: 1px solid #cbdeeb;
  border-radius: 10px;
  background: #f8fbfe;
  padding: 10px 12px;
}

.cmmi-detail h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: #1c3854;
}

.cmmi-detail p {
  margin: 0;
  color: #47627d;
  font-size: 0.9rem;
  line-height: 1.48;
}

.case-wall {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.case-block {
  border: 1px solid #c9e5e3;
  border-radius: 14px;
  background: linear-gradient(180deg, #f2fbfa 0%, #ecf8f7 100%);
  box-shadow: 0 8px 22px rgba(18, 36, 62, 0.05);
  padding: 20px 22px;
}

.case-wall .case-block:nth-child(1) {
  margin-bottom: 0;
}

.case-wall .case-block:nth-child(2) {
  margin-top: 0;
}

.case-wall .case-block:nth-child(3) {
  margin-top: 0;
}

.case-wall .case-block:nth-child(4) {
  margin-top: 0;
}

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

.benchmark-item + .benchmark-item {
  margin-top: 20px;
}

.benchmark-item {
  border: 1px solid #d2dde8;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(18, 36, 62, 0.06);
  padding: 16px 18px 18px;
}

.benchmark-track {
  height: 16px;
  border-radius: 999px;
  background: #c7eceb;
  border: 1px solid #abd8d7;
  overflow: hidden;
  position: relative;
}

.benchmark-track span {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--value, 45%);
  background: linear-gradient(90deg, #1db4aa, #1b9ca7);
}

.benchmark-value {
  margin-top: 8px;
  text-align: right;
  font-size: 1.72rem;
  font-weight: 800;
  line-height: 1;
  color: #2f343d;
}

.benchmark-item h3 {
  margin-top: 8px;
}

.benchmark-item .impact-note {
  color: #178fd5;
  font-weight: 500;
}

.benchmark-item .impact-note.market {
  color: #e5831e;
}

.legal-columns {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.legal-columns article {
  border: 1px solid #d1dde8;
  border-radius: 14px;
  padding: 18px 20px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(18, 36, 62, 0.06);
}

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

.engagement-block {
  border: 1px solid #d1dde8;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(18, 36, 62, 0.06);
  padding: 16px 18px 18px;
}

.engagement-step {
  border: 1px solid #bededb;
  border-radius: 10px;
  background: linear-gradient(180deg, #e8f7f5 0%, #dff2ef 100%);
  height: 58px;
  clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%, 3% 50%);
  margin-bottom: 12px;
}

.engagement-block h3 {
  margin-top: 10px;
}

.mini-timeline {
  margin-top: 16px;
  border: 1px solid #d5dde8;
  border-radius: 10px;
  background: linear-gradient(180deg, #f7fbfd 0%, #edf4f9 100%);
  padding: 14px;
}

.timeline-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.timeline-row span {
  display: block;
  border: 1px solid #b8c8d8;
  border-radius: 999px;
  background: #ffffff;
  color: #2b3d50;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  padding: 8px 6px;
}

.about-display {
  font-size: clamp(3rem, 5.9vw, 6.2rem);
  line-height: 0.97;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #10294a;
  margin-bottom: 26px;
  max-width: 13ch;
}

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

.about-grid article {
  padding-right: 4px;
}

.about-grid h3 {
  font-size: 2rem;
}

.about-grid + .about-grid {
  margin-top: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-hero {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 28px;
}

.contact-visual {
  min-height: 660px;
  border: 1px solid #cdd8e4;
  border-radius: 14px;
  background:
    radial-gradient(circle at 70% 22%, rgba(116, 127, 145, 0.3), transparent 36%),
    radial-gradient(circle at 30% 78%, rgba(90, 109, 133, 0.2), transparent 34%),
    linear-gradient(170deg, #f1f3f7 0%, #e8ebf1 55%, #f3f5f8 100%);
  position: relative;
  overflow: hidden;
}

.contact-visual.contact-visual-info {
  min-height: 520px;
  border: 1px solid #caddea;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 252, 255, 0.98)),
    linear-gradient(165deg, #eaf2fa 0%, #dee9f6 55%, #edf5fb 100%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-visual.contact-visual-info::before {
  display: none;
}

.contact-visual::before {
  content: "";
  position: absolute;
  inset: 8% 5% 8%;
  border-radius: 10px;
  border: 1px solid rgba(120, 132, 150, 0.4);
  background:
    radial-gradient(circle at 35% 26%, rgba(90, 107, 130, 0.35), transparent 24%),
    radial-gradient(circle at 70% 56%, rgba(90, 107, 130, 0.35), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.42));
}

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

.contact-panel {
  border: 1px solid #d1dde8;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(18, 36, 62, 0.06);
  padding: 20px;
}

.site-note {
  color: #4f657d;
  font-size: 0.93rem;
}

.dark-band {
  background: linear-gradient(180deg, #111a31, #0e162a);
  color: var(--dark-text);
  margin: 44px calc(50% - 50vw) 0;
  padding: 36px 0 54px;
}

.dark-wrap {
  width: min(100% - 56px, var(--max));
  margin: 0 auto;
}

.dark-band h1,
.dark-band h2,
.dark-band h3 {
  color: var(--dark-text);
}

.dark-band p,
.dark-band li {
  color: #d8e0f3;
}

.icons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3) var(--space-4);
}

.icon {
  width: 34px;
  height: 34px;
  border: 2px solid #0ecfc8;
  border-radius: 8px;
  margin-bottom: 10px;
}

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

.ring-card {
  text-align: center;
}

.ring {
  width: 230px;
  height: 230px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: conic-gradient(#20b3ad var(--v), #c7eceb 0);
  display: grid;
  place-items: center;
}

.ring::before {
  content: "";
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: #0f1b33;
}

.ring span {
  position: relative;
  margin-top: -122px;
  font-size: 2.45rem;
  font-weight: 800;
  color: #fff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.step-head {
  height: 58px;
  background: #cdeceb;
  border: 1px solid #a8d9d6;
  clip-path: polygon(0 0, 96% 0, 100% 50%, 96% 100%, 0 100%, 3% 50%);
}

.tight p {
  margin: 0 0 10px;
}

.stack > * + * {
  margin-top: var(--space-2);
}

.cta-panel {
  margin-top: 38px;
  border-radius: 16px;
  border: 1px solid #ccd9e5;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  color: var(--text);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 12px 30px rgba(18, 36, 62, 0.08);
}

.cta-panel h3 {
  color: var(--ink);
  margin-bottom: 6px;
}

.cta-panel p {
  color: #51657d;
  margin: 0;
}

.cta-panel .btn {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  padding: 13px 24px;
}

.site-footer {
  margin-top: 0;
  position: fixed !important;
  left: 0;
  right: 0;
  bottom: 0 !important;
  z-index: 60;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 -8px 22px rgba(18, 36, 62, 0.1);
}

.footer-row {
  min-height: var(--footer-fixed-height);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}

.footer-row p {
  margin: 0;
  color: #3e556e;
  font-size: 0.9rem;
  line-height: 1.35;
}

.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.footer-logo {
  width: 138px;
  max-width: min(24vw, 138px);
  height: auto;
  display: block;
}

.footer-contact {
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}

.footer-contact a {
  color: #0f7f77;
  font-weight: 700;
  text-decoration: underline;
}

.ai-chat-launch {
  position: fixed;
  right: 16px;
  top: calc(var(--header-height) + 12px);
  bottom: auto;
  z-index: 96;
  border: 1px solid #8cd4d0;
  border-radius: 999px;
  padding: 10px 14px;
  background: #0e9488;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 12px 24px rgba(14, 52, 81, 0.28);
  cursor: pointer;
}

.ai-chat-launch:hover,
.ai-chat-launch:focus-visible {
  background: #0b7f76;
  outline: none;
}

.ai-chat-panel {
  position: fixed;
  right: 16px;
  top: calc(var(--header-height) + 64px);
  bottom: auto;
  width: min(360px, calc(100vw - 22px));
  max-height: min(calc(100vh - var(--header-height) - 78px), 620px);
  border: 1px solid #c2d9e7;
  border-radius: 14px;
  background: #fff;
  z-index: 97;
  box-shadow: 0 24px 42px rgba(14, 36, 65, 0.24);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ai-chat-panel[hidden] {
  display: none !important;
}

.ai-chat-head {
  padding: 10px 12px;
  border-bottom: 1px solid #d3e0eb;
  background: linear-gradient(180deg, #f5fbff, #eff7fc);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.ai-chat-head strong {
  color: #173452;
}

.ai-chat-session-status {
  margin: 0;
  padding: 8px 10px;
  border-bottom: 1px solid #d6e3ee;
  background: #f7fbff;
  color: #3f5c78;
  font-size: 0.78rem;
  line-height: 1.45;
}

.ai-chat-close {
  border: 1px solid #c0d5e4;
  border-radius: 8px;
  background: #fff;
  padding: 4px 8px;
  cursor: pointer;
  font-weight: 700;
}

.ai-chat-log {
  padding: 10px;
  overflow: auto;
  display: grid;
  gap: 8px;
  background: #fcfeff;
  max-height: 40vh;
}

.ai-chat-msg {
  max-width: 88%;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 0.86rem;
  line-height: 1.45;
}

.ai-chat-msg strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.ai-chat-msg span {
  display: block;
}

.ai-chat-msg em {
  display: block;
  margin-top: 5px;
  font-style: normal;
  font-size: 0.7rem;
  opacity: 0.8;
}

.ai-chat-msg.user {
  margin-left: auto;
  border: 1px solid #b8d8e7;
  background: #eef7ff;
  color: #20405e;
}

.ai-chat-msg.agent {
  border: 1px solid #a6d9d3;
  background: #e6f8f4;
  color: #1a4d49;
}

.ai-chat-msg.bot {
  border: 1px solid #bde4df;
  background: #ecfaf8;
  color: #214a4a;
}

.ai-chat-form {
  border-top: 1px solid #d6e2ec;
  padding: 8px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.ai-chat-form input {
  border: 1px solid #b7ccdd;
  border-radius: 9px;
  padding: 8px 10px;
}

.ai-chat-form button {
  border: 1px solid #0e9488;
  border-radius: 9px;
  background: #0e9488;
  color: #fff;
  font-weight: 700;
  padding: 8px 10px;
}

.ai-chat-lead-toggle {
  border: 0;
  border-top: 1px solid #d6e2ec;
  border-bottom: 1px solid #d6e2ec;
  background: #f7fbff;
  color: #0d7d75;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 8px 10px;
  text-align: left;
}

.ai-chat-lead-form {
  border-bottom: 1px solid #d6e2ec;
  background: #f9fdff;
  padding: 10px;
  display: grid;
  gap: 8px;
}

.ai-chat-lead-form[hidden] {
  display: none !important;
}

.ai-chat-lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.ai-chat-lead-grid input,
.ai-chat-lead-grid textarea {
  border: 1px solid #b7ccdd;
  border-radius: 8px;
  padding: 7px 8px;
  font-size: 0.8rem;
  font: inherit;
}

.ai-chat-lead-grid textarea {
  grid-column: 1 / -1;
  min-height: 64px;
  resize: vertical;
}

.ai-chat-captcha {
  display: grid;
  gap: 6px;
}

.ai-chat-captcha img {
  width: 170px;
  max-width: 100%;
  border: 1px solid #bfd3e1;
  border-radius: 8px;
  background: #f4fbff;
}

.ai-chat-captcha-controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
}

.ai-chat-captcha-controls input {
  border: 1px solid #b7ccdd;
  border-radius: 8px;
  padding: 7px 8px;
  font-size: 0.8rem;
}

.ai-chat-captcha-controls button,
.ai-chat-lead-actions button {
  border: 1px solid #0e9488;
  border-radius: 8px;
  background: #0e9488;
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 7px 9px;
}

.ai-chat-lead-actions button.ghost {
  background: #fff;
  color: #11656a;
}

.ai-chat-lead-actions {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
}

.ai-chat-lead-status {
  margin: 0;
  font-size: 0.76rem;
  color: #2d5572;
}

.payment-shell .contact-panel {
  margin-top: 14px;
}

.crm-shell {
  border: 1px solid #cdddea;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  box-shadow: 0 14px 30px rgba(20, 42, 71, 0.09);
  padding: 20px;
}

.crm-login {
  max-width: 560px;
}

.crm-login-form {
  margin-top: 10px;
  border: 1px solid #d2e1ec;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 16px;
}

.crm-login-divider {
  margin: 10px 0;
  position: relative;
  text-align: center;
  color: #5c7590;
  font-size: 0.8rem;
}

.crm-login-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px solid #d3e2ec;
  z-index: 1;
}

.crm-login-divider span {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 0 8px;
}

.crm-google-login {
  display: grid;
  gap: 8px;
}

.crm-rbac-summary {
  margin: 8px 0 0;
  font-size: 0.82rem;
  color: #46617b;
  font-weight: 700;
}

.crm-app[hidden] {
  display: none !important;
}

.crm-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.crm-meta {
  margin-top: 8px;
}

.crm-meta p {
  margin: 0;
}

.crm-stats {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.crm-stats article {
  border: 1px solid #cedeea;
  border-radius: 12px;
  background: #fff;
  padding: 11px 12px;
  box-shadow: 0 6px 18px rgba(20, 45, 74, 0.07);
}

.crm-stats strong {
  display: block;
  font-size: 1.48rem;
  line-height: 1;
  color: #1a3350;
}

.crm-stats span {
  display: block;
  margin-top: 6px;
  color: #56718c;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.crm-filters {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 10px;
}

.crm-board {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.admin-shell {
  margin-top: 12px;
  border: 1px solid #c9deea;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
  padding: 12px;
}

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

.admin-card {
  border: 1px solid #d0e2ee;
  border-radius: 12px;
  background: #fff;
  padding: 12px;
  box-shadow: 0 8px 18px rgba(20, 45, 74, 0.06);
  display: grid;
  gap: 8px;
}

.admin-card h3 {
  margin: 0;
  font-size: 1.02rem;
}

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

.field-inline {
  display: flex;
  align-items: center;
}

.field-inline label {
  margin: 0;
  font-weight: 700;
}

.admin-table-wrap {
  overflow: auto;
  border: 1px solid #d4e2ec;
  border-radius: 10px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid #e0ebf2;
  padding: 8px 9px;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #4f6a84;
  background: #f5fbff;
}

.admin-kb-list {
  display: grid;
  gap: 8px;
  max-height: 340px;
  overflow: auto;
}

.admin-kb-item {
  border: 1px solid #d1e2ed;
  border-radius: 10px;
  padding: 9px 10px;
  background: #fbfeff;
}

.admin-kb-item.inactive {
  opacity: 0.72;
  background: #f8fafd;
}

.admin-kb-item h4 {
  margin: 0;
  font-size: 0.95rem;
}

.admin-kb-item p {
  margin: 4px 0 0;
}

.crm-column {
  border: 1px solid #cbdeea;
  border-radius: 14px;
  background: #f7fbfe;
  padding: 10px;
}

.crm-column-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.crm-column-head h3 {
  margin: 0;
  font-size: 1rem;
}

.crm-column-head span {
  color: #547089;
  font-size: 0.82rem;
  font-weight: 700;
}

.crm-column-body {
  display: grid;
  gap: 8px;
}

.crm-empty {
  margin: 0;
  padding: 12px;
  border: 1px dashed #bcd4e3;
  border-radius: 10px;
  color: #5f7891;
  font-size: 0.86rem;
  background: #fcfeff;
}

.crm-card {
  border: 1px solid #c7dbea;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 6px 16px rgba(21, 45, 73, 0.08);
}

.crm-card h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: #1b3453;
}

.crm-card p {
  margin: 0 0 6px;
  color: #526d86;
  font-size: 0.84rem;
  line-height: 1.45;
}

.crm-card-meta {
  display: grid;
  gap: 6px;
}

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

.crm-card .field label {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.crm-card .field input,
.crm-card .field select,
.crm-card .field textarea {
  padding: 8px 9px;
  border-radius: 8px;
  font-size: 0.86rem;
}

.crm-card textarea {
  min-height: 72px;
}

.sia-shell {
  margin-top: 16px;
  border: 1px solid #c9dcea;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 10px 24px rgba(18, 36, 62, 0.07);
  padding: 14px;
}

.sia-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sia-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #1d3858;
}

.sia-status {
  margin: 0;
  color: #4d6881;
  font-size: 0.84rem;
}

.sia-stats {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.sia-stats article {
  border: 1px solid #ccddea;
  border-radius: 10px;
  background: #fff;
  padding: 10px 12px;
}

.sia-stats strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1;
  color: #173453;
}

.sia-stats span {
  display: block;
  margin-top: 5px;
  font-size: 0.76rem;
  color: #5d7790;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sia-layout {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 12px;
}

.sia-session-list {
  border: 1px solid #cfdeea;
  border-radius: 10px;
  background: #fbfdff;
  padding: 8px;
  max-height: 430px;
  overflow: auto;
  display: grid;
  gap: 8px;
  align-content: start;
}

.sia-session-item {
  border: 1px solid #c8d9e8;
  border-radius: 10px;
  background: #fff;
  padding: 9px 10px;
  text-align: left;
  cursor: pointer;
  display: grid;
  gap: 3px;
}

.sia-session-item strong {
  color: #173553;
  font-size: 0.92rem;
  line-height: 1.3;
}

.sia-session-item span,
.sia-session-item em {
  color: #56718a;
  font-size: 0.75rem;
  line-height: 1.35;
}

.sia-session-item em {
  font-style: normal;
}

.sia-session-item.active {
  border-color: #1aa398;
  background: #eefaf8;
}

.sia-empty {
  margin: 0;
  color: #5e7892;
  font-size: 0.85rem;
  border: 1px dashed #c4d8e6;
  border-radius: 10px;
  padding: 12px;
  background: #fff;
}

.sia-thread {
  border: 1px solid #cfdeea;
  border-radius: 10px;
  background: #fff;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 430px;
}

.sia-thread-head {
  padding: 10px 12px 2px;
}

.sia-thread-head h3 {
  margin: 0;
  font-size: 1.06rem;
}

.sia-thread-head p {
  margin: 5px 0 0;
  color: #567088;
  font-size: 0.8rem;
}

.sia-thread .ai-chat-log {
  max-height: none;
  min-height: 240px;
  border-top: 1px solid #d6e4ee;
  border-bottom: 1px solid #d6e4ee;
}

.sia-thread .ai-chat-msg {
  max-width: 94%;
}

.sia-thread-form {
  padding: 9px;
  border-top: 1px solid #d6e3ee;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.sia-thread-form input {
  border: 1px solid #bfd3e4;
  border-radius: 8px;
  padding: 8px 10px;
}

.sia-thread-form button {
  border: 1px solid var(--teal);
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  padding: 8px 11px;
}

.sia-thread-actions {
  padding: 0 10px 10px;
  display: flex;
  justify-content: flex-end;
}

.discovery-highlight {
  align-self: stretch;
}

.payment-shell .package-grid--four {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-copy {
  display: grid;
  gap: 5px;
}

.footer-copy .footer-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  justify-content: flex-end;
}

.footer-links a,
.footer-links button {
  border: 1px solid #bdd4e4;
  border-radius: 8px;
  background: #fff;
  color: #0e5f7c;
  padding: 5px 10px;
  font-weight: 600;
  font-size: 0.78rem;
  cursor: pointer;
  white-space: nowrap;
}

.integration-config-modal {
  position: fixed;
  inset: 0;
  z-index: 142;
  background: rgba(12, 24, 44, 0.58);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.integration-config-modal.show {
  display: flex;
}

.integration-config-dialog {
  width: min(920px, 100%);
  max-height: 88dvh;
  overflow: auto;
  background: #ffffff;
  border: 1px solid #c8dbea;
  border-radius: 16px;
  box-shadow: 0 26px 54px rgba(10, 28, 56, 0.35);
  padding: 18px;
}

.integration-config-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.integration-config-head h3 {
  margin: 0;
  font-size: 1.35rem;
}

.integration-close {
  border: 1px solid #c1d7e7;
  border-radius: 8px;
  background: #fff;
  color: #194263;
  font-weight: 700;
  padding: 7px 10px;
}

.integration-note {
  margin: 8px 0 0;
  color: #4c657d;
  font-size: 0.9rem;
}

.integration-config-form {
  margin-top: 12px;
}

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

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

.integration-grid input,
.integration-grid select {
  font-size: 0.9rem;
}

body.integration-config-open {
  overflow: hidden;
}

.cookie-banner {
  position: fixed;
  top: calc(var(--header-height) + 10px);
  right: 14px;
  left: auto;
  bottom: auto;
  width: min(420px, calc(100vw - 24px));
  z-index: 78;
  display: none;
  border: 1px solid #b5cbde;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(10, 28, 56, 0.28);
  padding: 14px;
  max-height: min(54dvh, 420px);
  overflow: auto;
  pointer-events: auto;
}

.cookie-banner.show {
  display: grid;
  gap: 6px;
}

.cookie-banner-card {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  max-height: none;
  overflow: visible;
}

.cookie-banner > strong,
.cookie-banner-card > strong {
  display: block;
  color: #163253;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.cookie-banner > p,
.cookie-banner-card > p {
  margin: 0;
  font-size: 0.83rem;
  color: #425f7a;
  line-height: 1.5;
}

.cookie-actions {
  margin-top: 2px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cookie-actions .btn {
  padding: 6px 10px;
  font-size: 0.78rem;
  border-radius: 8px;
}

.cookie-compliance-note {
  margin: 6px 0 0 !important;
  padding-top: 6px;
  border-top: 1px solid #d4e3ef;
  font-size: 0.77rem !important;
  color: #4d6881 !important;
}

.cookie-compliance-note a {
  color: #0d767b;
  font-weight: 700;
  text-decoration: underline;
}

.cookie-regulatory-note {
  margin: 10px 0 0;
  padding: 10px 12px;
  border: 1px solid #d0e1ed;
  border-radius: 10px;
  background: #f5fbff;
  color: #47627d;
  font-size: 0.86rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(12, 24, 44, 0.54);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-dialog {
  width: min(100%, 860px);
  max-height: 86dvh;
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 26px 54px rgba(10, 28, 56, 0.35);
  padding: 22px;
}

.cookie-grid {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.cookie-row {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: start;
}

.cookie-row p {
  margin: 4px 0 0;
  font-size: 0.93rem;
  color: #51627a;
}

body.cookie-modal-open {
  overflow: hidden;
}

.discovery-popup {
  position: fixed;
  inset: 0;
  z-index: 128;
  display: grid;
  place-items: center;
  padding: 20px;
}

.discovery-popup[hidden] {
  display: none;
}

.discovery-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 40, 0.58);
  backdrop-filter: blur(2px);
}

.discovery-popup-card {
  position: relative;
  width: min(560px, calc(100vw - 28px));
  border-radius: 18px;
  border: 1px solid #b8cfe2;
  background: linear-gradient(165deg, #f8fbff 0%, #edf5ff 62%, #f4f8ff 100%);
  box-shadow: 0 24px 56px rgba(7, 22, 44, 0.35);
  padding: 24px 24px 20px;
  z-index: 1;
}

.discovery-popup-card .hero-kicker {
  margin: 0 0 8px;
}

.discovery-popup-card h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
  line-height: 1.12;
  color: #0f2e4e;
  letter-spacing: -0.02em;
}

.discovery-popup-card p {
  margin: 10px 0 0;
  color: #405d77;
}

.discovery-popup-form {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.discovery-popup-form input {
  height: 52px;
  border-radius: 12px;
}

.discovery-popup-form .btn {
  width: 100%;
  justify-content: center;
  min-height: 52px;
}

.discovery-popup-note {
  margin-top: 10px;
  font-size: 0.88rem;
  color: #557089;
}

.discovery-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid #bed3e4;
  border-radius: 50%;
  background: #fff;
  color: #26415d;
  font-size: 1.3rem;
  line-height: 1;
}

.discovery-popup-close:hover,
.discovery-popup-close:focus-visible {
  border-color: #8fb6cf;
  color: #0f2e4e;
}

.switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #b9cad9;
  transition: 0.2s;
  border-radius: 100px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  transition: 0.2s;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(9, 25, 50, 0.25);
}

.switch input:checked + .slider {
  background-color: #1fa8a2;
}

.switch input:checked + .slider:before {
  transform: translateX(20px);
}

.switch input:disabled + .slider {
  opacity: 0.64;
  cursor: not-allowed;
}

.contact-form {
  margin-top: 10px;
}

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

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

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

.field label {
  font-size: 0.9rem;
  color: #1d304f;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid #b6cce0;
  background: #fff;
  font: inherit;
  color: #1e2f49;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid #abdeda;
  border-color: #6bc2bd;
}

.field-error {
  color: #b21442;
  font-size: 0.8rem;
  min-height: 1em;
}

.help-text {
  font-size: 0.82rem;
  color: #637892;
  margin-top: 8px;
}

.form-status {
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f5e66;
  min-height: 1.1em;
}

.inner-hero.single-col {
  grid-template-columns: 1fr;
}

.cost-calc-shell {
  border: 1px solid #c9d9e8;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: var(--shadow-card);
  padding: 18px;
  display: grid;
  gap: 16px;
}

.cost-calc-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.cost-calc-head h3 {
  margin: 0;
  font-size: clamp(1.18rem, 1.9vw, 1.65rem);
}

.cost-calc-head p {
  margin: 0;
  color: #5a7188;
  font-size: 0.9rem;
}

.cost-calc-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
}

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

.calc-inputs .field {
  gap: 5px;
}

.calc-inputs .field label {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #345170;
}

.calc-inputs .field input {
  padding: 9px 10px;
  border-radius: 8px;
}

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

.calc-outputs {
  display: grid;
  gap: 10px;
}

.calc-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.calc-kpis article {
  border: 1px solid #cee0ed;
  border-radius: 11px;
  background: #fff;
  padding: 10px;
}

.calc-kpis span {
  display: block;
  color: #627992;
  font-size: 0.79rem;
  line-height: 1.35;
}

.calc-kpis strong {
  display: block;
  margin-top: 4px;
  color: #123253;
  font-size: 1.36rem;
  line-height: 1;
}

.calc-bars {
  display: grid;
  gap: 8px;
}

.calc-bars .impact-row {
  border: 1px solid #d4e2ee;
  border-radius: 10px;
  background: #fff;
  padding: 9px 10px;
}

.calc-bars .impact-row p {
  margin: 0 0 3px;
  font-size: 0.79rem;
  color: #4c657d;
}

.calc-bars .impact-row em {
  font-style: normal;
  font-weight: 700;
  font-size: 0.84rem;
  color: #10324d;
}

.impact-track {
  height: 8px;
  border-radius: 999px;
  background: #dff0fa;
  overflow: hidden;
}

.impact-track span {
  display: block;
  width: var(--value, 0%);
  height: 100%;
  background: linear-gradient(90deg, #12aba3, #299dd8);
  border-radius: inherit;
}

.cycle-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
}

.engagement-cycle {
  position: relative;
  width: min(470px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 1px solid #d2e1ee;
  border-radius: 50%;
  background: radial-gradient(circle at center, #f5fbff 0%, #edf5fd 52%, #f8fcff 100%);
}

.engagement-cycle::before {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px dashed #a7c4dc;
  border-radius: 50%;
}

.cycle-phase {
  position: absolute;
  transform: translate(-50%, -50%);
  border: 1px solid #b8d2e7;
  border-radius: 999px;
  background: #fff;
  color: #153657;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  padding: 9px 12px;
  cursor: pointer;
  min-width: 122px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.cycle-phase:hover,
.cycle-phase:focus-visible {
  border-color: #16a79f;
  color: #0f6a6b;
  outline: none;
}

.cycle-phase.active {
  background: #0f9a8e;
  color: #fff;
  border-color: #0f9a8e;
  box-shadow: 0 10px 18px rgba(15, 112, 120, 0.3);
}

.cycle-phase[data-pos="top"] {
  left: 50%;
  top: 8%;
}

.cycle-phase[data-pos="upper-right"] {
  left: 79%;
  top: 30%;
}

.cycle-phase[data-pos="lower-right"] {
  left: 79%;
  top: 70%;
}

.cycle-phase[data-pos="bottom"] {
  left: 50%;
  top: 92%;
}

.cycle-phase[data-pos="lower-left"] {
  left: 21%;
  top: 70%;
}

.cycle-phase[data-pos="upper-left"] {
  left: 21%;
  top: 30%;
}

.cycle-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid #c6d9ea;
  background: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 12px;
  color: #1d3a5a;
  font-weight: 700;
  font-size: 0.86rem;
  line-height: 1.35;
}

.cycle-detail {
  border: 1px solid #cfdeeb;
  border-radius: 14px;
  background: #fff;
  padding: 16px;
  box-shadow: var(--shadow-card);
}

.cycle-detail h3 {
  margin-bottom: 8px;
  font-size: clamp(1.18rem, 1.7vw, 1.48rem);
}

.cycle-detail p {
  margin-bottom: 10px;
}

.cycle-outcome {
  border-top: 1px solid #d8e5ef;
  padding-top: 10px;
  color: #1b4f6d;
  font-weight: 700;
}

.case-dashboard {
  margin-top: 12px;
  border-top: 1px dashed #bdd5e7;
  padding-top: 10px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.case-dashboard article {
  border: 1px solid #cfe0ed;
  border-radius: 10px;
  background: #f9fdff;
  padding: 8px;
  text-align: center;
}

.case-dashboard strong {
  display: block;
  font-size: 1.1rem;
  color: #123454;
  line-height: 1;
}

.case-dashboard span {
  display: block;
  margin-top: 4px;
  font-size: 0.73rem;
  color: #56728d;
}

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

.contact-metric-grid article {
  border: 1px solid #cfe1ef;
  border-radius: 10px;
  background: #fff;
  padding: 10px;
}

.contact-metric-grid strong {
  display: block;
  color: #143453;
  font-size: 1.24rem;
}

.contact-metric-grid span {
  color: #5b748d;
  font-size: 0.84rem;
}

.captcha-image {
  width: 170px;
  max-width: 100%;
  height: auto;
  border: 1px solid #bdd3e3;
  border-radius: 8px;
  background: #f3fbff;
  display: block;
}

@media (max-width: 1120px) {
  .brand img {
    height: 42px;
  }
}

@media (max-width: 1199.98px) {
  .navbar-shell {
    min-height: 72px;
    flex-wrap: wrap;
    padding-top: 8px;
    padding-bottom: 10px;
  }
  .topnav {
    width: 100%;
    justify-content: stretch;
    gap: 8px;
    padding-top: 10px;
  }
  .topnav .nav-item {
    width: 100%;
  }
  .topnav .nav-link {
    width: 100%;
    text-align: center;
    border: 1px solid #dce7f0;
    background: #fff;
    padding: 10px 12px;
  }
  .btn-brand {
    margin-left: 0;
    width: 100%;
    text-align: center;
    padding: 10px 14px;
  }
  .home-hero {
    padding: 64px 0 46px;
  }
  .home-hero-top {
    gap: 36px;
  }
  .home-hero-main h1 {
    font-size: clamp(2.75rem, 6.2vw, 4.3rem);
  }
  .home-hero-panel h2 {
    font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  }
  .home-hero-panel p {
    font-size: 1rem;
  }
  .inner-hero {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 16px;
  }
  .inner-hero-title {
    font-size: clamp(1.95rem, 5.6vw, 3.05rem);
  }
}

@media (max-width: 1024px) {
  :root {
    --footer-fixed-height: 102px;
  }
  h1 {
    font-size: clamp(2.2rem, 5.9vw, 3.8rem);
  }
  h2 {
    font-size: clamp(1.75rem, 4.7vw, 2.9rem);
  }
  h3 {
    font-size: clamp(1.26rem, 3.4vw, 1.9rem);
  }
  p,
  li {
    font-size: 1rem;
    line-height: 1.68;
  }
  .lead {
    font-size: 1.03rem;
  }
  .page,
  .dark-wrap {
    width: min(100% - 34px, var(--max));
  }
  .home-hero {
    padding: 58px 0 42px;
  }
  .home-hero-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .home-hero-main h1 {
    font-size: clamp(2.55rem, 6vw, 3.8rem);
  }
  .home-kpis {
    margin-top: 46px;
    gap: 20px;
    max-width: 100%;
  }
  .inner-hero-kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-media {
    min-height: 340px;
  }
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .metrics-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .framework-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .framework-flow::before {
    display: none;
  }
  .governance-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gov-layer {
    grid-template-columns: 1fr;
  }
  .engagement-roadmap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .engagement-roadmap::before {
    display: none;
  }
  .about-principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .split-content,
  .measure-split,
  .contact-hero {
    grid-template-columns: 1fr;
  }
  .problem-grid,
  .service-lines,
  .showcase-grid,
  .impact-initiative-grid,
  .benchmark-grid,
  .donut-grid,
  .dark-columns,
  .case-wall,
  .about-grid,
  .about-grid + .about-grid,
  .contact-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .package-grid,
  .legal-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .assurance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .problem-intro {
    grid-template-columns: 1fr;
  }
  .problem-intro-kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .measure-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .timeline-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .problem-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-visual {
    min-height: 420px;
  }
  .cost-calc-grid,
  .cycle-shell {
    grid-template-columns: 1fr;
  }
  .schedule-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .case-dashboard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .case-wall .case-block:nth-child(2),
  .case-wall .case-block:nth-child(3),
  .case-wall .case-block:nth-child(4) {
    margin-top: 0;
  }
  .case-wall .case-block:nth-child(1) {
    margin-bottom: 0;
  }
  .hero-media.infographic-surface,
  .img-box.infographic-surface {
    min-height: 340px;
  }
  .crm-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .crm-filters {
    grid-template-columns: 1fr 1fr;
  }
  .crm-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 66px;
    --footer-fixed-height: 138px;
  }
  h1 {
    font-size: clamp(1.95rem, 8.8vw, 2.75rem);
  }
  h2 {
    font-size: clamp(1.58rem, 6.9vw, 2.2rem);
  }
  h3 {
    font-size: clamp(1.18rem, 5.2vw, 1.62rem);
  }
  p,
  li {
    font-size: 0.98rem;
    line-height: 1.62;
  }
  .lead {
    font-size: 0.99rem;
  }
  .page,
  .dark-wrap {
    width: min(100% - 24px, var(--max));
  }
  .brand img {
    height: 34px;
    max-width: min(56vw, 250px);
  }
  .navbar-shell {
    min-height: 66px;
    padding-top: 6px;
    padding-bottom: 8px;
  }
  .topnav {
    gap: 6px;
  }
  .topnav .nav-link {
    font-size: 0.92rem;
  }
  .home-hero {
    padding: 44px 0 34px;
    background-size: auto, 34px 34px, 34px 34px;
  }
  .hero-kicker {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
  }
  .hero-kicker-highlight {
    padding: 6px 10px;
  }
  .home-hero-main h1 {
    font-size: clamp(2.05rem, 9.2vw, 2.7rem);
    line-height: 1;
  }
  .inner-hero {
    padding: 18px;
  }
  .inner-hero-title {
    font-size: clamp(1.7rem, 8.5vw, 2.35rem);
  }
  .inner-hero-main .lead {
    margin-top: 12px;
  }
  .inner-hero-main .btn-row {
    margin-top: 16px;
  }
  .inner-hero-kpis {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .home-hero-panel {
    padding: 18px 16px;
  }
  .home-hero-panel h2 {
    font-size: 1.2rem;
  }
  .home-hero-panel p {
    margin-top: 10px;
    font-size: 0.94rem;
    line-height: 1.55;
  }
  .panel-link {
    margin-top: 14px;
    font-size: 0.98rem;
  }
  .home-hero-actions .btn {
    min-width: 0;
    width: 100%;
    max-width: 320px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 0.98rem;
  }
  .home-kpis {
    margin-top: 36px;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }
  .home-kpis strong {
    font-size: clamp(2.15rem, 10.4vw, 2.9rem);
  }
  .home-kpis span {
    margin-top: 8px;
    font-size: 0.94rem;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .info-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .info-row p {
    white-space: normal;
  }
  .info-row em {
    text-align: left;
  }
  .hero-media.infographic-surface,
  .img-box.infographic-surface {
    min-height: 300px;
  }
  .begin-infographic {
    min-height: 320px;
    padding: 16px;
  }
  .impact-grid {
    grid-template-columns: 1fr;
  }
  .impact-ring {
    --ring-size: 132px;
  }
  .framework-flow,
  .governance-matrix,
  .engagement-roadmap,
  .about-principles {
    grid-template-columns: 1fr;
  }
  .problem-grid,
  .challenge-grid,
  .donut-grid,
  .service-lines,
  .showcase-grid,
  .impact-initiative-grid,
  .showcase-metrics,
  .assurance-grid,
  .package-grid,
  .dark-columns,
  .measure-kpis,
  .case-wall,
  .benchmark-grid,
  .legal-columns,
  .engagement-grid,
  .about-grid,
  .about-grid + .about-grid,
  .contact-columns {
    grid-template-columns: 1fr;
  }
  .about-display {
    font-size: clamp(2.4rem, 12.5vw, 3.45rem);
    line-height: 1;
  }
  .problem-intro,
  .problem-intro-kpis {
    grid-template-columns: 1fr;
  }
  .page-hero-alt {
    padding: 20px 18px;
  }
  .problem-number {
    font-size: clamp(2.7rem, 15vw, 3.9rem);
  }
  .page-pills {
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 8px;
  }
  .page-pills a {
    padding: 0 0 8px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }
  .donut {
    --size: 206px;
  }
  .donut-tooltip {
    top: 256px;
    width: min(300px, calc(100vw - 30px));
  }
  .donut span {
    font-size: 2.4rem;
  }
  .problem-kpis {
    grid-template-columns: 1fr;
  }
  .timeline-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-visual {
    min-height: 300px;
  }
  .calc-inputs,
  .calc-kpis,
  .contact-metric-grid {
    grid-template-columns: 1fr;
  }
  .schedule-grid,
  .integration-grid {
    grid-template-columns: 1fr;
  }
  .calendar-embed-frame {
    min-height: 460px;
  }
  .cmmi-bar-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .cmmi-bar-row em {
    text-align: right;
  }
  .engagement-cycle {
    width: min(360px, 100%);
  }
  .cycle-phase {
    min-width: 98px;
    font-size: 0.72rem;
    padding: 8px 8px;
  }
  .cycle-core {
    width: 130px;
    height: 130px;
    font-size: 0.76rem;
  }
  .case-dashboard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .captcha-row {
    grid-template-columns: 1fr;
  }
  .grid-2,
  .grid-3,
  .metrics,
  .bars,
  .icons,
  .rings,
  .steps,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .hero-media,
  .img-box {
    min-height: 260px;
  }
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-row {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 0;
  }
  .footer-brand-block {
    display: block;
  }
  .footer-logo {
    width: min(156px, 52vw);
    max-width: 100%;
  }
  .footer-contact {
    white-space: normal;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .ai-chat-launch {
    right: 10px;
    top: calc(var(--header-height) + 8px);
    bottom: auto;
    font-size: 0.84rem;
    padding: 9px 12px;
  }
  .ai-chat-panel {
    right: 10px;
    top: calc(var(--header-height) + 54px);
    bottom: auto;
    width: min(100vw - 18px, 360px);
    max-height: min(calc(100vh - var(--header-height) - 66px), 78vh);
  }
  .ring {
    width: 205px;
    height: 205px;
  }
  .ring::before {
    width: 148px;
    height: 148px;
  }
  .ring span {
    margin-top: -111px;
    font-size: 2.2rem;
  }
  .crm-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .crm-stats,
  .crm-filters,
  .crm-board,
  .crm-grid-2,
  .admin-grid,
  .admin-form-grid,
  .sia-stats,
  .sia-layout {
    grid-template-columns: 1fr;
  }
  .payment-shell .package-grid--four {
    grid-template-columns: 1fr;
  }
  .cookie-dialog {
    padding: 16px;
  }
  .integration-config-dialog {
    padding: 14px;
  }
  .cookie-banner {
    left: 8px;
    right: 8px;
    width: auto;
    top: calc(var(--header-height) + 8px);
    bottom: auto;
    max-height: min(48dvh, 340px);
  }
  .cookie-banner-card {
    padding: 16px;
  }
  .cookie-row {
    grid-template-columns: 1fr;
  }
  .ai-chat-lead-grid {
    grid-template-columns: 1fr;
  }
  .ai-chat-lead-actions {
    justify-content: stretch;
  }
  .ai-chat-lead-actions button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  :root {
    --footer-fixed-height: 164px;
  }
  .footer-links {
    width: 100%;
  }
  .footer-contact p {
    font-size: 0.78rem;
  }
  .case-dashboard {
    grid-template-columns: 1fr;
  }
  .calendar-embed-frame {
    min-height: 390px;
  }
  .donut-tooltip {
    top: 246px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html,
  body {
    scroll-behavior: auto;
  }
  body,
  body.page-ready,
  body.page-leaving,
  body.page-leaving-left,
  body.page-leaving-right,
  body.page-enter-left,
  body.page-enter-right {
    transition: none;
    transform: none;
  }
}
