:root {
  color-scheme: light;
  --ink: #0d1720;
  --ink-soft: #31414d;
  --muted: #66757f;
  --line: #dce3e5;
  --line-strong: #c7d1d4;
  --paper: #ffffff;
  --canvas: #f5f8f7;
  --canvas-blue: #eef6f7;
  --brand: #147f9f;
  --brand-dark: #0a637d;
  --brand-pale: #dff2f4;
  --mint: #8ee8dc;
  --success: #15755d;
  --error: #ae2b32;
  --shadow-sm: 0 8px 24px rgb(13 23 32 / 7%);
  --shadow-lg: 0 28px 70px rgb(13 23 32 / 14%);
  --shell: min(1240px, calc(100% - 48px));
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--canvas);
  color: var(--ink);
  font-family:
    Inter,
    Manrope,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

svg {
  width: 1.15em;
  height: 1.15em;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgb(20 127 159 / 30%);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.35rem);
  font-weight: 770;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 730;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgb(245 248 247 / 88%);
  backdrop-filter: blur(18px) saturate(140%);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header--scrolled {
  border-color: rgb(199 209 212 / 70%);
  background: rgb(255 255 255 / 93%);
  box-shadow: 0 5px 20px rgb(13 23 32 / 5%);
}

.site-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: 176px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a,
.client-link {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 640;
  text-decoration: none;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.language-switcher {
  position: relative;
}

.language-switcher summary {
  display: flex;
  min-width: 62px;
  height: 38px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding-inline: 9px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 720;
  list-style: none;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary svg:first-child {
  width: 16px;
  height: 16px;
}

.language-switcher summary svg:last-child {
  width: 13px;
  height: 13px;
  transition: transform 160ms ease;
}

.language-switcher[open] summary svg:last-child {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  z-index: 10;
  top: calc(100% + 9px);
  right: 0;
  display: grid;
  width: 230px;
  overflow: hidden;
  padding: 7px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.language-menu a {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 6px 9px;
  color: var(--ink-soft);
  font-size: 0.8rem;
  text-decoration: none;
}

.language-menu a:hover,
.language-menu a[aria-current="page"] {
  background: var(--canvas-blue);
  color: var(--ink);
}

.language-menu a small {
  color: var(--muted);
  font-size: 0.65rem;
}

.client-link {
  display: flex;
  align-items: center;
  gap: 7px;
}

.client-link svg {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: transparent;
  color: var(--ink);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu .shell {
  display: grid;
  padding-block: 20px 40px;
}

.mobile-menu a:not(.button) {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  font-weight: 680;
  text-decoration: none;
}

.mobile-menu a svg {
  color: var(--brand);
}

.mobile-menu .button {
  margin-top: 24px;
}

.mobile-languages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.mobile-menu .mobile-languages a:not(.button) {
  min-height: 46px;
  justify-content: space-between;
  padding-inline: 11px;
  border: 1px solid var(--line);
  font-size: 0.78rem;
}

.mobile-languages a[aria-current="page"] {
  border-color: var(--brand);
  background: var(--canvas-blue);
}

.mobile-languages a small {
  color: var(--muted);
  font-size: 0.62rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 720;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

.button svg,
.text-link svg,
.contact-card a svg {
  width: 18px;
  height: 18px;
  transition: transform 160ms ease;
}

.button:hover svg,
.text-link:hover svg,
.contact-card a:hover svg {
  transform: translateX(3px);
}

.button--primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 8px 20px rgb(13 23 32 / 16%);
}

.button--primary:hover {
  background: #162732;
  box-shadow: 0 12px 26px rgb(13 23 32 / 22%);
}

.button--quiet,
.button--outline {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.button--quiet:hover,
.button--outline:hover {
  border-color: var(--ink);
  background: var(--paper);
}

.button--light {
  background: white;
  color: var(--ink);
}

.button--small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 0.82rem;
}

.button--wide {
  width: 100%;
}

.button[disabled] {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--brand-dark);
  font-size: 0.75rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 20px;
  height: 2px;
  background: currentcolor;
}

.eyebrow--dark {
  color: var(--mint);
}

.hero {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(40px, 7vw, 94px);
  padding-block: 72px 86px;
}

.hero__copy h1 {
  max-width: 780px;
  margin-bottom: 27px;
}

.hero__lead {
  max-width: 660px;
  margin-bottom: 31px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__note {
  display: flex;
  max-width: 590px;
  align-items: flex-start;
  gap: 10px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero__note svg {
  flex: 0 0 18px;
  margin-top: 3px;
  color: var(--success);
}

.inbox-scene {
  position: relative;
  min-width: 0;
  padding: 34px 0 46px;
}

.inbox-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.78;
}

.inbox-glow--one {
  top: -4%;
  right: -4%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgb(105 191 211 / 37%), transparent 70%);
}

.inbox-glow--two {
  bottom: 2%;
  left: -12%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgb(142 232 220 / 30%), transparent 70%);
}

.inbox-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgb(199 209 212 / 80%);
  border-radius: 14px;
  background: rgb(255 255 255 / 91%);
  box-shadow: var(--shadow-lg);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.inbox-card__top {
  display: grid;
  height: 51px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.68rem;
}

.inbox-card__top > span:nth-child(2) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inbox-card__top > svg {
  justify-self: end;
  margin-right: 17px;
}

.window-dots {
  display: flex;
  gap: 5px;
  margin-left: 17px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c5ced1;
}

.window-dots i:nth-child(2) {
  background: #80c3cf;
}

.inbox-card__body {
  display: grid;
  min-height: 405px;
  grid-template-columns: 67px 1fr;
}

.inbox-card__body aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding-top: 24px;
  border-right: 1px solid var(--line);
  background: #f6f9f9;
}

.inbox-card__body aside i {
  width: 20px;
  height: 5px;
  border-radius: 8px;
  background: #d0d9db;
}

.inbox-card__body aside i:nth-of-type(2) {
  background: #88bdc8;
}

.inbox-logo {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 7px;
  background: var(--ink);
  color: white;
}

.message-list {
  min-width: 0;
  padding: 20px;
}

.message-list__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.79rem;
}

.message-list__heading svg {
  color: var(--muted);
}

.message-row {
  display: grid;
  min-height: 78px;
  grid-template-columns: 37px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}

.message-row--active {
  border: 1px solid #c7e0e5;
  border-radius: 8px;
  background: var(--canvas-blue);
}

.avatar {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 50%;
  background: #d9edf0;
  color: var(--brand-dark);
  font-size: 0.76rem;
  font-weight: 760;
}

.message-row strong,
.message-row p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.message-row strong {
  display: block;
  font-size: 0.75rem;
}

.message-row p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.67rem;
}

.message-row time {
  align-self: start;
  padding-top: 7px;
  color: var(--muted);
  font-size: 0.58rem;
}

.floating-status {
  position: absolute;
  z-index: 2;
  right: -22px;
  bottom: 13px;
  display: flex;
  min-width: 240px;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid #c3e1d8;
  border-radius: 9px;
  background: rgb(255 255 255 / 96%);
  box-shadow: var(--shadow-sm);
}

.floating-status > svg {
  width: 29px;
  height: 29px;
  padding: 5px;
  border-radius: 50%;
  background: #dff3ec;
  color: var(--success);
}

.floating-status span {
  min-width: 0;
}

.floating-status strong,
.floating-status small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.floating-status strong {
  font-size: 0.72rem;
}

.floating-status small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.62rem;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--paper);
}

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

.trust-item {
  display: grid;
  gap: 1px;
  min-height: 91px;
  align-content: center;
  padding-inline: 26px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  font-size: 0.76rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.78rem;
}

.section {
  padding-block: clamp(78px, 10vw, 138px);
}

.section--tinted {
  border-block: 1px solid var(--line);
  background: var(--canvas-blue);
}

.section-heading {
  max-width: 790px;
  margin-bottom: clamp(42px, 6vw, 70px);
}

.section-heading h2 {
  margin-bottom: 20px;
}

.section-heading > p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 50px;
}

.section-heading--split h2,
.section-heading--split p {
  margin-bottom: 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
}

.benefit {
  min-height: 310px;
  padding: 31px 36px 25px 0;
  border-right: 1px solid var(--line);
}

.benefit + .benefit {
  padding-left: 36px;
}

.benefit:last-child {
  border-right: 0;
}

.benefit__number {
  display: block;
  margin-bottom: 70px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 760;
}

.benefit h3 {
  margin-bottom: 15px;
}

.benefit p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.plan-card {
  position: relative;
  display: flex;
  min-height: 590px;
  flex-direction: column;
  padding: 31px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgb(255 255 255 / 80%);
}

.plan-card--featured {
  border-color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.plan-card__top {
  min-height: 230px;
  border-bottom: 1px solid var(--line);
}

.plan-card h3 {
  margin: 7px 0 11px;
  font-size: 1.5rem;
}

.plan-card__top p {
  min-height: 68px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.89rem;
}

.plan-badge {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--brand-pale);
  color: var(--brand-dark);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.plan-price strong {
  font-size: 2.3rem;
  letter-spacing: -0.05em;
}

.plan-price span {
  color: var(--muted);
  font-size: 0.78rem;
}

.plan-card ul {
  display: grid;
  gap: 13px;
  margin: 25px 0 30px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.plan-card li svg {
  flex: 0 0 17px;
  margin-top: 2px;
  color: var(--success);
}

.plan-card .button {
  margin-top: auto;
}

.pricing-note {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.web-presence {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.web-presence__layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(500px, 1.22fr);
  align-items: center;
  gap: clamp(60px, 9vw, 120px);
}

.web-presence__copy h2 {
  max-width: 610px;
  margin-bottom: 22px;
}

.web-presence__copy > p:not(.eyebrow) {
  max-width: 590px;
  color: var(--ink-soft);
}

.web-presence__copy ul {
  display: grid;
  gap: 11px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.web-presence__copy li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.web-presence__copy li svg {
  flex: 0 0 18px;
  margin-top: 3px;
  color: var(--success);
}

.web-presence__copy > small {
  display: block;
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.72rem;
}

.mini-site-preview {
  padding: clamp(16px, 2.4vw, 30px);
  background:
    radial-gradient(circle at 85% 5%, rgb(142 232 220 / 45%), transparent 34%),
    #10242e;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
}

.mini-site-preview__browser {
  display: flex;
  height: 44px;
  align-items: center;
  gap: 20px;
  padding-inline: 15px;
  background: #eaf0f1;
  color: var(--muted);
  font-size: 0.64rem;
}

.mini-site-preview__browser > span {
  display: flex;
  gap: 5px;
}

.mini-site-preview__browser i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9dafb4;
}

.mini-site-preview__browser b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-site-preview__page {
  min-height: 390px;
  padding: 24px;
  background: #fbfcfa;
}

.mini-site-preview__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
}

.mini-site-preview__nav span {
  width: 74px;
  height: 16px;
  margin-right: auto;
  background: var(--ink);
}

.mini-site-preview__nav i {
  width: 36px;
  height: 5px;
  background: #bfcbcd;
}

.mini-site-preview__hero {
  display: grid;
  max-width: 440px;
  gap: 10px;
  padding: 60px 20px 44px;
}

.mini-site-preview__hero small {
  color: var(--brand-dark);
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-site-preview__hero strong {
  max-width: 390px;
  font-size: clamp(1.45rem, 2.4vw, 2.4rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.mini-site-preview__hero > span {
  width: min(100%, 340px);
  height: 6px;
  background: #d8e0e1;
}

.mini-site-preview__hero > span + span {
  width: min(78%, 270px);
}

.mini-site-preview__hero button {
  width: max-content;
  margin-top: 9px;
  padding: 9px 14px;
  border: 0;
  border-radius: 4px;
  background: var(--ink);
  color: white;
  font-size: 0.65rem;
}

.mini-site-preview__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mini-site-preview__cards span {
  height: 64px;
  border: 1px solid #dfe5e5;
  background: white;
}

.custom-callout {
  display: flex;
  max-width: 870px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 48px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line-strong);
}

.custom-callout p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
}

.custom-callout a,
.text-link,
.contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-dark);
  font-weight: 720;
  text-decoration: none;
  white-space: nowrap;
}

.flow-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.flow-step {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.flow-step__index {
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 780;
}

.flow-step > div:last-child {
  display: grid;
  grid-template-columns: 140px minmax(220px, 0.65fr) minmax(260px, 1fr);
  align-items: baseline;
  gap: 30px;
}

.flow-step span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 680;
  text-transform: uppercase;
}

.flow-step h3,
.flow-step p {
  margin: 0;
}

.flow-step p {
  color: var(--muted);
  font-size: 0.91rem;
}

.security-section {
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.security-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: clamp(50px, 9vw, 130px);
}

.security-copy h2 {
  margin-bottom: 24px;
}

.security-copy > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: #b7c3c9;
  font-size: 1rem;
}

.text-link--light {
  color: var(--mint);
}

.security-list {
  display: grid;
  border-top: 1px solid #33434e;
}

.security-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 17px;
  padding: 23px 0;
  border-bottom: 1px solid #33434e;
}

.security-list > div > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid #426370;
  border-radius: 50%;
  color: var(--mint);
}

.security-list p,
.security-list strong {
  display: block;
  margin: 0;
}

.security-list p {
  color: #b7c3c9;
  font-size: 0.87rem;
}

.security-list strong {
  margin-bottom: 3px;
  color: white;
  font-size: 0.78rem;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 120px);
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line-strong);
}

.faq-item summary {
  display: flex;
  min-height: 75px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-weight: 680;
  list-style: none;
}

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

.faq-item summary svg {
  flex: 0 0 20px;
  color: var(--brand);
  transition: transform 180ms ease;
}

.faq-item[open] summary svg {
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 700px;
  margin: -6px 42px 26px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.final-cta {
  padding-block: 84px;
  background: var(--brand);
  color: white;
}

.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta h2 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.final-cta p {
  max-width: 650px;
  margin-bottom: 0;
  color: #dceff2;
}

.site-footer {
  padding-top: 72px;
  background: #091219;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.72fr);
  gap: 60px;
  padding-bottom: 68px;
}

.footer-brand img {
  width: 190px;
  height: auto;
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 300px;
  margin-bottom: 22px;
  color: #aebbc1;
  font-size: 0.9rem;
}

.footer-brand a {
  display: block;
  width: fit-content;
  margin-top: 5px;
  color: #d8e2e5;
  font-size: 0.82rem;
  text-decoration: none;
}

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

.footer-grid nav strong {
  margin-bottom: 8px;
  color: white;
  font-size: 0.78rem;
}

.footer-grid nav a {
  color: #aebbc1;
  font-size: 0.8rem;
  text-decoration: none;
}

.footer-grid nav a:hover,
.footer-brand a:hover {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #26343d;
  color: #8f9da4;
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom span {
  color: #bdc8cc;
}

.form-page,
.content-page,
.legal-page {
  min-height: 70vh;
}

.form-page {
  background:
    radial-gradient(circle at 15% 10%, rgb(105 191 211 / 17%), transparent 30%),
    var(--canvas);
}

.form-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1fr);
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
  padding-block: 76px 110px;
}

.form-hero__intro {
  position: sticky;
  top: calc(var(--header-height) + 52px);
}

.form-hero__intro h1,
.content-hero h1,
.legal-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5.7vw, 4.9rem);
}

.form-hero__intro > p:not(.eyebrow),
.content-hero > p:not(.eyebrow),
.legal-hero > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.form-assurances {
  display: grid;
  gap: 11px;
  margin-top: 32px;
}

.form-assurances span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.form-assurances svg {
  color: var(--success);
}

.lead-card {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.lead-card form {
  padding: 38px;
}

.form-section {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.form-section__heading {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  margin-bottom: 23px;
}

.form-section__heading > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid #b9d8de;
  border-radius: 50%;
  color: var(--brand-dark);
  font-size: 0.64rem;
  font-weight: 800;
}

.form-section__heading h2 {
  margin: 2px 0 5px;
  font-size: 1.07rem;
  letter-spacing: -0.02em;
}

.form-section__heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.77rem;
}

.plan-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.plan-option {
  position: relative;
  cursor: pointer;
}

.plan-option input,
.segmented-control input,
.checkbox input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.plan-option > span {
  display: block;
  min-height: 75px;
  padding: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 7px 7px 0 0;
}

.plan-option b {
  display: block;
  padding: 7px 12px 9px;
  border: 1px solid var(--line-strong);
  border-top: 0;
  border-radius: 0 0 7px 7px;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

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

.plan-option strong {
  font-size: 0.8rem;
}

.plan-option small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 500;
}

.plan-option input:checked ~ span,
.plan-option input:checked ~ b {
  border-color: var(--brand);
  background: var(--canvas-blue);
  color: var(--brand-dark);
}

.plan-option input:focus-visible ~ span {
  outline: 3px solid rgb(20 127 159 / 25%);
  outline-offset: 2px;
}

.plan-picker-note {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.plan-picker-note svg {
  width: 15px;
  min-width: 15px;
  margin-top: 2px;
  color: var(--brand);
}

.plan-picker-note strong {
  color: var(--ink-soft);
}

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

.field {
  position: relative;
  display: grid;
  gap: 7px;
  margin-top: 17px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 660;
}

.field-grid .field {
  margin-top: 0;
}

.field > span:first-child b {
  color: var(--brand-dark);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #fbfcfc;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

.field input,
.field select {
  height: 47px;
}

.field select {
  padding-right: 40px;
  appearance: none;
}

.field textarea {
  min-height: 145px;
  padding-block: 11px;
  line-height: 1.5;
  resize: vertical;
}

.field--wide {
  width: 100%;
}

.field__select-icon {
  position: absolute;
  right: 13px;
  bottom: 15px;
  color: var(--muted);
  pointer-events: none;
}

.field__select-icon svg {
  width: 16px;
  height: 16px;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #9fb0b5;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand);
  outline: 0;
  background: white;
  box-shadow: 0 0 0 3px rgb(20 127 159 / 12%);
}

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

.field small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
}

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

.segmented-control label {
  cursor: pointer;
}

.segmented-control span {
  display: grid;
  min-height: 48px;
  place-items: center;
  padding-inline: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 0.77rem;
  font-weight: 650;
  text-align: center;
}

.segmented-control input:checked + span {
  border-color: var(--brand);
  background: var(--canvas-blue);
  color: var(--brand-dark);
}

.segmented-control input:focus-visible + span {
  outline: 3px solid rgb(20 127 159 / 25%);
  outline-offset: 2px;
}

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

.form-consents {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.checkbox {
  position: relative;
  display: grid;
  grid-template-columns: 21px 1fr;
  align-items: start;
  gap: 10px;
  cursor: pointer;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.checkbox__box {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: white;
  color: transparent;
}

.checkbox__box svg {
  width: 14px;
  height: 14px;
}

.checkbox input:checked + .checkbox__box {
  border-color: var(--brand);
  background: var(--brand);
  color: white;
}

.checkbox input:focus-visible + .checkbox__box {
  outline: 3px solid rgb(20 127 159 / 25%);
  outline-offset: 2px;
}

.checkbox a {
  color: var(--brand-dark);
  font-weight: 680;
}

.form-message {
  margin-bottom: 16px;
  padding: 11px 13px;
  border-left: 3px solid currentcolor;
  font-size: 0.78rem;
}

.form-message--error {
  background: #fff1f1;
  color: var(--error);
}

.checkout-reassurance {
  display: grid;
  justify-items: center;
  gap: 3px;
  margin-top: 14px;
  color: var(--muted);
  text-align: center;
}

.checkout-reassurance span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.73rem;
  font-weight: 680;
}

.checkout-reassurance small {
  font-size: 0.65rem;
}

.checkout-reassurance svg {
  width: 14px;
  height: 14px;
}

.success-panel {
  padding: 65px 44px;
  text-align: center;
}

.success-panel__icon {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #dff3ec;
  color: var(--success);
}

.success-panel__icon svg {
  width: 30px;
  height: 30px;
}

.success-panel .eyebrow {
  justify-content: center;
}

.success-panel h2 {
  margin-bottom: 17px;
  font-size: 2rem;
}

.success-panel > p:not(.eyebrow) {
  color: var(--muted);
}

.reference {
  display: grid;
  gap: 2px;
  max-width: 320px;
  margin: 26px auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--canvas);
}

.reference span {
  color: var(--muted);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.reference strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9rem;
}

.content-hero,
.legal-hero {
  padding-block: 85px 65px;
}

.content-hero {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.content-hero .eyebrow {
  justify-content: center;
}

.content-hero > p:last-child {
  max-width: 720px;
  margin-inline: auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.68fr);
  align-items: start;
  gap: clamp(38px, 6vw, 80px);
  padding-bottom: 115px;
}

.contact-form-card {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.contact-form-card form {
  padding: clamp(24px, 4vw, 42px);
}

.contact-form-card__heading {
  margin-bottom: 28px;
}

.contact-form-card__heading h2 {
  margin-bottom: 10px;
  font-size: 1.75rem;
}

.contact-form-card__heading p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-form-card .form-consents {
  margin-top: 22px;
}

.contact-aside {
  display: grid;
  gap: 38px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line-strong);
}

.contact-aside .contact-grid {
  grid-template-columns: 1fr;
  border: 1px solid var(--line-strong);
}

.contact-aside .contact-card {
  min-height: 135px;
  padding: 24px;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.contact-aside .contact-card:last-child {
  border-bottom: 0;
}

.contact-aside .contact-card > span {
  margin-bottom: 18px;
}

.contact-aside .support-note h2 {
  font-size: 1.35rem;
}

.contact-card {
  min-height: 180px;
  padding: 31px;
  border-right: 1px solid var(--line);
}

.contact-card:last-child {
  border-right: 0;
}

.contact-card > span {
  display: block;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card p,
.contact-card a {
  margin: 0;
  font-size: 0.92rem;
  white-space: normal;
}

.content-narrow {
  max-width: 760px;
  margin-block: 85px 110px;
}

.support-note h2 {
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.support-note ul {
  display: grid;
  gap: 13px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.support-note li {
  display: flex;
  gap: 11px;
  color: var(--ink-soft);
}

.support-note li svg {
  flex: 0 0 18px;
  margin-top: 4px;
  color: var(--success);
}

.support-note > p {
  padding: 15px 18px;
  border-left: 3px solid var(--brand);
  background: var(--canvas-blue);
  color: var(--muted);
  font-size: 0.82rem;
}

.legal-hero {
  max-width: 940px;
  margin-inline: auto;
  text-align: center;
}

.legal-hero .eyebrow {
  justify-content: center;
}

.legal-hero > p:not(.eyebrow) {
  max-width: 730px;
  margin-inline: auto;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.legal-meta span {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  font-size: 0.68rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  justify-content: center;
  gap: clamp(50px, 8vw, 110px);
  padding-bottom: 120px;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  align-self: start;
  max-height: calc(100vh - var(--header-height) - 64px);
  overflow-y: auto;
  padding: 19px 0;
  border-block: 1px solid var(--line-strong);
}

.legal-toc strong {
  font-size: 0.74rem;
}

.legal-toc ol {
  display: grid;
  gap: 8px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.legal-toc a {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
  text-decoration: none;
}

.legal-toc a:hover {
  color: var(--brand-dark);
}

.legal-document {
  min-width: 0;
}

.legal-section {
  padding: 34px 0 38px;
  border-top: 1px solid var(--line-strong);
}

.legal-section:first-child {
  border-top-width: 2px;
  border-top-color: var(--ink);
}

.legal-section h2 {
  margin-bottom: 22px;
  font-size: 1.55rem;
  letter-spacing: -0.025em;
}

.legal-section p,
.legal-section li,
.legal-section dd,
.legal-section td {
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.legal-section p:last-child,
.legal-section ul:last-child,
.legal-section dl:last-child,
.legal-section .table-scroll:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.legal-section dl {
  margin: 0;
}

.legal-section dl > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section dt {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 720;
}

.legal-section dd {
  margin: 0;
}

.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  margin-bottom: 20px;
  border: 1px solid var(--line);
}

.legal-section table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: white;
}

.legal-section th,
.legal-section td {
  padding: 13px 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-section th:last-child,
.legal-section td:last-child {
  border-right: 0;
}

.legal-section tr:last-child td {
  border-bottom: 0;
}

.legal-section th {
  background: var(--canvas-blue);
  color: var(--ink);
  font-size: 0.75rem;
}

.not-found {
  display: grid;
  min-height: 70vh;
  place-items: center;
  align-content: center;
  padding-block: 80px;
  text-align: center;
}

.not-found > span {
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.not-found h1 {
  margin: 14px 0;
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.not-found p {
  color: var(--muted);
}

.not-found .button {
  margin-top: 16px;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 20px;
  bottom: 20px;
  max-width: 360px;
  padding: 13px 16px;
  border-radius: 6px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow-lg);
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 1500px) {
  :root {
    --shell: min(1320px, calc(100% - 80px));
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(520px, 0.92fr);
  }

  .plan-card {
    min-height: 570px;
  }
}

@media (max-width: 1080px) {
  .desktop-nav,
  .client-link span,
  .header-cta {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
    gap: 45px;
  }

  .floating-status {
    right: -8px;
  }

  .plan-card {
    padding: 25px;
  }

  .flow-step > div:last-child {
    grid-template-columns: 110px minmax(180px, 0.65fr) minmax(220px, 1fr);
    gap: 20px;
  }

  .form-hero {
    grid-template-columns: minmax(0, 0.7fr) minmax(480px, 1fr);
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 0.75fr);
    gap: 35px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 32px, 700px);
  }

  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 45px;
    padding-block: 64px 75px;
  }

  .hero__copy {
    min-width: 0;
    max-width: 720px;
  }

  .inbox-scene {
    width: min(620px, 100%);
    justify-self: center;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-child(odd) {
    padding-left: 0;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .benefit {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit + .benefit {
    padding-left: 0;
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .benefit__number {
    margin-bottom: 35px;
  }

  .plan-grid {
    width: min(560px, 100%);
    margin-inline: auto;
  }

  .plan-card {
    min-height: auto;
  }

  .plan-card__top {
    min-height: 0;
  }

  .plan-card__top p {
    min-height: 0;
  }

  .web-presence__layout {
    grid-template-columns: 1fr;
  }

  .web-presence__copy {
    max-width: 680px;
  }

  .mini-site-preview {
    width: min(700px, 100%);
    justify-self: center;
  }

  .flow-step {
    grid-template-columns: 55px 1fr;
  }

  .flow-step > div:last-child {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .security-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .final-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-hero {
    grid-template-columns: 1fr;
    padding-block: 60px 90px;
  }

  .form-hero__intro {
    position: static;
  }

  .lead-card {
    width: min(620px, 100%);
    justify-self: center;
  }

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

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

  .contact-aside {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
  }

  .contact-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-card:last-child {
    border-bottom: 0;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .legal-toc {
    position: static;
    max-height: none;
  }

  .legal-toc ol {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px 20px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 30px;
    border-bottom: 1px solid #26343d;
  }
}

@media (max-width: 580px) {
  :root {
    --shell: calc(100% - 28px);
    --header-height: 68px;
  }

  body {
    font-size: 15px;
  }

  .brand img {
    width: 148px;
  }

  .header-actions {
    gap: 9px;
  }

  .language-switcher summary {
    min-width: 55px;
    height: 36px;
    padding-inline: 7px;
  }

  .client-link {
    display: none;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  h1 {
    overflow-wrap: anywhere;
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9.5vw, 2.75rem);
  }

  .hero {
    padding-block: 49px 60px;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
  }

  .inbox-scene {
    padding-bottom: 38px;
  }

  .inbox-card {
    border-radius: 10px;
    transform: none;
  }

  .inbox-card__body {
    min-height: 330px;
    grid-template-columns: 45px 1fr;
  }

  .inbox-card__body aside {
    gap: 18px;
  }

  .inbox-card__body aside i {
    width: 15px;
  }

  .inbox-logo {
    width: 29px;
    height: 29px;
  }

  .message-list {
    padding: 13px;
  }

  .message-row {
    min-height: 70px;
    grid-template-columns: 31px minmax(0, 1fr);
    padding-inline: 8px;
  }

  .message-row time {
    display: none;
  }

  .avatar {
    width: 30px;
    height: 30px;
  }

  .floating-status {
    right: 8px;
    bottom: 4px;
    left: 8px;
    min-width: 0;
  }

  .trust-item {
    min-height: 82px;
    padding-inline: 16px;
  }

  .section {
    padding-block: 78px;
  }

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

  .section-heading > p:last-child {
    font-size: 0.95rem;
  }

  .plan-card {
    padding: 23px;
  }

  .plan-price strong {
    font-size: 2.05rem;
  }

  .custom-callout {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .custom-callout a {
    white-space: normal;
  }

  .web-presence__layout {
    gap: 48px;
  }

  .mini-site-preview {
    padding: 12px;
    transform: none;
  }

  .mini-site-preview__page {
    min-height: 330px;
    padding: 18px;
  }

  .mini-site-preview__hero {
    padding: 45px 10px 35px;
  }

  .flow-step {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

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

  .faq-item summary {
    min-height: 68px;
    font-size: 0.92rem;
  }

  .final-cta {
    padding-block: 67px;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 25px;
  }

  .footer-grid nav:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 18px;
  }

  .form-hero {
    padding-block: 47px 70px;
  }

  .form-hero__intro h1,
  .content-hero h1,
  .legal-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .lead-card form {
    padding: 25px 18px;
  }

  .plan-picker,
  .field-grid,
  .segmented-control {
    grid-template-columns: 1fr;
  }

  .plan-option {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .plan-option > span {
    min-height: 61px;
    border-radius: 7px 0 0 7px;
  }

  .plan-option b {
    display: grid;
    min-width: 110px;
    place-content: center;
    border-top: 1px solid var(--line-strong);
    border-left: 0;
    border-radius: 0 7px 7px 0;
    text-align: right;
  }

  .plan-option input:checked ~ b {
    border-top-color: var(--brand);
  }

  .success-panel {
    padding: 50px 24px;
  }

  .content-hero,
  .legal-hero {
    padding-block: 62px 47px;
    text-align: left;
  }

  .content-hero .eyebrow,
  .legal-hero .eyebrow {
    justify-content: flex-start;
  }

  .content-hero > p:last-child,
  .legal-hero > p:not(.eyebrow) {
    margin-inline: 0;
  }

  .legal-meta {
    justify-content: flex-start;
  }

  .legal-toc ol {
    grid-template-columns: 1fr;
  }

  .legal-section dl > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .content-narrow {
    margin-block: 65px 85px;
  }

  .contact-layout {
    padding-bottom: 80px;
  }

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

  .contact-form-card form {
    padding: 24px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .legal-toc,
  .final-cta {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .legal-layout {
    display: block;
  }

  .legal-section {
    break-inside: avoid;
  }
}
