:root {
  --bg: #f6f1e8;
  --bg-soft: #fbf8f2;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #fffdf8;
  --surface-muted: #f1ebe2;
  --text: #29313a;
  --text-soft: #59636d;
  --line: rgba(41, 49, 58, 0.12);
  --line-strong: rgba(41, 49, 58, 0.2);
  --accent: #3f5f76;
  --accent-strong: #2f4a5f;
  --accent-soft: #dbe6ea;
  --accent-warm: #b49863;
  --success-soft: #d9e4dd;
  --shadow: 0 18px 50px rgba(54, 63, 72, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 5.5rem;
  --header-height: 84px;
  --font-sans: "Manrope", "Segoe UI", sans-serif;
  --font-serif: "Fraunces", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

html.modal-open,
body.modal-open {
  overflow: hidden;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: linear-gradient(180deg, #fcfaf5 0%, var(--bg) 100%);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(252, 250, 245, 0.78);
  border-bottom: 1px solid rgba(41, 49, 58, 0.06);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  flex: 0 0 auto;
}

.brand-logo {
  width: 122px;
  height: auto;
  flex: 0 0 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #6c8698);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.28);
}

.brand-text strong,
.brand-text span {
  display: block;
}

.brand-text strong {
  font-size: 0.95rem;
}

.brand-text span {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.95rem, 1.35vw, 1.45rem);
  flex: 1 1 auto;
  min-width: 0;
}

.site-nav a,
.nav-dropdown-trigger {
  color: var(--text-soft);
  font-size: 0.96rem;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.is-active,
.nav-dropdown-trigger:hover,
.nav-dropdown.is-open .nav-dropdown-trigger,
.nav-dropdown.is-active .nav-dropdown-trigger {
  color: var(--text);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.nav-dropdown.is-open .nav-dropdown-trigger::after {
  transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 0;
  min-width: 284px;
  padding: 0.75rem;
  border-radius: 20px;
  background: rgba(252, 250, 245, 0.98);
  border: 1px solid rgba(41, 49, 58, 0.08);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.2rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.72rem 0.85rem;
  border-radius: 14px;
  line-height: 1.35;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.is-active {
  background: rgba(63, 95, 118, 0.08);
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: 0 0 auto;
}

.header-actions .button {
  white-space: nowrap;
}

.reviews-float-button,
.button.reviews-float-button {
  position: fixed;
  top: clamp(216px, 26vh, 318px);
  right: -8px;
  z-index: 34;
  width: 82px;
  min-height: 206px;
  padding: 1.05rem 0.72rem 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1;
  letter-spacing: -0.01em;
  text-align: center;
  color: #fff8f4;
  border: 1px solid rgba(132, 29, 24, 0.34);
  background:
    linear-gradient(180deg, rgba(198, 56, 44, 0.98), rgba(166, 37, 29, 0.98)),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.05) 1px,
      rgba(0, 0, 0, 0.02) 1px,
      rgba(0, 0, 0, 0.02) 3px
    );
  background-blend-mode: soft-light, normal;
  border-radius: 12px 0 0 12px;
  backdrop-filter: blur(10px);
  overflow: visible;
  clip-path: polygon(0 0, 82% 0, 100% 12%, 100% 88%, 82% 100%, 0 100%);
  box-shadow:
    0 24px 30px rgba(47, 18, 15, 0.1),
    0 12px 16px rgba(47, 18, 15, 0.12),
    -1px 0 0 rgba(255, 255, 255, 0.08) inset,
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 -12px 18px rgba(118, 20, 16, 0.1) inset;
}

.reviews-float-button:hover,
.button.reviews-float-button:hover {
  border-color: rgba(132, 29, 24, 0.5);
  background:
    linear-gradient(180deg, rgba(210, 62, 49, 0.98), rgba(176, 40, 31, 0.98)),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.06) 1px,
      rgba(0, 0, 0, 0.02) 1px,
      rgba(0, 0, 0, 0.02) 3px
    );
  right: -5px;
}

.reviews-float-button-label {
  display: inline-block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 1px rgba(87, 18, 15, 0.22);
}

.reviews-float-button::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 21px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 247, 241, 0.96);
  border: 1px solid rgba(120, 32, 25, 0.24);
  box-shadow:
    inset 0 1px 1px rgba(41, 49, 58, 0.08),
    0 0 0 4px rgba(175, 40, 31, 0.22);
  z-index: 2;
}

.reviews-float-button::after {
  content: "";
  position: absolute;
  top: -9px;
  left: 26px;
  width: 1px;
  height: 24px;
  background: linear-gradient(180deg, rgba(108, 116, 123, 0.7), rgba(108, 116, 123, 0.22));
  border-radius: 999px;
}

.reviews-float-button .button {
  all: unset;
}

.nav-reviews-trigger {
  display: none;
  color: var(--text-soft);
  font-size: 0.96rem;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.nav-reviews-trigger:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.72);
  color: var(--text);
  font-size: 0;
  line-height: 0;
  box-shadow: 0 8px 20px rgba(41, 49, 58, 0.06);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.nav-toggle::before {
  top: 16px;
  box-shadow: 0 6px 0 currentColor;
}

.nav-toggle::after {
  top: 28px;
}

.nav-toggle[aria-expanded="true"]::before {
  top: 21px;
  box-shadow: none;
  transform: translateX(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

.nav-toggle:hover {
  border-color: rgba(41, 49, 58, 0.16);
  background: rgba(255,255,255,0.92);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px rgba(63, 95, 118, 0.18);
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  background: rgba(255,255,255,0.72);
  border-color: var(--line);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--line-strong);
}

.button-tertiary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: 3.8rem 0 2.8rem;
}

.hero-home::before,
.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.hero-home::before {
  background:
    radial-gradient(circle at 18% 26%, rgba(255, 255, 255, 0.95) 0, rgba(255, 255, 255, 0.9) 18%, rgba(255, 255, 255, 0) 40%),
    radial-gradient(circle at 82% 20%, rgba(223, 234, 239, 0.6) 0, rgba(223, 234, 239, 0.08) 30%, rgba(223, 234, 239, 0) 58%),
    radial-gradient(circle at 72% 78%, rgba(230, 238, 241, 0.38) 0, rgba(230, 238, 241, 0.06) 24%, rgba(230, 238, 241, 0) 54%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(247, 242, 234, 0.88));
}

.hero-home::after {
  background-image:
    linear-gradient(rgba(63, 95, 118, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63, 95, 118, 0.045) 1px, transparent 1px),
    url("data:image/svg+xml,%3Csvg width='1200' height='720' viewBox='0 0 1200 720' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M677 122C764 122 822 164 869 214C924 272 991 307 1100 319' stroke='%23879fb0' stroke-width='1.4' stroke-linecap='round' stroke-dasharray='4 8'/%3E%3Cpath d='M683 174C757 174 807 210 851 254C899 302 956 339 1035 349' stroke='%239bb1bf' stroke-width='1.1' stroke-linecap='round'/%3E%3Cpath d='M716 434C818 434 874 403 917 355C964 303 1026 263 1131 255' stroke='%2391a5b3' stroke-width='1.2' stroke-linecap='round' stroke-dasharray='5 10'/%3E%3Cpath d='M793 150C847 150 889 132 935 115' stroke='%23b4c4cf' stroke-width='1' stroke-linecap='round'/%3E%3Cpath d='M795 455C850 455 900 478 943 507' stroke='%23b4c4cf' stroke-width='1' stroke-linecap='round'/%3E%3Ccircle cx='874' cy='213' r='6' fill='%23EEF4F7' stroke='%23859CAA'/%3E%3Ccircle cx='1037' cy='349' r='7' fill='%23EEF4F7' stroke='%23859CAA'/%3E%3Ccircle cx='916' cy='355' r='6' fill='%23EEF4F7' stroke='%23859CAA'/%3E%3Ccircle cx='1115' cy='319' r='8' fill='%23F8FBFC' stroke='%23A4B6C1'/%3E%3Ccircle cx='1131' cy='255' r='8' fill='%23F8FBFC' stroke='%23A4B6C1'/%3E%3C/svg%3E");
  background-size: 44px 44px, 44px 44px, min(64vw, 860px) auto;
  background-position: center center, center center, calc(100% + 18px) 56%;
  background-repeat: repeat, repeat, no-repeat;
  opacity: 0.7;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(380px, 0.9fr);
  gap: clamp(1.5rem, 2.6vw, 2.5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  position: relative;
  max-width: none;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -1.2rem -1.4rem -1.5rem -1rem;
  border-radius: 32px;
  background:
    linear-gradient(90deg, rgba(252, 250, 245, 0.98) 0%, rgba(252, 250, 245, 0.92) 62%, rgba(252, 250, 245, 0) 100%);
  z-index: -1;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.breadcrumbs a:hover {
  color: var(--text);
}

.breadcrumb-separator {
  opacity: 0.45;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.48rem 0.88rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(41, 49, 58, 0.08);
  color: var(--text-soft);
  font-size: 0.9rem;
}

.hero h1,
.page-intro h1,
.section-title,
.cta-title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #25303a;
}

.hero h1 {
  margin-top: 1rem;
  font-size: clamp(2.05rem, 3.35vw, 3.45rem);
  line-height: 1.08;
  max-width: 16.8ch;
}

.lead,
.page-intro p,
.section-intro,
.cta-text {
  color: var(--text-soft);
  font-size: 1.08rem;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.micro-copy {
  margin-top: 1rem;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.hero-panel,
.panel,
.card,
.timeline-step,
.faq-item,
.contact-card,
.service-row,
.trust-note {
  background: var(--surface);
  border: 1px solid rgba(41, 49, 58, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-panel {
  border-radius: var(--radius-xl);
  padding: 1.28rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(252, 249, 244, 0.88));
  border-color: rgba(63, 95, 118, 0.12);
  box-shadow: 0 22px 54px rgba(48, 68, 82, 0.11);
}

.panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
}

.system-flow {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.82rem;
}

.system-node {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 102px;
  gap: 0.82rem;
  align-items: center;
  min-height: 68px;
  padding: 0.68rem 0.84rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(63, 95, 118, 0.1);
}

.system-node > div:nth-child(2) {
  display: grid;
  gap: 0.02rem;
  min-width: 0;
}

.system-node strong {
  font-size: 0.88rem;
  line-height: 1.16;
}

.system-node span {
  font-size: 0.75rem;
  color: var(--text-soft);
  line-height: 1.25;
}

.node-index {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(223, 233, 238, 0.95), rgba(212, 224, 231, 0.95));
  color: var(--accent-strong);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.node-tag {
  width: 102px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.74rem;
  color: var(--accent-strong);
  background: linear-gradient(180deg, rgba(232, 238, 241, 0.9), rgba(223, 231, 236, 0.9));
  padding: 0.2rem 0.56rem;
  border-radius: 999px;
  border: 1px solid rgba(63, 95, 118, 0.08);
  justify-self: end;
}

.section {
  padding: 2.8rem 0;
}

.section-title {
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  line-height: 1.14;
  max-width: 17ch;
}

.section-head {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.card,
.panel,
.timeline-step,
.faq-item,
.contact-card,
.service-row,
.trust-note {
  border-radius: var(--radius-lg);
  padding: 1.4rem;
}

.card h3,
.service-row h3,
.faq-item h3,
.contact-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.1rem;
}

.card p,
.service-row p,
.faq-item p,
.contact-card p,
.panel p,
.trust-note p {
  margin: 0;
  color: var(--text-soft);
}

.card ul,
.panel ul,
.service-row ul,
.faq-item ul,
.contact-card ul {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
}

.text-block {
  display: grid;
  gap: 0.9rem;
}

.text-block p {
  margin: 0;
}

.link-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.link-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(41, 49, 58, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(54, 63, 72, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.link-chip:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.92);
}

.soft-band {
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.5));
  border-top: 1px solid rgba(41, 49, 58, 0.05);
  border-bottom: 1px solid rgba(41, 49, 58, 0.05);
}

/* Section backgrounds */

.section-decor {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.section-decor::before,
.section-decor::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.section-decor > .container {
  position: relative;
  z-index: 1;
}

.section-audience::before {
  background:
    radial-gradient(circle at 18% 16%, rgba(255,255,255,0.92) 0, rgba(255,255,255,0) 34%),
    radial-gradient(circle at 86% 72%, rgba(223, 234, 239, 0.28) 0, rgba(223, 234, 239, 0.04) 28%, rgba(223, 234, 239, 0) 58%),
    linear-gradient(180deg, rgba(255,252,247,0.68), rgba(247,242,234,0.42));
}

.section-audience::after {
  background-image:
    radial-gradient(circle, rgba(63, 95, 118, 0.09) 1px, transparent 1.1px),
    url("data:image/svg+xml,%3Csvg width='1600' height='620' viewBox='0 0 1600 620' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 170H353C406 170 453 190 492 227C527 261 572 280 620 280H938C984 280 1027 263 1059 232L1138 157C1174 122 1223 102 1274 102H1568' stroke='%23A6BBC8' stroke-width='1.2' stroke-linecap='round' stroke-dasharray='5 10'/%3E%3Cpath d='M76 366H302C351 366 397 348 430 316L503 246C538 212 585 193 634 193H844C903 193 958 217 995 257C1035 300 1090 324 1147 324H1560' stroke='%23879FB0' stroke-width='1.15' stroke-linecap='round'/%3E%3Cpath d='M94 464H452C500 464 545 483 578 517L603 542' stroke='%23B6C7D0' stroke-width='1' stroke-linecap='round'/%3E%3Ccircle cx='353' cy='170' r='6' fill='%23F8FBFC' stroke='%23A6BBC8'/%3E%3Ccircle cx='620' cy='280' r='6' fill='%23F8FBFC' stroke='%23879FB0'/%3E%3Ccircle cx='1138' cy='157' r='6' fill='%23F8FBFC' stroke='%23A6BBC8'/%3E%3Ccircle cx='995' cy='257' r='5.5' fill='%23F8FBFC' stroke='%23879FB0'/%3E%3C/svg%3E");
  background-size: 18px 18px, 100% auto;
  background-repeat: repeat, no-repeat;
  background-position: center center, center 55%;
  opacity: 0.52;
}

.section-problems::before {
  background:
    radial-gradient(circle at 50% 14%, rgba(255,255,255,0.8) 0, rgba(255,255,255,0) 24%),
    radial-gradient(circle at 84% 26%, rgba(223,234,239,0.22) 0, rgba(223,234,239,0.02) 26%, rgba(223,234,239,0) 56%),
    linear-gradient(180deg, rgba(251,248,242,0.66), rgba(246,241,232,0.5));
}

.section-problems::after {
  background-image:
    url("data:image/svg+xml,%3Csvg width='1600' height='760' viewBox='0 0 1600 760' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1067' y='126' width='288' height='175' rx='24' stroke='%23B9CAD3' stroke-width='1.1'/%3E%3Crect x='1112' y='166' width='196' height='10' rx='5' fill='%23DDE8EE'/%3E%3Crect x='1112' y='194' width='166' height='10' rx='5' fill='%23E8EFF3'/%3E%3Cpath d='M150 525H326C368 525 401 491 401 449V420C401 392 423 370 451 370H662C705 370 741 338 741 295V249' stroke='%239AB0BE' stroke-width='1.15' stroke-linecap='round' stroke-dasharray='5 10'/%3E%3Cpath d='M760 477L853 428L936 456L1015 383L1130 412L1200 350' stroke='%238DA5B3' stroke-width='1.15' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='853' cy='428' r='5.5' fill='%23F7FBFC' stroke='%238DA5B3'/%3E%3Ccircle cx='936' cy='456' r='5.5' fill='%23F7FBFC' stroke='%238DA5B3'/%3E%3Ccircle cx='1015' cy='383' r='5.5' fill='%23F7FBFC' stroke='%238DA5B3'/%3E%3Cpath d='M1290 426L1311 388H1269L1290 426Z' stroke='%23C4D0D7' stroke-width='1.1' fill='%23F8FBFC'/%3E%3Crect x='1228' y='444' width='126' height='10' rx='5' fill='%23E7EEF2'/%3E%3Crect x='1228' y='468' width='92' height='10' rx='5' fill='%23EFF4F6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center 58%;
  opacity: 0.4;
}

.section-process::before {
  background:
    radial-gradient(circle at 14% 18%, rgba(255,255,255,0.9) 0, rgba(255,255,255,0.05) 28%, rgba(255,255,255,0) 50%),
    linear-gradient(180deg, rgba(255,252,247,0.58), rgba(247,242,234,0.34));
}

.section-process::after {
  background-image:
    radial-gradient(circle, rgba(63, 95, 118, 0.07) 1px, transparent 1.2px),
    url("data:image/svg+xml,%3Csvg width='1600' height='620' viewBox='0 0 1600 620' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M82 362C199 362 247 284 328 284H489C560 284 590 345 669 345H857C912 345 951 306 1010 306H1165C1236 306 1265 392 1363 392H1514' stroke='%2389A0AF' stroke-width='1.2' stroke-linecap='round' stroke-dasharray='4 10'/%3E%3Ccircle cx='328' cy='284' r='7' fill='%23F8FBFC' stroke='%2389A0AF'/%3E%3Ccircle cx='489' cy='284' r='7' fill='%23F8FBFC' stroke='%2389A0AF'/%3E%3Ccircle cx='669' cy='345' r='7' fill='%23F8FBFC' stroke='%2389A0AF'/%3E%3Ccircle cx='857' cy='345' r='7' fill='%23F8FBFC' stroke='%2389A0AF'/%3E%3Ccircle cx='1010' cy='306' r='7' fill='%23F8FBFC' stroke='%2389A0AF'/%3E%3Ccircle cx='1363' cy='392' r='7' fill='%23F8FBFC' stroke='%2389A0AF'/%3E%3Cpath d='M1510 392L1488 381V403L1510 392Z' fill='%23A7BAC6'/%3E%3C/svg%3E");
  background-size: 20px 20px, 100% auto;
  background-repeat: repeat, no-repeat;
  background-position: center center, center 58%;
  opacity: 0.42;
}

.section-services-system::before {
  background:
    radial-gradient(circle at 80% 12%, rgba(223,234,239,0.2) 0, rgba(223,234,239,0.03) 26%, rgba(223,234,239,0) 56%),
    linear-gradient(180deg, rgba(250,247,240,0.7), rgba(246,241,232,0.52));
}

.section-services-system::after {
  background-image:
    linear-gradient(rgba(63, 95, 118, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63, 95, 118, 0.038) 1px, transparent 1px),
    url("data:image/svg+xml,%3Csvg width='1600' height='760' viewBox='0 0 1600 760' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='92' y='126' width='278' height='118' rx='20' stroke='%23C3D0D8' stroke-width='1.1'/%3E%3Crect x='486' y='168' width='278' height='118' rx='20' stroke='%23C3D0D8' stroke-width='1.1'/%3E%3Crect x='882' y='126' width='278' height='118' rx='20' stroke='%23C3D0D8' stroke-width='1.1'/%3E%3Crect x='1250' y='168' width='246' height='118' rx='20' stroke='%23C3D0D8' stroke-width='1.1'/%3E%3Cpath d='M371 185H486' stroke='%2390A6B4' stroke-width='1.15' stroke-linecap='round' stroke-dasharray='4 9'/%3E%3Cpath d='M764 227H882' stroke='%2390A6B4' stroke-width='1.15' stroke-linecap='round' stroke-dasharray='4 9'/%3E%3Cpath d='M1160 185H1250' stroke='%2390A6B4' stroke-width='1.15' stroke-linecap='round' stroke-dasharray='4 9'/%3E%3Cpath d='M616 304V366C616 398 642 424 674 424H1019' stroke='%23AFC0C9' stroke-width='1.05' stroke-linecap='round'/%3E%3Cpath d='M1021 424L1004 414V434L1021 424Z' fill='%23AFC0C9'/%3E%3C/svg%3E");
  background-size: 38px 38px, 38px 38px, 100% auto;
  background-repeat: repeat, repeat, no-repeat;
  background-position: center center, center center, center 24%;
  opacity: 0.34;
}

.section-trust::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.94) 0, rgba(255,255,255,0.08) 28%, rgba(255,255,255,0) 52%),
    radial-gradient(circle at 86% 48%, rgba(223,234,239,0.22) 0, rgba(223,234,239,0.04) 24%, rgba(223,234,239,0) 52%),
    radial-gradient(circle at 42% 82%, rgba(246,236,219,0.22) 0, rgba(246,236,219,0.03) 22%, rgba(246,236,219,0) 48%),
    linear-gradient(180deg, rgba(255,252,247,0.72), rgba(246,241,232,0.48));
}

.section-trust::after {
  background-image:
    url("data:image/svg+xml,%3Csvg width='1600' height='600' viewBox='0 0 1600 600' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1234' cy='165' r='86' stroke='%23D6E2E8' stroke-width='1.1'/%3E%3Ccircle cx='1234' cy='165' r='128' stroke='%23E8F0F3' stroke-width='1'/%3E%3Ccircle cx='356' cy='458' r='112' stroke='%23F0E6D3' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  opacity: 0.38;
}

.section-final-cta::before {
  background:
    radial-gradient(circle at 50% 40%, rgba(63,95,118,0.08) 0, rgba(63,95,118,0.02) 22%, rgba(63,95,118,0) 48%),
    radial-gradient(circle at 24% 76%, rgba(255,255,255,0.8) 0, rgba(255,255,255,0) 32%),
    linear-gradient(180deg, rgba(250,247,240,0.3), rgba(246,241,232,0.18));
}

.section-final-cta::after {
  background-image:
    url("data:image/svg+xml,%3Csvg width='1600' height='560' viewBox='0 0 1600 560' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M157 360C320 360 390 266 507 266H617C710 266 773 204 843 204H972' stroke='%2398AFBD' stroke-width='1.1' stroke-linecap='round' stroke-dasharray='5 10'/%3E%3Cpath d='M1439 360C1276 360 1206 266 1089 266H979C886 266 823 204 753 204H624' stroke='%2398AFBD' stroke-width='1.1' stroke-linecap='round' stroke-dasharray='5 10'/%3E%3Ccircle cx='785' cy='204' r='9' fill='%23F8FBFC' stroke='%2398AFBD'/%3E%3Ccircle cx='817' cy='204' r='9' fill='%23F8FBFC' stroke='%2398AFBD'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center 54%;
  opacity: 0.34;
}

.section-final-cta .cta-box {
  position: relative;
  overflow: clip;
}

.section-final-cta .cta-box::before,
.section-final-cta .cta-box::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.section-final-cta .cta-box::before {
  inset: 0;
  background:
    radial-gradient(circle at 16% 22%, rgba(255,255,255,0.16), rgba(255,255,255,0) 32%),
    radial-gradient(circle at 84% 76%, rgba(255,255,255,0.08), rgba(255,255,255,0) 28%);
}

.section-final-cta .cta-box::after {
  inset: 16px 20px auto auto;
  width: 168px;
  height: 82px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0.5;
}

.problem-list,
.principles-list {
  display: grid;
  gap: 0.85rem;
}

.audit-capture {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 1.2rem;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(251,248,242,0.88));
  border: 1px solid rgba(41, 49, 58, 0.08);
  box-shadow: var(--shadow);
}

.audit-copy,
.audit-form-shell {
  border-radius: 22px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(41, 49, 58, 0.06);
  padding: 1.35rem;
}

.audit-copy h3 {
  margin: 0.8rem 0 0.7rem;
  font-size: 1.45rem;
  line-height: 1.16;
}

.audit-copy p {
  color: var(--text-soft);
}

.audit-points {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: var(--text-soft);
}

.audit-points li + li {
  margin-top: 0.55rem;
}

.audit-form-head {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.audit-form-head strong {
  font-size: 1rem;
}

.audit-form-head span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(41, 49, 58, 0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.92);
  color: var(--text);
  padding: 0.9rem 1rem;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(63, 95, 118, 0.36);
  box-shadow: 0 0 0 4px rgba(63, 95, 118, 0.08);
}

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

.consent-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 0.7rem;
  padding: 0.05rem 0;
}

.consent-check + .consent-check {
  margin-top: -0.45rem;
}

.consent-check input {
  margin: 0.18rem 0 0;
  width: 18px;
  height: 18px;
  accent-color: var(--accent-strong);
}

.consent-check span {
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-soft);
}

.consent-check a {
  color: var(--accent-strong);
  font-weight: 700;
}

.audit-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.audit-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.problem-item,
.principle-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(41, 49, 58, 0.08);
}

.problem-item:last-child,
.principle-item:last-child {
  border-bottom: 0;
}

.bullet {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--accent-strong);
  background: var(--accent-soft);
}

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

.timeline.timeline-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1080px;
}

.timeline-step {
  display: grid;
  gap: 0.8rem;
}

.timeline-step strong {
  font-size: 0.96rem;
  color: var(--accent);
}

.timeline-step h3 {
  margin: 0;
  font-size: 1.16rem;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1rem;
  align-items: start;
}

.service-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.pill {
  border-radius: 999px;
  padding: 0.38rem 0.72rem;
  background: rgba(63, 95, 118, 0.1);
  color: var(--accent-strong);
  font-size: 0.86rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: start;
}

.trust-note {
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(246, 241, 232, 0.92));
  align-self: start;
}

.trust-note h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}

.trust-points {
  margin: 0.95rem 0 0;
  padding-left: 1.15rem;
  color: var(--text-soft);
}

.trust-points li + li {
  margin-top: 0.55rem;
}

.cta-box {
  padding: 1.8rem;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(63, 95, 118, 0.95), rgba(51, 72, 88, 0.95)),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
  color: #f8fbfd;
  box-shadow: 0 24px 56px rgba(47, 74, 95, 0.22);
}

.cta-title {
  font-size: clamp(1.6rem, 2.35vw, 2.3rem);
  color: #fff;
  max-width: 22ch;
  text-wrap: balance;
}

.cta-text {
  color: rgba(248, 251, 253, 0.82);
}

.cta-box .button-secondary,
.cta-box .button-tertiary {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}

.section-final-cta .button-primary {
  background: #f7fbfd;
  color: var(--accent-strong);
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 16px 34px rgba(23, 37, 51, 0.24);
}

.section-final-cta .button-primary:hover {
  background: #ffffff;
  color: #274356;
}

.page-intro {
  padding: 3.6rem 0 1.4rem;
}

.page-intro-site {
  position: relative;
  overflow: clip;
  isolation: isolate;
  padding: 3.1rem 0 2.2rem;
  z-index: 0;
  background-color: rgba(252, 249, 242, 0.78);
  background-image:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.96) 0, rgba(255, 255, 255, 0.88) 26%, rgba(255, 255, 255, 0) 48%),
    radial-gradient(circle at 78% 28%, rgba(200, 216, 229, 0.2) 0, rgba(200, 216, 229, 0.08) 24%, rgba(200, 216, 229, 0) 52%),
    radial-gradient(circle at 72% 84%, rgba(214, 224, 234, 0.16) 0, rgba(214, 224, 234, 0.05) 30%, rgba(214, 224, 234, 0) 58%),
    linear-gradient(rgba(79, 107, 128, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 107, 128, 0.05) 1px, transparent 1px);
  background-size: auto, auto, auto, 72px 72px, 72px 72px;
  background-position: center, center, center, left top, left top;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat, repeat;
}

.page-intro-site .container {
  position: relative;
  z-index: 1;
}

.page-intro-copy {
  position: relative;
  max-width: none;
}

.page-intro-copy::before {
  content: "";
  position: absolute;
  inset: -1rem -1.2rem -1.4rem -0.8rem;
  border-radius: 32px;
  background:
    linear-gradient(90deg, rgba(252, 250, 245, 0.98) 0%, rgba(252, 250, 245, 0.93) 64%, rgba(252, 250, 245, 0) 100%);
  z-index: -1;
}

.page-intro-site-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.96) 0, rgba(255, 255, 255, 0.88) 26%, rgba(255, 255, 255, 0) 48%),
    radial-gradient(circle at 78% 28%, rgba(200, 216, 229, 0.2) 0, rgba(200, 216, 229, 0.08) 24%, rgba(200, 216, 229, 0) 52%),
    radial-gradient(circle at 72% 84%, rgba(214, 224, 234, 0.16) 0, rgba(214, 224, 234, 0.05) 30%, rgba(214, 224, 234, 0) 58%),
    linear-gradient(rgba(79, 107, 128, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 107, 128, 0.05) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0%, transparent 67.8%, rgba(146, 169, 188, 0.18) 68.2%, transparent 68.8%, transparent 100%),
    linear-gradient(118deg, transparent 0%, transparent 73.5%, rgba(146, 169, 188, 0.14) 73.9%, transparent 74.4%, transparent 100%),
    linear-gradient(121deg, transparent 0%, transparent 80.2%, rgba(146, 169, 188, 0.12) 80.6%, transparent 81.1%, transparent 100%);
  background-size: auto, auto, auto, 72px 72px, 72px 72px, 100% 100%, 100% 100%, 100% 100%;
  background-position: center, center, center, left top, left top, center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat, repeat, no-repeat, no-repeat, no-repeat;
  opacity: 0.95;
}

.page-intro-site::before,
.page-intro-site::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.page-intro-site::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.96) 0, rgba(255, 255, 255, 0.88) 26%, rgba(255, 255, 255, 0) 48%),
    radial-gradient(circle at 78% 28%, rgba(200, 216, 229, 0.2) 0, rgba(200, 216, 229, 0.08) 24%, rgba(200, 216, 229, 0) 52%),
    radial-gradient(circle at 72% 84%, rgba(214, 224, 234, 0.16) 0, rgba(214, 224, 234, 0.05) 30%, rgba(214, 224, 234, 0) 58%),
    linear-gradient(180deg, rgba(252, 249, 242, 0.9) 0%, rgba(250, 247, 240, 0.75) 100%);
}

.page-intro-site::after {
  background-image:
    radial-gradient(circle at 78% 26%, rgba(255, 255, 255, 0.78) 0, rgba(255, 255, 255, 0) 10px),
    radial-gradient(circle at 70% 58%, rgba(255, 255, 255, 0.84) 0, rgba(255, 255, 255, 0) 8px),
    radial-gradient(circle at 92% 64%, rgba(255, 255, 255, 0.84) 0, rgba(255, 255, 255, 0) 9px),
    linear-gradient(115deg, transparent 0 69%, rgba(146, 169, 188, 0.2) 69.2%, transparent 69.5%),
    linear-gradient(118deg, transparent 0 74%, rgba(146, 169, 188, 0.16) 74.2%, transparent 74.5%),
    linear-gradient(120deg, transparent 0 81%, rgba(146, 169, 188, 0.14) 81.2%, transparent 81.5%);
  background-size: auto, auto, auto, 100% 100%, 100% 100%, 100% 100%;
  background-position: center, center, center, center, center, center;
  background-repeat: no-repeat;
  opacity: 0.8;
}

.page-intro h1 {
  font-size: clamp(1.95rem, 2.95vw, 3rem);
  line-height: 1.1;
  max-width: 18ch;
}

.page-intro-landing h1 {
  max-width: 20ch;
  text-wrap: balance;
}

.page-intro-direct {
  padding: 3.1rem 0 1.9rem;
}

.page-intro-direct .page-intro-grid {
  grid-template-columns: minmax(0, 1.24fr) minmax(390px, 0.92fr);
  gap: clamp(1.7rem, 2.5vw, 2.7rem);
  align-items: center;
}

.page-intro-direct .eyebrow {
  margin-bottom: 0.95rem;
}

.page-intro-direct h1 {
  max-width: 16.7ch;
  text-wrap: balance;
}

.page-intro-direct p {
  margin: 1.22rem 0 0;
  max-width: 37rem;
}

.page-intro-direct .hero-actions {
  margin-top: 1.8rem;
}

.page-intro-direct .hero-panel {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  padding: 1.65rem;
}

.page-intro-direct .panel-kicker {
  margin-bottom: 0.7rem;
}

.page-intro-direct .stat-block {
  gap: 0.9rem;
}

.page-intro-direct .stat-row {
  padding: 1.12rem 1.2rem;
}

.page-intro-direct .stat-row strong {
  margin-bottom: 0.38rem;
}

.page-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: var(--space-6);
  align-items: start;
}

.page-intro-site .page-intro-grid {
  grid-template-columns: minmax(0, 1.22fr) minmax(390px, 0.94fr);
  gap: clamp(1.7rem, 2.4vw, 2.7rem);
  align-items: center;
}

.page-intro-site .eyebrow {
  margin-bottom: 0.95rem;
}

.page-intro-site h1 {
  max-width: 15.8ch;
}

.page-intro-site p {
  margin: 1.25rem 0 0;
  max-width: 35rem;
}

.page-intro-site .hero-actions {
  margin-top: 1.85rem;
}

.page-intro-site .hero-panel {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  padding: 1.65rem;
}

.page-intro-site .panel-kicker {
  margin-bottom: 0.7rem;
}

.page-intro-site .stat-block {
  gap: 0.9rem;
}

.page-intro-site .stat-row {
  padding: 1.15rem 1.2rem;
}

.page-intro-site .stat-row strong {
  margin-bottom: 0.38rem;
}

.stat-block {
  display: grid;
  gap: 1rem;
}

.stat-row {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(41, 49, 58, 0.08);
}

.stat-row strong {
  display: block;
  margin-bottom: 0.25rem;
}

.faq-grid {
  display: grid;
  gap: 1rem;
}

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

.contact-lead-form {
  display: grid;
  gap: 1rem;
}

.contact-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 60;
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 34, 44, 0.4);
  backdrop-filter: blur(6px);
}

.modal-dialog {
  position: relative;
  width: min(760px, calc(100vw - 1.6rem));
  max-height: min(88vh, 920px);
  overflow: auto;
  padding: 1.35rem;
  border-radius: 30px;
  border: 1px solid rgba(41, 49, 58, 0.08);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.82) 36%, rgba(255, 255, 255, 0.94) 100%);
  box-shadow: 0 28px 70px rgba(23, 37, 51, 0.2);
}

.modal-head {
  margin-bottom: 1rem;
}

.modal-head h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.modal-head p {
  margin: 0;
  color: var(--text-soft);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(41, 49, 58, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.reviews-modal {
  width: min(980px, calc(100vw - 1.6rem));
}

.reviews-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.review-phone-card {
  padding: 0.85rem;
  border-radius: 26px;
  border: 1px solid rgba(41, 49, 58, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(248, 245, 239, 0.86));
  box-shadow: 0 18px 44px rgba(54, 63, 72, 0.08);
}

.review-phone-screen {
  min-height: 360px;
  padding: 1rem 0.8rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(246, 250, 252, 0.98), rgba(242, 246, 248, 0.95));
  border: 1px solid rgba(63, 95, 118, 0.1);
}

.review-phone-bar {
  width: 42%;
  height: 8px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: rgba(63, 95, 118, 0.12);
}

.review-bubble {
  height: 54px;
  border-radius: 18px;
  margin-bottom: 0.75rem;
}

.review-bubble-out {
  margin-left: auto;
  width: 76%;
  background: rgba(63, 95, 118, 0.14);
}

.review-bubble-in {
  width: 88%;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(41, 49, 58, 0.08);
}

.review-bubble.short {
  width: 58%;
}

.review-bubble.long {
  height: 74px;
}

.reviews-placeholder-note {
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(41, 49, 58, 0.08);
}

.reviews-placeholder-note strong {
  display: block;
  margin-bottom: 0.35rem;
}

.reviews-placeholder-note p {
  margin: 0;
  color: var(--text-soft);
}

.hint-wrap {
  position: relative;
}

.hint-trigger {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(41, 49, 58, 0.12);
  background: rgba(255,255,255,0.86);
  color: var(--accent-strong);
  font-weight: 800;
}

.hint-popover {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  width: min(280px, 72vw);
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(41, 49, 58, 0.08);
  box-shadow: var(--shadow);
  color: var(--text-soft);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.hint-popover strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.hint-popover p {
  margin: 0;
}

.hint-wrap:hover .hint-popover,
.hint-wrap:focus-within .hint-popover {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.contact-quick-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-page-intro .page-intro-grid {
  align-items: start;
}

.contact-intro-copy {
  display: grid;
  gap: 1.15rem;
  align-content: start;
}

.contact-intro-copy .hero-actions {
  margin-top: 0.15rem;
}

.contact-intro-copy > p {
  max-width: 40rem;
}

.contact-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 0.35rem;
}

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

.contact-summary-card {
  padding: 1.05rem 1.1rem;
  border-radius: 24px;
  border: 1px solid rgba(41, 49, 58, 0.08);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 42px rgba(35, 46, 57, 0.07);
}

.contact-summary-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.02rem;
}

.contact-summary-card p {
  margin: 0;
}

.contact-summary-card a {
  color: var(--accent-strong);
  font-weight: 700;
}

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

.contact-summary-list {
  display: grid;
  gap: 0.9rem;
}

.contact-summary-row {
  display: grid;
  gap: 0.18rem;
}

.contact-summary-row strong {
  font-size: 1.02rem;
}

.contact-summary-row p {
  margin: 0;
}

.contact-form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-card a {
  color: var(--accent-strong);
  font-weight: 700;
}

.mini-note {
  margin-top: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.legal {
  display: grid;
  gap: 1rem;
}

.legal article {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(41, 49, 58, 0.08);
}

.legal h2,
.legal h3 {
  margin: 0 0 0.8rem;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(41, 49, 58, 0.08);
}

.footer-inner p,
.footer-inner a {
  color: var(--text-soft);
}

.footer-logo {
  width: 108px;
  height: auto;
  margin-bottom: 0.85rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner__inner {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  border: 1px solid rgba(41, 49, 58, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(251,248,242,0.96));
  box-shadow: 0 18px 50px rgba(54, 63, 72, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner__text {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}

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

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-note {
  font-size: 0.9rem;
}

.blog-page .page-intro-grid {
  align-items: start;
}

.blog-page .page-intro-copy {
  display: grid;
  gap: 1rem;
}

.blog-list-page .page-intro-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 1.2rem;
}

.blog-list-page .page-intro-copy {
  max-width: 760px;
}

.blog-list-page .hero-panel {
  max-width: 420px;
  margin-left: auto;
}

.blog-list-page .section-head {
  max-width: 820px;
  margin-bottom: 1.25rem;
}

.blog-list-page .section-title {
  max-width: 16ch;
}

.blog-list-page .section-intro {
  max-width: 70ch;
}

.blog-overview {
  display: grid;
  gap: 0.95rem;
}

.blog-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.blog-card {
  display: grid;
  gap: 0.95rem;
  min-height: 100%;
  padding: 1.35rem;
  border-radius: 28px;
}

.blog-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.3rem 0.78rem;
  border-radius: 999px;
  background: rgba(63, 95, 118, 0.08);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.blog-date {
  font-size: 0.82rem;
  color: var(--text-soft);
  white-space: nowrap;
}

.blog-card h3,
.blog-topic-card h3 {
  margin: 0;
  line-height: 1.18;
  font-size: clamp(1.22rem, 1.8vw, 1.48rem);
}

.blog-card p,
.blog-topic-card p {
  color: var(--text-soft);
  margin: 0;
  line-height: 1.68;
}

.blog-card .link-chip {
  margin-top: auto;
  width: fit-content;
}

.blog-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.blog-topic-card {
  display: grid;
  gap: 0.75rem;
  min-height: 100%;
  padding: 1.35rem;
  border-radius: 26px;
}

.blog-note {
  color: var(--text-soft);
  max-width: 70ch;
}

.blog-article-page .page-intro-grid {
  grid-template-columns: minmax(0, 1.14fr) minmax(260px, 0.74fr);
  gap: 1rem;
}

.blog-article-page .page-intro-copy {
  max-width: 820px;
}

.blog-article-page .article-intro {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}

.blog-article-page .article-intro .eyebrow {
  width: fit-content;
  max-width: 100%;
}

.blog-article-page .article-intro h1 {
  max-width: 15ch;
  text-wrap: balance;
}

.blog-article-page .article-intro .text-block {
  max-width: 780px;
}

.blog-article-page .article-intro .hero-panel {
  max-width: 360px;
  margin-left: auto;
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.blog-article-page .section {
  padding: 1.8rem 0;
}

.blog-article-page .section .container {
  display: grid;
  gap: 1rem;
}

.blog-article-page .section-head {
  max-width: 820px;
  margin-bottom: 0.2rem;
}

.blog-article-page .section-title {
  font-size: clamp(1.9rem, 2.9vw, 2.8rem);
  max-width: 16ch;
}

.blog-article-page .section-intro {
  max-width: 72ch;
  font-size: 1rem;
}

.blog-article-page .panel {
  max-width: 860px;
  padding: 1.35rem 1.45rem;
  border-radius: 28px;
}

.blog-article-page .panel p:last-child,
.blog-article-page .card p:last-child,
.blog-article-page .faq-item p:last-child {
  margin-bottom: 0;
}

.blog-article-page .grid.grid-2 {
  align-items: stretch;
}

.blog-article-page .card {
  padding: 1.25rem 1.3rem;
  border-radius: 24px;
}

.blog-article-page .card h3,
.blog-article-page .faq-item h3 {
  margin-bottom: 0.55rem;
  font-size: 1.18rem;
  line-height: 1.25;
}

.blog-article-page .faq-grid {
  max-width: 920px;
  display: grid;
  gap: 1rem;
}

.blog-article-page .faq-item {
  padding: 1.25rem 1.3rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(41, 49, 58, 0.08);
  box-shadow: 0 14px 36px rgba(54, 63, 72, 0.06);
}

.blog-article-page .link-cluster {
  max-width: 860px;
}

.blog-article-page .cta-box {
  max-width: 980px;
}

.sitemap-page .page-intro-grid {
  align-items: start;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1.2rem;
}

.sitemap-page .page-intro-copy {
  display: grid;
  gap: 1rem;
  max-width: 780px;
}

.sitemap-page .hero-panel {
  max-width: 430px;
  margin-left: auto;
}

.sitemap-sections {
  display: grid;
  gap: 1rem;
}

.sitemap-group {
  display: grid;
  gap: 1rem;
  padding: 1.4rem 1.45rem;
}

.sitemap-group .section-head {
  margin-bottom: 0;
}

.sitemap-group .section-title {
  max-width: none;
}

.sitemap-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem 1.1rem;
}

.sitemap-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  min-width: 0;
  padding: 0.88rem 1rem;
  border: 1px solid rgba(48, 60, 74, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-main);
  font-weight: 600;
  line-height: 1.4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.sitemap-links a::before {
  content: "";
  flex: 0 0 auto;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: rgba(78, 108, 135, 0.42);
  box-shadow: 0 0 0 0.22rem rgba(196, 210, 223, 0.26);
}

.sitemap-links a:hover,
.sitemap-links a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(78, 108, 135, 0.22);
  box-shadow: 0 12px 28px rgba(61, 74, 87, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.96);
}

@media (max-width: 1080px) {
  .page-intro-grid,
  .trust-grid,
  .footer-inner,
  .service-row {
    grid-template-columns: 1fr;
  }

  .audit-capture {
    grid-template-columns: 1fr;
  }

  .hero-home::after {
    background-size: 44px 44px, 44px 44px, min(78vw, 780px) auto;
    background-position: center center, center center, right -44px top 120px;
  }

  .grid-3,
  .timeline,
  .contact-layout,
  .blog-compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-topic-grid {
    grid-template-columns: 1fr;
  }

  .sitemap-page .page-intro-grid {
    grid-template-columns: 1fr;
  }

  .sitemap-page .hero-panel {
    max-width: none;
    margin-left: 0;
  }

  .sitemap-links {
    grid-template-columns: 1fr;
  }

  .section-audience::after,
  .section-problems::after,
  .section-process::after,
  .section-services-system::after,
  .section-trust::after,
  .section-final-cta::after {
    background-size: 1360px auto;
    background-position: center center;
  }
}

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

  .hero-home::after {
    background-size: 40px 40px, 40px 40px, min(90vw, 720px) auto;
    background-position: center center, center center, center top 180px;
    opacity: 0.58;
  }

  .hero-panel {
    max-width: 720px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 76px;
    --space-6: 2.2rem;
    --space-8: 4rem;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.8rem;
    border-radius: 22px;
    background: rgba(252, 250, 245, 0.98);
    border: 1px solid rgba(41, 49, 58, 0.08);
    box-shadow: var(--shadow);
    max-height: min(78vh, 680px);
    overflow: auto;
  }

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

  .site-nav a {
    padding: 0.75rem 0.85rem;
    border-radius: 14px;
  }

  .site-nav a:hover,
  .site-nav a.is-active,
  .nav-dropdown.is-active .nav-dropdown-trigger {
    background: rgba(63, 95, 118, 0.08);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0.75rem 0.85rem;
    border-radius: 14px;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0.2rem;
    padding: 0.35rem;
    border-radius: 16px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
    background: rgba(255,255,255,0.64);
    max-height: min(46vh, 360px);
    overflow: auto;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
  }

  .nav-dropdown-menu a {
    padding: 0.7rem 0.8rem;
  }

  .nav-reviews-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 0.75rem 0.85rem;
    border-radius: 14px;
  }

  .nav-reviews-trigger:hover {
    background: rgba(63, 95, 118, 0.08);
  }

  .reviews-float-button,
  .button.reviews-float-button {
    display: none !important;
  }

  .header-actions .button {
    display: none;
  }

  .brand {
    gap: 0.7rem;
  }

  .brand-logo {
    width: 98px;
  }

  .footer-logo {
    width: 96px;
  }

  .brand-text strong {
    font-size: 0.88rem;
  }

  .brand-text span {
    font-size: 0.76rem;
  }

  .page-intro-grid,
  .page-intro-site .page-intro-grid,
  .page-intro-direct .page-intro-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .page-intro-copy,
  .page-intro-site .page-intro-copy,
  .page-intro-direct .page-intro-copy,
  .contact-intro-copy,
  .blog-page .page-intro-copy,
  .blog-list-page .page-intro-copy,
  .blog-article-page .page-intro-copy {
    gap: 0.95rem;
  }

  .page-intro-site .hero-panel,
  .page-intro-direct .hero-panel {
    max-width: none;
    margin-left: 0;
  }

  .grid-3,
  .grid-2,
  .timeline,
  .contact-layout,
  .blog-compact-grid,
  .blog-topic-grid {
    grid-template-columns: 1fr;
  }

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

  .audit-form {
    grid-template-columns: 1fr;
  }

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

  .field-wide,
  .audit-actions,
  .audit-note,
  .contact-form-actions {
    grid-column: auto;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .section-audience::after,
  .section-problems::after,
  .section-process::after,
  .section-services-system::after,
  .section-trust::after,
  .section-final-cta::after {
    opacity: 0.26;
  }

  .hero h1 {
    max-width: 16ch;
  }

  .page-intro h1,
  .page-intro-site h1,
  .page-intro-direct h1,
  .blog-page h1,
  .blog-list-page h1,
  .blog-article-page h1,
  .cta-title,
  .section-title {
    max-width: none;
    text-wrap: balance;
  }

  .hero-copy::before {
    inset: -1rem -0.75rem -1.2rem -0.75rem;
    background:
      linear-gradient(180deg, rgba(252, 250, 245, 0.98) 0%, rgba(252, 250, 245, 0.94) 78%, rgba(252, 250, 245, 0.7) 100%);
  }

  .hero-home::after {
    background-size: 40px 40px, 40px 40px, min(90vw, 720px) auto;
    background-position: center center, center center, center top 180px;
    opacity: 0.58;
  }

  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .cookie-banner__inner {
    width: 100%;
    margin: 0 auto;
    padding: 0.95rem;
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions {
    width: 100%;
  }

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

  .system-node {
    grid-template-columns: 52px minmax(0, 1fr) 116px;
  }

  .page-intro-site p,
  .page-intro-direct p,
  .page-intro p,
  .lead,
  .section-intro,
  .cta-text {
    max-width: none;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .contact-form-head {
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .modal-dialog {
    width: min(100vw - 1rem, 760px);
    padding: 1rem;
    border-radius: 22px;
  }

  .reviews-placeholder-grid {
    grid-template-columns: 1fr;
  }

  .review-phone-screen {
    min-height: 280px;
  }

  .hero,
  .page-intro {
    padding-top: 2rem;
  }

  .hero h1,
  .page-intro h1 {
    line-height: 1.1;
  }

  .hero h1 {
    font-size: 1.84rem;
  }

  .page-intro h1,
  .page-intro-site h1,
  .page-intro-direct h1 {
    font-size: 1.72rem;
    line-height: 1.1;
  }

  .hero h1,
  .page-intro h1,
  .section-title,
  .cta-title {
    text-wrap: balance;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .section {
    padding: 2.1rem 0;
  }

  .section-audience::after {
    background-size: 14px 14px, 920px auto;
  }

  .section-process::after {
    background-size: 16px 16px, 960px auto;
  }

  .section-services-system::after {
    background-size: 28px 28px, 28px 28px, 920px auto;
  }

  .hero-panel,
  .card,
  .panel,
  .timeline-step,
  .faq-item,
  .contact-card,
  .service-row,
  .trust-note,
  .cta-box {
    padding: 1.15rem;
    border-radius: 20px;
  }

  .hero-home::before {
    background:
      radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.95) 0, rgba(255, 255, 255, 0.9) 24%, rgba(255, 255, 255, 0) 48%),
      radial-gradient(circle at 76% 32%, rgba(223, 234, 239, 0.34) 0, rgba(223, 234, 239, 0.06) 28%, rgba(223, 234, 239, 0) 56%),
      linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(247, 242, 234, 0.92));
  }

  .hero-home::after {
    background-size: 34px 34px, 34px 34px, 520px auto;
    background-position: center center, center center, center top 320px;
    opacity: 0.5;
  }

  .section-decor::before {
    opacity: 0.9;
  }

  .section-audience::after,
  .section-problems::after,
  .section-process::after,
  .section-services-system::after,
  .section-trust::after,
  .section-final-cta::after {
    opacity: 0.18;
  }

  .hero-copy::before {
    inset: -0.75rem -0.4rem -1rem -0.4rem;
  }

  .page-intro-copy::before {
    inset: -0.55rem -0.35rem -0.85rem -0.35rem;
  }

  .eyebrow {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    line-height: 1.35;
    padding: 0.52rem 0.8rem;
    white-space: normal;
    font-size: 0.92rem;
  }

  .breadcrumbs {
    gap: 0.28rem 0.45rem;
    font-size: 0.82rem;
  }

  .panel-kicker {
    line-height: 1.35;
  }

  .stat-row {
    padding: 0.95rem 1rem;
  }

  .system-node {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 0;
    padding: 0.9rem;
    gap: 0.8rem;
  }

  .node-tag {
    grid-column: 2;
    justify-self: start;
    width: auto;
    min-width: 108px;
    margin-top: 0.25rem;
  }

  .hero-actions,
  .cta-box .hero-actions,
  .audit-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .modal {
    padding: 0.5rem;
  }

  .cookie-banner {
    left: 0.6rem;
    right: 0.6rem;
    bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  }

  .modal-dialog {
    width: min(100vw - 0.65rem, 760px);
    max-height: min(92svh, 920px);
    padding: 0.95rem;
    border-radius: 20px;
  }

  .modal-close {
    top: 0.7rem;
    right: 0.7rem;
    width: 36px;
    height: 36px;
  }

  .contact-form-actions,
  .audit-actions,
  .hero-actions,
  .cta-box .hero-actions {
    gap: 0.65rem;
  }

  .service-row {
    gap: 0.8rem;
  }

  .sitemap-group {
    padding: 1.1rem 1rem;
  }

  .sitemap-links a {
    padding: 0.78rem 0.88rem;
    border-radius: 16px;
    font-size: 0.94rem;
  }

  [data-ai-sales-widget] {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .brand {
    gap: 0.55rem;
  }

  .brand-logo {
    width: 86px;
  }

  .brand-text strong {
    font-size: 0.82rem;
  }

  .brand-text span {
    font-size: 0.72rem;
  }

  .hero h1,
  .page-intro h1 {
    font-size: 1.72rem;
  }

  .page-intro-site h1,
  .page-intro-direct h1 {
    font-size: 1.64rem;
  }

  .section-title,
  .cta-title {
    font-size: 1.55rem;
    line-height: 1.14;
  }

  .card h3,
  .service-row h3,
  .faq-item h3,
  .contact-card h3 {
    font-size: 1.02rem;
  }

  .lead,
  .page-intro p,
  .section-intro,
  .cta-text,
  .card p,
  .service-row p,
  .faq-item p,
  .contact-card p,
  .panel p,
  .trust-note p {
    font-size: 0.98rem;
  }
}
