:root {
  --cobalt: #023eac;
  --cobalt-deep: #022d82;
  --cobalt-dark: #06286d;
  --ink: #10233f;
  --ink-soft: #43536a;
  --cyan: #007c91;
  --cyan-bright: #0aa8bd;
  --cyan-pale: #c8eaef;
  --cyan-wash: #edf9fb;
  --sand: #f1d7b3;
  --sand-deep: #d5a657;
  --sand-wash: #fff9f0;
  --cta-yellow: #ffd84d;
  --cta-yellow-hover: #ffe574;
  --surface: #f7fafe;
  --line: #dbe6f2;
  --white: #ffffff;
  --danger: #b42318;
  --success: #067647;
  --shadow-sm: 0 10px 30px rgba(16, 35, 63, 0.08);
  --shadow-md: 0 20px 60px rgba(2, 40, 109, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --content: 1200px;
  --section-space: 84px;
  --section-heading-gap: 40px;
  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-en: "Manrope", var(--font-jp);
}

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

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

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

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

:focus-visible {
  outline: 3px solid #f7bb51;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--white);
  color: var(--cobalt);
  font-weight: 800;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.section {
  padding: var(--section-space) 0;
}

.section--soft {
  background: var(--surface);
}

.section--blue {
  overflow: hidden;
  background: linear-gradient(145deg, var(--cobalt-dark), var(--cobalt));
  color: var(--white);
}

.section-heading {
  max-width: 780px;
  margin-bottom: var(--section-heading-gap);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.journey .section-heading,
#problems .section-heading {
  max-width: 1080px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--cyan);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.section--blue .eyebrow {
  color: var(--cyan-pale);
}

.section-title {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.35;
  text-wrap: balance;
}

.journey-title-mobile,
.process-title-mobile,
.trust-title-mobile {
  display: none;
}

@media (min-width: 901px) {
  .journey-title-desktop,
  .problems-title-desktop {
    white-space: nowrap;
  }
}

.section-lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.section--blue .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 26px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.45;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

.button svg {
  width: 20px;
  height: 20px;
  flex: none;
}

.button--sand {
  border: 1px solid rgba(113, 73, 19, 0.16);
  background: var(--cta-yellow);
  box-shadow: 0 12px 30px rgba(255, 194, 20, 0.32);
  color: #281b08;
}

.button--sand:hover {
  background: var(--cta-yellow-hover);
  box-shadow: 0 16px 36px rgba(255, 194, 20, 0.4);
}

.button--blue {
  background: var(--cobalt);
  box-shadow: 0 12px 28px rgba(2, 62, 172, 0.2);
  color: var(--white);
}

.button--blue:hover {
  background: #0649c8;
  box-shadow: 0 16px 34px rgba(2, 62, 172, 0.28);
}

.button--outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 62, 172, 0.9);
  color: var(--white);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  color: var(--white);
}

.brand-logo {
  width: auto;
  height: 60px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav > a:not(.button) {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  border-radius: 999px;
  background: var(--sand);
  content: "";
  transition: transform 0.2s ease;
}

.desktop-nav > a:not(.button):hover {
  color: var(--white);
}

.desktop-nav > a:not(.button):hover::after {
  transform: scaleX(1);
}

.desktop-nav .button {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 13px;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
}

.menu-button svg {
  width: 26px;
  height: 26px;
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 78px 0 auto;
  display: grid;
  max-height: calc(100dvh - 78px);
  gap: 4px;
  overflow: auto;
  padding: 18px 24px 28px;
  transform: translateY(-120%);
  background: var(--cobalt-deep);
  color: var(--white);
  visibility: hidden;
  transition:
    transform 0.25s ease,
    visibility 0.25s ease;
}

.mobile-menu.is-open {
  transform: translateY(0);
  visibility: visible;
}

.mobile-menu a {
  padding: 14px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.mobile-menu .button {
  margin-top: 12px;
  color: #281b08;
}

.menu-backdrop {
  position: fixed;
  z-index: 85;
  inset: 78px 0 0;
  display: block;
  padding: 0;
  border: 0;
  background: rgba(6, 40, 109, 0.44);
  cursor: default;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

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

.mobile-jump-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 124px 0 82px;
  background:
    radial-gradient(circle at 76% 25%, rgba(41, 154, 233, 0.38), transparent 28%),
    linear-gradient(135deg, var(--cobalt) 0%, #034bb9 48%, var(--cobalt-deep) 100%);
  color: var(--white);
}

.hero::after {
  position: absolute;
  right: -5%;
  bottom: -82px;
  left: -5%;
  height: 128px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: var(--white);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 38px;
  grid-template-columns: minmax(500px, 0.9fr) minmax(560px, 1.1fr);
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 22px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: var(--cyan-pale);
  color: var(--cobalt-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(36px, 3.05vw, 44px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.38;
  text-wrap: balance;
}

.hero-title-mobile {
  display: none;
}

.problems-title-mobile,
.mobile-only-break {
  display: none;
}

.services-title-line,
.trust-card-title-line {
  display: block;
}

.hero-line-long {
  font-size: 0.91em;
  white-space: nowrap;
}

.hero-lead {
  max-width: 610px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.6;
}

.hero-note svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--cyan-pale);
}

.hero-visual {
  position: relative;
  min-height: 350px;
  padding-top: 38px;
}

.hero-bridge {
  position: absolute;
  z-index: 0;
  top: -42px;
  right: -10%;
  width: 120%;
  opacity: 0.22;
  pointer-events: none;
}

.hero-flow {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-flow::before {
  position: absolute;
  z-index: -1;
  top: 52px;
  right: 12%;
  left: 12%;
  border-top: 2px dashed rgba(255, 255, 255, 0.78);
  content: "";
}

.hero-flow-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-flow-icon {
  display: flex;
  width: 76px;
  height: 76px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border: 5px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--cobalt);
}

.hero-flow-icon svg {
  width: 37px;
  height: 37px;
}

.mini-browser {
  width: 100%;
  min-height: 142px;
  padding: 12px;
  border: 2px solid rgba(255, 255, 255, 0.52);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  color: var(--ink);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 12px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}

.browser-bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sand-deep);
}

.browser-bar i:nth-child(2) {
  background: var(--cyan-bright);
}

.browser-bar i:nth-child(3) {
  background: var(--cobalt);
}

.search-preview,
.site-preview,
.contact-preview {
  display: grid;
  min-height: 100px;
  place-items: center;
}

.search-box {
  display: flex;
  width: 88%;
  height: 28px;
  align-items: center;
  justify-content: flex-end;
  padding: 0 9px;
  border: 1px solid #b9cbe0;
  border-radius: 999px;
  color: var(--cobalt);
}

.search-box svg {
  width: 14px;
  height: 14px;
}

.preview-lines {
  display: grid;
  width: 80%;
  gap: 7px;
  margin-top: 10px;
}

.preview-lines span {
  height: 5px;
  border-radius: 999px;
  background: #dbe5f0;
}

.preview-lines span:first-child {
  width: 72%;
  background: var(--cobalt);
}

.preview-lines span:last-child {
  width: 58%;
  background: var(--cyan-pale);
}

.site-preview {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10px;
}

.site-preview-visual {
  position: relative;
  width: 100%;
  height: 60px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(160deg, var(--cyan-pale), #9cc8ea);
}

.site-preview-visual::before,
.site-preview-visual::after {
  position: absolute;
  bottom: 0;
  width: 30%;
  height: 44%;
  border: 2px solid var(--cobalt);
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.72);
  content: "";
}

.site-preview-visual::before {
  left: 18%;
}

.site-preview-visual::after {
  right: 18%;
  height: 62%;
}

.contact-preview {
  gap: 10px;
  grid-template-columns: 0.8fr 1.2fr;
}

.calendar-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 14px;
  background: var(--cyan-wash);
  color: var(--cobalt);
}

.calendar-icon svg {
  width: 34px;
  height: 34px;
}

.contact-check {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--cobalt);
  color: var(--white);
}

.contact-check svg {
  width: 25px;
  height: 25px;
}

.hero-flow-label {
  min-height: 44px;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 12px;
  background: var(--cyan-pale);
  color: var(--cobalt-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}

.journey {
  padding-top: 68px;
}

.journey-rail {
  position: relative;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
}

.journey-rail::before {
  position: absolute;
  top: 36px;
  right: 11%;
  left: 11%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cobalt), var(--cyan-bright), var(--sand-deep));
  content: "";
}

.journey-card {
  position: relative;
  z-index: 1;
  padding: 0 8px;
  text-align: center;
}

.journey-number {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  place-items: center;
  border: 8px solid var(--white);
  border-radius: 50%;
  background: var(--cobalt);
  box-shadow: 0 0 0 1px var(--line);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 800;
}

.journey-card:nth-child(2) .journey-number {
  background: var(--cyan);
}

.journey-card:nth-child(3) .journey-number {
  background: var(--sand-deep);
}

.journey-card h3 {
  margin: 0 0 12px;
  color: var(--cobalt);
  font-size: 23px;
  line-height: 1.5;
}

.journey-card:nth-child(2) h3 {
  color: var(--cyan);
}

.journey-card:nth-child(3) h3 {
  color: #9b681d;
}

.journey-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  text-align: left;
}

.scope-strip {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--white), var(--surface));
}

.scope-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
  grid-template-columns: repeat(6, 1fr);
}

.scope-item {
  display: flex;
  min-height: 116px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 12px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.scope-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan-wash);
  color: var(--cobalt);
}

.scope-icon svg {
  width: 26px;
  height: 26px;
}

.problem-grid {
  display: grid;
  gap: 0;
  overflow: hidden;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  grid-template-columns: repeat(2, 1fr);
}

.problem-card {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.problem-card:nth-child(odd):not(:last-child) {
  border-right: 1px solid var(--line);
}

.problem-card:last-child {
  border-bottom: 0;
  grid-column: 1 / -1;
}

.problem-mark {
  display: grid;
  width: 34px;
  height: 34px;
  flex: none;
  place-items: center;
  border-radius: 10px;
  background: var(--cyan-wash);
  color: var(--cobalt);
  font-family: var(--font-en);
  font-size: 17px;
  font-weight: 900;
}

.problem-card p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
  text-wrap: balance;
}

.problem-summary {
  position: relative;
  max-width: 820px;
  margin: 72px auto 0;
  padding: 24px 30px;
  border: 1px solid #bed6e8;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--white), var(--cyan-wash));
  box-shadow:
    inset 8px 0 0 var(--cyan),
    0 16px 40px rgba(16, 35, 63, 0.12);
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.8;
  text-align: center;
  text-wrap: balance;
}

.problem-summary::before {
  position: absolute;
  top: -64px;
  left: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  transform: translateX(-50%);
  place-items: center;
  border: 5px solid var(--surface);
  border-radius: 50%;
  background: var(--cobalt);
  box-shadow: 0 8px 20px rgba(2, 62, 172, 0.22);
  color: var(--white);
  content: "↓";
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
}

.section--blue .section-lead strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
}

.service-card::after {
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(200, 234, 239, 0.08);
  content: "";
}

.service-label {
  margin: 0 0 12px;
  color: var(--sand);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.5;
  text-wrap: balance;
}

.service-card > p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.78);
}

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

.check-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.check-list li::before {
  position: absolute;
  top: 0.7em;
  left: 2px;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-right: 2px solid var(--cyan-pale);
  border-bottom: 2px solid var(--cyan-pale);
  content: "";
}

.pricing-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.campaign-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid #ebc88f;
  border-radius: 999px;
  background: var(--sand-wash);
  color: #714913;
  font-size: 13px;
  font-weight: 900;
}

.pricing-grid {
  display: grid;
  align-items: stretch;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 30px 26px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.price-card--featured {
  transform: translateY(-12px);
  border: 2px solid var(--cobalt);
  box-shadow: 0 26px 70px rgba(2, 62, 172, 0.17);
}

.price-card--featured::before {
  position: absolute;
  top: -15px;
  left: 50%;
  padding: 5px 14px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--cobalt);
  color: var(--white);
  content: "おすすめ";
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.price-card h3 {
  margin: 0;
  color: var(--cobalt);
  font-size: 21px;
}

.note-mark {
  margin-left: 3px;
  color: var(--cyan);
  font-size: 13px;
  vertical-align: super;
}

.price {
  margin: 16px 0 10px;
  color: var(--ink);
  font-family: var(--font-en);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.price small {
  margin-left: 4px;
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 700;
}

.price-card > p:not(.price) {
  min-height: 84px;
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 14px;
}

.price-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.price-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 14px;
}

.price-list li::before {
  position: absolute;
  top: 7px;
  left: 2px;
  width: 9px;
  height: 5px;
  transform: rotate(-45deg);
  border-bottom: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
  content: "";
}

.price-card > p.price-note {
  min-height: 0;
  margin: auto 0 0;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
  color: #5d6878;
  font-size: 11px;
  line-height: 1.7;
}

.price-note span {
  margin-right: 3px;
  color: var(--cyan);
  font-weight: 900;
}

.aftercare {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.aftercare-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}

.aftercare-kicker {
  margin: 0 0 7px;
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.aftercare h3 {
  margin: 0;
  color: var(--cobalt);
  font-size: 23px;
  line-height: 1.5;
  text-wrap: balance;
}

.aftercare-title-mobile {
  display: none;
}

.aftercare-lead {
  max-width: 760px;
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.aftercare-badge {
  flex: none;
  padding: 9px 14px;
  border: 1px solid #a9dce5;
  border-radius: 999px;
  background: var(--cyan-wash);
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.aftercare-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.aftercare-item {
  min-width: 0;
  padding: 18px 20px;
  background: var(--white);
}

.aftercare-item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.aftercare-item h4 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
}

.aftercare-price {
  margin: 0;
  color: var(--cobalt);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.aftercare-item > p:last-child {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.aftercare-note {
  margin: 15px 0 0;
  color: #5d6878;
  font-size: 11px;
  line-height: 1.75;
}

.campaign-conditions {
  margin-top: 34px;
  padding: 26px;
  border: 1px solid #ead7b7;
  border-radius: var(--radius-md);
  background: var(--sand-wash);
}

.campaign-conditions h3 {
  margin: 0 0 16px;
  color: #714913;
  font-size: 18px;
}

.campaign-conditions ul {
  display: grid;
  gap: 8px 28px;
  margin: 0;
  padding-left: 20px;
  color: #59472f;
  font-size: 14px;
  grid-template-columns: repeat(2, 1fr);
}

.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  text-align: center;
}

.pricing-cta p {
  margin: 0;
  color: var(--ink-soft);
}

.process-grid {
  display: grid;
  gap: 18px;
  counter-reset: process;
  grid-template-columns: repeat(3, 1fr);
}

.process-card {
  position: relative;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.process-card::before {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 50%;
  background: var(--cobalt);
  color: var(--white);
  content: counter(process, decimal-leading-zero);
  counter-increment: process;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 900;
}

.process-card h3 {
  margin: 0 0 10px;
  color: var(--cobalt);
  font-size: 18px;
}

.process-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.trust-grid {
  display: grid;
  align-items: stretch;
  gap: 22px;
  grid-template-columns: 1fr 1fr;
}

.trust-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.trust-card--blue {
  border-color: transparent;
  background: linear-gradient(145deg, var(--cobalt), var(--cobalt-dark));
  color: var(--white);
}

.trust-card h3 {
  margin: 0 0 18px;
  font-size: 24px;
}

.trust-card p {
  margin: 0 0 16px;
  color: var(--ink-soft);
}

.trust-card--blue p {
  color: rgba(255, 255, 255, 0.78);
}

.representative {
  display: grid;
  gap: 9px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.representative dt {
  color: var(--cyan-pale);
  font-size: 12px;
  font-weight: 800;
}

.representative dd {
  margin: 0;
  font-weight: 700;
}

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

.policy-list li {
  position: relative;
  padding: 16px 18px 16px 52px;
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 700;
}

.policy-list li::before {
  position: absolute;
  top: 17px;
  left: 18px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan-pale);
  color: var(--cobalt);
  content: "✓";
  font-size: 13px;
  font-weight: 900;
}

.faq-list {
  display: grid;
  max-width: 920px;
  gap: 10px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.faq-item summary {
  position: relative;
  padding: 18px 60px 18px 24px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  text-wrap: balance;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 12px;
  height: 12px;
  transform: translateY(-70%) rotate(45deg);
  border-right: 2px solid var(--cobalt);
  border-bottom: 2px solid var(--cobalt);
  content: "";
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-20%) rotate(225deg);
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--ink-soft);
}

.faq-answer p {
  margin: 0;
}

.contact-shell {
  position: relative;
  display: grid;
  align-items: start;
  gap: 34px;
  grid-template-columns: 0.78fr 1.22fr;
}

.contact-intro {
  position: sticky;
  top: 110px;
}

.contact-intro h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.4;
}

.contact-intro > p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-points {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.contact-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.contact-points svg {
  width: 21px;
  height: 21px;
  flex: none;
  margin-top: 3px;
  color: var(--sand);
}

.contact-form {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  color: var(--ink);
}

.form-preview-note {
  margin: 0 0 26px;
  padding: 14px 16px;
  border: 1px solid #ead7b7;
  border-radius: 10px;
  background: var(--sand-wash);
  color: #62441d;
  font-size: 13px;
  font-weight: 700;
}

.form-section {
  margin: 0 0 30px;
  padding: 0;
  border: 0;
}

.form-section legend {
  margin-bottom: 14px;
  font-size: 17px;
  font-weight: 900;
}

.required {
  margin-left: 7px;
  color: var(--danger);
  font-size: 11px;
  font-weight: 900;
  vertical-align: 0.1em;
}

.optional {
  margin-left: 7px;
  color: #667085;
  font-size: 11px;
  font-weight: 700;
}

.field-note {
  margin-left: 7px;
  color: #5d6878;
  font-size: 11px;
  font-weight: 700;
}

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

.choice {
  display: flex;
  min-height: 54px;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.choice:has(input:checked) {
  border-color: var(--cobalt);
  background: #eef4ff;
  box-shadow: 0 0 0 1px var(--cobalt);
}

.choice input {
  width: 18px;
  height: 18px;
  flex: none;
  margin: 2px 0 0;
  accent-color: var(--cobalt);
}

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

.field {
  display: grid;
  gap: 7px;
}

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

.field label,
.field-label {
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #b8c7d9;
  border-radius: 10px;
  background: var(--white);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--cobalt);
  box-shadow: 0 0 0 4px rgba(2, 62, 172, 0.1);
  outline: 0;
}

.field [aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.1);
}

.field-error,
.group-error {
  min-height: 20px;
  margin: 0;
  color: var(--danger);
  font-size: 12px;
  font-weight: 700;
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.radio-row .choice {
  min-width: 142px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 6px 0 22px;
  font-size: 14px;
}

.consent input {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 3px;
  accent-color: var(--cobalt);
}

.consent a {
  color: var(--cobalt);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.turnstile-wrap {
  min-height: 65px;
  margin: 0 0 20px;
}

.form-status {
  display: none;
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.form-status--preview {
  border: 1px solid #a6c8ff;
  background: #eff5ff;
  color: #1849a9;
}

.form-status--error {
  border: 1px solid #f7b7b2;
  background: #fff1f0;
  color: var(--danger);
}

.success-dialog {
  width: min(520px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(2, 35, 98, 0.3);
}

.success-dialog::backdrop {
  background: rgba(6, 25, 54, 0.72);
  backdrop-filter: blur(3px);
}

.success-dialog__panel {
  position: relative;
  padding: 42px 38px 36px;
  border: 3px solid var(--cyan-pale);
  border-radius: var(--radius-md);
  background: var(--white);
  text-align: center;
}

.success-dialog__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.success-dialog__close:hover {
  background: var(--cyan-wash);
}

.success-dialog__icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan-wash);
  color: var(--success);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.success-dialog__eyebrow {
  margin: 0 0 8px;
  color: var(--cyan);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.success-dialog h2 {
  margin: 0 0 14px;
  color: var(--cobalt);
  font-size: clamp(23px, 4vw, 30px);
  line-height: 1.45;
}

.success-dialog p:last-of-type {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.success-dialog__nowrap {
  white-space: nowrap;
}

.success-dialog__button {
  min-width: 180px;
  margin-top: 26px;
}

.business-grid {
  display: grid;
  align-items: start;
  gap: 36px;
  grid-template-columns: 0.8fr 1.2fr;
}

.business-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.business-card h3 {
  margin: 0 0 16px;
  color: var(--cobalt);
  font-size: 20px;
}

.business-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.business-card dl div {
  display: grid;
  gap: 4px;
}

.business-card dt {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.business-card dd {
  margin: 0;
  font-weight: 700;
  word-break: break-word;
}

.privacy {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.privacy > summary {
  position: relative;
  padding: 24px 66px 24px 28px;
  cursor: pointer;
  color: var(--cobalt);
  font-size: 19px;
  font-weight: 900;
  list-style: none;
}

.privacy > summary::-webkit-details-marker {
  display: none;
}

.privacy > summary::after {
  position: absolute;
  top: 50%;
  right: 28px;
  width: 12px;
  height: 12px;
  transform: translateY(-70%) rotate(45deg);
  border-right: 2px solid var(--cobalt);
  border-bottom: 2px solid var(--cobalt);
  content: "";
}

.privacy[open] > summary::after {
  transform: translateY(-20%) rotate(225deg);
}

.privacy-body {
  padding: 4px 28px 30px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
}

.privacy-body h3 {
  margin: 30px 0 8px;
  color: var(--ink);
  font-size: 16px;
}

.privacy-body ul {
  padding-left: 20px;
}

.site-footer {
  padding: 44px 0 28px;
  background: var(--cobalt-dark);
  color: var(--white);
}

.footer-grid {
  display: grid;
  align-items: start;
  gap: 40px;
  grid-template-columns: 1fr auto;
}

.footer-copy {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.footer-nav {
  display: grid;
  gap: 10px 28px;
  grid-template-columns: repeat(2, auto);
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.footer-nav a:hover {
  color: var(--white);
}

.copyright {
  margin: 34px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-en);
  font-size: 11px;
  text-align: center;
}

@media (max-width: 1100px) {
  .service-title-mobile-line {
    display: block;
    white-space: nowrap;
  }

  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav > a:not(.button) {
    font-size: 12px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
  }

  .hero-flow {
    gap: 18px;
  }

  .hero-actions {
    max-width: 330px;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

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

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

@media (max-width: 900px) {
  :root {
    --section-space: 72px;
    --section-heading-gap: 36px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero {
    padding: 132px 0 100px;
  }

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

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

  .hero-visual {
    width: min(100%, 720px);
    min-height: 370px;
    margin-inline: auto;
  }

  .hero-bridge {
    width: 90%;
  }

  .journey-rail {
    gap: 24px;
  }

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

  .price-card--featured {
    transform: none;
  }

  .pricing-grid .price-card:last-child {
    grid-column: 1 / -1;
  }

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

  .contact-intro {
    position: static;
  }

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

@media (min-width: 701px) and (max-width: 900px) {
  .journey-title-desktop,
  .problems-title-desktop {
    display: none;
  }

  .journey-title-mobile,
  .problems-title-mobile {
    display: block;
    white-space: nowrap;
  }
}

@media (max-width: 700px) {
  :root {
    --section-space: 52px;
    --section-heading-gap: 26px;
  }

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

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

  .section-title {
    font-size: clamp(27px, 8.2vw, 38px);
  }

  .section-lead {
    font-size: 15px;
  }

  .header-inner {
    height: 70px;
  }

  .site-header {
    position: sticky;
    right: auto;
    left: auto;
    width: 100%;
    background: var(--cobalt);
    backdrop-filter: none;
    transform: translateZ(0);
    -webkit-backdrop-filter: none;
    -webkit-transform: translateZ(0);
  }

  .brand-logo {
    height: 50px;
  }

  .mobile-menu {
    inset: 70px 0 auto;
    max-height: calc(100dvh - 70px);
  }

  .menu-backdrop {
    inset: 70px 0 0;
  }

  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .mobile-jump-nav {
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(2, 62, 172, 0.15);
    border-radius: 17px 17px 0 0;
    background: var(--white);
    box-shadow: 0 -8px 28px rgba(6, 40, 109, 0.16);
    opacity: 0;
    padding-bottom: env(safe-area-inset-bottom);
    pointer-events: none;
    transform: translateZ(0);
    visibility: hidden;
    grid-template-columns: repeat(4, 1fr);
    -webkit-transform: translateZ(0);
  }

  .mobile-jump-nav.is-visible {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .mobile-jump-nav a {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 58px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--ink-soft);
    font-size: 10.5px;
    font-weight: 800;
    line-height: 1.2;
  }

  .mobile-jump-nav a + a {
    border-left: 1px solid var(--line);
  }

  .mobile-jump-nav svg {
    width: 20px;
    height: 20px;
  }

  .mobile-jump-nav a.is-active {
    background: var(--cyan-wash);
    color: var(--cobalt);
  }

  .mobile-jump-nav a:last-child {
    background: var(--cobalt);
    color: var(--white);
  }

  .mobile-jump-nav a:last-child.is-active {
    background: var(--cobalt-deep);
    color: var(--white);
  }

  .hero {
    padding: 18px 0 44px;
  }

  .hero::after {
    bottom: -72px;
    height: 94px;
  }

  .hero-grid {
    gap: 10px;
  }

  .hero-kicker {
    margin-bottom: 8px;
    padding: 6px 11px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: clamp(24px, 6.8vw, 27px);
    letter-spacing: -0.055em;
    line-height: 1.4;
  }

  .hero-title-desktop {
    display: none;
  }

  .hero-title-mobile {
    display: inline;
  }

  .problems-title-desktop {
    display: none;
  }

  .problems-title-mobile,
  .mobile-only-break {
    display: block;
  }

  .journey-title-desktop,
  .process-title-desktop,
  .trust-title-desktop {
    display: none;
  }

  .journey-title-mobile,
  .process-title-mobile,
  .trust-title-mobile,
  .service-title-mobile-line,
  .faq-mobile-line {
    display: block;
  }

  .service-title-mobile-line {
    white-space: nowrap;
  }

  .hero-line-long {
    font-size: 0.94em;
  }

  .hero-lead {
    display: none;
  }

  .hero-actions {
    margin-top: 14px;
  }

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

  .hero-actions .button--outline,
  .hero-note {
    display: none;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-bridge {
    top: 0;
    right: 0;
    width: 100%;
    opacity: 0.28;
  }

  .hero-flow {
    gap: 8px;
  }

  .hero-flow::before {
    top: 36px;
    right: 14%;
    left: 14%;
  }

  .hero-flow-icon {
    width: 54px;
    height: 54px;
    border-width: 3px;
  }

  .hero-flow-icon svg {
    width: 27px;
    height: 27px;
  }

  .mini-browser {
    display: none;
  }

  .hero-flow-label {
    min-height: 46px;
    padding: 8px 5px;
    font-size: 10.5px;
  }

  .journey {
    padding-top: 46px;
  }

  .journey-rail {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .journey-rail::before {
    top: 36px;
    bottom: 36px;
    left: 35px;
    width: 4px;
    height: auto;
    background: linear-gradient(180deg, var(--cobalt), var(--cyan-bright), var(--sand-deep));
  }

  .journey-card {
    display: grid;
    min-height: 142px;
    align-items: start;
    gap: 0 18px;
    padding: 0 0 22px;
    grid-template-columns: 72px 1fr;
    text-align: left;
  }

  .journey-number {
    margin: 0;
    grid-row: 1 / span 2;
  }

  .journey-card h3 {
    margin-top: 10px;
    font-size: 20px;
  }

  .journey-card p {
    font-size: 14px;
  }

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

  .scope-item {
    min-height: 100px;
    gap: 8px;
    padding: 12px 5px;
    font-size: 12px;
    line-height: 1.45;
  }

  .scope-strip {
    padding: 22px 0;
  }

  .scope-icon {
    width: 42px;
    height: 42px;
  }

  .scope-icon svg {
    width: 23px;
    height: 23px;
  }

  .problem-grid,
  .service-grid,
  .pricing-grid,
  .process-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .problem-card:last-child,
  .pricing-grid .price-card:last-child {
    grid-column: auto;
  }

  .problem-grid {
    gap: 0;
    padding: 8px 14px;
  }

  .problem-card,
  .problem-card:nth-child(odd):not(:last-child) {
    min-height: 0;
    gap: 12px;
    padding: 13px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .problem-mark {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .problem-card p {
    font-size: 13px;
    text-wrap: pretty;
  }

  .problem-summary {
    margin-top: 64px;
    padding: 22px 18px;
    font-size: 16px;
    line-height: 1.75;
  }

  #problems-title {
    font-size: clamp(22px, 6.4vw, 25px);
    letter-spacing: -0.04em;
    line-height: 1.55;
  }

  .problems-title-mobile {
    white-space: nowrap;
  }

  #services-title {
    font-size: clamp(20px, 6vw, 24px);
    letter-spacing: -0.035em;
    line-height: 1.55;
  }

  .services-title-line {
    white-space: nowrap;
  }

  .service-card,
  .trust-card {
    padding: 22px 20px;
  }

  .service-grid {
    gap: 14px;
  }

  .service-card {
    padding: 19px 18px;
  }

  .service-label {
    margin-bottom: 8px;
  }

  .service-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.45;
  }

  .service-card > p {
    margin-bottom: 11px;
    font-size: 13px;
    line-height: 1.65;
  }

  .check-list {
    gap: 4px;
  }

  .check-list li {
    padding-left: 23px;
    font-size: 12px;
    line-height: 1.6;
  }

  .pricing-intro {
    display: block;
  }

  .campaign-badge {
    margin-top: 20px;
  }

  .price-card {
    padding: 26px 22px 24px;
  }

  .price-card > p:not(.price) {
    min-height: 0;
  }

  .aftercare {
    margin-top: 24px;
    padding: 20px 16px;
  }

  .aftercare-head {
    display: block;
    margin-bottom: 16px;
  }

  .aftercare h3 {
    font-size: 20px;
  }

  .aftercare-title-desktop {
    display: none;
  }

  .aftercare-title-mobile {
    display: block;
  }

  .aftercare-lead {
    font-size: 13px;
  }

  .aftercare-badge {
    display: inline-flex;
    margin-top: 12px;
  }

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

  .aftercare-item {
    padding: 15px 14px;
  }

  .aftercare-item-head {
    display: block;
  }

  .aftercare-price {
    margin-top: 3px;
  }

  .campaign-conditions {
    margin-top: 24px;
    padding: 20px 18px;
  }

  .campaign-conditions ul {
    grid-template-columns: 1fr;
  }

  .pricing-cta {
    display: grid;
  }

  .process-card {
    min-height: 0;
    display: grid;
    gap: 3px 14px;
    padding: 16px;
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .process-grid {
    gap: 10px;
  }

  .process-card::before {
    width: 38px;
    height: 38px;
    margin: 0;
    grid-row: 1 / span 2;
  }

  .process-card h3 {
    margin: 1px 0 3px;
    font-size: 16px;
    line-height: 1.45;
  }

  .process-card p {
    font-size: 12px;
    line-height: 1.65;
  }

  .trust-grid {
    gap: 14px;
  }

  .trust-card h3 {
    margin-bottom: 12px;
    font-size: 21px;
    line-height: 1.55;
  }

  .trust-card p {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .policy-list {
    gap: 7px;
  }

  .policy-list li {
    min-height: 38px;
    padding: 10px 10px 10px 42px;
    font-size: 12px;
    line-height: 1.5;
  }

  .policy-list li::before {
    top: 9px;
    left: 12px;
    width: 21px;
    height: 21px;
    font-size: 11px;
  }

  .faq-list {
    gap: 8px;
  }

  .faq-item summary {
    padding: 15px 48px 15px 17px;
    font-size: 14px;
    line-height: 1.55;
  }

  .faq-item summary::after {
    right: 19px;
  }

  .faq-answer {
    padding: 0 17px 16px;
    font-size: 13px;
    line-height: 1.7;
  }

  .contact-form {
    padding: 24px 18px;
    border-radius: var(--radius-md);
  }

  .success-dialog__panel {
    padding: 38px 22px 28px;
  }

  .success-dialog h2 {
    font-size: 23px;
  }

  .success-dialog__title-line {
    display: block;
  }

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

  .privacy > summary {
    padding: 20px 56px 20px 20px;
  }

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

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

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

  /* Mobile body typography: primary 15–16px, supporting 14px, notes 12px. */
  main p,
  main li,
  main summary,
  main label {
    word-break: auto-phrase;
  }

  .section-lead {
    font-size: 16px;
    line-height: 1.75;
  }

  .journey-card p,
  .service-card > p:not(.service-label),
  .price-card > p:not(.price):not(.price-note),
  .price-list li,
  .aftercare-lead,
  .aftercare-item > p:last-child,
  .campaign-conditions ul,
  .trust-card p,
  .faq-answer,
  .contact-intro > p:not(.eyebrow),
  .contact-points li {
    font-size: 15px;
    line-height: 1.75;
  }

  .problem-card p {
    font-size: 15px;
    line-height: 1.65;
  }

  .check-list li,
  .process-card p,
  .policy-list li,
  .form-preview-note,
  .choice {
    font-size: 14px;
    line-height: 1.65;
  }

  .faq-item summary {
    font-size: 15px;
  }

  .price-card > p.price-note,
  .aftercare-note {
    font-size: 12px;
    line-height: 1.75;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(calc(100% - 24px), var(--content));
  }

  .hero h1 {
    font-size: 22px;
  }

  .hero-flow-label {
    min-height: 64px;
    font-size: 10px;
  }

  .scope-item {
    min-height: 96px;
    font-size: 11.5px;
  }

  .scope-icon {
    width: 38px;
    height: 38px;
  }

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

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

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