@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");

:root {
  --white: #ffffff;
  --ice: #f4fbff;
  --sky-50: #e8f7ff;
  --sky-100: #d6f1ff;
  --sky-300: #8bd6f5;
  --sky-500: #45b8e8;
  --sky-600: #208fbe;
  --navy: #123b56;
  --navy-soft: #31556d;
  --ink: #173144;
  --muted: #617786;
  --line: #cfe4ee;
  --mint: #a7eadc;
  --shadow-sm: 0 10px 28px rgba(18, 59, 86, 0.08);
  --shadow-lg: 0 24px 64px rgba(18, 59, 86, 0.12);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --content: 1184px;
  --header-height: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

.contact-form[aria-busy="true"] {
  opacity: 0.78;
}

.contact-form .button:disabled {
  cursor: wait;
  filter: grayscale(0.25);
}

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

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

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

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

:focus-visible {
  outline: 3px solid var(--sky-500);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

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

.section {
  padding-block: 80px;
}

.section--tint {
  background: var(--ice);
}

.section--blue {
  background: var(--sky-50);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--sky-600);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  background: var(--sky-500);
  border-radius: 99px;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: 0.025em;
}

h1 {
  font-size: clamp(38px, 5vw, 64px);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3.8vw, 44px);
}

h3 {
  font-size: 21px;
}

.lead {
  color: var(--navy-soft);
  font-size: 18px;
}

.muted {
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 25px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 8px 20px rgba(18, 59, 86, 0.16);
  font-weight: 700;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.25s ease;
}

.button::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}

.button:hover {
  background: #1e506d;
  box-shadow: 0 12px 28px rgba(18, 59, 86, 0.2);
  transform: translateY(-2px);
}

.button:hover::after {
  transform: translateX(4px);
}

.button--light {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
  box-shadow: none;
}

.button--light:hover {
  background: var(--sky-50);
}

.button--sky {
  color: var(--navy);
  background: var(--sky-300);
  border-color: var(--sky-300);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sky-600);
  font-weight: 700;
}

.text-link::after {
  content: "↗";
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(207, 228, 238, 0.8);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 36px), 1320px);
  height: 100%;
  margin-inline: auto;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--navy);
  background: var(--sky-100);
  border-radius: 13px 18px 13px 18px;
  transform: rotate(-4deg);
}

.brand-mark svg {
  width: 25px;
}

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

.nav-list {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.nav-list a {
  position: relative;
  display: block;
  padding-block: 8px;
  color: var(--navy-soft);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-list a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--sky-500);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s var(--ease);
}

.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-height: 42px;
  padding: 8px 18px;
  font-size: 14px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  border: 0;
  color: var(--navy);
  background: var(--sky-50);
  border-radius: 15px;
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 21px;
  height: 2px;
  margin: auto;
  content: "";
  background: currentColor;
  border-radius: 99px;
  transition: transform 0.35s var(--ease), opacity 0.2s ease;
}

.menu-lines::before {
  transform: translateY(-7px);
}

.menu-lines::after {
  transform: translateY(5px);
}

.menu-button[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-lines::before {
  transform: translateY(2px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-lines::after {
  transform: translateY(0) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 58px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -220px;
  left: -180px;
  width: 560px;
  height: 560px;
  content: "";
  background: var(--sky-50);
  border-radius: 42% 58% 63% 37% / 49% 41% 59% 51%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: 46px;
}

.hero-copy h1 {
  margin-bottom: 24px;
}

.hero-copy .lead {
  max-width: 590px;
  margin-bottom: 32px;
}

.hero-highlight {
  position: relative;
  z-index: 0;
  white-space: nowrap;
}

.hero-highlight::after {
  position: absolute;
  z-index: -1;
  right: -4px;
  bottom: 5px;
  left: -4px;
  height: 14px;
  content: "";
  background: var(--sky-300);
  border-radius: 99px 12px 99px 18px;
  opacity: 0.55;
  transform: rotate(-1deg);
}

.hero-visual {
  overflow: hidden;
  background: var(--sky-50);
  border: 8px solid var(--white);
  border-radius: 37px 22px 44px 26px;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.3deg);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.metrics {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: 44px;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.metric {
  padding: 23px 28px;
  text-align: center;
}

.metric + .metric {
  border-left: 1px solid var(--line);
}

.metric strong {
  display: block;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.15;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.card-body {
  padding: 25px 27px 29px;
}

.card-body p:last-child {
  margin-bottom: 0;
}

.strength-card {
  padding: 28px 27px 31px;
  text-align: center;
}

.strength-card:nth-child(2) {
  transform: translateY(18px);
}

.strength-card:nth-child(2):hover {
  transform: translateY(12px);
}

.strength-card img {
  width: 150px;
  height: 150px;
  margin: 0 auto 22px;
  object-fit: contain;
}

.number-tag {
  display: inline-flex;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--sky-100);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
}

.course-card img,
.work-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.pill {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 11px;
  color: var(--navy);
  background: var(--sky-100);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.feature-list {
  margin: 17px 0 23px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 5px 0 5px 24px;
}

.feature-list li::before {
  position: absolute;
  top: 9px;
  left: 0;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  content: "✓";
  color: var(--navy);
  background: var(--mint);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 31px 27px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.price-card--featured {
  border: 2px solid var(--sky-500);
  box-shadow: var(--shadow-lg);
}

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

.price {
  margin: 17px 0;
  color: var(--navy);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
}

.price small {
  font-size: 13px;
  font-weight: 500;
}

.price-note {
  margin-top: 21px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

/* Process */
.process-visual {
  overflow: hidden;
  margin-bottom: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.process-visual img {
  width: 100%;
}

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

.step {
  padding: 24px 21px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.step-number {
  display: block;
  margin-bottom: 9px;
  color: var(--sky-600);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

/* Voices */
.voice-card {
  padding: 29px;
}

.voice-head {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  gap: 15px;
}

.avatar {
  display: grid;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy);
  background: var(--sky-100);
  border: 2px solid var(--white);
  border-radius: 19px 26px 19px 26px;
  box-shadow: 0 0 0 1px var(--line);
  font-size: 18px;
  font-weight: 700;
  transform: rotate(-3deg);
}

.voice-meta strong,
.voice-meta span {
  display: block;
}

.voice-meta span {
  color: var(--muted);
  font-size: 13px;
}

.result-badge {
  display: inline-flex;
  margin-top: 12px;
  padding: 6px 12px;
  color: var(--navy);
  background: var(--mint);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

/* CTA */
.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 58px 52px;
  background: var(--navy);
  border-radius: 46px 28px 52px 32px;
  color: var(--white);
}

.cta-panel::before,
.cta-panel::after {
  position: absolute;
  content: "";
  background: var(--sky-500);
  border-radius: 50%;
  opacity: 0.28;
}

.cta-panel::before {
  top: -100px;
  right: -60px;
  width: 260px;
  height: 260px;
}

.cta-panel::after {
  bottom: -60px;
  left: 35%;
  width: 140px;
  height: 140px;
}

.cta-panel h2,
.cta-panel .lead {
  color: var(--white);
}

.cta-intro {
  position: relative;
  z-index: 1;
  max-width: 710px;
  margin: 0 auto 32px;
  text-align: center;
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.cta-option {
  padding: 25px;
  color: var(--ink);
  background: var(--white);
  border-radius: 20px;
  text-align: center;
  transition: transform 0.25s var(--ease), background 0.25s ease;
}

.cta-option:hover {
  background: var(--sky-50);
  transform: translateY(-5px) rotate(-0.4deg);
}

.cta-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin: 0 auto 13px;
  place-items: center;
  color: var(--navy);
  background: var(--sky-100);
  border-radius: 17px;
  font-size: 23px;
}

/* Lower-page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 66px;
  background: var(--ice);
}

.page-hero::after {
  position: absolute;
  right: -70px;
  bottom: -135px;
  width: 360px;
  height: 290px;
  content: "";
  background: var(--sky-100);
  border-radius: 54% 46% 38% 62%;
  transform: rotate(12deg);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 56px);
}

.breadcrumbs {
  display: flex;
  margin: 0 0 25px;
  padding: 0;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-right: 9px;
  content: "/";
}

/* Content layouts */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 58px;
}

.split--reverse .split-media {
  order: -1;
}

.split-media {
  overflow: hidden;
  background: var(--sky-50);
  border-radius: 32px 20px 39px 24px;
  box-shadow: var(--shadow-sm);
}

.split-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.split-media .wp-block-image {
  margin: 0;
}

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

.info-list li {
  display: grid;
  padding: 18px 4px;
  grid-template-columns: 150px 1fr;
  border-bottom: 1px solid var(--line);
}

.info-list strong {
  color: var(--navy);
}

.note-box {
  padding: 27px 30px;
  background: var(--sky-50);
  border-left: 4px solid var(--sky-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Works filters */
.filters {
  margin-bottom: 36px;
  padding: 27px;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.filter-group {
  display: grid;
  padding-block: 13px;
  grid-template-columns: 110px 1fr;
  gap: 15px;
  align-items: start;
}

.filter-group + .filter-group {
  border-top: 1px solid var(--line);
}

.filter-label {
  padding-top: 7px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button,
.filter-reset {
  padding: 7px 15px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  transition: color 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.filter-button[aria-pressed="true"] {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.filter-summary {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.filter-summary p {
  margin: 0;
  font-weight: 700;
}

.work-card[hidden] {
  display: none;
}

.work-tags {
  display: flex;
  margin-top: 17px;
  flex-wrap: wrap;
  gap: 7px;
}

.work-tags span {
  padding: 4px 9px;
  color: var(--muted);
  background: var(--ice);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.empty-state {
  padding: 52px 24px;
  background: var(--ice);
  border-radius: var(--radius-md);
  text-align: center;
}

/* Form */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  gap: 40px;
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: 31px;
  background: var(--navy);
  border-radius: 30px 20px 36px 24px;
  color: var(--white);
}

.contact-aside h2,
.contact-aside h3 {
  color: var(--white);
}

.contact-aside ul {
  padding-left: 1.25em;
}

.contact-form {
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 25px;
}

.form-label,
.form-legend {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-weight: 700;
}

.required {
  margin-left: 7px;
  color: #a34848;
  font-size: 12px;
}

.form-control {
  width: 100%;
  min-height: 50px;
  padding: 11px 14px;
  border: 1px solid #abc8d6;
  background: var(--white);
  border-radius: 12px;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

textarea.form-control {
  min-height: 170px;
  resize: vertical;
}

.form-control:focus {
  border-color: var(--sky-600);
  box-shadow: 0 0 0 4px rgba(69, 184, 232, 0.17);
  outline: 0;
}

.form-control[aria-invalid="true"] {
  border-color: #a34848;
}

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

.radio-card {
  display: block;
}

.radio-card input {
  position: absolute;
  opacity: 0;
}

.radio-card span {
  display: grid;
  min-height: 54px;
  padding: 10px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.radio-card input:checked + span {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.radio-card input:focus-visible + span {
  outline: 3px solid var(--sky-500);
  outline-offset: 3px;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 4px;
  accent-color: var(--navy);
}

.form-error {
  margin: 7px 0 0;
  color: #923b3b;
  font-size: 13px;
  font-weight: 700;
}

.error-summary {
  margin-bottom: 24px;
  padding: 17px 20px;
  color: #742c2c;
  background: #fff2f2;
  border: 1px solid #e8baba;
  border-radius: 12px;
}

.success-panel {
  padding: 58px 32px;
  background: var(--sky-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: center;
}

.success-panel[hidden] {
  display: none;
}

/* Footer */
.site-footer {
  padding: 58px 0 26px;
  color: #d8e9f1;
  background: #0d2f44;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 42px;
}

.footer-brand .brand {
  margin-bottom: 18px;
  color: var(--white);
}

.footer-brand p {
  max-width: 300px;
  color: #b9d0dc;
  font-size: 14px;
}

.footer-heading {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 14px;
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #b9d0dc;
  font-size: 13px;
}

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

.footer-bottom {
  display: flex;
  margin-top: 46px;
  padding-top: 21px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(207, 228, 238, 0.17);
  color: #9eb9c7;
  font-size: 12px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 13px;
  }

  .nav-list {
    gap: 13px;
  }

  .nav-list a {
    font-size: 13px;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 64px;
  }

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

  .section {
    padding-block: 80px;
  }

  .section-heading {
    margin-bottom: 32px;
    text-align: left;
  }

  .section-heading .eyebrow {
    justify-content: flex-start;
  }

  .brand {
    font-size: 17px;
  }

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

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: -1;
    inset: var(--header-height) 0 auto;
    display: block;
    padding: 22px 17px 28px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 0.28s ease, transform 0.38s var(--ease);
  }

  .site-nav.is-open {
    z-index: 999;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-list {
    display: block;
  }

  .nav-list li + li {
    border-top: 1px solid var(--line);
  }

  .nav-list a {
    padding: 14px 8px;
    font-size: 15px;
  }

  .nav-list a::after {
    display: none;
  }

  .site-nav .header-cta {
    display: flex;
    width: 100%;
    margin-top: 18px;
  }

  .hero {
    padding: 49px 0 42px;
  }

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

  .hero-grid {
    gap: 36px;
  }

  .hero-copy h1 {
    font-size: clamp(37px, 11vw, 50px);
  }

  .hero-highlight {
    white-space: normal;
  }

  .hero-visual {
    border-width: 5px;
    border-radius: 25px 16px 31px 19px;
    transform: none;
  }

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

  .metric {
    display: flex;
    padding: 18px 22px;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .metric + .metric {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .card-grid,
  .pricing-grid,
  .steps,
  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .strength-card:nth-child(2),
  .strength-card:nth-child(2):hover {
    transform: none;
  }

  .steps,
  .card-grid,
  .pricing-grid {
    gap: 16px;
  }

  .cta-panel {
    padding: 44px 18px 22px;
    border-radius: 31px 19px 36px 23px;
  }

  .page-hero {
    padding: 55px 0 50px;
  }

  .split {
    gap: 30px;
  }

  .split--reverse .split-media {
    order: 0;
  }

  .filter-group {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .filter-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-aside {
    position: static;
  }

  .contact-form {
    padding: 27px 19px;
  }

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

  .info-list li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .footer-grid {
    gap: 28px;
  }

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

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

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

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