:root {
  --bg: #ffffff;
  --bg-soft: #f4f8f8;
  --bg-cool: #edf4f5;
  --text: #101525;
  --muted: #56616f;
  --subtle: #dce7e9;
  --accent: #087b83;
  --accent-strong: #00666e;
  --accent-soft: #e4f3f4;
  --coral: #d77462;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(16, 21, 37, 0.09);
  --container: min(calc(100% - 48px), 1320px);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid rgba(8, 123, 131, 0.34);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -70px;
  z-index: 40;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--white);
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 16px;
}

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

.section {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--subtle);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: var(--container);
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  font-size: 1.18rem;
  font-weight: 780;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 830;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.site-nav a,
.site-footer a,
.text-link {
  text-decoration: none;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 620;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent-strong);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 740;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.header-cta,
.button-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(8, 123, 131, 0.2);
}

.header-cta:hover,
.header-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.button-secondary {
  border-color: var(--accent);
  background: var(--white);
  color: var(--accent-strong);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--accent-soft);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--subtle);
  border-radius: 6px;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

h1,
h2,
h3,
h4 {
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: 4.25rem;
  line-height: 0.98;
  font-weight: 830;
}

h2 {
  margin-bottom: 14px;
  font-size: 2.85rem;
  line-height: 1.08;
  font-weight: 810;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.3;
  font-weight: 770;
}

h4 {
  margin-bottom: 4px;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 770;
}

.hero {
  min-height: calc(100svh - 170px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 52px;
  align-items: center;
  padding: 48px 0 28px;
}

.hero-copy {
  max-width: 620px;
}

.hero-lead {
  max-width: 570px;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1.27rem;
  line-height: 1.5;
}

.hero-support {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-actions .button {
  min-width: 170px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 690;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row svg,
.service-card svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-row svg {
  color: var(--accent);
}

.hero-media {
  height: 480px;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid var(--subtle);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 30px;
}

.section-heading p,
.family-copy p,
.about-copy p,
.boundaries-inner > div > p,
.contact-panel > div > p {
  color: var(--muted);
  font-size: 1.04rem;
}

.split-heading {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.split-heading > div {
  max-width: 800px;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--accent-strong);
  font-weight: 740;
  white-space: nowrap;
}

.services-section,
.process-section,
.about-section,
.faq-section,
.contact-section {
  padding: 82px 0;
}

.services-section {
  border-top: 1px solid var(--subtle);
  padding-top: 58px;
}

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

.service-card,
.price-card {
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card {
  min-height: 178px;
  padding: 22px;
}

.service-card-business {
  border-color: #c9dcde;
  background: var(--bg-soft);
}

.icon-frame {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid var(--subtle);
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--accent);
}

.service-card p,
.price-card p,
.process-list p,
.package-row p,
.family-points span,
.about-principles p,
.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.prices-section {
  width: 100%;
  background: var(--bg-soft);
}

.prices-inner {
  padding: 82px 0;
}

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

.price-card {
  padding: 28px;
  text-align: center;
}

.price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--text);
}

.price strong {
  font-size: 3rem;
  line-height: 1;
  font-weight: 830;
}

.price span {
  color: var(--text);
  font-weight: 650;
}

.pricing-note {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.93rem;
}

.pricing-note p {
  margin-bottom: 0;
}

.package-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  gap: 34px 54px;
  margin-top: 54px;
  padding-top: 42px;
  border-top: 1px solid var(--subtle);
}

.package-section > div:first-child p {
  margin-bottom: 0;
  color: var(--muted);
}

.package-list {
  border-top: 1px solid #c9dcde;
}

.package-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 105px 78px;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #c9dcde;
}

.package-row > span {
  color: var(--muted);
  font-size: 0.9rem;
  white-space: nowrap;
}

.package-row > strong {
  color: var(--accent-strong);
  font-size: 1.15rem;
  text-align: right;
  white-space: nowrap;
}

.price-details {
  grid-column: 2;
  border-bottom: 1px solid #c9dcde;
}

.price-details summary,
.faq-list summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: var(--text);
  font-weight: 730;
  list-style: none;
}

.price-details summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker {
  display: none;
}

.price-details summary::after,
.faq-list summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--subtle);
  border-radius: 50%;
  color: var(--accent-strong);
  font-size: 1.1rem;
  font-weight: 500;
}

.price-details[open] summary::after,
.faq-list details[open] summary::after {
  content: "-";
}

.price-details p {
  max-width: 760px;
  padding: 0 0 18px;
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.process-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 0;
  margin: 0;
}

.process-list li {
  min-height: 190px;
  padding: 24px 4px 0;
  border-top: 2px solid var(--accent);
}

.process-list span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
}

.family-section {
  width: 100%;
  background: var(--bg-cool);
}

.family-inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
  padding: 82px 0;
}

.family-copy {
  max-width: 590px;
}

.family-copy .button {
  margin-top: 10px;
}

.family-points {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid #c9dcde;
}

.family-points li {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid #c9dcde;
}

.family-points strong {
  color: var(--text);
}

.boundaries-section {
  width: 100%;
  background: var(--text);
  color: var(--white);
}

.boundaries-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 56px;
  align-items: start;
  padding: 76px 0;
}

.boundaries-inner h2 {
  color: var(--white);
}

.boundaries-inner > div > p {
  color: #c7cbd3;
}

.boundary-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.boundary-list li {
  min-height: 86px;
  position: relative;
  padding: 22px 0 20px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-weight: 650;
}

.boundary-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: 72px;
  align-items: start;
}

.about-copy {
  max-width: 620px;
}

.about-copy p:last-child,
.about-principles p:last-child {
  margin-bottom: 0;
}

.about-principles {
  padding-left: 30px;
  border-left: 4px solid var(--accent);
}

.about-principles > h3 {
  margin-bottom: 22px;
  color: var(--accent-strong);
  font-size: 1.25rem;
}

.about-principles > div {
  padding: 16px 0;
  border-top: 1px solid var(--subtle);
}

.about-principles > div:last-child {
  border-bottom: 1px solid var(--subtle);
}

.about-principles strong {
  display: block;
  margin-bottom: 3px;
}

.faq-section {
  border-top: 1px solid var(--subtle);
}

.faq-list {
  max-width: 900px;
  border-top: 1px solid var(--subtle);
}

.faq-list details {
  border-bottom: 1px solid var(--subtle);
}

.faq-list summary {
  min-height: 66px;
  font-size: 1.02rem;
}

.faq-list p {
  max-width: 780px;
  padding: 0 56px 22px 0;
}

.contact-section {
  padding-top: 40px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(380px, 1fr);
  gap: 54px;
  padding: 38px;
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-details {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
}

.contact-details div {
  padding-top: 14px;
  border-top: 1px solid var(--subtle);
}

.contact-details dt {
  color: var(--accent-strong);
  font-weight: 780;
}

.contact-details dd {
  margin: 4px 0 0;
  color: var(--text);
  overflow-wrap: anywhere;
}

.contact-details a {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-details a:not([href]) {
  text-decoration: none;
  cursor: default;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.required-note {
  justify-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.required-note span,
.field-label span {
  color: var(--coral);
}

.field-label {
  color: var(--text);
}

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

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 710;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #cbd7da;
  border-radius: 6px;
  background: var(--white);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.4;
}

.contact-form textarea {
  min-height: 124px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 3px solid rgba(8, 123, 131, 0.2);
  outline-offset: 0;
  border-color: var(--accent);
}

.form-hint,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-status:not(:empty) {
  padding: 12px;
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 660;
}

.request-preview {
  padding: 20px;
  border: 1px solid #c9dcde;
  border-radius: 6px;
  background: var(--bg-soft);
}

.request-preview h3 {
  margin-bottom: 12px;
}

.request-preview pre {
  max-height: 260px;
  overflow: auto;
  margin: 0 0 16px;
  padding: 14px;
  border: 1px solid var(--subtle);
  border-radius: 4px;
  background: var(--white);
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.request-actions .button {
  min-height: 44px;
  padding: 0 15px;
  font-size: 0.9rem;
}

.site-footer {
  width: var(--container);
  margin: 0 auto;
  padding: 34px 0 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px 28px;
  border-top: 1px solid var(--subtle);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 20px;
}

.site-footer nav span {
  color: #727b86;
}

.footer-note {
  grid-column: 1 / -1;
}

.legal-header-inner {
  grid-template-columns: 1fr auto;
}

.legal-site-header {
  background: var(--white);
  backdrop-filter: none;
}

.legal-back-link {
  color: var(--accent-strong);
  font-size: 0.95rem;
  font-weight: 740;
  text-decoration: none;
}

.legal-back-link:hover,
.legal-back-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-main {
  min-height: calc(100svh - 180px);
}

.legal-hero {
  border-bottom: 1px solid var(--subtle);
  background: var(--bg-cool);
}

.legal-container {
  width: min(calc(100% - 48px), 920px);
  margin: 0 auto;
}

.legal-hero .legal-container {
  padding-top: 64px;
  padding-bottom: 48px;
}

.legal-hero h1 {
  max-width: none;
  margin-bottom: 14px;
  font-size: 3.4rem;
  line-height: 1.04;
}

.legal-lead {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-content {
  padding-top: 52px;
  padding-bottom: 82px;
}

.legal-content section + section {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--subtle);
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: 1.65rem;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-content p,
.legal-content li,
.legal-content address {
  max-width: 780px;
}

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

.legal-content ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 7px;
}

.legal-content a {
  color: var(--accent-strong);
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.legal-notice {
  margin-top: 42px;
  padding: 18px 20px;
  border-left: 4px solid var(--coral);
  border-radius: 0 6px 6px 0;
  background: var(--bg-soft);
  color: var(--muted);
}

.legal-notice strong {
  color: var(--text);
}

.legal-footer {
  margin-top: 0;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  body.nav-open .site-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: grid;
    gap: 0;
    width: 100%;
    max-height: calc(100svh - 72px);
    overflow: auto;
    padding: 8px 24px 22px;
    border-bottom: 1px solid var(--subtle);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav a {
    min-height: 52px;
    padding: 0;
    border-bottom: 1px solid var(--subtle);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 44px;
  }

  .hero-copy {
    max-width: 760px;
  }

  h1 {
    max-width: 780px;
    font-size: 4rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .hero-media {
    height: 320px;
    border-left: 0;
    border-radius: var(--radius);
  }

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

  .package-section,
  .family-inner,
  .boundaries-inner,
  .about-section,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .price-details {
    grid-column: 1;
  }

  .family-inner,
  .boundaries-inner,
  .about-section,
  .contact-panel {
    gap: 36px;
  }

  .contact-panel > div {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(calc(100% - 32px), 1320px);
  }

  html {
    scroll-padding-top: 76px;
  }

  .header-inner {
    min-height: 64px;
  }

  .brand {
    gap: 9px;
    font-size: 1rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  body.nav-open .site-nav {
    inset: 64px 0 auto 0;
    max-height: calc(100svh - 64px);
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: 2.75rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    gap: 24px;
    padding: 26px 0 18px;
  }

  .hero-lead {
    font-size: 1.12rem;
  }

  .hero-support {
    margin-bottom: 24px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 20px;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .trust-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    font-size: 0.8rem;
  }

  .trust-row span {
    gap: 6px;
  }

  .trust-row span:last-child {
    grid-column: 1 / -1;
  }

  .hero-media {
    height: 140px;
  }

  .services-section,
  .prices-inner,
  .process-section,
  .family-inner,
  .boundaries-inner,
  .about-section,
  .faq-section,
  .contact-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .services-section {
    padding-top: 38px;
  }

  .service-grid,
  .price-grid,
  .process-list,
  .boundary-list,
  .pricing-note,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .split-heading {
    display: block;
  }

  .text-link {
    margin-top: 4px;
  }

  .price-card {
    padding: 24px 20px;
  }

  .price strong {
    font-size: 2.7rem;
  }

  .package-section {
    margin-top: 40px;
    padding-top: 34px;
  }

  .package-row {
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
  }

  .package-row > div {
    grid-column: 1 / -1;
  }

  .package-row > strong {
    grid-column: 2;
  }

  .process-list {
    gap: 24px;
  }

  .process-list li {
    min-height: 0;
  }

  .family-points li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .boundary-list {
    gap: 0;
  }

  .about-principles {
    padding-left: 20px;
  }

  .faq-list summary {
    min-height: 72px;
    padding: 8px 0;
  }

  .faq-list p {
    padding-right: 0;
  }

  .contact-section {
    padding-top: 26px;
  }

  .contact-panel {
    padding: 22px;
  }

  .required-note {
    justify-self: start;
  }

  .request-actions {
    display: grid;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    display: grid;
    justify-content: start;
  }

  .legal-container {
    width: min(calc(100% - 32px), 920px);
  }

  .legal-hero .legal-container {
    padding-top: 42px;
    padding-bottom: 36px;
  }

  .legal-hero h1 {
    font-size: 2.55rem;
  }

  .legal-content {
    padding-top: 40px;
    padding-bottom: 62px;
  }

  .legal-content section + section {
    margin-top: 32px;
    padding-top: 32px;
  }

  .legal-content h2 {
    font-size: 1.45rem;
  }
}

@media (max-width: 390px) {
  .brand {
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .trust-row span:last-child {
    grid-column: auto;
  }

  .contact-panel {
    padding: 18px;
  }
}

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