:root {
  --font-sans: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --color-ink: #0b163a;
  --color-body: #203050;
  --color-muted: #5b6881;
  --color-teal: #008b78;
  --color-teal-dark: #007060;
  --color-teal-soft: #e5f4f1;
  --color-border: #d8e2e5;
  --color-panel: #ffffff;
  --color-page: #fbfdfd;
  --shadow-sm: 0 8px 24px rgba(17, 35, 58, 0.06);
  --shadow-md: 0 16px 36px rgba(17, 35, 58, 0.08);
  --radius-sm: 6px;
  --radius-md: 8px;
  --container: 1232px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--color-body);
  background: var(--color-page);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.g-3,
.gx-3 {
  --bs-gutter-x: 16px;
}

.g-3 {
  --bs-gutter-y: 16px;
}

.g-4 {
  --bs-gutter-x: 22px;
  --bs-gutter-y: 22px;
}

.gx-5 {
  --bs-gutter-x: 58px;
}

.gy-4 {
  --bs-gutter-y: 24px;
}

.col {
  flex: 1 0 0%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

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

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

@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
}

@media (min-width: 1200px) {
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
}

.site-shell {
  width: min(calc(100% - 52px), var(--container));
  margin: 0 auto;
  padding-bottom: 32px;
  background: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 25px 10px 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--color-ink);
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}

.nav-link {
  padding: 6px 0;
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 800;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-teal);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: #f3faf8;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 28px;
  padding: 0 8px;
  color: var(--color-muted);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.language-switcher a:hover,
.language-switcher a.active {
  color: #fff;
  background: var(--color-teal);
}

.btn {
  --bs-btn-padding-x: 31px;
  --bs-btn-padding-y: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  min-height: 56px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  white-space: normal;
  box-shadow: none;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

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

.btn-sm {
  min-width: 178px;
  min-height: 42px;
  padding: 10px 22px;
  font-size: 12px;
}

.btn-primary {
  --bs-btn-bg: var(--color-teal);
  --bs-btn-border-color: var(--color-teal);
  --bs-btn-hover-bg: var(--color-teal-dark);
  --bs-btn-hover-border-color: var(--color-teal-dark);
  --bs-btn-active-bg: var(--color-teal-dark);
  --bs-btn-active-border-color: var(--color-teal-dark);
  color: #fff;
  background: linear-gradient(180deg, #039b84, var(--color-teal));
  box-shadow: 0 10px 22px rgba(0, 139, 120, 0.16);
}

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

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

.hero-section {
  padding: 44px 10px 48px;
}

.hero-section h1 {
  max-width: 680px;
  margin: 0 0 24px;
  color: var(--color-ink);
  font-size: clamp(42px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.12;
}

.hero-copy {
  max-width: 575px;
  margin: 0 0 34px;
  color: var(--color-body);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.72;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 37px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  color: var(--color-body);
  font-size: 13px;
  font-weight: 700;
}

.trust-row span,
.check-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.trust-row svg,
.check-list svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: var(--color-teal);
  border: 1.7px solid currentColor;
  border-radius: 50%;
  padding: 3px;
  stroke-width: 3;
}

.hero-stack {
  width: min(100%, 438px);
  margin-left: auto;
}

.pillar-card,
.chart-card,
.problem-card,
.service-card,
.benefit-card,
.decision-card,
.social-proof,
.price-card,
.faq-list,
.final-cta {
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.pillar-card {
  min-height: 292px;
  padding: 25px 27px;
  box-shadow: var(--shadow-sm);
}

.pillar-icon {
  width: 41px;
  height: 41px;
  margin-bottom: 24px;
  color: var(--color-teal);
  stroke-width: 1.8;
}

.pillar-card h2 {
  margin: 0 0 18px;
  color: var(--color-ink);
  font-size: 28px;
  font-weight: 800;
}

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

.check-list li {
  margin: 0 0 12px;
  color: var(--color-body);
  font-size: 13px;
  font-weight: 700;
}

.chart-card {
  margin-top: 15px;
  padding: 22px 25px 18px;
  box-shadow: var(--shadow-sm);
}

.chart-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--color-ink);
  font-size: 14px;
}

.chart-card__top span {
  color: var(--color-teal);
  font-size: 27px;
  line-height: 1;
}

.chart-card > svg {
  width: 100%;
  height: 91px;
  display: block;
}

.chart-grid {
  stroke: #edf4f3;
  stroke-width: 1;
}

.chart-line {
  stroke: var(--color-teal);
  stroke-width: 4;
}

.chart-dot-path {
  stroke: var(--color-teal);
  stroke-width: 8;
  stroke-linecap: round;
}

.chart-card b {
  display: block;
  margin-top: -34px;
  color: var(--color-teal);
  text-align: right;
  font-size: 30px;
  font-weight: 800;
}

.section {
  padding: 31px 0;
}

.section-bordered {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-tight {
  padding-top: 24px;
  padding-bottom: 24px;
}

.section-heading {
  max-width: 750px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 8px;
  color: var(--color-ink);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
}

.section-heading p {
  margin: 0;
  color: var(--color-body);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.55;
}

.section-note {
  margin: 23px 0 0;
  color: var(--color-body);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.problem-card {
  height: 100%;
  min-height: 270px;
  padding: 24px 23px 21px;
}

.icon-bubble {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  color: var(--color-teal);
  background: var(--color-teal-soft);
  border-radius: 50%;
}

.icon-bubble svg {
  width: 32px;
  height: 32px;
}

.problem-card h3,
.service-card h3,
.benefit-card h3,
.decision-card h3 {
  margin: 0 0 13px;
  color: var(--color-ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.problem-card p,
.service-card p,
.benefit-card p,
.decision-card p,
.price-card p {
  margin: 0;
  color: var(--color-body);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.65;
}

.service-card {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 23px;
  min-height: 184px;
  padding: 30px 34px;
}

.benefit-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 19px;
  min-height: 133px;
  padding: 26px 31px;
}

.card-icon {
  width: 37px;
  height: 37px;
  color: var(--color-teal);
}

.process-section {
  padding-top: 22px;
  padding-bottom: 21px;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 26px 1fr 26px 1fr 26px 1fr 26px 1fr;
  gap: 10px;
  align-items: start;
}

.process-step {
  text-align: center;
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  color: #fff;
  background: var(--color-teal);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 800;
}

.process-step h3 {
  margin: 0 0 10px;
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 800;
}

.process-step p {
  max-width: 165px;
  margin: 0 auto;
  color: var(--color-body);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.process-arrow {
  width: 23px;
  height: 23px;
  margin-top: 8px;
  color: #4b8994;
  stroke-width: 2.3;
}

.decision-card {
  min-height: 213px;
  padding: 25px 25px 23px;
  text-align: center;
}

.decision-card .card-icon {
  margin-bottom: 22px;
}

.social-proof {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  min-height: 80px;
  margin-top: 28px;
  overflow: hidden;
}

.social-proof svg {
  justify-self: center;
  width: 28px;
  height: 28px;
  color: var(--color-teal);
}

.social-proof p {
  margin: 0;
  padding: 0 24px;
  color: var(--color-body);
  font-size: 14px;
  font-weight: 700;
  border-left: 1px solid #edf2f3;
}

.packages-section {
  padding-top: 26px;
  padding-bottom: 27px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 31px 29px 23px;
}

.price-card--featured {
  border-color: rgba(0, 139, 120, 0.65);
  box-shadow: var(--shadow-sm);
}

.price-badge {
  position: absolute;
  top: 0;
  left: -1px;
  right: -1px;
  height: 29px;
  padding: 7px 12px;
  color: #fff;
  background: linear-gradient(90deg, var(--color-teal), #00a58e);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.price-card--featured {
  padding-top: 52px;
}

.price-card h3 {
  margin: 0 0 14px;
  color: var(--color-ink);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.price-card .check-list {
  margin-top: 20px;
}

.price-card strong {
  display: block;
  margin: auto 0 23px;
  color: var(--color-ink);
  text-align: center;
  font-size: 21px;
  font-weight: 800;
}

.price-card .btn {
  width: 100%;
  min-width: 0;
  min-height: 45px;
}

.faq-section {
  padding-top: 9px;
  padding-bottom: 28px;
}

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

.faq-list {
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--color-border);
}

.faq-item button {
  display: grid;
  grid-template-columns: 54px minmax(250px, 360px) 1fr;
  gap: 16px;
  align-items: center;
  width: 100%;
  padding: 14px 24px;
  color: var(--color-ink);
  background: #fff;
  border: 0;
  text-align: left;
}

.faq-item button span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--color-teal-dark);
  background: var(--color-teal-soft);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
}

.faq-item button b {
  font-size: 13px;
  font-weight: 800;
}

.faq-item button small {
  color: var(--color-body);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.faq-item button i {
  display: none;
  position: relative;
  width: 16px;
  height: 16px;
}

.faq-item button i::before,
.faq-item button i::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 2px;
  width: 12px;
  height: 2px;
  background: var(--color-ink);
}

.faq-item button i::after {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.faq-item.open button i::after {
  transform: rotate(0);
}

.faq-answer {
  display: none;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.22s ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  color: var(--color-body);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.55;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.final-cta {
  margin: 0 0 8px;
  padding: 46px 34px 35px;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 139, 120, 0.10), transparent 21%),
    linear-gradient(105deg, #ffffff 0%, #f1f8f7 100%);
}

.final-cta h2 {
  max-width: 620px;
  margin: 0 0 14px;
  color: var(--color-ink);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.18;
}

.final-cta p {
  max-width: 650px;
  margin: 0 0 23px;
  color: var(--color-body);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.58;
}

.final-cta .action-row {
  margin-bottom: 21px;
}

.cta-note {
  max-width: 610px;
  margin-bottom: 0 !important;
}

.email-note {
  max-width: 610px;
  margin-top: 15px !important;
  margin-bottom: 0 !important;
  font-size: 14px !important;
}

.email-link {
  color: var(--color-teal-dark);
  font-weight: 800;
}

.compass-visual {
  position: relative;
  min-height: 238px;
}

.compass {
  position: absolute;
  top: 5px;
  right: 125px;
  width: 172px;
  height: 172px;
  border: 11px solid #d4e6e6;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0 50%, #edf6f5 51% 100%);
  box-shadow: inset 0 0 0 3px #fff, 0 18px 28px rgba(17, 35, 58, 0.08);
}

.compass::before,
.compass::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 3px;
  height: 22px;
  background: var(--color-ink);
  transform: translateX(-50%);
}

.compass::before {
  top: 7px;
}

.compass::after {
  bottom: 7px;
}

.compass span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, var(--color-teal) 0 47%, #fff 48% 100%);
  clip-path: polygon(50% 0, 72% 72%, 50% 58%, 28% 72%);
  transform: translate(-50%, -50%) rotate(45deg);
  filter: drop-shadow(0 7px 8px rgba(17, 35, 58, 0.16));
}

.compass i {
  position: absolute;
  inset: 36px;
  border: 2px solid #a9c5c5;
  border-radius: 50%;
}

.bars {
  position: absolute;
  right: 35px;
  bottom: 10px;
  display: flex;
  align-items: end;
  gap: 13px;
  height: 108px;
}

.bars span {
  width: 22px;
  background: #d8e8e7;
  border-radius: 2px 2px 0 0;
}

.bars span:nth-child(1) {
  height: 30px;
}

.bars span:nth-child(2) {
  height: 50px;
}

.bars span:nth-child(3) {
  height: 76px;
}

.bars span:nth-child(4) {
  height: 101px;
  background: #c7dddd;
}

.site-footer {
  margin-top: 24px;
  padding: 36px 34px 22px;
  color: var(--color-body);
  background: #f7fbfa;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--color-ink);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.site-footer h2 {
  margin: 0 0 13px;
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer p {
  max-width: 480px;
  margin: 0 0 14px;
  color: var(--color-body);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a,
.footer-email {
  color: var(--color-body);
  font-size: 14px;
  font-weight: 750;
}

.footer-links a:hover,
.footer-email:hover {
  color: var(--color-teal);
}

.footer-email {
  display: inline-flex;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
}

.language-switcher--footer {
  background: #fff;
}

.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 20, 44, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

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

.lead-modal {
  position: relative;
  width: min(100%, 590px);
  max-height: min(720px, calc(100vh - 48px));
  overflow: auto;
  padding: 34px;
  background: #fff;
  border: 1px solid rgba(216, 226, 229, 0.8);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 70px rgba(7, 20, 44, 0.28);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.2s ease;
}

.modal-backdrop.is-open .lead-modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--color-ink);
  background: #f3faf8;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.modal-copy {
  padding-right: 36px;
}

.modal-kicker {
  margin: 0 0 10px;
  color: var(--color-teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.modal-copy h2 {
  margin: 0 0 12px;
  color: var(--color-ink);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.modal-copy p:not(.modal-kicker) {
  margin: 0 0 24px;
  color: var(--color-body);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.65;
}

.lead-form {
  display: grid;
  gap: 16px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  margin: 0;
}

.lead-form span {
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 800;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: var(--color-ink);
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  outline: none;
}

.lead-form textarea {
  resize: vertical;
  min-height: 126px;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(0, 139, 120, 0.12);
}

.lead-form .btn {
  width: 100%;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--color-teal-dark);
  font-size: 13px;
  font-weight: 800;
}

.problem-card,
.service-card,
.benefit-card,
.decision-card,
.price-card {
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.problem-card:hover,
.service-card:hover,
.benefit-card:hover,
.decision-card:hover,
.price-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 139, 120, 0.35);
  box-shadow: var(--shadow-sm);
}

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

  .site-header {
    position: static;
    padding: 22px 0 10px;
  }

  .site-header .row {
    row-gap: 14px;
  }

  .site-header .col,
  .site-header .col-auto {
    width: 100%;
    flex: 0 0 auto;
    text-align: center;
  }

  .brand {
    justify-content: center;
    width: 100%;
  }

  .nav {
    gap: 18px;
  }

  .language-switcher {
    justify-content: center;
  }

  .hero-section {
    padding-top: 36px;
  }

  .hero-section h1,
  .hero-copy {
    max-width: none;
  }

  .hero-stack {
    margin-left: 0;
    width: 100%;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-step {
    padding: 20px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
  }

  .process-arrow {
    display: none;
  }

  .faq-item button {
    grid-template-columns: 42px 1fr 18px;
  }

  .faq-item button i {
    display: block;
  }

  .faq-item button small {
    display: none;
  }

  .faq-answer {
    display: grid;
  }

  .faq-answer p {
    padding: 0 24px 0 82px;
  }

  .faq-item.open .faq-answer p {
    padding-bottom: 16px;
  }
}

@media (max-width: 575.98px) {
  body {
    font-size: 14px;
  }

  .site-shell {
    width: 100%;
    padding: 0 16px 22px;
  }

  .site-shell .row {
    margin-right: 0;
    margin-left: 0;
  }

  .nav {
    gap: 13px;
  }

  .nav-link {
    font-size: 12px;
  }

  .hero-section h1 {
    font-size: 36px;
  }

  .hero-copy,
  .section-heading p,
  .final-cta p {
    font-size: 15px;
  }

  .btn,
  .action-row .btn {
    width: 100%;
  }

  .action-row {
    gap: 14px;
  }

  .trust-row {
    gap: 15px;
  }

  .pillar-card {
    min-height: 250px;
    padding: 22px 18px;
  }

  .pillar-card h2 {
    font-size: 24px;
  }

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

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

  .service-card,
  .benefit-card {
    grid-template-columns: 42px 1fr;
    padding: 22px;
  }

  .social-proof {
    grid-template-columns: 58px 1fr;
  }

  .social-proof p {
    padding: 0 16px;
  }

  .faq-item button {
    gap: 12px;
    padding: 14px;
  }

  .faq-answer p {
    padding-left: 68px;
    padding-right: 16px;
  }

  .final-cta {
    padding: 34px 22px 28px;
  }

  .final-cta h2 {
    font-size: 30px;
  }

  .site-footer {
    padding: 28px 22px 20px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .modal-backdrop {
    padding: 14px;
  }

  .lead-modal {
    padding: 28px 20px 22px;
  }

  .modal-copy {
    padding-right: 30px;
  }

  .modal-copy h2 {
    font-size: 24px;
  }

  .compass-visual {
    min-height: 196px;
  }

  .compass {
    left: 50%;
    right: auto;
    width: 145px;
    height: 145px;
    transform: translateX(-50%);
  }

  .bars {
    right: 24px;
    bottom: 0;
    height: 82px;
  }
}
