:root {
  --color-primary: #3EB5CC;
  --color-primary-dark: #3EB5CC;
  --color-secondary: #fb3f42;
  --color-secondary-dark: #e72f36;
  --color-ink: #08153d;
  --color-muted: #405170;
  --color-soft: #eef9fc;
  --color-line: #d9eef5;
  --color-white: #ffffff;
  --shadow-soft: 0 24px 60px rgba(12, 38, 72, 0.11);
  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

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

body.nav-open {
  overflow: hidden;
}

body.compare-open {
  overflow: hidden;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 238, 245, 0.75);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand img {
  width: 235px;
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 22px;
  font-size: 16px;
  font-weight: 600;
}

.site-nav a,
.site-nav .nav-disabled,
.header-actions a {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-primary-dark);
}

.nav-disabled,
.btn-disabled {
  cursor: default;
}

.nav-disabled {
  color: var(--color-ink);
}

.btn-disabled {
  opacity: 0.95;
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-actions {
  flex-direction: column;
  align-items: center;
  width: min(100%, 480px);
}

.hero-actions .btn {
  width: 100%;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

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

.btn-primary {
  color: var(--color-white);
  background: var(--color-secondary);
  box-shadow: 0 14px 30px rgba(251, 63, 66, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--color-secondary-dark);
}

.btn-outline,
.btn-video {
  color: var(--color-ink);
  background: var(--color-white);
  border-color: var(--color-primary);
}

.btn-video span {
  color: var(--color-primary-dark);
}

.btn-large {
  min-height: 54px;
  padding: 0 30px;
}

.btn-white {
  color: var(--color-secondary);
  background: var(--color-white);
  box-shadow: 0 16px 32px rgba(95, 16, 20, 0.16);
}

.nav-toggle {
  display: none;
}

.section {
  padding: 30px 0 72px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 54px;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34%;
  height: 70%;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(221, 244, 249, 0.78));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: 40px;
}

.hero-content {
  padding-bottom: 22px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 20px;
  padding: 3px 8px;
  color: #3EB5CC;
  background: #e8f6ff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.seo-heading {
  padding: 18px 0 32px;
  text-align: center;
}

.seo-heading h1 {
  margin: 0;
  color: var(--color-ink);
  font-size: 40px;
  line-height: 1.14;
  letter-spacing: 0;
  font-weight: 800;
}

.seo-heading p {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--color-muted);
  font-size: 27px;
  font-weight: 500;
}

.hero-title {
  max-width: 610px;
  margin-bottom: 26px;
  font-size: 50px;
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 800;
}

.hero-title span,
.advantages h2 span {
  display: block;
  color: var(--color-primary);
}

.hero-text {
  max-width: 480px;
  margin-bottom: 30px;
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 500;
}

.hero-visual {
  margin-right: calc((100vw - min(100vw - 56px, var(--container))) / -2);
}

.hero-visual img {
  width: 100%;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 1120px);
  margin: 30px auto 0;
}

.trust-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 14px;
  align-items: center;
  text-align: left;
  min-height: 104px;
  padding: 16px 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #dff3f8;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 26px rgba(11, 147, 199, 0.08);
}

.trust-item > div {
  min-width: 0;
}

.trust-item .icon {
  color: #3EB5CC;
}

.trust-item .icon {
  width: 44px;
  height: 44px;
  border-width: 2px;
  border-radius: 50%;
}

.trust-item:first-child .icon {
  border-radius: 13px;
}

.trust-item .icon svg,
.advantage-card .icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.trust-item .icon::after,
.advantage-card .icon::after {
  content: none;
}

.trust-item strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  line-height: 1.2;
}

.trust-item small {
  display: block;
  margin-top: 6px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.icon,
.step-icon,
.demo-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--color-primary-dark);
}

.icon {
  width: 42px;
  height: 42px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.icon.shield {
  border-radius: 14px 14px 18px 18px;
}

.icon.shield::after {
  content: "✓";
  font-weight: 900;
}

.icon.clock::after {
  width: 11px;
  height: 11px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  content: "";
  transform: translate(2px, -2px);
}

.icon.support::after {
  content: "◔";
  font-size: 26px;
  font-weight: 900;
}

.icon.calendar::after,
.demo-icon.calendar::after {
  content: "▦";
  font-size: 24px;
  font-weight: 900;
}

.icon.message::after {
  content: "...";
  font-size: 25px;
  font-weight: 900;
  transform: translateY(-5px);
}

.icon.report::after,
.step-icon.doc::after {
  content: "▤";
  font-size: 24px;
  font-weight: 900;
}

.icon.lock::after {
  content: "⌂";
  font-size: 21px;
}

.icon.cloud::after {
  content: "☁";
  font-size: 23px;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: 68px;
}

.split-grid-reverse {
  grid-template-columns: minmax(560px, 1.32fr) minmax(340px, 0.68fr);
}

.section-copy h2,
.section-heading h2 {
  margin-bottom: 22px;
  font-size: 40px;
  line-height: 1.14;
  letter-spacing: 0;
}

.section-copy p {
  max-width: 500px;
  color: var(--color-muted);
  font-weight: 500;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--color-ink);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-primary);
  content: "✓";
  font-size: 20px;
  font-weight: 900;
}

.device-showcase img,
.screen-showcase img {
  filter: drop-shadow(0 24px 38px rgba(16, 46, 82, 0.12));
}

.platform {
  padding-top: 28px;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.clients {
  background: linear-gradient(90deg, #f8fcff 0%, #fff 35%, #f7fcff 100%);
}

.screen-showcase {
  margin-right: calc((100vw - min(100vw - 56px, var(--container))) / -3);
}

.advantages {
  padding-top: 84px;
}

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

.advantage-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  align-items: start;
}

.advantage-card .icon {
  grid-row: span 2;
  background: var(--color-soft);
  border-color: #3EB5CC;
  border-width: 2px;
  color: #3EB5CC;
}

.advantage-card h3 {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.3;
}

.advantage-card p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.agent-visual {
  overflow: hidden;
  border-radius: 45% 0 var(--radius-lg) 45%;
  background: #edf7fb;
}

.agent-visual img {
  width: 100%;
}

.steps {
  padding-top: 80px;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.center {
  text-align: center;
}

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

.step-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 15px;
  padding: 0 10px;
}

.step-card:not(:last-child)::after {
  position: absolute;
  top: 54px;
  left: calc(50% + 56px);
  width: calc(100% - 68px);
  border-top: 3px dashed var(--color-primary);
  content: "";
}

.step-number {
  position: absolute;
  top: -7px;
  left: calc(50% - 54px);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.step-icon {
  width: 96px;
  height: 96px;
  background: #edf8fc;
  border-radius: 50%;
}

.step-icon::after {
  content: none;
}

.step-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #3EB5CC;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.step-icon.qr::after {
  content: "▦";
}

.step-icon.pin::after {
  content: "⌖";
}

.step-icon.chart::after {
  content: "▥";
}

.step-card h3 {
  margin-bottom: 0;
  font-size: 17px;
}

.step-card p {
  max-width: 210px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 600;
}

.pricing {
  padding-top: 82px;
  background: #fff;
}

.pricing-container {
  max-width: 1060px;
}

.price-calculator {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 28px;
  margin-bottom: 38px;
  padding: 34px 20px 12px;
  background: linear-gradient(180deg, #eaf4ff 0%, #f6fbff 74%, #fff 100%);
  border-radius: 22px 22px 14px 14px;
  box-shadow: 0 14px 32px rgba(13, 83, 126, 0.06);
}

.price-calculator::before {
  position: absolute;
  z-index: 0;
  top: -72px;
  left: 50%;
  width: 94%;
  height: 110px;
  content: "";
  background: #fff;
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%);
}

.price-calculator::after {
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 50%;
  width: 28px;
  height: 28px;
  content: "↓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #3EB5CC;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(62, 181, 204, .24);
  font-size: 17px;
  font-weight: 900;
  transform: translateX(-50%);
}

.price-calculator > * {
  position: relative;
  z-index: 1;
}

.calculator-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 12px 0 8px;
  color: #3EB5CC;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.calculator-eyebrow span {
  color: #3EB5CC;
  font-size: 15px;
}

.calculator-heading {
  margin-bottom: 14px;
  text-align: center;
}

.calculator-heading h2 {
  margin: 0 0 4px;
  color: var(--color-ink);
  font-size: 30px;
  line-height: 1.18;
}

.calculator-heading p {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  font-weight: 500;
}

.calculator-panel {
  --pack-color: #07884c;
  --pack-soft: #e6f8ef;
  display: grid;
  grid-template-columns: 1.1fr .98fr 1.42fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .86);
  border: 1px solid #cfe3f4;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(13, 83, 126, 0.06);
}

.calculator-column {
  min-width: 0;
  padding: 18px 18px 20px;
}

.calculator-column + .calculator-column {
  border-left: 1px solid #dbeaf5;
}

.calculator-column h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 13px;
  color: var(--color-ink);
  font-size: 16px;
  line-height: 1.2;
}

.calculator-column h3 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #fff;
  background: #3EB5CC;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.calculator-options {
  display: grid;
  gap: 12px;
}

.calculator-option {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 24px;
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 54px;
  padding: 9px 10px;
  color: var(--color-ink);
  background: #fff;
  border: 1px solid #d7e8f2;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(13, 83, 126, 0.06);
  cursor: pointer;
  text-align: left;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.calculator-option:hover,
.calculator-option:focus-visible {
  border-color: var(--pack-color);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--pack-color) 16%, transparent);
  transform: translateY(-1px);
}

.calculator-option.is-active {
  background: linear-gradient(90deg, color-mix(in srgb, var(--pack-color) 9%, white), #fff);
  border-color: var(--pack-color);
}

.calculator-option.essential,
.calculator-panel.is-essential,
.estimate-card.is-essential {
  --pack-color: #07884c;
  --pack-soft: #e6f8ef;
}

.calculator-option.pilotage,
.calculator-panel.is-pilotage,
.estimate-card.is-pilotage {
  --pack-color: #3EB5CC;
  --pack-soft: #e8f8fb;
}

.calculator-option.performance,
.calculator-panel.is-performance,
.estimate-card.is-performance {
  --pack-color: #fb5b5b;
  --pack-soft: #fff0f0;
}

.calculator-pack-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--pack-color);
  background: #fff;
  border: 2px solid color-mix(in srgb, var(--pack-color) 22%, white);
  border-radius: 50%;
  box-shadow: 0 7px 14px color-mix(in srgb, var(--pack-color) 12%, transparent);
}

.calculator-pack-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.calculator-option strong,
.calculator-option small {
  display: block;
}

.calculator-option strong {
  color: var(--pack-color);
  font-size: 16px;
  line-height: 1.1;
}

.calculator-option small {
  margin-top: 3px;
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 500;
}

.calculator-option i {
  display: none;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  color: #fff;
  background: var(--pack-color);
  border-radius: 50%;
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
}

.calculator-option.is-active i {
  display: inline-flex;
}

.calculator-agents {
  display: grid;
  align-content: start;
  justify-items: center;
}

.calculator-agents h3 {
  justify-self: stretch;
}

.agent-stepper {
  display: grid;
  grid-template-columns: 58px minmax(94px, 1fr) 58px;
  width: min(240px, 100%);
  overflow: hidden;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--pack-color) 28%, #d7e8f2);
  border-radius: 8px;
  box-shadow: 0 12px 22px color-mix(in srgb, var(--pack-color) 12%, transparent);
}

.agent-stepper button {
  min-height: 56px;
  color: var(--pack-color);
  background: #fff;
  border: 0;
  cursor: pointer;
  font-size: 25px;
  font-weight: 800;
}

.agent-stepper button:first-child {
  border-right: 1px solid color-mix(in srgb, var(--pack-color) 22%, #dcebf4);
}

.agent-stepper button:last-child {
  border-left: 1px solid color-mix(in srgb, var(--pack-color) 22%, #dcebf4);
}

.agent-stepper button:hover,
.agent-stepper button:focus-visible {
  color: var(--pack-color);
  background: color-mix(in srgb, var(--pack-soft) 74%, white);
}

.agent-stepper input {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: 100%;
  color: var(--pack-color);
  background: #fff;
  border: 0;
  outline: 0;
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.agent-stepper input:focus {
  box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--pack-color) 34%, white);
}

.agent-stepper input::-webkit-outer-spin-button,
.agent-stepper input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.agent-stepper input[type="number"] {
  appearance: textfield;
}

.agent-label {
  margin: 10px 0 14px;
  color: var(--color-muted);
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
}

.agent-label b,
.agent-label span {
  display: block;
}

.agent-label b {
  color: var(--color-ink);
  font-size: 16px;
}

.billing-choice {
  display: flex;
  width: min(260px, 100%);
  margin: 0 auto 14px;
  padding: 3px;
  background: #f0f7fb;
  border: 1px solid #d7e8f2;
  border-radius: 8px;
}

.billing-choice button {
  flex: 1;
  min-height: 32px;
  padding: 5px 8px;
  color: var(--color-muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.billing-choice button span {
  color: var(--pack-color);
  font-size: 11px;
}

.billing-choice button.is-active,
.billing-choice button:hover,
.billing-choice button:focus-visible {
  color: var(--pack-color);
  background: #fff;
  box-shadow: 0 3px 8px rgba(13, 83, 126, 0.08);
}

.agent-summary {
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  width: min(260px, 100%);
  padding: 12px 16px;
  background: linear-gradient(90deg, var(--pack-soft), color-mix(in srgb, var(--pack-soft) 54%, white));
  border-radius: 8px;
}

.agent-summary > span {
  color: var(--pack-color);
}

.agent-summary svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.agent-summary p {
  margin: 0;
  color: var(--color-ink);
  font-size: 13px;
  line-height: 1.35;
}

.agent-summary b {
  display: block;
}

.estimate-card {
  --pack-color: #07884c;
  --pack-soft: #e6f8ef;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d7e8f2;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(13, 83, 126, 0.06);
}

.estimate-card-header {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  background: linear-gradient(90deg, var(--pack-soft), #fff);
}

.estimate-card-header p {
  margin: 0;
}

.estimate-card-header small,
.estimate-card-header strong {
  display: block;
}

.estimate-card-header small {
  color: var(--color-ink);
  font-size: 12px;
  font-weight: 600;
}

.estimate-card-header strong {
  color: var(--pack-color);
  font-size: 18px;
  line-height: 1.15;
  text-transform: uppercase;
}

.estimate-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 14px 16px;
}

.estimate-total {
  display: grid;
  align-content: center;
  padding-right: 16px;
}

.estimate-total small {
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 700;
}

.estimate-total strong {
  color: var(--pack-color);
  font-size: 34px;
  line-height: 1.05;
}

.estimate-total > span {
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 700;
}

.estimate-detail {
  padding-left: 16px;
  border-left: 1px solid #dcebf4;
}

.estimate-detail h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: var(--color-ink);
  font-size: 13px;
}

.estimate-detail h4 span {
  color: var(--pack-color);
}

.estimate-detail svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.estimate-detail p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 7px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.25;
}

.estimate-detail p:last-child {
  margin-top: 10px;
  margin-bottom: 0;
  color: var(--pack-color);
  font-weight: 800;
}

.estimate-detail b {
  color: inherit;
  white-space: nowrap;
}

.daily-cost {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 0;
  padding: 10px 16px;
  color: var(--color-ink);
  background: var(--pack-soft);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.daily-cost span {
  color: var(--pack-color);
}

.daily-cost svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.daily-cost small {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 600;
}

.daily-cost b {
  margin-left: auto;
  color: var(--pack-color);
  font-size: 16px;
}

.calculator-footnote {
  margin: 8px 0 0;
  color: var(--color-muted);
  text-align: center;
  font-size: 13px;
}

.pricing-heading {
  text-align: center;
}

.pricing-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 7px 15px;
  color: #3EB5CC;
  background: #eaf5ff;
  border-radius: 9px;
}

.pricing-heading .eyebrow::before {
  width: 15px;
  height: 15px;
  content: "";
  background: currentColor;
  clip-path: polygon(0 26%, 43% 26%, 43% 0, 57% 0, 57% 26%, 100% 26%, 100% 40%, 57% 40%, 57% 100%, 43% 100%, 43% 40%, 0 40%);
}

.pricing-heading h2 {
  margin-bottom: 8px;
  font-size: 36px;
  line-height: 1.18;
}

.pricing-notes {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--color-muted);
  font-size: 16px;
  font-weight: 500;
}

.pricing-notes span::before {
  margin-right: 8px;
  color: #3EB5CC;
  content: "∞";
  font-size: 20px;
  font-weight: 800;
  vertical-align: -1px;
}

.pricing-notes span:first-child::before {
  content: "●";
  font-size: 13px;
}

.pricing-matrix {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  overflow: visible;
  margin-top: 18px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid #cfe3f4;
  border-radius: 12px;
  box-shadow: 0 18px 36px rgba(13, 83, 126, 0.07);
}

.pricing-compare-modal[hidden] {
  display: none;
}

.pricing-compare-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 30px;
}

.pricing-compare-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 17, 54, .48);
  backdrop-filter: blur(5px);
}

.pricing-compare-dialog {
  position: relative;
  z-index: 1;
  width: min(1220px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  padding: 28px 28px 30px;
  background: #fff;
  border: 1px solid #cfe3f4;
  border-radius: 16px;
  box-shadow: 0 28px 70px rgba(0, 17, 54, .22);
}

.pricing-compare-heading {
  text-align: center;
}

.pricing-compare-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  padding: 7px 15px;
  color: #3EB5CC;
  background: #eaf5ff;
  border-radius: 9px;
}

.pricing-compare-heading h2 {
  margin-bottom: 10px;
  font-size: 34px;
  line-height: 1.15;
}

.pricing-compare-close {
  position: sticky;
  top: 0;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  float: right;
  width: 42px;
  height: 42px;
  color: var(--color-ink);
  background: #fff;
  border: 1px solid #d7e8f2;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(13, 83, 126, .1);
  cursor: pointer;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.pricing-compare-close:hover,
.pricing-compare-close:focus-visible {
  color: #fff;
  background: #fb5b5b;
  border-color: #fb5b5b;
}

.pricing-compare-action {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pricing-compare-action .btn {
  min-width: 260px;
}

.pricing-matrix .essential {
  --pack-color: #07884c;
  --pack-soft: #e6f8ef;
}

.pricing-matrix .pilotage {
  --pack-color: #3EB5CC;
  --pack-soft: #e8f8fb;
}

.pricing-matrix .performance {
  --pack-color: #fb5b5b;
  --pack-soft: #fff0f0;
}

.pricing-matrix-head,
.matrix-feature,
.matrix-check,
.matrix-missing,
.matrix-minimum-label,
.matrix-minimum {
  border-right: 1px solid #d9e8f2;
  border-bottom: 1px solid #d9e8f2;
}

.pricing-matrix > :nth-child(4n) {
  border-right: 0;
}

.pricing-matrix-head {
  min-height: 206px;
  background: #fff;
}

.feature-head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 32px 28px;
}

.feature-head strong {
  color: var(--color-ink);
  font-size: 20px;
  line-height: 1.2;
}

.matrix-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  color: #07884c;
  background: #effaf5;
  border-radius: 9px;
}

.matrix-feature-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.pack-head {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 3px;
  padding: 26px 24px 12px;
  text-align: center;
  background: linear-gradient(120deg, #fff 0%, var(--pack-soft) 180%);
}

.pack-head .popular-badge {
  top: 0;
  padding: 4px 16px;
  font-size: 13px;
  transform: translate(-50%, -50%);
}

.pack-head .price-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 2px;
  border-width: 9px;
}

.pack-head .price-icon svg {
  width: 31px;
  height: 31px;
}

.pack-head .price-kicker {
  font-size: 13px;
}

.pack-head h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}

.pack-head .matrix-price {
  margin: 8px 0 0;
  color: var(--pack-color);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.pack-head small {
  color: var(--color-ink);
  font-size: 12px;
  font-weight: 700;
}

.matrix-included {
  display: grid;
  width: 100%;
  min-height: 48px;
  margin: 9px 0 0;
  padding: 7px 10px;
  align-content: center;
  color: var(--color-ink);
  background: color-mix(in srgb, var(--pack-soft) 70%, white);
  border: 1px solid color-mix(in srgb, var(--pack-color) 25%, white);
  border-radius: 7px;
  font-size: 13px;
  line-height: 1.15;
}

.matrix-included b {
  color: var(--pack-color);
  text-transform: uppercase;
}

.matrix-feature {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 28px;
  padding: 4px 20px;
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}

.matrix-feature > span[aria-hidden="true"] {
  display: inline-flex;
  justify-content: center;
  width: 18px;
  flex: 0 0 auto;
  color: #07884c;
  font-size: 15px;
  font-weight: 900;
}

.matrix-check,
.matrix-missing {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.matrix-check {
  color: #fff;
}

.matrix-check::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  content: "";
  background: var(--pack-color);
  border-radius: 50%;
}

.matrix-check {
  font-size: 0;
}

.matrix-check::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "✓";
  color: #fff;
  font-size: 10px;
  transform: translate(-50%, -50%);
}

.matrix-missing {
  color: #7f8da3;
}

.matrix-minimum-label,
.matrix-minimum {
  min-height: 76px;
  border-bottom: 0;
}

.matrix-minimum-label {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 14px;
  align-content: center;
  padding: 12px 24px;
  color: var(--color-ink);
}

.matrix-minimum-label span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-row: span 2;
  width: 30px;
  height: 30px;
  color: #3EB5CC;
  border: 2px solid #3EB5CC;
  border-radius: 50%;
  font-size: 17px;
  font-weight: 900;
  font-style: normal;
}

.matrix-minimum-label b {
  font-size: 16px;
}

.matrix-minimum-label small {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 600;
}

.matrix-minimum {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 10px;
  color: var(--pack-color);
  background: linear-gradient(120deg, color-mix(in srgb, var(--pack-soft) 70%, white), #fff);
  text-align: center;
}

.matrix-minimum b {
  font-size: 16px;
  line-height: 1.2;
}

.matrix-minimum span {
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 600;
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible;
  min-width: 0;
  padding: 0 12px 12px;
  background: #fff;
  border: 1px solid #d8e9ee;
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(13, 83, 126, 0.06);
}

.price-card.essential {
  --pack-color: #07884c;
  --pack-soft: #e6f8ef;
  border-color: #bfe9d8;
}

.price-card.pilotage {
  --pack-color: #3EB5CC;
  --pack-soft: #e8f8fb;
  border-color: #3EB5CC;
}

.price-card.performance {
  --pack-color: #fb5b5b;
  --pack-soft: #fff0f0;
  border-color: #ffb7b7;
}

.price-card-header {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 130px;
  margin: 0 -12px;
  padding: 16px 18px;
  background: linear-gradient(120deg, #fff 0%, var(--pack-soft) 180%);
  border-radius: 11px 11px 0 0;
}

.price-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  color: var(--pack-color);
  background: #fff;
  border: 10px solid color-mix(in srgb, var(--pack-color) 24%, white);
  border-radius: 50%;
  box-shadow: 0 8px 16px color-mix(in srgb, var(--pack-color) 25%, transparent);
}

.pilotage .price-icon {
  color: var(--pack-color);
  background: #fff;
}

.price-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.price-kicker {
  display: block;
  color: var(--pack-color);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 4px 0 2px;
  color: var(--color-ink);
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.price-card-header p {
  margin: 0;
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.price-value {
  display: grid;
  justify-items: center;
  gap: 0;
  padding: 8px 0 10px;
  color: var(--pack-color);
  text-align: center;
}

.price-value strong {
  font-size: 32px;
  line-height: 1.05;
}

.price-value span {
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 600;
}

.pack-included {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 8px 16px;
  border: 1px solid color-mix(in srgb, var(--pack-color) 28%, white);
  border-radius: 8px;
}

.pack-included > strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: #fff;
  background: linear-gradient(145deg, color-mix(in srgb, var(--pack-color) 72%, white), var(--pack-color));
  border-radius: 50%;
  box-shadow: 0 6px 13px color-mix(in srgb, var(--pack-color) 25%, transparent);
  font-size: 24px;
  line-height: 1;
}

.pack-included p {
  margin: 0;
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.pack-included b,
.pack-included span {
  display: block;
}

.pack-included b {
  margin-bottom: 2px;
  color: var(--pack-color);
  font-size: 16px;
  line-height: 1.2;
  text-transform: uppercase;
}

.pack-limits {
  position: relative;
  padding: 8px 0 0;
  border: 1px solid color-mix(in srgb, var(--pack-color) 20%, white);
  border-radius: 8px;
}

.pack-limits > span {
  position: absolute;
  top: -8px;
  left: 50%;
  padding: 0 8px;
  color: var(--pack-color);
  background: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.pack-limits > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pack-limits p {
  min-height: 78px;
  margin: 0;
  padding: 0 5px;
  color: var(--color-ink);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.pack-limits p + p {
  border-left: 1px solid color-mix(in srgb, var(--pack-color) 18%, white);
}

.pack-limits b {
  display: block;
  margin-bottom: 2px;
  color: var(--pack-color);
  font-size: 16px;
}

.limit-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 28px;
  color: var(--pack-color);
}

.limit-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.pack-limits p:nth-child(2) .limit-icon svg {
  display: none;
}

.pack-limits p:nth-child(2) .limit-icon::before {
  color: var(--pack-color);
  content: "∞";
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.pack-limits p:nth-child(2) b {
  font-size: 0;
}

.pack-limits p:nth-child(2) b::after {
  content: "Illimité";
  font-size: 16px;
}

.pack-features {
  flex: 1 1 auto;
  padding: 12px 2px 8px;
}

.pack-features h4 {
  margin: 0 0 6px;
  color: var(--pack-color);
  font-size: 15px;
  line-height: 1.25;
  text-transform: uppercase;
}

.pack-features ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pack-features li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding-left: 18px;
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.pack-features li::before {
  position: absolute;
  left: 1px;
  color: var(--pack-color);
  content: "✓";
  font-size: 13px;
  font-weight: 900;
}

.feature-help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-left: auto;
  color: #3EB5CC;
  background: #effbfc;
  border: 1px solid #3EB5CC;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.feature-help:hover,
.feature-help:focus-visible,
.is-tooltip-open > .feature-help {
  color: #fff;
  background: #3EB5CC;
  border-color: #3EB5CC;
}

.feature-tooltip {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  z-index: 30;
  display: none;
  width: min(285px, 92vw);
  padding: 11px 13px;
  color: var(--color-ink);
  background: #fff;
  border: 1px solid #cfe3f4;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(13, 83, 126, .16);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.feature-tooltip[hidden] {
  display: none !important;
}

.feature-tooltip::before {
  position: absolute;
  top: -6px;
  right: 12px;
  width: 10px;
  height: 10px;
  content: "";
  background: #fff;
  border-top: 1px solid #cfe3f4;
  border-left: 1px solid #cfe3f4;
  transform: rotate(45deg);
}

.is-tooltip-open {
  z-index: 35;
}

.is-tooltip-open > .feature-tooltip {
  display: block;
}

.pack-minimum {
  margin: 0 0 8px;
  padding: 8px 5px;
  color: var(--color-ink);
  background: var(--pack-soft);
  border-radius: 8px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.pack-minimum span {
  font-weight: 500;
}

.pack-availability {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  color: #fff;
  background: var(--pack-color);
  border-radius: 7px;
  font-size: 16px;
  font-weight: 800;
}

.essential .pack-availability {
  background: #9aabba;
}

.pilotage .pack-availability {
  background: linear-gradient(90deg, #3EB5CC, #3EB5CC);
}

.performance .pack-availability {
  background: #fb5255;
}

.popular-badge {
  position: absolute;
  z-index: 1;
  top: -11px;
  left: 50%;
  padding: 4px 14px;
  color: #fff;
  background: #3EB5CC;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.annual-promo {
  display: grid;
  grid-template-columns: 92px minmax(360px, 1fr) 380px;
  gap: 24px;
  align-items: center;
  margin-top: 16px;
  padding: 18px 8%;
  background: #f8fcff;
  border: 1px solid #dcebf4;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(13, 83, 126, 0.04);
}

.annual-promo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  position: relative;
  z-index: 0;
  color: #fff;
  background: #e5f7fb;
  border: 2px solid #3EB5CC;
  border-radius: 50%;
  font-size: 27px;
  font-style: normal;
  font-weight: 800;
}

.annual-promo-icon::before {
  position: absolute;
  inset: 18px 16px;
  z-index: -1;
  content: '';
  background: #3EB5CC;
  border-radius: 5px 8px 8px 5px;
  clip-path: polygon(0 0, 70% 0, 100% 50%, 70% 100%, 0 100%);
  transform: rotate(-45deg);
}

.annual-promo strong,
.annual-promo p,
.annual-promo-discount span {
  display: block;
}

.annual-promo strong {
  color: var(--color-ink);
  font-size: 16px;
  line-height: 1.2;
}

.annual-promo p {
  margin: 7px 0 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.25;
  max-width: 430px;
}

.annual-promo-discount {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 10px 24px;
  background: #fff;
  border: 1px solid #e0edf4;
  border-radius: 10px;
}

.annual-promo-discount strong {
  color: #fb5255;
  font-size: 38px;
  white-space: nowrap;
}

.annual-promo-discount span {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.35;
}

.enterprise-promo {
  display: grid;
  grid-template-columns: 92px minmax(360px, 1fr) 380px;
  gap: 24px;
  align-items: center;
  margin-top: 10px;
  padding: 14px 8%;
  background: #fbf9ff;
  border: 1px solid #e4dcff;
  border-radius: 10px;
}

.enterprise-promo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  color: #7042d8;
  background: #f0ebff;
  border: 1px solid #ded2ff;
  border-radius: 50%;
}

.enterprise-promo-icon svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.enterprise-promo strong,
.enterprise-promo p,
.enterprise-promo-action small {
  display: block;
}

.enterprise-promo > div > strong {
  color: var(--color-ink);
  font-size: 16px;
}

.enterprise-promo p {
  max-width: 430px;
  margin: 4px 0 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.25;
}

.enterprise-promo-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #eee9ff;
  border-radius: 9px;
}

.enterprise-promo-action strong {
  color: #7042d8;
  font-size: 16px;
}

.enterprise-promo-action small {
  margin-top: 2px;
  color: var(--color-muted);
  font-size: 14px;
}

.enterprise-promo-action .btn {
  min-height: 34px;
  padding: 0 18px;
  color: #fff;
  background: #7042d8;
  border-color: #7042d8;
  font-size: 14px;
}

.enterprise-promo-action .btn:hover,
.enterprise-promo-action .btn:focus-visible {
  background: #5d30c4;
  border-color: #5d30c4;
}

.reality-faq-inner {
  padding: 28px 20px 24px;
  background: #fbfdff;
  border: 1px solid #e0edf5;
  border-radius: 10px;
}

.reality-faq .section-heading {
  margin-bottom: 18px;
}

.reality-faq .section-heading .eyebrow {
  margin-bottom: 8px;
  padding: 5px 12px;
  color: #3EB5CC;
  background: #edfafe;
  border-radius: 999px;
  font-size: 11px;
}

.reality-faq .section-heading h2 {
  margin-bottom: 7px;
  font-size: 30px;
}

.reality-faq .section-heading > p:last-child {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.45;
}

.reality-faq-carousel {
  position: relative;
  padding: 0 42px;
}

.reality-faq-viewport {
  overflow: hidden;
}

.reality-faq-grid {
  display: flex;
  gap: 16px;
  transition: transform .35s ease;
}

.reality-faq-grid article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  flex: 0 0 calc((100% - 32px) / 3);
  min-height: 260px;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid #e5eef5;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(13, 83, 126, 0.04);
}

.reality-faq-nav {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #3EB5CC;
  background: #fff;
  border: 1px solid #e0edf5;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(13, 83, 126, .1);
  cursor: pointer;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
}

.reality-faq-nav:hover,
.reality-faq-nav:focus-visible {
  color: #fff;
  background: #3EB5CC;
  border-color: #3EB5CC;
}

.reality-faq-nav:disabled {
  opacity: .4;
  cursor: default;
}

.reality-faq-nav.is-previous {
  left: -8px;
}

.reality-faq-nav.is-next {
  right: -8px;
}

.reality-faq-grid article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #3EB5CC;
  background: #edfafe;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.reality-faq-grid article svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.reality-faq-grid h3 {
  margin: 0 0 6px;
  color: var(--color-ink);
  font-size: 16px;
  line-height: 1.25;
  min-height: 60px;
}

.reality-faq-grid p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.5;
}

.reality-faq-grid p + p {
  margin-top: 10px;
}

.reality-faq-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  min-width: 285px;
  margin: 18px auto 0;
  padding: 10px 20px;
  color: #3EB5CC;
  background: #fff;
  border: 1px solid #3EB5CC;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.reality-faq-link:hover,
.reality-faq-link:focus-visible {
  color: #fff;
  background: #3EB5CC;
}

.reality-faq-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.reality-faq-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: #dbeaf8;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.reality-faq-dots button.is-active {
  background: #3EB5CC;
}

.reality-faq-link span {
  margin-left: 0;
  font-size: 16px;
}

.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(4, 25, 49, .44);
}

.cookie-banner[hidden],
.cookie-preferences[hidden] {
  display: none !important;
}

.cookie-banner-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, 720px);
  padding: 28px;
  background: #fff;
  border: 1px solid #d5e6f0;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(4, 25, 49, .22);
}

.cookie-banner h2,
.cookie-preferences h2 {
  margin: 0 0 6px;
  color: var(--color-ink);
  font-size: 18px;
}

.cookie-banner p,
.cookie-preferences-dialog > p {
  margin: 0 0 8px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.45;
}

.cookie-banner a {
  color: #3EB5CC;
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-end;
  gap: 10px;
}

.btn-cookie-primary,
.btn-cookie-secondary {
  min-height: 40px;
  padding: 0 18px;
  font-size: 13px;
}

.btn-cookie-primary {
  color: #fff;
  background: #3EB5CC;
  border-color: #3EB5CC;
}

.btn-cookie-primary:hover,
.btn-cookie-primary:focus-visible {
  background: #3EB5CC;
  border-color: #3EB5CC;
}

.btn-cookie-secondary {
  color: var(--color-ink);
  background: #fff;
  border-color: #c8dce8;
}

.cookie-preferences {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 20px;
}

.cookie-preferences-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 25, 49, .44);
}

.cookie-preferences-dialog {
  position: relative;
  width: min(100%, 480px);
  padding: 28px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(4, 25, 49, .22);
}

.cookie-preferences-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  color: var(--color-ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 25px;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid #e3eef4;
}

.cookie-option strong,
.cookie-option small {
  display: block;
}

.cookie-option strong {
  color: var(--color-ink);
  font-size: 14px;
}

.cookie-option small {
  margin-top: 3px;
  color: var(--color-muted);
  font-size: 12px;
}

.cookie-option input {
  width: 18px;
  height: 18px;
  accent-color: #3EB5CC;
}

.cookie-save {
  width: 100%;
  margin-top: 16px;
}

@media (max-width: 760px) {
  .reality-faq-grid article {
    flex-basis: calc((100% - 16px) / 2);
  }
}

@media (max-width: 520px) {
  .reality-faq-carousel {
    padding: 0 28px;
  }

  .reality-faq-grid article {
    flex-basis: 100%;
    min-height: 0;
  }

  .reality-faq-nav.is-previous {
    left: -2px;
  }

  .reality-faq-nav.is-next {
    right: -2px;
  }

  .reality-faq-inner {
    padding-right: 14px;
    padding-left: 14px;
  }

  .cookie-banner {
    padding: 14px;
  }

  .cookie-banner-content {
    padding: 22px;
  }

  .cookie-banner-content,
  .cookie-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .annual-promo {
    grid-template-columns: 72px minmax(0, 1fr);
    padding: 18px 22px;
  }

  .annual-promo-discount {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .annual-promo {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .annual-promo-icon {
    width: 58px;
    height: 58px;
    font-size: 30px;
  }

  .annual-promo-discount {
    grid-column: auto;
  }

  .enterprise-promo {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 16px;
  }

  .enterprise-promo-action {
    grid-column: 1 / -1;
  }
}

.pricing-footnote {
  margin: 10px 0 0;
  color: var(--color-muted);
  text-align: center;
  font-size: 16px;
}

.faq {
  padding-top: 84px;
  background: #fff;
}

.faq-container {
  max-width: 1060px;
}

.faq .section-heading {
  max-width: 650px;
  margin: 0 auto;
}

.faq .section-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 16px;
  color: #3EB5CC;
  background: #eaf5ff;
  border-radius: 9px;
}

.faq .section-heading .eyebrow::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #fff;
  background: #3EB5CC;
  border-radius: 50%;
  content: "?";
  font-size: 12px;
  font-weight: 900;
}

.faq .section-heading h2 {
  margin-bottom: 10px;
  font-size: 40px;
}

.faq .section-heading > p:last-child {
  max-width: 510px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 17px;
  font-weight: 500;
}

.faq-categories {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.faq-category {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 84px;
  padding: 14px 16px;
  color: var(--color-ink);
  text-align: left;
  background: #fff;
  border: 1px solid #dcebf4;
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(13, 83, 126, 0.05);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-category:hover,
.faq-category:focus-visible,
.faq-category.is-active {
  border-color: #3EB5CC;
  box-shadow: 0 12px 25px rgba(62, 181, 204, 0.16);
  transform: translateY(-1px);
}

.faq-category > span:last-child {
  min-width: 0;
}

.faq-category strong,
.faq-category small {
  display: block;
}

.faq-category strong {
  font-size: 14px;
  line-height: 1.25;
}

.faq-category small {
  margin-top: 4px;
  color: #3EB5CC;
  font-size: 13px;
}

.faq-category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  color: #3EB5CC;
  background: #e3f1ff;
  border-radius: 50%;
}

.faq-category-icon.security {
  color: #3EB5CC;
  background: #e3f8e9;
}

.faq-category-icon.features {
  color: #9442e8;
  background: #f0e5ff;
}

.faq-category-icon.account {
  color: #f18a1d;
  background: #fff0dd;
}

.faq-category-icon.support {
  color: #3EB5CC;
  background: #ddf6f8;
}

.faq-category-icon svg,
.faq-contact-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.faq-list {
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid #dcebf4;
  border-radius: 11px;
  box-shadow: 0 10px 24px rgba(13, 83, 126, 0.05);
}

.faq-item {
  background: #fff;
}

.faq-item[hidden] {
  display: none;
}

.faq-item + .faq-item {
  border-top: 1px solid #dcebf4;
}

.faq-item summary {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 16px;
  min-height: 56px;
  padding: 14px 20px;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary > span:nth-child(2) {
  font-size: 16px;
  font-weight: 500;
}

.faq-toggle {
  position: relative;
  width: 30px;
  height: 30px;
  background: #eaf5ff;
  border-radius: 50%;
}

.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  border-top: 2px solid #3EB5CC;
  content: "";
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-toggle::after {
  display: none;
}

.faq-chevron {
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--color-muted);
  border-bottom: 2px solid var(--color-muted);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(225deg);
}

.faq-answer {
  padding: 0 54px 20px 70px;
}

.faq-answer p {
  max-width: 790px;
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.faq-answer p + p {
  margin-top: 12px;
}

.faq-contact {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  padding: 20px 28px;
  background: #f5fbff;
  border: 1px solid #dcebf4;
  border-radius: 11px;
}

.faq-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  color: #fff;
  background: #3EB5CC;
  border-radius: 50%;
}

.faq-contact h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.faq-contact p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 500;
}

.demo-band {
  padding: 24px 0 26px;
}

.demo-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr auto;
  align-items: center;
  gap: 34px;
  min-height: 130px;
  padding: 28px 42px;
  color: var(--color-white);
  background: linear-gradient(135deg, #fb3f42 0%, #ff4e4f 100%);
  border-radius: 14px;
  box-shadow: 0 22px 50px rgba(251, 63, 66, 0.24);
}

.demo-title {
  display: flex;
  align-items: center;
  gap: 22px;
}

.demo-title h2 {
  max-width: 460px;
  margin: 0;
  font-size: 30px;
  line-height: 1.22;
}

.demo-icon {
  width: 78px;
  height: 78px;
  color: var(--color-secondary);
  background: var(--color-white);
  border-radius: 50%;
}

.demo-inner p {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
}

.demo-request-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 18%, rgba(62, 181, 204, 0.12), transparent 26%),
    radial-gradient(circle at 90% 12%, rgba(251, 63, 66, 0.08), transparent 24%),
    linear-gradient(180deg, #f6fbff 0%, #ffffff 46%, #f8fbff 100%);
}

.demo-request {
  padding: 42px 0 64px;
}

.demo-request-shell {
  padding: 42px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(217, 238, 245, 0.95);
  border-radius: 12px;
  box-shadow: 0 28px 80px rgba(12, 38, 72, 0.11);
}

.demo-request-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.demo-request-heading h1 {
  margin-bottom: 12px;
  color: var(--color-ink);
  font-size: 38px;
  line-height: 1.12;
}

.demo-request-heading h1 span {
  color: #3EB5CC;
}

.demo-request-heading p {
  max-width: 560px;
  margin: 0 auto;
  color: #405170;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.demo-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  max-width: 760px;
  margin: 0 auto 54px;
  padding: 0;
  list-style: none;
}

.demo-progress li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: #566780;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.demo-progress li:not(:last-child)::after {
  position: absolute;
  top: 15px;
  left: calc(50% + 32px);
  width: calc(100% - 30px);
  height: 2px;
  content: "";
  background: #dbe7f1;
}

.demo-progress li.is-active,
.demo-progress li.is-complete {
  color: #3EB5CC;
}

.demo-progress li.is-active::after,
.demo-progress li.is-complete::after {
  background: linear-gradient(90deg, #3EB5CC, #3EB5CC);
}

.demo-progress span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #5a6d86;
  background: #f1f6fb;
  border: 1px solid #dce8f3;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.demo-progress li.is-active span,
.demo-progress li.is-complete span {
  color: #fff;
  background: #3EB5CC;
  border-color: #3EB5CC;
}

.demo-request-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.demo-sidebar {
  display: grid;
  gap: 24px;
}

.demo-sidebar-card,
.demo-help-card,
.demo-form {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #dfeaf3;
  box-shadow: 0 20px 54px rgba(12, 38, 72, 0.08);
}

.demo-sidebar-card {
  padding: 28px 24px;
  border-radius: 10px;
}

.demo-sidebar-card h2,
.demo-help-card h2 {
  margin-bottom: 20px;
  color: var(--color-ink);
  font-size: 20px;
  line-height: 1.2;
}

.demo-sidebar-list {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.demo-sidebar-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.demo-sidebar-list strong,
.demo-sidebar-list small {
  display: block;
}

.demo-sidebar-list strong {
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.demo-sidebar-list small {
  margin-top: 4px;
  color: #405170;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.demo-feature-icon,
.demo-help-icon,
.demo-confirmation-icon {
  display: grid;
  place-items: center;
  background: #eaf7ff;
  border-radius: 50%;
}

.demo-feature-icon {
  width: 36px;
  height: 36px;
}

.demo-feature-icon::before,
.demo-help-icon::before,
.demo-confirmation-icon::before,
.demo-agent-icon::before {
  width: 20px;
  height: 20px;
  content: "";
  background: #3EB5CC;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.demo-feature-icon.qr::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h6v6H4V4Zm2 2v2h2V6H6Zm8-2h6v6h-6V4Zm2 2v2h2V6h-2ZM4 14h6v6H4v-6Zm2 2v2h2v-2H6Zm9-2h2v2h-2v-2Zm-3 0h2v3h-2v-3Zm5 3h3v2h-3v-2Zm-5 2h4v2h-4v-2Zm7-5h1v2h-1v-2Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h6v6H4V4Zm2 2v2h2V6H6Zm8-2h6v6h-6V4Zm2 2v2h2V6h-2ZM4 14h6v6H4v-6Zm2 2v2h2v-2H6Zm9-2h2v2h-2v-2Zm-3 0h2v3h-2v-3Zm5 3h3v2h-3v-2Zm-5 2h4v2h-4v-2Zm7-5h1v2h-1v-2Z'/%3E%3C/svg%3E");
}

.demo-feature-icon.calendar::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h2v3h6V2h2v3h3v16H4V5h3V2Zm11 8H6v9h12v-9Zm-9 2h2v2H9v-2Zm4 0h2v2h-2v-2Zm-4 4h2v2H9v-2Zm4 0h2v2h-2v-2Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h2v3h6V2h2v3h3v16H4V5h3V2Zm11 8H6v9h12v-9Zm-9 2h2v2H9v-2Zm4 0h2v2h-2v-2Zm-4 4h2v2H9v-2Zm4 0h2v2h-2v-2Z'/%3E%3C/svg%3E");
}

.demo-feature-icon.chart::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 20H3V10h2v10Zm8 0h-2V4h2v16Zm8 0h-2V8h2v12Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 20H3V10h2v10Zm8 0h-2V4h2v16Zm8 0h-2V8h2v12Z'/%3E%3C/svg%3E");
}

.demo-feature-icon.shield::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 20 5v6c0 5-3.3 8.7-8 11-4.7-2.3-8-6-8-11V5l8-3Zm-1 12.6 5.2-5.2-1.4-1.4L11 11.8 9.2 10l-1.4 1.4 3.2 3.2Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 20 5v6c0 5-3.3 8.7-8 11-4.7-2.3-8-6-8-11V5l8-3Zm-1 12.6 5.2-5.2-1.4-1.4L11 11.8 9.2 10l-1.4 1.4 3.2 3.2Z'/%3E%3C/svg%3E");
}

.demo-help-card {
  padding: 24px;
  background: linear-gradient(135deg, #f2fbff, #eaf6ff);
  border-radius: 10px;
}

.demo-help-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
}

.demo-help-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3a7 7 0 0 0-7 7v5h4v-6H7a5 5 0 0 1 10 0h-2v6h4v-5a7 7 0 0 0-7-7Zm2.6 15c-.6.7-1.5 1-2.6 1h-2v2h2c2 0 3.6-.7 4.6-2h-2Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3a7 7 0 0 0-7 7v5h4v-6H7a5 5 0 0 1 10 0h-2v6h4v-5a7 7 0 0 0-7-7Zm2.6 15c-.6.7-1.5 1-2.6 1h-2v2h2c2 0 3.6-.7 4.6-2h-2Z'/%3E%3C/svg%3E");
}

.demo-help-card h2 {
  margin-bottom: 8px;
  font-size: 14px;
}

.demo-help-card p {
  margin-bottom: 14px;
  color: #405170;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
}

.demo-help-card a {
  color: #3EB5CC;
  font-size: 12px;
  font-weight: 900;
}

.demo-form {
  min-height: 620px;
  padding: 44px;
  border-radius: 12px;
}

.demo-step {
  display: grid;
  gap: 28px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.demo-step[hidden],
.demo-confirmation[hidden],
.other-need-field[hidden] {
  display: none;
}

.demo-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.demo-step legend,
.demo-confirmation h2 {
  margin-bottom: 22px;
  color: var(--color-ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.demo-field {
  display: grid;
  gap: 10px;
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 700;
}

.demo-field strong,
.demo-choice-group strong[aria-hidden="true"] {
  color: var(--color-secondary);
}

.demo-field input,
.demo-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  color: var(--color-ink);
  background: #fff;
  border: 1px solid #cfdfee;
  border-radius: 8px;
  font: inherit;
  font-weight: 600;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.demo-field textarea {
  min-height: 118px;
  padding-top: 14px;
  resize: vertical;
}

.demo-field input::placeholder,
.demo-field textarea::placeholder {
  color: #9aabc0;
}

.demo-field input:focus,
.demo-field textarea:focus {
  border-color: #3EB5CC;
  box-shadow: 0 0 0 4px rgba(62, 181, 204, 0.16);
}

.demo-field input:user-invalid,
.demo-field textarea:user-invalid {
  border-color: var(--color-secondary);
}

.demo-choice-group {
  display: grid;
  gap: 16px;
}

.demo-choice-group > p {
  margin: 0;
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 900;
}

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

.agent-choice-grid label,
.needs-choice-grid label {
  cursor: pointer;
}

.agent-choice-grid input,
.needs-choice-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.agent-choice-grid label > span {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  min-height: 82px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #d4e2f0;
  border-radius: 8px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.agent-choice-grid label:hover > span,
.needs-choice-grid label:hover > span {
  border-color: #3EB5CC;
  transform: translateY(-1px);
}

.agent-choice-grid input:focus-visible + span,
.needs-choice-grid input:focus-visible + span {
  outline: 3px solid rgba(62, 181, 204, 0.22);
  outline-offset: 2px;
}

.agent-choice-grid input:checked + span,
.needs-choice-grid input:checked + span {
  background: linear-gradient(135deg, #ffffff, #eff8ff);
  border-color: #3EB5CC;
  box-shadow: 0 12px 28px rgba(62, 181, 204, 0.16);
}

.agent-choice-grid .is-wide {
  grid-column: 1 / -1;
}

.demo-agent-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.demo-agent-icon::before {
  display: block;
  background: #3EB5CC;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.5 11a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7Zm7 0a3 3 0 1 1 0-6 3 3 0 0 1 0 6ZM2.5 20c.6-4 2.8-6 6-6s5.4 2 6 6h-12Zm10.5-6.5c.8-.4 1.6-.5 2.5-.5 3 0 5 1.8 5.5 5.5h-4.8a8 8 0 0 0-3.2-5Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.5 11a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7Zm7 0a3 3 0 1 1 0-6 3 3 0 0 1 0 6ZM2.5 20c.6-4 2.8-6 6-6s5.4 2 6 6h-12Zm10.5-6.5c.8-.4 1.6-.5 2.5-.5 3 0 5 1.8 5.5 5.5h-4.8a8 8 0 0 0-3.2-5Z'/%3E%3C/svg%3E");
}

.agent-choice-grid strong,
.agent-choice-grid small {
  display: block;
}

.agent-choice-grid strong {
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

.agent-choice-grid small {
  margin-top: 4px;
  color: #405170;
  font-size: 12px;
  font-weight: 700;
}

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

.needs-choice-grid label > span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 16px 12px 44px;
  color: var(--color-ink);
  background: #fff;
  border: 1px solid #d4e2f0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.needs-choice-grid label > span::before {
  position: absolute;
  left: 16px;
  width: 16px;
  height: 16px;
  content: "";
  background: #fff;
  border: 2px solid #9fb4cc;
  border-radius: 4px;
}

.needs-choice-grid input:checked + span::before {
  background: #3EB5CC;
  border-color: #3EB5CC;
}

.needs-choice-grid input:checked + span::after {
  position: absolute;
  left: 21px;
  width: 6px;
  height: 10px;
  content: "";
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

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

.demo-fields-grid .is-full {
  grid-column: 1 / -1;
}

.demo-next,
.demo-form-actions {
  margin-top: 8px;
}

.demo-next {
  width: 100%;
  min-height: 58px;
}

.demo-form-actions {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) 1fr;
  gap: 16px;
}

.demo-form-actions .btn {
  min-height: 56px;
}

.demo-form-actions .btn[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.demo-form-error {
  margin: 18px 0 0;
  padding: 12px 14px;
  color: #9c1f24;
  background: #fff0f0;
  border: 1px solid #ffd0d0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.demo-form-error[hidden] {
  display: none;
}

.demo-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 22px 0 0;
  color: #52647d;
  font-size: 12px;
  font-weight: 700;
}

.demo-secure-note span {
  width: 14px;
  height: 14px;
  background: #52647d;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17 9V7A5 5 0 0 0 7 7v2H5v12h14V9h-2ZM9 7a3 3 0 0 1 6 0v2H9V7Zm4 8.7V18h-2v-2.3a2 2 0 1 1 2 0Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17 9V7A5 5 0 0 0 7 7v2H5v12h14V9h-2ZM9 7a3 3 0 0 1 6 0v2H9V7Zm4 8.7V18h-2v-2.3a2 2 0 1 1 2 0Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.demo-confirmation {
  display: grid;
  justify-items: center;
  min-height: 360px;
  padding: 68px 24px;
  text-align: center;
}

.demo-confirmation-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  background: #e9fbf2;
}

.demo-confirmation-icon::before {
  width: 30px;
  height: 30px;
  background: #07884c;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m9.2 16.6-4.1-4.1 1.4-1.4 2.7 2.7 8.3-8.3 1.4 1.4-9.7 9.7Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m9.2 16.6-4.1-4.1 1.4-1.4 2.7 2.7 8.3-8.3 1.4 1.4-9.7 9.7Z'/%3E%3C/svg%3E");
}

.demo-confirmation p {
  max-width: 600px;
  margin: 0;
  color: #405170;
  font-size: 16px;
  font-weight: 600;
}

.legal-content {
  padding: 72px 0 96px;
}

.blog-page { background: #f8fbfe; }
.article-page { background: #f8fbfe; }
.article-shell { padding: 35px 0 75px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 28px; align-items: start; }
.article-main { min-width: 0; padding: 0 0 30px; }
.article-breadcrumb { margin: 0 0 20px; color: #72819a; font-size: .74rem; }
.article-breadcrumb a { color: #72819a; text-decoration: none; }
.article-breadcrumb span { padding: 0 8px; color: #3EB5CC; }
.article-category { color: #3EB5CC; font-size: .65rem; font-weight: 800; letter-spacing: .06em; }
.article-main h1 { max-width: 760px; margin: 8px 0 12px; color: #07194a; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08; }
.article-title-image { display: block; width: 100%; height: auto; max-height: none; margin: 18px 0 20px; object-fit: contain; border-radius: 9px; }
.article-intro { max-width: 730px; margin: 0 0 16px; color: #536684; font-size: .95rem; line-height: 1.55; }
.article-summary { max-width: 760px; margin: 20px 0; padding: 18px 20px; border-left: 4px solid #3EB5CC; border-radius: 0 8px 8px 0; background: #eefaff; color: #34496b; }
.article-summary strong { display: block; margin-bottom: 5px; color: #07194a; font-size: .9rem; }
.article-summary p { margin: 0; font-size: .86rem; line-height: 1.6; }
.article-toc { display: grid; gap: 5px; max-width: 760px; margin: 20px 0 22px; padding: 18px 20px; border: 1px solid #dce8f0; border-radius: 8px; background: #fff; counter-reset: toc-item; }
.article-toc strong { margin-bottom: 4px; color: #07194a; font-size: .92rem; }
.article-toc a { color: #34496b; font-size: .8rem; text-decoration: none; counter-increment: toc-item; }
.article-toc a::before { content: counter(toc-item) ". "; color: #3EB5CC; font-weight: 700; }
.article-toc a:hover { color: #3EB5CC; }
.article-meta { display: flex; align-items: center; gap: 9px; margin: 14px 0 20px; color: #34496b; font-size: .72rem; }
.article-meta strong, .article-meta small { display: block; }
.article-meta small { margin-top: 3px; color: #71809a; font-size: .65rem; }
.author-avatar { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: #dff4f8; color: #0878ed; font-size: .62rem; font-weight: 800; }
.article-share { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.article-share a { display: grid; place-items: center; width: 24px; height: 24px; border: 1px solid #d6e6ee; border-radius: 50%; color: #0878ed; text-decoration: none; }
.article-cover { display: block; width: 100%; max-height: 430px; object-fit: cover; border-radius: 9px; }
.article-body { max-width: 760px; color: #34496b; font-size: .92rem; line-height: 1.75; }
.article-body { counter-reset: article-section; }
.article-body h2 { margin: 34px 0 10px; color: #07194a; font-size: 1.35rem; line-height: 1.25; counter-increment: article-section; }
.article-body h2::before { content: counter(article-section) ". "; color: #3EB5CC; }
.article-body p { margin: 0 0 16px; }
.article-body ul, .article-body ol { margin: 0 0 18px; padding-left: 22px; }
.article-body li { margin: 4px 0; }
.article-body strong { color: #07194a; }
.article-body a[href^="/blog/"],
.article-body a[href^="https://planytex.com/blog/"] { color: #44B7D0; font-weight: 600; }
.article-body a[href^="/blog/"] strong,
.article-body a[href^="https://planytex.com/blog/"] strong { color: inherit; font-weight: inherit; }
.article-body code { padding: 3px 6px; border-radius: 4px; background: #eef6fa; color: #0878ed; font-size: .84em; }
.article-table-wrap { overflow-x: auto; margin: 12px 0 20px; }
.article-body table { width: 100%; min-width: 540px; border-collapse: collapse; background: #fff; border: 1px solid #dce8f0; font-size: .82rem; }
.article-body th, .article-body td { padding: 10px 12px; border-bottom: 1px solid #e2edf2; text-align: left; }
.article-body th { background: #effaff; color: #07194a; font-weight: 700; }
.article-sidebar { display: grid; gap: 15px; position: sticky; bottom: 20px; align-self: end; }
.article-outline, .article-recent { padding: 18px; background: #fff; border: 1px solid #dce8f0; border-radius: 9px; }
.article-outline h2, .article-recent h2, .article-cta h2 { margin: 0 0 13px; color: #07194a; font-size: .92rem; }
.article-outline a, .article-recent a { display: block; padding: 6px 0; color: #34496b; font-size: .72rem; line-height: 1.4; text-decoration: none; }
.article-outline a:hover, .article-recent a:hover { color: #3EB5CC; }
.article-cta { padding: 22px 18px; border-radius: 9px; background: #3EB5CC; color: #fff; }
.article-cta h2 { color: #fff; }
.article-cta p { margin: 0 0 15px; font-size: .74rem; line-height: 1.45; }
.article-cta .btn { width: 100%; padding: 10px; background: #fff; color: #0878ed; font-size: .7rem; }
.article-all { margin-top: 10px; color: #0878ed !important; }
@media (max-width: 700px) { .article-body > table { display: block; max-width: 100%; overflow-x: auto; white-space: nowrap; } }
@media (max-width: 900px) { .article-layout { grid-template-columns: 1fr; } .article-sidebar { grid-template-columns: repeat(2, minmax(0, 1fr)); position: static; } .article-cta { grid-column: span 2; } }
@media (max-width: 560px) { .article-sidebar { grid-template-columns: 1fr; } .article-cta { grid-column: auto; } .article-main h1 { font-size: 2rem; } .article-body { font-size: .88rem; } .article-share { display: none; } }
.blog-page .site-header { background: #fff; }
.blog-page .site-nav .is-current { color: #3EB5CC; }
.blog-hero { background: linear-gradient(110deg, #f1f9fd 0%, #fff 62%, #eff8fc 100%); border-bottom: 1px solid #e4edf4; overflow: hidden; }
.blog-hero-inner { min-height: 290px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 30px; }
.blog-hero-copy { padding: 34px 0; }
.blog-breadcrumb { margin: 0 0 18px; color: #61708e; font-size: .78rem; }
.blog-breadcrumb a { color: #61708e; text-decoration: none; }
.blog-breadcrumb span { margin: 0 10px; color: #3EB5CC; }
.blog-hero h1 { margin: 0 0 10px; color: #07194a; font-size: clamp(2rem, 4vw, 3rem); }
.blog-hero h1 span { color: #3EB5CC; }
.blog-hero-copy > p:not(.blog-breadcrumb) { max-width: 430px; margin: 0 0 18px; color: #34496b; line-height: 1.55; font-size: 1rem; }
.blog-search { display: flex; width: min(100%, 330px); background: #fff; border: 1px solid #d7e4ee; border-radius: 7px; overflow: hidden; }
.blog-search input { min-width: 0; flex: 1; border: 0; padding: 11px 13px; color: #07194a; outline: 0; }
.blog-search button { width: 42px; border: 0; background: #fff; color: #3EB5CC; font-size: 1.2rem; cursor: pointer; }
.blog-hero-image { width: 100%; height: auto; max-height: none; object-fit: contain; object-position: center; mix-blend-mode: multiply; }
.blog-listing { padding: 34px 0 72px; }
.blog-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 28px; }
.blog-results-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 13px; color: #07194a; font-size: .95rem; }
.blog-results-head label { color: #61708e; }
.blog-results-head select { margin-left: 7px; padding: 8px 28px 8px 10px; border: 1px solid #d7e4ee; border-radius: 5px; background: #fff; color: #07194a; }
.blog-card-list { display: grid; gap: 10px; }
.blog-card { display: grid; grid-template-columns: 164px minmax(0, 1fr) 22px; align-items: center; gap: 16px; padding: 0 15px 0 0; min-height: 118px; background: #fff; border: 1px solid #dce8f0; border-radius: 10px; color: inherit; text-decoration: none; overflow: hidden; transition: border-color .2s, transform .2s, box-shadow .2s; }
.blog-card:hover { border-color: #3EB5CC; box-shadow: 0 8px 22px rgba(23, 83, 120, .09); transform: translateY(-1px); }
.blog-card > img { width: 164px; height: 118px; object-fit: cover; }
.blog-card-content { display: grid; gap: 5px; min-width: 0; }
.blog-card-content small { color: #3EB5CC; font-size: .68rem; font-weight: 800; letter-spacing: .05em; }
.blog-card-content strong { color: #07194a; font-size: 1rem; line-height: 1.3; }
.blog-card-content span { color: #536684; font-size: .82rem; line-height: 1.4; }
.blog-card-content em { color: #71809a; font-size: .7rem; font-style: normal; }
.blog-card > b { color: #0878ed; font-size: 1.5rem; font-weight: 400; }
.blog-sidebar { display: grid; align-content: start; gap: 15px; position: sticky; bottom: 20px; align-self: end; }
.sidebar-features { padding: 20px 18px 18px; background: #fff; border: 1px solid #dce8f0; border-radius: 9px; }
.sidebar-promo { overflow: hidden; border-radius: 9px; background: #12b2ce; color: #fff; }
.sidebar-promo > div { padding: 20px 18px 14px; }
.sidebar-promo h2 { margin: 0 0 10px; color: #fff; font-size: 1.08rem; line-height: 1.25; }
.sidebar-promo p { margin: 0 0 14px; color: #fff; font-size: .78rem; line-height: 1.5; }
.sidebar-promo a { display: inline-block; padding: 10px 15px; border-radius: 6px; background: #fff; color: #0878ed; font-size: .76rem; font-weight: 700; text-decoration: none; }
.sidebar-promo img { display: block; width: 100%; height: auto; max-height: none; object-fit: contain; object-position: center; mix-blend-mode: normal; }
.sidebar-features h2 { margin: 0 0 14px; color: #07194a; font-size: .95rem; }
.sidebar-features div { display: flex; align-items: center; gap: 10px; margin: 10px 0; color: #34496b; font-size: .74rem; line-height: 1.35; }
.sidebar-features i { display: grid; flex: 0 0 40px; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: #eaf8fb; color: #3EB5CC; font-size: 1.2rem; font-style: normal; }
.sidebar-features > a { display: inline-block; margin-top: 8px; color: #3EB5CC; font-size: .76rem; font-weight: 700; text-decoration: none; }
.sidebar-help { padding: 18px; border: 1px solid #dce8f0; border-radius: 9px; background: linear-gradient(145deg, #f4fbfd, #fff); }
.sidebar-help-head { display: flex; align-items: flex-start; gap: 11px; }
.sidebar-help-head i { display: grid; flex: 0 0 45px; place-items: center; width: 45px; height: 45px; border-radius: 50%; background: #dff5f9; color: #09a8c8; font-size: 1.8rem; font-style: normal; }
.sidebar-help-head strong { display: block; margin: 2px 0 7px; color: #07194a; font-size: .98rem; }
.sidebar-help-head small { display: block; color: #34496b; font-size: .76rem; line-height: 1.45; }
.sidebar-help > a { display: block; margin-top: 16px; padding: 10px 12px; border-radius: 6px; background: #20b3ce; color: #fff; font-size: .78rem; font-weight: 700; text-align: center; text-decoration: none; }
.sidebar-help > a:hover { background: #169db7; }
.article-sidebar .sidebar-features { margin-bottom: 0; }
.article-sidebar .article-outline { display: none !important; }
.article-sidebar .sidebar-features h2,
.article-sidebar .article-cta h2,
.article-sidebar .blog-side-card h2 { font-size: 1.08rem; }
.article-sidebar .sidebar-features div { font-size: .86rem; }
.article-sidebar .sidebar-features > a,
.article-sidebar .article-cta p,
.article-sidebar .blog-side-card a { font-size: .86rem; }
.article-sidebar .article-cta .btn { font-size: .84rem; }
.blog-side-card, .blog-demo-card { padding: 18px; background: #fff; border: 1px solid #dce8f0; border-radius: 9px; }
.blog-side-card h2, .blog-demo-card h2 { margin: 0 0 13px; color: #07194a; font-size: .9rem; }
.blog-side-card > a:not(.popular-post) { display: flex; align-items: center; gap: 9px; padding: 8px 0; color: #34496b; font-size: .82rem; text-decoration: none; }
.blog-side-card > a:not(.popular-post) > b { margin-left: auto; min-width: 18px; padding: 2px 5px; border-radius: 9px; background: #eaf6fa; color: #3EB5CC; font-size: .58rem; text-align: center; }
.blog-category-card > a.is-active { color: #3EB5CC; font-weight: 700; }
.blog-category-card > a.is-active > b { background: #3EB5CC; color: #fff; }
.popular-post { display: grid; grid-template-columns: 47px 1fr; gap: 9px; margin: 10px 0; color: inherit; text-decoration: none; }
.popular-post img { width: 47px; height: 47px; object-fit: cover; border-radius: 5px; }
.popular-post strong { display: block; color: #07194a; font-size: .78rem; line-height: 1.35; }
.popular-post small { display: block; margin-top: 3px; color: #71809a; font-size: .66rem; }
.blog-demo-card { padding: 22px 18px 18px; background: #3EB5CC; text-align: center; }
.blog-demo-card p { margin: 0 0 15px; color: #34496b; font-size: .82rem; line-height: 1.5; }
.blog-demo-card .btn { width: 100%; padding: 10px 12px; font-size: .7rem; }
.blog-pagination { display: flex; justify-content: center; gap: 7px; margin-top: 18px; }
.blog-pagination a, .blog-pagination span { display: grid; place-items: center; min-width: 29px; height: 29px; color: #34496b; font-size: .8rem; text-decoration: none; }
.blog-pagination a { border: 1px solid #dce8f0; border-radius: 5px; background: #fff; }
.blog-pagination a.is-active { border-color: #3EB5CC; background: #3EB5CC; color: #fff; }
@media (max-width: 900px) { .blog-hero-inner { grid-template-columns: 1fr; } .blog-hero-image { display: none; } .blog-layout { grid-template-columns: 1fr; } .blog-sidebar { grid-template-columns: repeat(2, minmax(0, 1fr)); position: static; } .blog-demo-card { grid-column: span 2; } }
@media (max-width: 560px) { .blog-card { grid-template-columns: 92px minmax(0, 1fr) 14px; gap: 10px; } .blog-card > img { width: 92px; height: 125px; } .blog-card-content span { display: none; } .blog-card-content strong { font-size: .78rem; } .blog-sidebar { grid-template-columns: 1fr; } .blog-demo-card { grid-column: auto; } .blog-results-head { align-items: flex-start; flex-direction: column; gap: 9px; } }

.hours-calculator-page {
  background: #f8fcff;
}

.tools-page {
  background: #f8fcff;
}

.tools-page .site-header {
  background: rgba(255, 255, 255, .96);
}

.site-nav .is-current {
  color: #3EB5CC;
}

.tools-section {
  padding: 34px 0 28px;
}

.tools-container {
  width: min(100% - 60px, 980px);
  max-width: 980px;
}

.tools-heading {
  margin-bottom: 38px;
}

.tools-heading h1 {
  position: relative;
  margin: 0 0 18px;
  color: #073b65;
  font-size: 1.62rem;
  font-weight: 900;
  line-height: 1.08;
}

.tools-heading h1::after {
  position: absolute;
  left: 0;
  bottom: -11px;
  width: 27px;
  height: 2px;
  content: "";
  background: #3EB5CC;
}

.tools-heading p {
  margin: 0;
  color: #243752;
  font-size: .82rem;
  line-height: 1.5;
}

.tool-card {
  display: grid;
  grid-template-columns: 268px minmax(0, 1fr);
  min-height: 430px;
  margin-bottom: 36px;
  border: 1px solid #dce8ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(18, 55, 82, .08);
  overflow: hidden;
}

.tools-page .site-footer {
  margin-top: 0;
}

.tool-illustration {
  position: relative;
  min-height: 430px;
  background: linear-gradient(135deg, #e7f9fd 0%, #f4fcff 100%);
  overflow: hidden;
}

.tool-clock {
  position: absolute;
  top: 47px;
  left: 50%;
  width: 108px;
  height: 108px;
  border: 17px solid #fff;
  border-radius: 50%;
  background: #f9feff;
  box-shadow: 0 7px 16px rgba(32, 90, 118, .12);
  transform: translateX(-50%);
}

.tool-clock::before {
  position: absolute;
  inset: 13px;
  border: 5px solid #24abc7;
  border-radius: 50%;
  content: "";
}

.tool-clock::after {
  position: absolute;
  top: 35px;
  left: 51px;
  width: 24px;
  height: 30px;
  border-left: 5px solid #0c87ab;
  border-bottom: 5px solid #0c87ab;
  border-radius: 0 0 0 4px;
  content: "";
}

.tool-desk {
  position: absolute;
  right: 31px;
  bottom: 73px;
  left: 31px;
  height: 183px;
}

.tool-desk::before {
  position: absolute;
  right: 7px;
  bottom: 12px;
  width: 164px;
  height: 122px;
  border-radius: 50%;
  content: "";
  background: #d6f2fa;
}

.tool-calculator {
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 78px;
  height: 120px;
  border-radius: 9px;
  background: #1789ad;
  box-shadow: 0 14px 20px rgba(23, 85, 110, .18);
  transform: rotate(-8deg);
}

.tool-calculator::before {
  position: absolute;
  top: 16px;
  left: 13px;
  width: 56px;
  height: 27px;
  border-radius: 4px;
  content: "";
  background: #aee8f4;
}

.tool-calculator::after {
  position: absolute;
  top: 56px;
  left: 13px;
  width: 11px;
  height: 11px;
  border-radius: 3px;
  content: "";
  background: #8ddceb;
  box-shadow: 19px 0 #8ddceb, 38px 0 #8ddceb, 0 19px #8ddceb, 19px 19px #8ddceb, 38px 19px #8ddceb, 0 38px #8ddceb, 19px 38px #8ddceb, 38px 38px #8ddceb;
}

.tool-paper {
  position: absolute;
  right: 28px;
  bottom: 36px;
  width: 86px;
  height: 110px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(36, 83, 112, .13);
  transform: rotate(8deg);
}

.tool-paper::before {
  position: absolute;
  top: 20px;
  left: 13px;
  width: 64px;
  height: 8px;
  border-radius: 99px;
  content: "";
  background: #dbeef5;
  box-shadow: 0 22px #dbeef5, 0 44px #dbeef5, 0 66px #dbeef5;
}

.tool-pen {
  position: absolute;
  right: 0;
  bottom: 8px;
  width: 14px;
  height: 86px;
  border-radius: 10px;
  background: #1389ad;
  transform: rotate(28deg);
}

.tool-pen::after {
  position: absolute;
  bottom: -13px;
  left: 2px;
  width: 0;
  height: 0;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 15px solid #0c5d7f;
  content: "";
}

.tool-content {
  padding: 38px 45px 38px;
}

.tool-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-bottom: 18px;
  padding: 0 8px;
  border-radius: 3px;
  background: #dff7fb;
  color: #0c8ead;
  font-size: .72rem;
  font-weight: 800;
}

.tool-content h2 {
  margin: 0 0 17px;
  color: #07194a;
  font-size: 1.62rem;
  font-weight: 900;
  line-height: 1.15;
}

.tool-content p {
  max-width: 610px;
  margin: 0 0 24px;
  color: #34496b;
  font-size: .82rem;
  line-height: 1.62;
}

.tool-content ul {
  display: grid;
  gap: 13px;
  margin: 0 0 25px;
  padding: 0 0 36px;
  border-bottom: 1px solid #dce8ef;
  list-style: none;
  color: #243752;
  font-size: .8rem;
}

.tool-content li {
  position: relative;
  padding-left: 26px;
}

.tool-content li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border: 2px solid #23a9c5;
  border-radius: 50%;
  content: "✓";
  color: #23a9c5;
  font-size: .58rem;
  font-weight: 900;
}

.tool-link {
  display: inline-flex;
  width: auto;
  min-width: 188px;
  min-height: 43px;
  background: linear-gradient(90deg, #ff4d3f 0%, #fb3f42 100%);
  font-size: .78rem;
}

.tools-note {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 94px;
  padding: 19px 44px;
  border-radius: 8px;
  background: linear-gradient(90deg, #eaf9fd 0%, #f6fcff 100%);
}

.tools-note span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid #50bdd3;
  border-radius: 50%;
  color: #22a9c6;
  font-size: 1.4rem;
}

.tools-note p {
  margin: 0;
  color: #193252;
  font-size: .82rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .tool-card {
    grid-template-columns: 1fr;
  }

  .tool-illustration {
    min-height: 300px;
  }
}

@media (max-width: 620px) {
  .tools-section {
    padding-top: 28px;
  }

  .tool-content {
    padding: 30px 22px;
  }

  .tools-note {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 24px;
    text-align: center;
  }
}

.hours-calculator-page .site-header {
  background: rgba(255, 255, 255, .96);
}

.hours-tool-hero {
  padding: 28px 0 6px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
}

.hours-tool-hero-inner {
  text-align: center;
}

.hours-tool-hero h1 {
  max-width: 850px;
  margin: 8px auto 10px;
  color: #07194a;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
}

.hours-tool-hero p {
  max-width: 760px;
  margin: 0 auto 8px;
  color: #43556f;
  font-size: 1.08rem;
  line-height: 1.58;
}

.hours-tool-hero small {
  display: block;
  max-width: 780px;
  margin: 0 auto;
  color: #6c7d94;
  font-size: .86rem;
}

.hours-tool-section {
  padding: 18px 0 18px;
}

.hours-calculator {
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  gap: 26px;
  padding: 24px;
  border: 1px solid #dce8ef;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 9px 24px rgba(20, 64, 97, .08);
}

.hours-input-card,
.hours-result-card {
  min-width: 0;
}

.hours-input-card h2,
.hours-result-card h2 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: #0b6994;
  font-size: 1.12rem;
}

.hours-input-card fieldset {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
}

.hours-input-card legend,
.hours-select-label,
.hours-rate-label {
  display: block;
  margin: 0 0 8px;
  color: #243752;
  font-size: .96rem;
  font-weight: 800;
}

.hours-input-card label,
.hours-input-card legend + label {
  display: block;
  margin: 0 0 8px;
  color: #43556f;
  font-size: .86rem;
  font-weight: 700;
}

.hours-input-card legend span,
.hours-select-label span,
.hours-rate-label span {
  display: inline-grid;
  place-items: center;
  width: 14px;
  height: 14px;
  margin-left: 4px;
  border: 1px solid #95aaba;
  border-radius: 50%;
  color: #6f8598;
  font-size: .58rem;
}

.hours-time-row {
  display: grid;
  grid-template-columns: 76px 22px 76px 34px;
  align-items: center;
  gap: 7px;
}

.hours-time-row input,
.hours-rate-field input,
.hours-input-card select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d5e2eb;
  border-radius: 5px;
  background: #fff;
  color: #10223d;
  font: inherit;
  font-size: .96rem;
  font-weight: 700;
  outline: 0;
}

.hours-time-row input {
  padding: 0 13px;
  text-align: center;
}

.hours-time-row span,
.hours-rate-field span {
  color: #10223d;
  font-size: .96rem;
  font-weight: 800;
}

.hours-input-card select {
  margin: 0 0 20px;
  padding: 0 13px;
}

.hours-rate-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  align-items: center;
  max-width: 210px;
  margin: 0 0 24px;
}

.hours-rate-field input {
  padding: 0 13px;
}

.hours-time-row input:focus,
.hours-rate-field input:focus,
.hours-input-card select:focus {
  border-color: #3EB5CC;
  box-shadow: 0 0 0 3px rgba(62, 181, 204, .14);
}

.hours-submit {
  width: 100%;
  min-height: 54px;
  background: linear-gradient(90deg, #ff4d3f 0%, #fb3f42 100%);
}

.hours-reset {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 14px 0 0;
  border: 0;
  background: transparent;
  color: #32aeca;
  font-size: .9rem;
  font-weight: 800;
  cursor: pointer;
}

.hours-error {
  margin: 12px 0 0;
  padding: 9px 11px;
  border-radius: 6px;
  background: #fff2f2;
  color: #b21d28;
  font-size: .82rem;
}

.hours-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #dff5fb;
  color: #24abc7;
  font-size: 1.05rem;
  font-weight: 900;
}

.hours-icon.shield::before { content: "▣"; }
.hours-icon.chart::before { content: "▥"; }
.hours-icon.receipt::before { content: "☑"; }
.hours-icon.hourglass::before { content: "⌛"; }
.hours-icon.clock::before { content: "◷"; }
.hours-icon.calendar::before { content: "□"; }
.hours-icon.pin::before { content: "⌖"; }
.hours-icon.bars::before { content: "▥"; }
.hours-icon.file::before { content: "▤"; }
.hours-icon.people::before { content: "♧"; }
.hours-icon.team::before { content: "♙"; }
.hours-icon.percent::before { content: "%"; }
.hours-icon.calculator::before { content: "▦"; }
.hours-icon.shield-soft::before { content: "◇"; }
.hours-icon.check::before { content: "✓"; }

.hours-total-box {
  display: grid;
  place-items: center;
  min-height: 108px;
  margin-bottom: 18px;
  border: 1px solid #53bfda;
  border-radius: 7px;
  background: linear-gradient(90deg, #eefbff 0%, #f8fdff 52%, #eaf9fd 100%);
}

.hours-total-box strong {
  color: #20aeca;
  font-size: 2.5rem;
  line-height: 1;
}

.hours-total-box span,
.hours-breakdown span {
  color: #10223d;
  font-size: .84rem;
  font-weight: 800;
  text-align: center;
}

.hours-breakdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 7px;
}

.hours-breakdown article {
  display: grid;
  place-items: center;
  min-height: 114px;
  padding: 12px;
  text-align: center;
}

.hours-breakdown strong {
  font-size: 1.75rem;
  line-height: 1.1;
}

.hours-breakdown .contract {
  background: #21afcc;
  color: #fff;
}

.hours-breakdown .contract span,
.hours-breakdown .contract strong {
  color: #fff;
}

.hours-breakdown .first-tier {
  background: #eff9fc;
  color: #18a5c4;
}

.hours-breakdown .second-tier {
  background: #fff1e9;
  color: #ff4e3f;
}

.hours-amount {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 112px;
  margin-bottom: 18px;
  padding: 18px 28px;
  border: 1px solid #dce8ef;
  border-radius: 7px;
  background: #fff;
  text-align: center;
}

.hours-amount h3,
.hours-limit-grid h3 {
  margin: 0;
  color: #10223d;
  font-size: 1rem;
  line-height: 1.25;
}

.hours-amount strong {
  display: block;
  margin-top: 10px;
  color: #16a8c8;
  font-size: 2rem;
  line-height: 1.1;
}

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

.hours-limit-grid article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 96px;
  padding: 16px;
  border: 1px solid #dce8ef;
  border-radius: 7px;
  background: #fff;
}

.hours-limit-grid strong {
  display: block;
  margin-top: 8px;
  color: #16a8c8;
  font-size: 1.85rem;
  line-height: 1.1;
}

.hours-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
  padding: 7px 12px;
  border-radius: 5px;
  background: #eaf8fd;
  color: #286178;
  font-size: .86rem;
  font-weight: 700;
}

.hours-notice.is-warning {
  background: #fff0ed;
  color: #b5352e;
}

.hours-notice.is-neutral {
  background: #edf8fb;
  color: #557085;
}

.hours-legal-note {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin: 22px 0;
  padding: 14px 26px;
  border-radius: 8px;
  background: linear-gradient(90deg, #edfaff 0%, #f5fcff 100%);
  color: #243752;
  font-size: .9rem;
}

.hours-legal-note span {
  display: grid;
  place-items: center;
  color: #26aac7;
  font-size: 1.7rem;
}

.hours-auto-cta {
  display: grid;
  grid-template-columns: 42% minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  margin-bottom: 22px;
  padding: 20px 42px;
  border-radius: 10px;
  background: linear-gradient(105deg, #eaf8fd 0%, #f9fdff 100%);
}

.hours-auto-cta img {
  width: 100%;
  max-height: 210px;
  object-fit: contain;
}

.hours-auto-cta h2 {
  margin: 0 0 10px;
  color: #07194a;
  font-size: 1.75rem;
  line-height: 1.15;
}

.hours-auto-cta p {
  max-width: 610px;
  margin: 0 0 18px;
  color: #34496b;
  font-size: 1rem;
  line-height: 1.5;
}

.hours-cta-actions {
  display: flex;
  gap: 12px;
}

.hours-cta-actions .btn {
  min-height: 42px;
  padding: 0 22px;
  font-size: .86rem;
}

.hours-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #dce8ef;
  border-radius: 9px;
  background: #fff;
  overflow: hidden;
}

.hours-feature-strip article {
  display: grid;
  justify-items: center;
  gap: 6px;
  min-height: 150px;
  padding: 18px 22px;
  text-align: center;
}

.hours-feature-strip article + article {
  border-left: 1px solid #dce8ef;
}

.hours-feature-strip strong {
  color: #07194a;
  font-size: .94rem;
}

.hours-feature-strip p {
  margin: 0;
  color: #405170;
  font-size: .88rem;
  line-height: 1.35;
}

.hours-seo-section {
  padding: 16px 0 22px;
}

.hours-seo-section h2,
.hours-faq-heading h2 {
  margin: 0 0 20px;
  color: #07537c;
  font-size: 1.85rem;
  line-height: 1.18;
}

.hours-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hours-info-grid article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 10px 16px;
  min-height: 158px;
  padding: 18px 20px;
  border: 1px solid #dce8ef;
  border-radius: 8px;
  background: #fff;
}

.hours-info-grid h3 {
  margin: 0 0 6px;
  color: #07194a;
  font-size: 1rem;
  line-height: 1.15;
}

.hours-info-grid p,
.hours-info-grid a {
  grid-column: 2;
  margin: 0;
  color: #405170;
  font-size: .88rem;
  line-height: 1.4;
}

.hours-info-grid a {
  color: #22a9c6;
  font-weight: 800;
}

.hours-editorial {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.hours-editorial section {
  padding: 24px;
  border: 1px solid #dce8ef;
  border-radius: 8px;
  background: #fff;
}

.hours-editorial h2 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.hours-editorial p {
  margin: 0 0 12px;
  color: #405170;
  font-size: 1rem;
  line-height: 1.65;
}

.hours-faq {
  padding: 10px 0 76px;
}

.hours-faq-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.hours-faq-heading a {
  color: #1d96b4;
  font-size: .9rem;
  font-weight: 800;
}

.hours-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
}

.hours-faq details {
  border: 1px solid #dce8ef;
  border-radius: 5px;
  background: #fff;
  overflow: hidden;
}

.hours-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 18px;
  color: #173553;
  font-size: .92rem;
  font-weight: 800;
  cursor: pointer;
}

.hours-faq summary::after {
  content: "⌄";
  color: #1da8c5;
  font-size: 1rem;
}

.hours-faq details[open] summary::after {
  transform: rotate(180deg);
}

.hours-faq p {
  margin: 0;
  padding: 0 18px 15px;
  color: #405170;
  font-size: .9rem;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .hours-calculator {
    grid-template-columns: 1fr;
  }

  .hours-input-card {
    max-width: 620px;
  }
}

@media (max-width: 900px) {
  .hours-auto-cta,
  .hours-info-grid,
  .hours-editorial,
  .hours-faq-grid {
    grid-template-columns: 1fr;
  }

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

  .hours-feature-strip article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #dce8ef;
  }

  .hours-feature-strip article:nth-child(4) {
    border-top: 1px solid #dce8ef;
  }
}

@media (max-width: 620px) {
  .hours-tool-hero {
    padding-top: 22px;
  }

  .hours-calculator {
    padding: 18px;
  }

  .hours-time-row {
    grid-template-columns: 1fr 20px 1fr 30px;
  }

  .hours-breakdown,
  .hours-limit-grid,
  .hours-feature-strip {
    grid-template-columns: 1fr;
  }

  .hours-breakdown article {
    min-height: 90px;
  }

  .hours-amount,
  .hours-limit-grid article,
  .hours-legal-note,
  .hours-info-grid article {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .hours-auto-cta {
    padding: 22px;
    text-align: center;
  }

  .hours-cta-actions {
    flex-direction: column;
  }

  .hours-feature-strip article + article {
    border-left: 0;
    border-top: 1px solid #dce8ef;
  }

  .hours-info-grid p,
  .hours-info-grid a {
    grid-column: auto;
  }

  .hours-faq-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

.legal-card {
  max-width: 900px;
  padding: 48px clamp(24px, 5vw, 72px);
  background: var(--color-white, #fff);
  border: 1px solid rgba(62, 181, 204, .24);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(9, 31, 83, .08);
}

.legal-card h1 {
  margin: 0 0 42px;
}

.legal-card h2 {
  margin: 32px 0 12px;
  color: var(--color-navy, #07194a);
  font-size: 1.2rem;
}

.legal-card p,
.legal-card address {
  color: var(--color-text, #283b61);
  line-height: 1.75;
}

.legal-card address {
  font-style: normal;
}

.legal-card a {
  color: #3EB5CC;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-updated {
  margin-top: 42px;
  color: #61708e !important;
  font-size: .9rem;
}

.legal-page .footer-column:first-of-type a:nth-of-type(1),
.legal-page .footer-column:first-of-type a:nth-of-type(3),
.legal-page .footer-column:first-of-type a:nth-of-type(4),
.legal-page .footer-column:first-of-type a:nth-of-type(5),
.legal-page .footer-column:first-of-type a:nth-of-type(6) {
  display: none;
}

.site-footer {
  padding: 42px 0 48px;
  background: #f8fbff;
  border-top: 1px solid #e2edf4;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 1fr);
  gap: 46px;
}

.footer-intro {
  max-width: 220px;
}

.footer-logo {
  display: inline-block;
}

.footer-logo img {
  display: block;
  width: 152px;
}

.footer-intro > p {
  margin: 24px 0 18px;
  color: #405677;
  font-size: 13px;
  line-height: 1.55;
}

.footer-points {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: #405677;
  font-size: 12px;
  list-style: none;
}

.footer-points li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-points li::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: 13px;
  color: #3EB5CC;
  border: 1px solid #3EB5CC;
  border-radius: 50%;
  content: '✓';
  font-size: 9px;
  font-weight: 800;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-column h2 {
  margin: 4px 0 8px;
  color: var(--color-ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: #405677;
  font-size: 12px;
  line-height: 1.35;
  text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #3EB5CC;
}

.footer-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.footer-trust span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 42px;
}

.footer-trust span:not(:last-child) {
  border-right: 1px solid #c6d7e3;
}

.footer-trust .icon {
  width: 26px;
  height: 26px;
  border-width: 2px;
}

@media (max-width: 960px) {
  .pricing-compare-modal {
    padding: 18px;
  }

  .pricing-compare-dialog {
    max-height: 92vh;
    padding: 22px 18px 24px;
  }

  .pricing-compare-heading h2 {
    font-size: 28px;
  }

  .pricing-matrix {
    grid-template-columns: 300px repeat(3, 220px);
    overflow-x: auto;
    overflow-y: hidden;
  }

  .calculator-panel {
    grid-template-columns: 1fr;
  }

  .calculator-column + .calculator-column {
    border-top: 1px solid #dbeaf5;
    border-left: 0;
  }

  .calculator-agents,
  .calculator-estimate {
    justify-items: stretch;
  }

  .agent-stepper,
  .agent-summary {
    justify-self: center;
  }

  .estimate-body {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .estimate-total {
    padding-right: 0;
  }

  .estimate-detail {
    padding-top: 14px;
    padding-left: 0;
    border-top: 1px solid #dcebf4;
    border-left: 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 430px;
    margin-right: auto;
    margin-left: auto;
  }

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

  .pricing-benefits > span:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 1120px) {
  .header-inner {
    gap: 22px;
  }

  .brand img {
    width: 190px;
  }

  .site-nav {
    gap: 24px;
  }

  .hero-grid,
  .split-grid,
  .split-grid-reverse {
    grid-template-columns: 1fr;
  }

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

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

  .hero-visual,
  .screen-showcase {
    margin-right: 0;
  }

  .hero-visual {
    order: -1;
  }

  .hero-visual img {
    border-radius: var(--radius-md);
  }

  .demo-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .demo-request-shell {
    padding: 34px 26px;
  }

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

  .demo-sidebar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: min(100% - 34px, var(--container));
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    position: relative;
    z-index: 30;
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 8px;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-ink);
    border-radius: 2px;
  }

  .site-nav,
  .header-actions {
    position: fixed;
    left: 17px;
    right: 17px;
    z-index: 25;
    display: none;
    background: #fff;
    box-shadow: var(--shadow-soft);
  }

  .site-nav {
    top: 86px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border-radius: 14px 14px 0 0;
  }

  .site-nav a,
  .site-nav .nav-disabled {
    padding: 13px 8px;
  }

  .header-actions {
    top: 357px;
    grid-template-columns: 1fr;
    padding: 0 16px 18px;
    border-radius: 0 0 14px 14px;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  body.nav-open .header-actions {
    display: grid;
  }

  .hero {
    padding-top: 28px;
  }

  .demo-request-heading h1 {
    font-size: 32px;
  }

  .demo-progress {
    gap: 18px;
    margin-bottom: 34px;
  }

  .demo-progress li:not(:last-child)::after {
    left: calc(50% + 22px);
    width: calc(100% - 12px);
  }

  .demo-form {
    min-height: auto;
    padding: 30px 22px;
  }

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

  .hero-title {
    font-size: 42px;
  }

  .section-copy h2,
  .section-heading h2,
  .seo-heading h1 {
    font-size: 34px;
  }

  .trust-row,
  .steps-grid,
  .footer-trust,
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-card:not(:last-child)::after {
    display: none;
  }

  .footer-trust span:not(:last-child) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 162px;
  }

  .section {
    padding: 26px 0 56px;
  }

  .hero-title {
    font-size: 35px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions,
  .header-actions {
    align-items: stretch;
  }

  .hero-actions,
  .trust-row,
  .advantage-grid,
  .steps-grid,
  .footer-trust {
    grid-template-columns: 1fr;
  }

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

  .footer-intro {
    grid-column: 1 / -1;
    max-width: 300px;
  }

  .faq-categories {
    grid-template-columns: 1fr;
  }

  .faq .section-heading h2 {
    font-size: 30px;
  }

  .faq-item summary {
    grid-template-columns: 30px minmax(0, 1fr) 14px;
    gap: 12px;
    padding: 14px 16px;
  }

  .faq-item summary > span:nth-child(2) {
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 16px 18px 58px;
  }

  .faq-contact {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 22px;
  }

  .faq-contact .btn {
    width: 100%;
  }

  .pricing-heading h2 {
    font-size: 29px;
  }

  .calculator-heading h2 {
    font-size: 26px;
  }

  .price-calculator {
    padding: 32px 14px 12px;
  }

  .price-calculator::before {
    width: 118%;
  }

  .calculator-panel {
    padding: 0;
  }

  .calculator-option {
    grid-template-columns: 44px minmax(0, 1fr) 24px;
  }

  .daily-cost {
    flex-wrap: wrap;
  }

  .daily-cost b {
    width: 100%;
    margin-left: 34px;
  }

  .pricing-notes {
    display: grid;
    gap: 4px;
  }

  .pricing-grid {
    max-width: none;
  }

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

  .pricing-benefits > span {
    padding: 6px 4px;
  }

  .pricing-benefits > span + span {
    border-top: 1px solid #dcebf4;
    border-left: 0;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .trust-row {
    gap: 16px;
    margin-top: 34px;
  }

  .trust-item {
    min-height: 74px;
  }

  .split-grid {
    gap: 34px;
  }

  .section-copy h2,
  .section-heading h2,
  .seo-heading h1 {
    font-size: 29px;
  }

  .agent-visual {
    border-radius: var(--radius-lg);
  }

  .demo-inner {
    padding: 28px 22px;
    gap: 22px;
  }

  .demo-request {
    padding: 24px 0 42px;
  }

  .demo-request-shell {
    padding: 24px 14px;
    border-radius: 10px;
  }

  .demo-request-heading {
    margin-bottom: 26px;
  }

  .demo-request-heading h1 {
    font-size: 28px;
  }

  .demo-request-heading p {
    font-size: 14px;
  }

  .demo-progress {
    gap: 8px;
    margin-bottom: 28px;
  }

  .demo-progress li {
    gap: 8px;
    font-size: 11px;
  }

  .demo-progress li:not(:last-child)::after {
    top: 14px;
    left: calc(50% + 18px);
    width: calc(100% - 8px);
  }

  .demo-progress span {
    width: 28px;
    height: 28px;
  }

  .demo-sidebar {
    grid-template-columns: 1fr;
  }

  .demo-sidebar-card,
  .demo-help-card {
    padding: 22px;
  }

  .demo-form {
    padding: 24px 16px;
  }

  .demo-step {
    gap: 22px;
  }

  .demo-step legend,
  .demo-confirmation h2 {
    font-size: 21px;
  }

  .agent-choice-grid,
  .needs-choice-grid,
  .demo-fields-grid,
  .demo-form-actions {
    grid-template-columns: 1fr;
  }

  .agent-choice-grid label > span {
    min-height: 72px;
  }

  .demo-secure-note {
    align-items: flex-start;
    text-align: center;
  }

  .demo-title {
    display: grid;
    gap: 16px;
  }

  .demo-title h2 {
    font-size: 26px;
  }

  .footer-trust span {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.communication-page {
  background:
    radial-gradient(circle at 0 15%, rgba(62, 181, 204, 0.1), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f8fdff 50%, #fff 100%);
}

.communication-hero {
  padding: 70px 0 56px;
}

.communication-hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.34fr);
  align-items: center;
  gap: 58px;
}

.communication-breadcrumb,
.communication-page .eyebrow {
  margin: 0 0 20px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.communication-breadcrumb span {
  margin: 0 8px;
}

.communication-hero h1 {
  max-width: 600px;
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.08;
  letter-spacing: 0;
}

.communication-hero-lead {
  max-width: 560px;
  margin: 12px 0 18px;
  color: var(--color-primary);
  font-size: clamp(27px, 3.1vw, 42px);
  font-weight: 900;
  line-height: 1.12;
}

.communication-hero-copy > p:not(.communication-breadcrumb):not(.communication-hero-lead) {
  max-width: 520px;
  margin: 0 0 38px;
  color: var(--color-muted);
  font-size: 18px;
}

.communication-actions {
  display: grid;
  width: min(100%, 360px);
  gap: 14px;
}

.communication-hero-visual,
.communication-chat-card,
.communication-announcement-card {
  overflow: hidden;
  border: 1px solid #d8e8f4;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(8, 21, 61, 0.12);
}

.communication-hero-visual img,
.communication-chat-card img,
.communication-announcement-card img {
  width: 100%;
}

.communication-features {
  padding: 28px 0 68px;
}

.communication-features h2,
.communication-outcomes h2 {
  max-width: 920px;
  margin: 0 auto 38px;
  color: var(--color-ink);
  font-size: clamp(28px, 2.8vw, 34px);
  line-height: 1.2;
  text-align: center;
}

.communication-feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px;
}

.communication-feature-grid article {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.communication-icon {
  display: inline-grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-primary);
  background: linear-gradient(135deg, #ecf9fc, #f7fdff);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.communication-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.communication-feature-grid h3 {
  margin: 8px 0 0;
  color: var(--color-ink);
  font-size: 16px;
  line-height: 1.25;
}

.communication-feature-grid p {
  max-width: 170px;
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.55;
}

.communication-panel-section {
  padding: 0 0 70px;
}

.communication-panel {
  display: grid;
  align-items: center;
  gap: 46px;
  margin-bottom: 48px;
  padding: 44px 54px;
  border: 1px solid #dbeef5;
  border-radius: 12px;
  background: linear-gradient(135deg, #fbfeff, #eff9fc);
  box-shadow: 0 18px 55px rgba(8, 21, 61, 0.06);
}

.communication-panel-agent {
  grid-template-columns: 0.86fr 0.56fr 1fr;
}

.communication-panel-announcement {
  grid-template-columns: 1fr 0.92fr;
}

.communication-panel-copy h2 {
  margin: 0 0 20px;
  color: var(--color-ink);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
}

.communication-panel-copy .check-list {
  margin-top: 0;
}

.communication-reply-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 16px;
}

.communication-reply-row span {
  min-height: 46px;
  padding: 11px 16px;
  border: 1px solid #d5e6f1;
  border-radius: 8px;
  color: #7a879b;
  background: #fff;
}

.communication-reply-row b {
  display: grid;
  min-height: 46px;
  padding: 0 18px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--color-primary);
}

.communication-agent-illustration {
  display: grid;
  place-items: center;
}

.communication-person {
  position: relative;
  width: min(220px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 55% 25%, #253452 0 14%, transparent 15%),
    radial-gradient(circle at 52% 31%, #f0b6a1 0 13%, transparent 14%),
    linear-gradient(150deg, #e8f7fb, #cdeef6);
}

.communication-person::before {
  position: absolute;
  right: 36%;
  bottom: 18%;
  width: 38%;
  height: 44%;
  content: "";
  border-radius: 48% 48% 12px 12px;
  background: linear-gradient(135deg, #2fc0d1, #0b8099);
}

.communication-person::after {
  position: absolute;
  right: 24%;
  bottom: 26%;
  width: 30px;
  height: 48px;
  content: "";
  border: 4px solid #0a4259;
  border-radius: 7px;
  background: #fff;
  transform: rotate(-12deg);
}

.communication-outcomes {
  padding: 0 0 58px;
}

.communication-outcomes-layout {
  display: grid;
  grid-template-columns: 0.96fr 1fr;
  align-items: end;
  gap: 46px;
}

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

.communication-stat-grid article {
  display: grid;
  justify-items: center;
  min-height: 172px;
  padding: 24px 20px;
  border: 1px solid #d8e8f4;
  border-radius: 10px;
  background: #fff;
  text-align: center;
}

.communication-stat-grid .communication-icon {
  width: 58px;
  height: 58px;
  color: #fff;
  background: var(--color-primary);
  font-size: 26px;
}

.communication-stat-grid strong {
  color: var(--color-primary);
  font-size: 25px;
  line-height: 1.15;
}

.communication-stat-grid p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.45;
}

.communication-desk-visual {
  position: relative;
  min-height: 250px;
}

.communication-screen {
  position: absolute;
  right: 18%;
  bottom: 28px;
  width: min(420px, 72%);
  overflow: hidden;
  border: 8px solid #111827;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(8, 21, 61, 0.18);
}

.communication-screen img {
  width: 200%;
  max-width: none;
  transform: translateX(-17%);
}

.communication-operator {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 160px;
  height: 238px;
  border-radius: 80px 80px 10px 10px;
  background:
    radial-gradient(circle at 48% 11%, #f0b6a1 0 17%, transparent 18%),
    radial-gradient(circle at 47% 8%, #1a2637 0 20%, transparent 21%),
    linear-gradient(160deg, transparent 0 36%, #35bfd0 37% 74%, #0b6c89 75%);
}

.communication-final {
  padding: 0 0 52px;
}

.communication-final-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 38px 48px;
  border: 1px solid #ccecf4;
  border-radius: 14px;
  background: linear-gradient(135deg, #edfaff, #f9feff);
}

.communication-final-icon {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--color-secondary);
  box-shadow: 0 18px 35px rgba(251, 63, 66, 0.27);
  font-size: 42px;
}

.communication-final h2 {
  margin: 0 0 8px;
  color: var(--color-ink);
  font-size: clamp(26px, 2.7vw, 38px);
  line-height: 1.13;
}

.communication-final p {
  margin: 0;
  color: var(--color-muted);
  font-size: 18px;
}

.communication-final-actions {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.communication-final-actions > a:not(.btn) {
  color: var(--color-primary);
  font-weight: 900;
}

.communication-trust {
  padding: 4px 0 52px;
}

.communication-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.communication-trust-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--color-ink);
  font-size: 15px;
  font-weight: 700;
}

.communication-trust-grid i {
  display: inline-block;
  width: 26px;
  height: 26px;
  border: 3px solid var(--color-primary);
  border-radius: 50%;
}

@media (max-width: 1180px) {
  .communication-hero-grid,
  .communication-panel-agent,
  .communication-panel-announcement,
  .communication-outcomes-layout {
    grid-template-columns: 1fr;
  }

  .communication-hero-visual {
    max-width: 860px;
  }

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

  .communication-panel {
    padding: 36px;
  }

  .communication-desk-visual {
    min-height: 310px;
  }
}

@media (max-width: 760px) {
  .communication-hero {
    padding: 42px 0 44px;
  }

  .communication-hero-grid {
    gap: 34px;
  }

  .communication-hero h1 {
    font-size: 36px;
  }

  .communication-hero-lead {
    font-size: 28px;
  }

  .communication-feature-grid,
  .communication-stat-grid,
  .communication-trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .communication-panel {
    padding: 26px 18px;
  }

  .communication-agent-illustration {
    display: none;
  }

  .communication-final-card {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 28px 22px;
  }

  .communication-final-actions,
  .communication-final-actions .btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .communication-feature-grid,
  .communication-stat-grid,
  .communication-trust-grid {
    grid-template-columns: 1fr;
  }

  .communication-icon {
    width: 72px;
    height: 72px;
  }

  .communication-desk-visual {
    min-height: 240px;
  }

  .communication-screen {
    right: 6%;
    width: 82%;
  }

  .communication-operator {
    width: 106px;
    height: 176px;
  }
}

/* Communication feature page: dimensions follow the supplied product layout. */
.communication-page {
  background: #fff;
}

.communication-hero {
  padding: 36px 0 54px;
}

.communication-hero-grid {
  grid-template-columns: minmax(300px, .75fr) minmax(400px, 1.15fr);
  gap: 38px;
}

.communication-breadcrumb,
.communication-page .eyebrow {
  margin-bottom: 14px;
  font-size: 10px;
}

.communication-hero h1 {
  max-width: 470px;
  font-size: clamp(34px, 3.1vw, 48px);
  line-height: 1.08;
}

.communication-hero-lead {
  margin: 8px 0 14px;
  font-size: clamp(28px, 2.65vw, 40px);
  line-height: 1.08;
}

.communication-hero-copy > p:not(.communication-breadcrumb):not(.communication-hero-lead) {
  max-width: 405px;
  margin-bottom: 26px;
  font-size: 15px;
  line-height: 1.55;
}

.communication-actions {
  width: min(100%, 300px);
  gap: 10px;
}

.communication-actions .btn {
  min-height: 46px;
  padding: 0 18px;
  font-size: 14px;
}

.communication-hero-visual {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.communication-hero-visual img {
  width: 100%;
  height: auto;
}

.communication-features {
  padding: 8px 0 58px;
}

.communication-features h2,
.communication-outcomes h2 {
  margin-bottom: 30px;
  font-size: clamp(23px, 2.15vw, 31px);
}

.communication-feature-grid {
  gap: 16px;
}

.communication-icon {
  width: 62px;
  height: 62px;
  font-size: 28px;
}

.communication-feature-grid h3 {
  margin-top: 3px;
  font-size: 13px;
}

.communication-feature-grid p {
  font-size: 12px;
  line-height: 1.48;
}

.communication-panel-section {
  padding-bottom: 58px;
}

.communication-panel {
  gap: 26px;
  margin-bottom: 30px;
  padding: 30px 38px;
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(8, 21, 61, .05);
}

.communication-panel-agent {
  grid-template-columns: .72fr 1.28fr;
}

.communication-panel-agent .communication-agent-illustration {
  display: none;
}

.communication-panel-agent .communication-chat-card {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.communication-panel-agent .communication-chat-card img {
  width: 100%;
}

.communication-panel-announcement .communication-announcement-card {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.communication-panel-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(25px, 2.45vw, 36px);
}

.communication-panel-copy .check-list {
  gap: 9px;
  font-size: 13px;
}

.communication-agent-illustration img {
  width: 150px;
  border-radius: 50%;
}

.communication-chat-card,
.communication-announcement-card {
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(8, 21, 61, .08);
}

.communication-reply-row {
  padding: 9px;
}

.communication-reply-row span,
.communication-reply-row b {
  min-height: 32px;
  padding: 6px 10px;
  font-size: 11px;
}

.communication-panel-announcement {
  grid-template-columns: 1.08fr .88fr;
}

.communication-outcomes {
  padding-bottom: 42px;
}

.communication-outcomes-layout {
  grid-template-columns: 1.05fr .75fr;
  gap: 28px;
}

.communication-stat-grid {
  gap: 12px;
}

.communication-stat-grid article {
  min-height: 144px;
  padding: 16px 12px;
  border-radius: 8px;
}

.communication-stat-grid .communication-icon {
  width: 44px;
  height: 44px;
  font-size: 19px;
}

.communication-stat-grid strong {
  font-size: 21px;
}

.communication-stat-grid p {
  font-size: 12px;
}

.communication-desk-visual {
  display: flex;
  align-items: flex-end;
  min-height: 190px;
}

.communication-desk-visual img {
  width: 100%;
  margin-left: auto;
}

.communication-screen,
.communication-operator {
  display: none;
}

.communication-final {
  padding-bottom: 36px;
}

.communication-final-card {
  gap: 24px;
  padding: 26px 38px;
  border-radius: 10px;
}

.communication-final-icon {
  width: 68px;
  height: 68px;
  font-size: 30px;
}

.communication-final h2 {
  font-size: clamp(24px, 2.3vw, 34px);
}

.communication-final p {
  font-size: 15px;
}

.communication-final-actions {
  gap: 10px;
}

.communication-final-actions .btn {
  min-height: 42px;
  font-size: 14px;
}

.communication-final-actions > a:not(.btn) {
  font-size: 12px;
}

.communication-trust {
  padding-bottom: 38px;
}

.communication-trust-grid {
  gap: 12px;
}

.communication-trust-grid span {
  gap: 9px;
  font-size: 12px;
}

.communication-trust-grid i {
  width: 18px;
  height: 18px;
  border-width: 2px;
}

@media (max-width: 1180px) {
  .communication-hero-grid,
  .communication-panel-agent,
  .communication-panel-announcement,
  .communication-outcomes-layout {
    grid-template-columns: 1fr;
  }

  .communication-hero-visual {
    max-width: 650px;
  }

}

@media (max-width: 760px) {
  .communication-hero h1 {
    font-size: 36px;
  }

  .communication-hero-lead {
    font-size: 29px;
  }

  .communication-panel {
    padding: 26px 20px;
  }
}

/* Planning and assignments feature page. */
.planning-page {
  background: #fff;
}

.planning-hero {
  padding: 52px 0 54px;
}

.planning-hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 42px;
}

.planning-breadcrumb,
.planning-page .eyebrow {
  margin: 0 0 14px;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.planning-breadcrumb span {
  margin: 0 8px;
}

.planning-hero h1 {
  max-width: 540px;
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(38px, 3.8vw, 58px);
  line-height: 1.08;
}

.planning-hero-lead {
  max-width: 500px;
  margin: 10px 0 16px;
  color: var(--color-primary);
  font-size: clamp(28px, 2.7vw, 40px);
  font-weight: 900;
  line-height: 1.08;
}

.planning-hero-copy > p:not(.planning-breadcrumb):not(.planning-hero-lead) {
  max-width: 455px;
  margin: 0 0 28px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.55;
}

.planning-actions {
  display: grid;
  width: min(100%, 330px);
  gap: 12px;
}

.planning-actions .btn {
  min-height: 46px;
  padding: 0 20px;
  font-size: 14px;
}

.planning-hero-visual,
.planning-panel-visual {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.planning-hero-visual img {
  width: 100%;
  height: auto;
}

.planning-features {
  padding: 16px 0 60px;
}

.planning-features h2 {
  max-width: 900px;
  margin: 0 auto 32px;
  color: var(--color-ink);
  font-size: clamp(25px, 2.35vw, 34px);
  line-height: 1.2;
  text-align: center;
}

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

.planning-feature-grid article {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.planning-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-primary);
  background: #effbfe;
}

.planning-icon svg,
.planning-final-icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.planning-feature-grid h3 {
  margin: 2px 0 0;
  color: var(--color-ink);
  font-size: 14px;
  line-height: 1.25;
}

.planning-feature-grid p {
  max-width: 175px;
  margin: 0;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.5;
}

.planning-panel-section {
  padding: 0 0 58px;
}

.planning-panel {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 32px;
  padding: 34px 40px;
  border: 1px solid #dbeef5;
  border-radius: 8px;
  background: #f5fcfe;
}

.planning-panel-assignment {
  grid-template-columns: 1.2fr .8fr;
}

.planning-panel-copy h2 {
  margin: 0 0 16px;
  color: var(--color-ink);
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.12;
}

.planning-panel-copy .check-list {
  margin: 0;
  font-size: 14px;
}

.planning-panel-visual img {
  width: 100%;
  height: auto;
}

.planning-final {
  padding: 0 0 46px;
}

.planning-final-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 30px 40px;
  border: 1px solid #ccecf4;
  border-radius: 10px;
  background: #eefaff;
}

.planning-final-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--color-secondary);
  box-shadow: 0 16px 30px rgba(251, 63, 66, .24);
}

.planning-final h2 {
  margin: 0 0 8px;
  color: var(--color-ink);
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.12;
}

.planning-final p {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
}

.planning-final-actions {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.planning-final-actions .btn {
  min-height: 46px;
  font-size: 14px;
}

.planning-final-actions > a:not(.btn) {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .planning-hero-grid,
  .planning-panel,
  .planning-panel-assignment {
    grid-template-columns: 1fr;
  }

  .planning-hero-visual {
    max-width: 760px;
  }

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

  .planning-panel-assignment .planning-panel-copy {
    grid-row: 1;
  }
}

@media (max-width: 760px) {
  .planning-hero {
    padding-top: 38px;
  }

  .planning-hero h1 {
    font-size: 36px;
  }

  .planning-hero-lead {
    font-size: 29px;
  }

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

  .planning-panel {
    gap: 26px;
    padding: 26px 20px;
  }

  .planning-final-card {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 28px 22px;
  }

  .planning-final-actions,
  .planning-final-actions .btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .planning-feature-grid {
    grid-template-columns: 1fr;
  }
}
