:root {
  --navy: #164E96;
  --navy-deep: #0d2948;
  --blue: #2f6bff;
  --blue-dark: #1f57db;
  --cyan: #28b8e8;
  --orange: #ff8a3d;
  --orange-dark: #f97316;
  --ink: #333333;
  --muted: #66768a;
  --line: #dce6f1;
  --bg: #f5f8fc;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(22, 58, 99, 0.08);
  --shadow-md: 0 18px 50px rgba(22, 58, 99, 0.13);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
  --reading: 800px;
  --header-height: 76px;
}

*,
*::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: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.035em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
summary {
  font: inherit;
}

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.35;
  letter-spacing: 0.02em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
}

h3 {
  font-size: 1.2rem;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-140%);
  transition: transform 0.2s;
}

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

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

.container-wide {
  width: min(calc(100% - 48px), 1320px);
}

.section {
  position: relative;
  padding: 120px 0;
}

.section-shell {
  position: relative;
  overflow: hidden;
}

.section-heading {
  max-width: var(--reading);
  margin: 0 auto 64px;
  text-align: center;
}

.section-heading > p:last-child {
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 2;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.section-label::before {
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  content: "";
}

.section-heading .section-label,
.light-heading .section-label {
  justify-content: center;
}

.sp-only {
  display: none;
}

.pc-only {
  display: inline;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 62px;
  padding: 15px 30px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.button span {
  font-size: 1.25em;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ff9a55);
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  box-shadow: 0 18px 36px rgba(249, 115, 22, 0.34);
  transform: translateY(-3px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(47, 107, 255, 0.4);
  outline-offset: 4px;
}

.button-wide {
  min-width: min(100%, 440px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 230, 241, 0.75);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s, background-color 0.25s;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 6px 24px rgba(22, 58, 99, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), 1380px);
  height: 100%;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), var(--cyan));
  border-radius: 13px;
  font-size: 0.85rem;
  letter-spacing: 0;
  box-shadow: 0 8px 22px rgba(47, 107, 255, 0.22);
}

.brand-copy small {
  display: block;
  margin-bottom: 3px;
  color: var(--blue);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
}

.header-brand {
  width: auto;
  height: auto;
}

.header-logo {
  position: static;
  display: block;
  width: auto;
  height: 60px;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 26px);
  color: #43546a;
  font-size: 0.78rem;
  font-weight: 700;
}

.global-nav > a:not(.nav-cta) {
  position: relative;
  padding: 12px 0;
}

.global-nav > a:not(.nav-cta)::after {
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transition: width 0.25s;
}

.global-nav > a:hover::after,
.global-nav > a:focus-visible::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 23px;
  color: var(--white);
  background: var(--orange);
  border-radius: 100px;
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.2);
}

.nav-cta:hover {
  background: var(--orange-dark);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: var(--bg);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  padding: 72px 0 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(40, 184, 232, 0.08), transparent 28%),
    linear-gradient(135deg, #fff 0%, #f8fbff 58%, #eef6ff 100%);
}

.hero::after {
  position: absolute;
  right: -7vw;
  bottom: 3%;
  width: 55vw;
  height: 55vw;
  border: 1px solid rgba(47, 107, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-orb-a {
  top: 13%;
  left: -120px;
  width: 300px;
  height: 300px;
  background: rgba(40, 184, 232, 0.08);
}

.hero-orb-b {
  top: 5%;
  right: 20%;
  width: 220px;
  height: 220px;
  background: rgba(127, 92, 255, 0.07);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(450px, 0.88fr) minmax(560px, 1.12fr);
  align-items: center;
  gap: 54px;
}

.hero-copy {
  padding: 42px 0 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 16px;
  color: var(--blue);
  background: rgba(47, 107, 255, 0.07);
  border: 1px solid rgba(47, 107, 255, 0.14);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 800;
}

.eyebrow span {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
}

.hero h1 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 5.4vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.hero h1 span {
  color: var(--blue);
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 24px;
  color: #53667c;
  font-size: 1.05rem;
  line-height: 2;
}

.hero-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 20px 0 0;
}

.hero-flow span {
  padding: 7px 13px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 5px 15px rgba(22, 58, 99, 0.05);
}

.hero-flow i {
  color: var(--blue);
  font-style: normal;
  font-weight: 900;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 0.72rem;
}

.hero-trust span {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.hero-trust strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 42px 0 0 42px;
  box-shadow: 0 28px 70px rgba(22, 58, 99, 0.18);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), transparent 28%);
  content: "";
}

.hero-image-wrap img {
  width: 100%;
  aspect-ratio: 1.24 / 1;
  object-fit: cover;
  object-position: 88% center;
}

.float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 17px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  animation: float-card 5s ease-in-out infinite;
}

.float-card span {
  display: grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  padding: 0 5px;
  color: var(--white);
  background: var(--blue);
  border-radius: 9px;
  font-size: 0.7rem;
}

.float-card-top {
  top: 9%;
  left: -7%;
}

.float-card-bottom {
  right: 5%;
  bottom: 7%;
  animation-delay: -2s;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-note {
  position: relative;
  z-index: 2;
  margin-top: 50px;
  transform: translateY(30px);
}

.hero-note p {
  max-width: 980px;
  margin: 0 auto;
  padding: 25px 34px;
  color: #4b6076;
  background: var(--white);
  border: 1px solid rgba(47, 107, 255, 0.1);
  border-radius: 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.hero-note strong {
  color: var(--navy);
}

.hero.hero-image-section {
  min-height: 0;
  padding: 0;
  background: var(--white);
}

.hero.hero-image-section::after {
  display: none;
}

.hero .hero-image-title {
  margin: 0;
  font-size: 0;
  line-height: 0;
}

.hero-image-title picture {
  display: block;
}

.hero-main-image {
  width: 100%;
  height: auto;
}

.hero-image-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 24px 36px;
  text-align: center;
}

.hero-image-cta .button {
  width: min(calc(100% - 32px), 580px);
  min-width: 0;
  min-height: 70px;
  padding: 17px 42px;
  font-size: 20px;
}

.hero-image-cta p {
  margin: 14px 0 0;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
}

.change-section {
  padding-top: 150px;
  background: var(--white);
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: center;
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
}

.reading-block {
  max-width: 880px;
  margin: 44px auto 0;
  padding: 34px 40px;
  color: #50657b;
  background: #f8fbff;
  border: 1px solid rgba(47, 107, 255, 0.12);
  border-radius: 20px;
  font-size: 0.92rem;
  line-height: 2.05;
  box-shadow: 0 9px 26px rgba(22, 58, 99, 0.05);
}

.reading-block p {
  margin-bottom: 1.25em;
}

.reading-block p:last-child {
  margin-bottom: 0;
}

.reading-block + .message-card {
  margin-top: 28px;
}

.compare-card {
  position: relative;
  min-height: 350px;
  padding: 34px;
  border-radius: var(--radius);
}

.compare-before {
  color: #657386;
  background: #f2f4f7;
  border: 1px solid #e2e6eb;
}

.compare-after {
  color: #3f5b75;
  background: linear-gradient(145deg, #f3f8ff, #edf5ff);
  border: 1px solid rgba(47, 107, 255, 0.2);
  box-shadow: var(--shadow-md);
}

.compare-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(120, 140, 160, 0.17);
}

.compare-title span {
  color: var(--navy);
  font-size: 1.4rem;
  font-weight: 900;
}

.compare-after .compare-title span {
  color: var(--blue);
}

.compare-title small {
  color: #8b98a7;
  font-size: 0.68rem;
}

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

.check-list li {
  position: relative;
  padding-left: 33px;
}

.check-list li::before {
  position: absolute;
  top: 4px;
  left: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.65rem;
  line-height: 1;
}

.muted-list li::before {
  color: #8c98a5;
  background: #e1e5e9;
  content: "−";
}

.blue-list li::before {
  color: var(--white);
  background: var(--blue);
  content: "✓";
}

.compare-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--blue);
}

.compare-arrow span {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), var(--cyan));
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: 0 15px 30px rgba(47, 107, 255, 0.25);
}

.compare-arrow small {
  font-size: 0.65rem;
  font-weight: 800;
}

.message-card {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 940px;
  margin: 48px auto 0;
  padding: 26px 32px;
  background: var(--white);
  border-left: 4px solid var(--cyan);
  border-radius: 0 18px 18px 0;
  box-shadow: var(--shadow-sm);
}

.message-card p {
  margin: 0;
}

.message-card strong {
  color: var(--navy);
}

.message-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--blue);
  border-radius: 14px;
}

.dark-section {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.dark-section::before {
  position: absolute;
  top: -200px;
  right: -120px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  content: "";
}

.narrow-center {
  max-width: 1060px;
}

.light-heading h2 {
  color: var(--white);
}

.light-heading > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.light-heading .section-label {
  color: #74d7f6;
}

.light-heading .section-label::before {
  background: #74d7f6;
}

.business-range {
  display: grid;
  grid-template-columns: 1fr 50px 1fr 50px 1fr;
  align-items: center;
  gap: 18px;
}

.business-range > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 180px;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  text-align: center;
}

.business-range div span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  color: #8ee3ff;
  background: rgba(40, 184, 232, 0.12);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.business-range div strong {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.2rem;
}

.business-range div small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.76rem;
}

.business-range > i {
  color: #74d7f6;
  font-size: 1.6rem;
  font-style: normal;
  text-align: center;
}

.reading-block-dark {
  max-width: 840px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.center-callout {
  margin: 46px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.15rem;
  text-align: center;
}

.center-callout strong {
  color: var(--white);
  font-size: 1.35rem;
}

.steps-section {
  background: var(--bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.step-card {
  position: relative;
  min-height: 340px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(218, 229, 240, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(22, 58, 99, 0.05);
}

.step-card:not(:nth-child(3n))::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -20px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid rgba(47, 107, 255, 0.2);
  border-radius: 50%;
  content: "→";
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 5px 14px rgba(22, 58, 99, 0.08);
}

.step-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  color: var(--blue);
}

.step-head span {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.step-head strong {
  color: rgba(47, 107, 255, 0.14);
  font-size: 2.3rem;
  line-height: 1;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 19px;
  color: var(--blue);
  background: rgba(47, 107, 255, 0.08);
  border-radius: 17px;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0;
}

.step-card h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.85;
}

.step-key {
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-dark), var(--blue));
  border-color: transparent;
  box-shadow: 0 18px 45px rgba(47, 107, 255, 0.25);
}

.step-key .step-head,
.step-key h3,
.step-key p {
  color: var(--white);
}

.step-key .step-head strong {
  color: rgba(255, 255, 255, 0.22);
}

.step-key .step-icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.step-goal {
  background: linear-gradient(145deg, #f4faff, #e9f5ff);
  border-color: rgba(40, 184, 232, 0.3);
}

.step-goal .step-icon {
  color: #008dbb;
  background: rgba(40, 184, 232, 0.12);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(55px, 7vw, 100px);
}

.image-left {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.media-panel {
  position: relative;
}

.media-panel img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.media-badge {
  position: absolute;
  top: -18px;
  left: 28px;
  padding: 11px 20px;
  color: var(--white);
  background: var(--blue);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(47, 107, 255, 0.25);
}

.split-copy h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.split-copy h2 span {
  color: var(--blue);
}

.split-copy > p:not(.section-label):not(.accent-note):not(.small-note) {
  color: var(--muted);
}

.made-section {
  background: var(--white);
}

.made-story {
  width: min(calc(100% - 48px), 940px);
  margin-top: 58px;
  padding: 40px 46px;
  color: #52677d;
  background: linear-gradient(145deg, #f8fbff, #f1f7ff);
  border: 1px solid rgba(47, 107, 255, 0.12);
  border-radius: 22px;
  font-size: 0.91rem;
  line-height: 2.05;
  box-shadow: var(--shadow-sm);
}

.made-story p {
  margin-bottom: 1.25em;
}

.made-mini-flow {
  display: grid;
  grid-template-columns: 1fr 42px 1fr 42px 1.35fr;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}

.made-mini-flow span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 62px;
  padding: 12px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(47, 107, 255, 0.14);
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
}

.made-mini-flow small {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.55rem;
}

.made-mini-flow i {
  color: var(--blue);
  font-style: normal;
  font-weight: 900;
  text-align: center;
}

.pitch-compare {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  gap: 10px;
  margin: 30px 0 24px;
}

.pitch-compare > div:not(.pitch-arrow) {
  min-height: 155px;
  padding: 20px;
  border-radius: 17px;
}

.pitch-compare small,
.pitch-compare strong,
.pitch-compare span {
  display: block;
}

.pitch-compare small {
  margin-bottom: 7px;
  font-size: 0.65rem;
  font-weight: 800;
}

.pitch-compare strong {
  margin-bottom: 7px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.pitch-compare span {
  font-size: 0.65rem;
}

.pitch-old {
  color: #778391;
  background: #f1f3f5;
}

.pitch-old strong {
  color: #596674;
}

.pitch-new {
  color: #5276a3;
  background: #eef5ff;
  border: 1px solid rgba(47, 107, 255, 0.22);
  box-shadow: var(--shadow-sm);
}

.pitch-new strong {
  color: var(--blue);
}

.pitch-arrow {
  color: var(--blue);
  font-size: 1.4rem;
  font-weight: 900;
  text-align: center;
}

.accent-note {
  margin: 0;
  padding: 18px 20px;
  color: var(--navy);
  background: linear-gradient(90deg, rgba(47, 107, 255, 0.08), rgba(40, 184, 232, 0.05));
  border-left: 3px solid var(--blue);
  border-radius: 0 12px 12px 0;
  font-size: 0.86rem;
  font-weight: 700;
}

.prospect-section {
  background: var(--bg);
}

.prospect-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 22px;
}

.prospect-tags span {
  position: relative;
  padding: 9px 15px 9px 33px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 700;
  box-shadow: 0 7px 15px rgba(22, 58, 99, 0.05);
}

.prospect-tags span::before {
  position: absolute;
  top: 50%;
  left: 13px;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.small-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.prospect-media img {
  aspect-ratio: 1.55 / 1;
}

.result-chip {
  position: absolute;
  padding: 9px 15px;
  color: var(--white);
  background: rgba(22, 58, 99, 0.92);
  border-radius: 9px;
  font-size: 0.68rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(22, 58, 99, 0.2);
}

.result-chip-a {
  top: 9%;
  right: -18px;
}

.result-chip-b {
  bottom: 8%;
  left: -18px;
  background: rgba(47, 107, 255, 0.94);
}

.beginner-section {
  background: var(--white);
}

.beginner-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin-top: 58px;
}

.beginner-detail-card {
  padding: 27px 25px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.beginner-detail-card > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid rgba(47, 107, 255, 0.12);
  border-radius: 13px;
  font-size: 0.9rem;
  font-weight: 900;
}

.beginner-detail-card h3 {
  margin-bottom: 10px;
  font-size: 1.02rem;
}

.beginner-detail-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.9;
}

.beginner-growth {
  justify-content: center;
  max-width: 900px;
  margin-top: 28px;
}

.beginner-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}

.beginner-checks span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  color: var(--navy);
  background: var(--bg);
  border-radius: 12px;
  font-size: 0.76rem;
  font-weight: 800;
}

.beginner-checks i {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.6rem;
  font-style: normal;
}

.growth-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: var(--navy);
  font-size: 0.74rem;
}

.growth-line strong {
  padding: 5px 9px;
  background: rgba(47, 107, 255, 0.08);
  border-radius: 6px;
}

.growth-line i {
  color: var(--blue);
  font-style: normal;
}

.learn-section {
  background: var(--bg);
}

.learn-intro {
  margin-top: -18px;
  background: var(--white);
}

.learn-intro + .learn-tabs {
  margin-top: 34px;
}

.learn-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: -20px 0 40px;
}

.learn-tab {
  min-width: 100px;
  padding: 10px 18px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.learn-tab.is-active {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.learn-card {
  min-height: 220px;
  padding: 23px 20px;
  background: var(--white);
  border: 1px solid rgba(220, 230, 241, 0.8);
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(22, 58, 99, 0.04);
  transition: opacity 0.25s, transform 0.25s;
}

.learn-card.is-hidden {
  display: none;
}

.learn-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 17px;
  color: var(--blue);
  background: linear-gradient(145deg, #eef5ff, #f6fbff);
  border: 1px solid rgba(47, 107, 255, 0.12);
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0;
}

.learn-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.learn-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.75;
}

.dual-strength {
  display: grid;
  grid-template-columns: 1fr 50px 1fr;
  align-items: center;
  max-width: 880px;
  margin: 50px auto 0;
  padding: 30px 40px;
  background: linear-gradient(135deg, var(--navy), #174b81);
  border-radius: 22px;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.dual-strength > span {
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-weight: 800;
}

.dual-strength > i {
  color: #73d6f5;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 900;
}

.dual-strength strong {
  grid-column: 1 / -1;
  margin-top: 16px;
  color: #dfeeff;
  font-size: 0.82rem;
}

.sell-note {
  max-width: 880px;
  margin: 30px auto 0;
  padding: 28px 34px;
  color: #52677d;
  background: #eaf4ff;
  border-left: 4px solid var(--blue);
  border-radius: 0 16px 16px 0;
  font-size: 0.86rem;
  line-height: 2;
}

.sell-note p {
  margin-bottom: 1em;
}

.sell-note p:last-child {
  margin-bottom: 0;
}

.curriculum-section {
  background: var(--white);
}

.phase-bar {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 16px;
  max-width: 700px;
  margin: -10px auto 48px;
}

.phase-bar span {
  display: grid;
  place-items: center;
  width: 78px;
  height: 38px;
  color: var(--blue);
  background: #edf4ff;
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 900;
}

.phase-bar span:nth-of-type(2) {
  color: #007fa8;
  background: #e8f9ff;
}

.phase-bar span:nth-of-type(3) {
  color: var(--white);
  background: var(--navy);
}

.phase-bar i {
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

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

.month-card {
  position: relative;
  overflow: hidden;
  min-height: 475px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 9px 28px rgba(22, 58, 99, 0.06);
}

.month-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  content: "";
}

.month-number {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--blue);
}

.month-number small {
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.month-number strong {
  font-size: 2.55rem;
  line-height: 1;
}

.phase-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 900;
}

.phase-learn { color: var(--blue); background: #edf4ff; }
.phase-practice { color: #0082ad; background: #eafaff; }
.phase-work { color: #fff; background: var(--navy); }

.month-card h3 {
  min-height: 64px;
  margin-bottom: 13px;
}

.month-card > p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.85;
}

.month-card ul {
  display: grid;
  gap: 7px;
  margin: 20px 0 24px;
  padding: 17px 18px;
  background: var(--bg);
  border-radius: 13px;
  list-style: none;
}

.month-card li {
  position: relative;
  padding-left: 17px;
  color: #52677d;
  font-size: 0.73rem;
}

.month-card li::before {
  position: absolute;
  top: 13px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  content: "";
}

.month-goal {
  display: block;
  color: var(--navy);
  font-size: 0.75rem;
  text-align: center;
}

.month-final {
  background: linear-gradient(150deg, var(--navy), #174f89);
  border-color: transparent;
  box-shadow: 0 18px 45px rgba(22, 58, 99, 0.22);
}

.month-final::before {
  background: linear-gradient(90deg, var(--cyan), #80dcff);
}

.month-final .month-number,
.month-final h3,
.month-final .month-goal {
  color: var(--white);
}

.month-final > p,
.month-final li {
  color: rgba(255, 255, 255, 0.74);
}

.month-final ul {
  background: rgba(255, 255, 255, 0.08);
}

.month-final li::before {
  background: var(--cyan);
}

.mid-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 52px;
  padding: 34px 42px;
  background: var(--bg);
  border-radius: 22px;
}

.mid-cta small,
.mid-cta strong {
  display: block;
}

.mid-cta small {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
}

.mid-cta strong {
  margin-top: 5px;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.6;
}

.works-section {
  background: var(--bg);
}

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

.work-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(22, 58, 99, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.work-card:hover {
  box-shadow: 0 20px 42px rgba(22, 58, 99, 0.14);
  transform: translateY(-6px);
}

.work-image {
  overflow: hidden;
  background: #e9eef5;
  aspect-ratio: 1.6 / 1;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-card:hover .work-image img {
  transform: scale(1.02);
}

.work-copy {
  padding: 24px 25px 27px;
}

.work-copy > span {
  display: inline-block;
  margin-bottom: 9px;
  padding: 4px 9px;
  color: var(--blue);
  background: rgba(47, 107, 255, 0.07);
  border-radius: 6px;
  font-size: 0.62rem;
  font-weight: 800;
}

.work-copy h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.work-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.75;
}

.works-message {
  max-width: 820px;
  margin: 52px auto 0;
  color: var(--muted);
  text-align: center;
}

.works-message strong {
  color: var(--navy);
  font-size: 1.2rem;
}

.income-section {
  background: var(--white);
}

.income-diagram {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  align-items: center;
  max-width: 940px;
  margin: 0 auto;
}

.income-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 380px;
  padding: 35px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.income-recurring {
  background: linear-gradient(145deg, #f1f8ff, #eaf7ff);
  border-color: rgba(40, 184, 232, 0.3);
}

.income-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 17px;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), var(--cyan));
  border-radius: 19px;
  font-size: 1.5rem;
  font-weight: 900;
}

.income-card > small {
  color: var(--muted);
  font-size: 0.7rem;
}

.income-card h3 {
  margin: 7px 0 24px;
  font-size: 1.7rem;
}

.income-card > p {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.8rem;
}

.income-card > strong {
  color: var(--navy);
  font-size: 1.35rem;
}

.income-card > strong b {
  color: var(--orange-dark);
  font-size: 2.7rem;
  letter-spacing: -0.02em;
}

.income-caption {
  margin-top: auto;
  padding: 6px 13px;
  color: var(--muted);
  background: rgba(22, 58, 99, 0.05);
  border-radius: 100px;
  font-size: 0.65rem;
}

.income-plus {
  color: var(--blue);
  font-size: 2.5rem;
  font-weight: 300;
  text-align: center;
}

.recurring-scale {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  align-items: center;
  max-width: 920px;
  margin: 42px auto 0;
  padding: 28px 34px;
  color: var(--white);
  background: var(--navy);
  border-radius: 20px;
}

.recurring-scale > div {
  text-align: center;
}

.recurring-scale small,
.recurring-scale strong,
.recurring-scale span {
  display: block;
}

.recurring-scale small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.62rem;
}

.recurring-scale strong {
  margin: 3px 0;
  color: #82ddfa;
  font-size: 2rem;
}

.recurring-scale em {
  font-size: 0.75rem;
  font-style: normal;
}

.recurring-scale span {
  font-size: 0.72rem;
}

.recurring-scale b {
  font-size: 0.9rem;
}

.recurring-scale > i {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.income-story {
  margin-top: 40px;
  background: var(--bg);
}

.disclaimer {
  max-width: 860px;
  margin: 24px auto 0;
  color: #778596;
  font-size: 0.7rem;
  text-align: center;
}

.materials-section {
  background: var(--bg);
}

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

.material-card {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 105px;
  padding: 17px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.material-card > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 43px;
  height: 43px;
  color: var(--blue);
  background: rgba(47, 107, 255, 0.08);
  border-radius: 12px;
  font-size: 0.68rem;
  font-weight: 900;
}

.material-card h3 {
  margin-bottom: 3px;
  font-size: 0.85rem;
}

.material-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.6;
}

.materials-end {
  margin: 36px 0 0;
  color: var(--navy);
  text-align: center;
}

.materials-end strong {
  color: var(--blue);
}

.trust-section {
  background: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1020px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.stats-grid > div {
  position: relative;
  padding: 34px 25px;
  text-align: center;
}

.stats-grid > div:not(:last-child)::after {
  position: absolute;
  top: 22%;
  right: 0;
  width: 1px;
  height: 56%;
  background: var(--line);
  content: "";
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  color: var(--blue);
  font-size: 3.2rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.stats-grid strong small {
  margin-left: 3px;
  color: var(--navy);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.stats-grid span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.76rem;
}

.trust-evolution {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  gap: 16px;
  max-width: 1020px;
  margin: 32px auto 0;
}

.trust-evolution > div {
  min-height: 126px;
  padding: 22px 26px;
  background: var(--bg);
  border-radius: 16px;
}

.trust-evolution small {
  color: var(--blue);
  font-weight: 800;
}

.trust-evolution p {
  margin: 7px 0 0;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 700;
}

.trust-evolution > span {
  color: var(--blue);
  font-size: 1.8rem;
  text-align: center;
}

.voice-area {
  max-width: 1100px;
  margin: 75px auto 0;
}

.subheading {
  margin-bottom: 28px;
  text-align: center;
}

.subheading > span {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.subheading h3 {
  margin: 4px 0 5px;
  font-size: 1.6rem;
}

.subheading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

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

.voice-grid article {
  position: relative;
  min-height: 190px;
  padding: 28px;
  background: var(--bg);
  border-radius: 18px;
}

.voice-grid article > span {
  position: absolute;
  top: 8px;
  right: 18px;
  color: rgba(47, 107, 255, 0.12);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
}

.voice-grid p {
  position: relative;
  z-index: 1;
  color: #566a80;
  font-size: 0.82rem;
}

.voice-grid small {
  color: #8a97a4;
  font-size: 0.68rem;
}

.instructor-section {
  background: var(--bg);
}

.instructor-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 80px;
}

.instructor-card {
  position: relative;
  overflow: hidden;
  padding: 46px;
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(150deg, var(--navy-deep), #174d82);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.instructor-card::after {
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.instructor-monogram {
  position: relative;
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
  margin-bottom: 28px;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), var(--cyan));
  border-radius: 30px;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 16px 35px rgba(40, 184, 232, 0.2);
}

.instructor-monogram i {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  background: var(--orange);
  border: 5px solid var(--navy);
  border-radius: 50%;
}

.instructor-card > small {
  color: #83defa;
  font-size: 0.68rem;
  font-weight: 800;
}

.instructor-card h2 {
  margin: 4px 0 18px;
  color: var(--white);
  font-size: 2.2rem;
}

.instructor-card > p {
  font-size: 0.86rem;
}

.career-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.career-row span {
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  font-size: 0.62rem;
}

.career-row strong {
  color: var(--white);
}

.instructor-copy > p:not(.section-label) {
  color: var(--muted);
}

.instructor-copy blockquote {
  margin: 25px 0;
  padding: 20px 24px;
  color: var(--navy);
  background: var(--white);
  border-left: 4px solid var(--blue);
  border-radius: 0 14px 14px 0;
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
}

.not-researcher {
  display: flex;
  align-items: center;
  gap: 15px;
}

.not-researcher > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 45px;
  height: 45px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 900;
}

.not-researcher p,
.not-researcher small,
.not-researcher strong {
  display: block;
  margin: 0;
}

.beginner-growth {
  justify-content: center;
  max-width: 900px;
  margin: 28px auto 0;
}

.not-researcher small {
  color: var(--muted);
  font-size: 0.65rem;
}

.not-researcher strong {
  color: var(--navy);
  font-size: 0.95rem;
}

.support-section {
  background: var(--white);
}

.support-story {
  margin: -18px auto 46px;
  background: var(--bg);
}

.support-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  max-width: 1060px;
  margin: 0 auto;
}

.support-main {
  padding: 38px;
  color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(145deg, var(--navy), #14588f);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.support-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  color: var(--navy);
  background: #82dcfa;
  border-radius: 18px;
  font-size: 1.5rem;
  font-weight: 900;
}

.support-main > small {
  color: #87e0fc;
  font-size: 0.68rem;
  font-weight: 800;
}

.support-main h3 {
  margin: 8px 0 16px;
  color: var(--white);
  font-size: 1.45rem;
}

.support-main p {
  margin: 0;
  font-size: 0.82rem;
}

.support-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
  padding: 24px;
  background: var(--bg);
  border-radius: 24px;
}

.support-list span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 12px 10px 40px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
}

.support-list span::before {
  position: absolute;
  left: 13px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  content: "✓";
  font-size: 0.55rem;
}

.price-section {
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.price-decor {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.price-decor-a {
  top: -240px;
  left: -180px;
  width: 580px;
  height: 580px;
}

.price-decor-b {
  right: -120px;
  bottom: -180px;
  width: 460px;
  height: 460px;
}

.price-card {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0 auto;
  padding: 58px 64px 52px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(4, 22, 40, 0.28);
}

.price-ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 9px 24px;
  color: var(--white);
  background: var(--blue);
  border-radius: 0 0 13px 13px;
  font-size: 0.72rem;
  font-weight: 900;
  transform: translateX(-50%);
}

.price-term {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.price-term strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.price-total-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin: 2px 0 0;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 800;
}

.price-total-main small {
  font-size: 1.15rem;
}

.price-total-main strong {
  color: var(--orange-dark);
  font-size: clamp(3.8rem, 8vw, 5.5rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.price-total-main span {
  font-size: 0.85rem;
  white-space: nowrap;
}

.price-installment {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.price-installment strong {
  color: var(--navy);
  font-size: 1.08rem;
}

.price-bank {
  margin: 5px 0 32px;
  color: var(--muted);
  font-size: 0.74rem;
}

.price-includes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 22px;
  background: var(--bg);
  border-radius: 18px;
}

.price-includes > div {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
}

.price-includes > div > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.6rem;
}

.price-includes p,
.price-includes strong,
.price-includes small {
  display: block;
  margin: 0;
}

.price-includes strong {
  color: var(--navy);
  font-size: 0.76rem;
}

.price-includes small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.6rem;
  line-height: 1.55;
}

.price-detail {
  margin: 18px 0 28px;
  color: var(--muted);
  background: #fbfcfe;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.72rem;
  text-align: left;
}

.price-detail summary {
  position: relative;
  padding: 13px 45px 13px 17px;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.price-detail summary::-webkit-details-marker {
  display: none;
}

.price-detail summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  content: "+";
  font-size: 1.2rem;
  transform: translateY(-50%);
}

.price-detail[open] summary::after {
  content: "−";
}

.price-detail > div {
  padding: 0 17px 16px;
  line-height: 1.8;
}

.contract-summary {
  margin: 24px 0 28px;
  padding: 28px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: left;
}

.contract-summary h3 {
  margin-bottom: 18px;
  font-size: 1.05rem;
  text-align: center;
}

.contract-summary dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.contract-summary dl > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.contract-summary dl > div:first-child {
  border-top: 1px solid var(--line);
}

.contract-summary dt {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
}

.contract-summary dd {
  margin: 0;
  color: #52677d;
  font-size: 0.78rem;
  font-weight: 700;
}

.contract-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.9;
}

.contract-links {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

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

.contract-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 16px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(47, 107, 255, 0.2);
  border-radius: 12px;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}

.contract-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
  accent-color: var(--blue);
}

.button-price {
  width: min(100%, 580px);
  min-height: 72px;
  font-size: 1.08rem;
}

.price-message {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.price-message strong {
  color: var(--navy);
}

.faq-section {
  background: var(--bg);
}

.faq-container {
  max-width: 960px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-item.is-open {
  border-color: rgba(47, 107, 255, 0.28);
  box-shadow: 0 10px 30px rgba(22, 58, 99, 0.07);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: grid;
  grid-template-columns: 38px 1fr 24px;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 76px;
  padding: 15px 22px;
  color: var(--navy);
  background: transparent;
  border: 0;
  font-size: 0.94rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-item button > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: var(--blue);
  border-radius: 10px;
  font-size: 0.95rem;
}

.faq-item button i {
  position: relative;
  width: 22px;
  height: 22px;
}

.faq-item button i::before,
.faq-item button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.25s;
}

.faq-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

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

.faq-answer > div {
  overflow: hidden;
}

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

.faq-answer p {
  margin: 0;
  padding: 0 26px 26px 74px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.9;
}

.closing-message {
  background:
    radial-gradient(circle at 50% 0%, rgba(47, 107, 255, 0.07), transparent 42%),
    #f8fbff;
}

.closing-inner {
  max-width: 900px;
  text-align: center;
}

.closing-inner .section-label {
  justify-content: center;
}

.closing-inner h2 {
  margin-bottom: 34px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.closing-copy {
  padding: 38px 44px;
  color: #52677d;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(47, 107, 255, 0.1);
  border-radius: 22px;
  font-size: 0.92rem;
  line-height: 2.1;
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.closing-copy p {
  margin-bottom: 1.35em;
}

.closing-copy p:last-child {
  margin-bottom: 0;
}

.final-cta {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 860px;
  overflow: hidden;
  background: #f5f8fb;
}

.final-cta-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 30%, rgba(255, 255, 255, 0.25) 59%, rgba(255, 255, 255, 0) 78%);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  align-items: center;
  gap: clamp(36px, 5vw, 76px);
}

.final-copy {
  max-width: 610px;
  padding: 80px 0;
}

.final-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 3.55vw, 3.35rem);
  line-height: 1.22;
}

.final-copy h2 span {
  color: var(--blue);
}

.final-copy > p:not(.section-label):not(.final-price) {
  color: var(--muted);
  font-size: 1.05rem;
}

.final-copy > p strong {
  color: var(--navy);
}

.final-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 26px 0;
}

.final-flow span {
  padding: 6px 10px;
  color: var(--navy);
  background: rgba(47, 107, 255, 0.08);
  border-radius: 7px;
  font-size: 0.7rem;
  font-weight: 800;
}

.final-flow i {
  color: var(--blue);
  font-size: 0.75rem;
  font-style: normal;
}

.final-price {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
}

.final-price strong {
  color: var(--orange-dark);
  font-size: 1.8rem;
}

.final-price small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
}

.final-note {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.67rem;
}

.final-renewal {
  max-width: 540px;
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.75;
}

.application-card {
  width: 100%;
  padding: clamp(28px, 3.2vw, 42px);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(47, 107, 255, 0.14);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(13, 41, 72, 0.2);
  backdrop-filter: blur(12px);
}

.application-heading {
  margin-bottom: 24px;
  text-align: center;
}

.application-kicker {
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.application-heading h2 {
  margin-bottom: 7px;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
}

.application-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.application-form {
  position: relative;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
  color: var(--navy-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.form-field label span {
  padding: 2px 7px;
  color: var(--white);
  background: var(--orange-dark);
  border-radius: 4px;
  font-size: 0.58rem;
  line-height: 1.5;
}

.form-field input {
  width: 100%;
  min-height: 52px;
  padding: 11px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd8e7;
  border-radius: 10px;
  font: inherit;
  font-size: 16px;
  line-height: 1.5;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input::placeholder {
  color: #9aa9b8;
}

.form-field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.12);
  outline: none;
}

.form-field > small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.6;
}

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

.application-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px;
  padding: 14px;
  color: var(--navy-deep);
  background: #f5f8fc;
  border: 1px solid rgba(47, 107, 255, 0.16);
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.75;
  cursor: pointer;
}

.application-consent input {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin: 3px 0 0;
  accent-color: var(--blue);
}

.application-consent a,
.application-legal a {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.application-consent a:focus-visible,
.application-legal a:focus-visible,
.application-consent input:focus-visible {
  outline: 3px solid rgba(47, 107, 255, 0.3);
  outline-offset: 3px;
}

.application-legal {
  margin: 10px 0 18px;
  text-align: center;
  font-size: 0.67rem;
}

.application-submit {
  width: 100%;
  min-height: 64px;
  padding-right: 18px;
  padding-left: 18px;
  border: 0;
  font-size: clamp(0.78rem, 1.25vw, 0.92rem);
  cursor: pointer;
}

.application-submit:disabled {
  cursor: wait;
  filter: grayscale(0.15);
  opacity: 0.72;
}

.application-submit-note {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.63rem;
  line-height: 1.65;
  text-align: center;
}

.thanks-page {
  min-height: 100vh;
  background: linear-gradient(145deg, #f7fbff 0%, #edf5ff 55%, #f8fbff 100%);
}

.thanks-header {
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
}

.thanks-header-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.thanks-header img {
  width: min(100%, 360px);
  height: auto;
}

.thanks-main {
  display: grid;
  min-height: calc(100vh - 105px);
  padding: 64px 24px 80px;
  place-items: center;
}

.thanks-card {
  width: min(100%, 880px);
  padding: clamp(32px, 6vw, 64px);
  background: var(--white);
  border: 1px solid rgba(47, 107, 255, 0.13);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.thanks-status {
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.thanks-card > h1 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.4;
}

.thanks-lead {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.94rem;
}

.thanks-next {
  margin: 30px 0;
  padding: clamp(24px, 4vw, 36px);
  background: linear-gradient(145deg, #eef5ff, #f7fbff);
  border: 2px solid rgba(47, 107, 255, 0.25);
  border-radius: 18px;
}

.thanks-next small {
  display: block;
  margin-bottom: 5px;
  color: var(--orange-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.thanks-next h2 {
  margin-bottom: 16px;
  color: var(--blue-dark);
  font-size: clamp(1.55rem, 4.4vw, 2.25rem);
}

.thanks-next p,
.thanks-followup p,
.thanks-mail-help p {
  margin-bottom: 0;
}

.thanks-mail-subject {
  display: block;
  margin: 12px 0;
  padding: 10px 14px;
  color: var(--navy-deep);
  background: var(--white);
  border-radius: 8px;
  font-weight: 800;
}

.thanks-followup,
.thanks-mail-help {
  margin-top: 26px;
  color: var(--muted);
  text-align: left;
}

.thanks-mail-help {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.thanks-mail-help h2 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.thanks-mail-help a {
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.thanks-back {
  margin-top: 34px;
}

.form-error-list {
  margin: 28px 0 0;
  padding: 20px 20px 20px 42px;
  color: #8a2d22;
  background: #fff5f3;
  border: 1px solid #f2c8c1;
  border-radius: 12px;
  text-align: left;
}

.form-error-list li + li {
  margin-top: 8px;
}

.site-footer {
  padding: 38px 0 30px;
  color: rgba(255, 255, 255, 0.68);
  background: #164E96;
}

.footer-inner {
  display: block;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.footer-company {
  margin: 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.footer-links a {
  transition: color 0.2s ease;
}

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

.footer-copyright {
  margin: 22px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  text-align: center;
}

.legal-page {
  background: var(--bg);
}

.legal-back-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 18px;
  color: var(--navy);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 800;
}

.legal-back-link:hover {
  color: var(--blue);
  border-color: rgba(47, 107, 255, 0.3);
}

.legal-main {
  padding-bottom: 96px;
}

.legal-hero {
  padding: 82px 24px 68px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.legal-hero .section-label {
  justify-content: center;
}

.legal-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-hero > p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
}

.legal-content {
  width: min(calc(100% - 48px), 880px);
  margin: 56px auto 0;
  padding: 56px 64px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.legal-intro {
  margin-bottom: 34px;
  color: #52677d;
  font-size: 1rem;
  line-height: 2;
}

.legal-section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-section:last-child {
  padding-bottom: 0;
}

.legal-section h2 {
  margin-bottom: 16px;
  font-size: 1.22rem;
}

.legal-section p,
.legal-section li {
  margin-bottom: 0.9em;
  color: #52677d;
  font-size: 1rem;
  line-height: 2;
}

.legal-section p:last-child,
.legal-section li:last-child {
  margin-bottom: 0;
}

.legal-section ul,
.legal-section ol {
  margin: 0;
  padding-left: 1.5em;
}

.legal-section a {
  color: var(--blue);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-date {
  margin: 42px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.9;
  text-align: right;
}

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 850;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(16, 42, 67, 0.24);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background-color 0.2s ease;
}

.back-to-top span {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--blue);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(47, 107, 255, 0.35);
  outline-offset: 3px;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0ms);
}

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

@media (max-width: 1120px) {
  .global-nav {
    gap: 13px;
    font-size: 0.7rem;
  }

  .hero-grid {
    grid-template-columns: minmax(400px, 0.92fr) minmax(480px, 1.08fr);
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(3rem, 5.2vw, 4.3rem);
  }

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

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

@media (max-width: 960px) {
  :root {
    --header-height: 68px;
  }

  .section {
    padding: 95px 0;
  }

  .beginner-details {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .beginner-detail-card {
    padding: 27px 30px;
  }

  .menu-button {
    display: block;
  }

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

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

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

  .global-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 25px rgba(22, 58, 99, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.25s, padding 0.35s;
  }

  .global-nav.is-open {
    max-height: calc(100vh - var(--header-height));
    padding: 14px 24px 28px;
    opacity: 1;
    pointer-events: auto;
  }

  .global-nav > a:not(.nav-cta) {
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 0.8rem;
  }

  .global-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 16px;
    padding: 12px;
    text-align: center;
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-copy {
    max-width: 680px;
    padding-bottom: 10px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 8.5vw, 5.4rem);
  }

  .hero-visual {
    width: calc(100% + 24px);
  }

  .hero-image-wrap {
    border-radius: 32px 0 0 32px;
  }

  .hero-image-wrap img {
    aspect-ratio: 1.7 / 1;
    object-position: 85% center;
  }

  .hero-note {
    transform: translateY(24px);
  }

  .comparison {
    grid-template-columns: 1fr 85px 1fr;
  }

  .compare-card {
    padding: 27px;
  }

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

  .step-card:nth-child(odd)::after {
    display: grid;
  }

  .step-card:nth-child(even)::after {
    display: none;
  }

  .split-grid,
  .image-left,
  .instructor-grid {
    grid-template-columns: 1fr;
  }

  .image-left .media-panel {
    order: 2;
  }

  .image-left .split-copy {
    order: 1;
  }

  .media-panel {
    max-width: 760px;
  }

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

  .income-diagram {
    grid-template-columns: 1fr 70px 1fr;
  }

  .instructor-grid {
    max-width: 760px;
  }

  .instructor-card {
    max-width: 620px;
  }

  .support-layout {
    grid-template-columns: 1fr;
  }

  .final-cta {
    min-height: auto;
    padding: 64px 0;
  }

  .final-cta-image {
    object-position: 62% center;
  }

  .final-cta-overlay {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9) 45%, rgba(255, 255, 255, 0.08) 78%);
  }

  .final-cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    width: min(100%, 720px);
    margin: 0 auto;
  }

  .final-copy {
    max-width: 700px;
    padding: 0;
  }

  .application-card {
    max-width: 620px;
    margin: 0 auto;
  }

  .final-copy h2 {
    font-size: clamp(2.5rem, 5.2vw, 3.2rem);
  }
}

@media (max-width: 720px) {
  :root {
    --radius: 19px;
  }

  body {
    padding-bottom: 66px;
    font-size: 15px;
    line-height: 1.85;
  }

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

  .section {
    padding: 78px 0;
  }

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

  .section-heading .section-label,
  .light-heading .section-label {
    justify-content: flex-start;
  }

  .section-heading > p:last-child {
    font-size: 0.95rem;
    line-height: 1.85;
  }

  .reading-block {
    margin-top: 30px;
    padding: 24px 20px;
    border-radius: 16px;
    font-size: 0.84rem;
    line-height: 1.95;
  }

  .reading-block p {
    margin-bottom: 1.35em;
  }

  .reading-block + .message-card {
    margin-top: 20px;
  }

  h2 {
    margin-bottom: 18px;
    font-size: clamp(1.8rem, 8vw, 2.45rem);
    line-height: 1.4;
  }

  .sp-only {
    display: inline;
  }

  .pc-only {
    display: none;
  }

  .button {
    width: 100%;
    min-height: 59px;
    padding: 14px 18px;
    gap: 12px;
    font-size: 0.86rem;
  }

  .header-inner {
    width: calc(100% - 28px);
  }

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

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .brand-copy small {
    font-size: 0.5rem;
  }

  .hero {
    padding-top: 28px;
    background: linear-gradient(155deg, #fff 0%, #f5faff 100%);
  }

  .hero-copy {
    padding-top: 20px;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 0.67rem;
  }

  .hero h1 {
    margin-bottom: 19px;
    font-size: clamp(2.65rem, 12vw, 4rem);
    line-height: 1.2;
  }

  .hero-lead {
    margin-bottom: 19px;
    font-size: 0.94rem;
    line-height: 1.85;
  }

  .hero-flow {
    gap: 6px;
  }

  .hero-flow span {
    padding: 6px 8px;
    font-size: 0.62rem;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .hero-trust span {
    display: block;
    padding: 9px 5px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 9px;
    font-size: 0.56rem;
    text-align: center;
  }

  .hero-trust strong {
    display: block;
    font-size: 0.87rem;
  }

  .hero-visual {
    width: calc(100% + 18px);
    margin-top: 10px;
  }

  .hero-image-wrap {
    border-radius: 24px 0 0 24px;
  }

  .hero-image-wrap img {
    aspect-ratio: 1.25 / 1;
    object-position: 88% center;
  }

  .float-card {
    padding: 8px 10px;
    font-size: 0.57rem;
  }

  .float-card span {
    min-width: 24px;
    height: 24px;
    border-radius: 6px;
    font-size: 0.5rem;
  }

  .float-card-top {
    top: 6%;
    left: -2%;
  }

  .float-card-bottom {
    right: 3%;
    bottom: 5%;
  }

  .hero-note {
    margin-top: 26px;
    transform: translateY(20px);
  }

  .hero-note p {
    padding: 20px;
    font-size: 0.82rem;
    text-align: left;
  }

  .change-section {
    padding-top: 110px;
  }

  .comparison {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .compare-card {
    min-height: auto;
    padding: 24px;
  }

  .compare-arrow {
    flex-direction: row;
    justify-content: center;
  }

  .compare-arrow span {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    transform: rotate(90deg);
  }

  .message-card {
    align-items: flex-start;
    gap: 15px;
    margin-top: 30px;
    padding: 20px;
    font-size: 0.82rem;
  }

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

  .business-range {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .business-range > div {
    min-height: auto;
    padding: 22px;
  }

  .business-range > i {
    line-height: 1;
    transform: rotate(90deg);
  }

  .center-callout,
  .center-callout strong {
    font-size: 0.95rem;
  }

  .reading-block-dark {
    margin-top: 26px;
    padding: 23px 19px;
  }

  .steps-grid,
  .curriculum-grid,
  .works-grid,
  .learn-grid,
  .materials-grid,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    gap: 14px;
  }

  .step-card {
    display: grid;
    grid-template-columns: 50px 1fr;
    column-gap: 16px;
    min-height: auto;
    padding: 23px;
  }

  .step-card::after,
  .step-card:not(:nth-child(3n))::after,
  .step-card:nth-child(odd)::after {
    top: auto;
    right: auto;
    bottom: -18px;
    left: 29px;
    display: grid;
    width: 32px;
    height: 32px;
    content: "↓";
  }

  .step-card:last-child::after {
    display: none;
  }

  .step-head {
    grid-column: 1 / -1;
    margin-bottom: 12px;
  }

  .step-icon {
    grid-column: 1;
    grid-row: 2 / span 2;
    width: 50px;
    height: 50px;
    margin: 0;
  }

  .step-card h3 {
    grid-column: 2;
    margin-bottom: 7px;
    font-size: 1.05rem;
  }

  .step-card p {
    grid-column: 2;
    font-size: 0.77rem;
  }

  .split-grid,
  .image-left {
    gap: 36px;
  }

  .media-panel img,
  .prospect-media img {
    aspect-ratio: 1.32 / 1;
    border-radius: 20px;
  }

  .split-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }

  .pitch-compare {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pitch-compare > div:not(.pitch-arrow) {
    min-height: auto;
  }

  .pitch-arrow {
    transform: rotate(90deg);
  }

  .made-story {
    width: min(calc(100% - 36px), 940px);
    margin-top: 40px;
    padding: 25px 20px;
    border-radius: 17px;
    font-size: 0.83rem;
    line-height: 1.95;
  }

  .made-mini-flow {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 22px;
  }

  .made-mini-flow span {
    min-height: 54px;
  }

  .made-mini-flow i {
    line-height: 1;
    transform: rotate(90deg);
  }

  .result-chip-a {
    right: -8px;
  }

  .result-chip-b {
    left: -8px;
  }

  .beginner-checks {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .beginner-checks span {
    padding: 10px;
    font-size: 0.66rem;
  }

  .beginner-details {
    width: min(calc(100% - 36px), 1100px);
    gap: 12px;
    margin-top: 38px;
  }

  .beginner-detail-card {
    padding: 22px 20px;
  }

  .beginner-detail-card p {
    font-size: 0.8rem;
    line-height: 1.9;
  }

  .beginner-growth {
    width: min(calc(100% - 36px), 900px);
    justify-content: flex-start;
    margin: 22px auto 0;
  }

  .learn-tabs {
    justify-content: flex-start;
    margin-top: -10px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .learn-intro {
    margin-top: 0;
  }

  .learn-intro + .learn-tabs {
    margin-top: 26px;
  }

  .learn-card {
    display: grid;
    grid-template-columns: 50px 1fr;
    min-height: auto;
    padding: 19px;
  }

  .learn-icon {
    grid-row: 1 / span 2;
    width: 42px;
    height: 42px;
    margin: 0;
  }

  .learn-card h3,
  .learn-card p {
    grid-column: 2;
  }

  .learn-card h3 {
    margin-bottom: 3px;
  }

  .dual-strength {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px;
  }

  .dual-strength > i {
    line-height: 1;
  }

  .sell-note {
    margin-top: 22px;
    padding: 23px 20px;
    border-left-width: 3px;
    font-size: 0.82rem;
    line-height: 1.95;
  }

  .phase-bar {
    gap: 7px;
    margin-bottom: 34px;
  }

  .phase-bar span {
    width: 60px;
    font-size: 0.64rem;
  }

  .month-card {
    min-height: auto;
    padding: 26px;
  }

  .month-card h3 {
    min-height: auto;
  }

  .mid-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 28px 23px;
  }

  .mid-cta strong {
    font-size: 1rem;
  }

  .work-card,
  .work-image {
    border-radius: 18px 18px 0 0;
  }

  .work-card {
    border-radius: 18px;
  }

  .work-image {
    aspect-ratio: 1.55 / 1;
  }

  .works-message {
    font-size: 0.84rem;
  }

  .works-message strong {
    font-size: 1rem;
  }

  .income-diagram {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .income-card {
    min-height: 325px;
    padding: 28px;
  }

  .income-plus {
    line-height: 1;
  }

  .recurring-scale {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 25px;
  }

  .recurring-scale > i {
    width: 60%;
    margin: 0 auto;
  }

  .income-story {
    margin-top: 28px;
  }

  .material-card {
    min-height: 96px;
  }

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

  .stats-grid > div {
    padding: 25px;
  }

  .stats-grid > div:not(:last-child)::after {
    top: auto;
    right: 15%;
    bottom: 0;
    width: 70%;
    height: 1px;
  }

  .stats-grid strong {
    font-size: 2.8rem;
  }

  .trust-evolution {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .trust-evolution > span {
    line-height: 1;
  }

  .voice-area {
    margin-top: 60px;
  }

  .voice-grid article {
    min-height: 150px;
  }

  .instructor-card {
    padding: 32px 27px;
  }

  .instructor-monogram {
    width: 88px;
    height: 88px;
    border-radius: 23px;
  }

  .support-main {
    padding: 29px 25px;
  }

  .support-main h3 {
    font-size: 1.25rem;
  }

  .support-list {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .support-story {
    margin: 0 auto 34px;
  }

  .price-card {
    padding: 52px 20px 34px;
    border-radius: 23px;
  }

  .price-total-main {
    gap: 4px;
  }

  .price-total-main small {
    font-size: 0.9rem;
  }

  .price-total-main strong {
    font-size: clamp(3.2rem, 16vw, 4rem);
  }

  .price-total-main span {
    font-size: 0.72rem;
  }

  .price-installment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .contract-summary {
    padding: 23px 18px;
  }

  .contract-summary dl > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .price-includes {
    grid-template-columns: 1fr;
    padding: 17px;
  }

  .price-includes > div {
    align-items: center;
  }

  .button-price {
    min-height: 66px;
    font-size: 0.86rem;
  }

  .faq-item button {
    grid-template-columns: 32px 1fr 22px;
    gap: 10px;
    min-height: 69px;
    padding: 14px;
    font-size: 0.82rem;
  }

  .faq-item button > span {
    width: 31px;
    height: 31px;
  }

  .faq-answer p {
    padding: 0 18px 21px 56px;
    font-size: 0.79rem;
  }

  .closing-inner {
    text-align: left;
  }

  .closing-inner .section-label {
    justify-content: flex-start;
  }

  .closing-inner h2 {
    margin-bottom: 24px;
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    line-height: 1.45;
  }

  .closing-copy {
    padding: 25px 20px;
    border-radius: 17px;
    font-size: 0.84rem;
    line-height: 1.98;
  }

  .final-cta {
    display: block;
    min-height: auto;
    padding: 0;
    background: var(--white);
  }

  .final-cta-image {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1.55 / 1;
    object-fit: cover;
    object-position: 72% center;
  }

  .final-cta-overlay {
    display: none;
  }

  .final-cta-inner {
    margin-top: -24px;
  }

  .final-cta-grid {
    display: block;
  }

  .final-copy {
    position: relative;
    max-width: none;
    padding: 38px 24px 28px;
    background: var(--white);
    border-radius: 22px 22px 0 0;
  }

  .final-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .final-copy > p:not(.section-label):not(.final-price) {
    font-size: 0.9rem;
  }

  .final-flow {
    gap: 5px;
  }

  .final-flow span {
    padding: 5px 8px;
    font-size: 0.62rem;
  }

  .final-renewal {
    font-size: 0.68rem;
  }

  .application-card {
    margin: 0 0 44px;
    padding: 26px 20px 28px;
    border-radius: 0 0 22px 22px;
    box-shadow: 0 18px 45px rgba(13, 41, 72, 0.14);
    backdrop-filter: none;
  }

  .application-heading {
    margin-bottom: 20px;
  }

  .application-submit {
    min-height: 60px;
    font-size: 0.78rem;
  }

  .thanks-header {
    padding: 14px 18px;
  }

  .thanks-header img {
    width: min(100%, 285px);
  }

  .thanks-main {
    min-height: calc(100vh - 82px);
    padding: 34px 16px 54px;
  }

  .thanks-card {
    padding: 30px 20px;
    border-radius: 18px;
  }

  .thanks-lead,
  .thanks-next,
  .thanks-followup,
  .thanks-mail-help {
    font-size: 0.86rem;
  }

  .footer-main {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .site-footer {
    padding-bottom: 110px;
  }

  .back-to-top {
    right: 16px;
    bottom: 94px;
  }

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

  .footer-company,
  .footer-links,
  .footer-copyright {
    font-size: 14px;
  }

  .mobile-cta {
    position: fixed;
    right: 10px;
    bottom: 9px;
    left: 10px;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: 7px 9px 7px 16px;
    color: var(--white);
    background: rgba(11, 37, 64, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(11, 37, 64, 0.3);
    backdrop-filter: blur(12px);
  }

  .mobile-cta span {
    font-size: 0.6rem;
  }

  .mobile-cta strong {
    padding: 8px 14px;
    background: var(--orange);
    border-radius: 10px;
    font-size: 0.75rem;
  }
}

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

  .brand {
    font-size: 0.65rem;
  }

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

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

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

  .hero-trust span {
    display: flex;
    justify-content: center;
  }

  .beginner-checks {
    grid-template-columns: 1fr;
  }

  .price-total-main strong {
    font-size: 3.3rem;
  }
}

/* Readability refinement: keep the visual design while improving long-form reading. */
@media (min-width: 721px) {
  body {
    font-size: 18px;
    line-height: 1.9;
  }

  h2 {
    font-size: clamp(36px, 3.2vw, 42px);
  }

  h3 {
    font-size: clamp(24px, 2vw, 28px);
  }

  .section-heading {
    max-width: 980px;
    margin-bottom: 52px;
    text-align: center;
  }

  .section-heading h2 {
    margin-bottom: 26px;
  }

  .closing-inner h2 {
    font-size: clamp(36px, 3.2vw, 42px);
  }

  .section-heading h2 span {
    color: var(--blue);
  }

  .section-heading > p:last-child {
    max-width: 820px;
    font-size: 18px;
    line-height: 1.9;
  }

  .reading-block,
  .made-story,
  .sell-note,
  .closing-copy {
    max-width: 900px;
    font-size: 18px;
    line-height: 1.95;
  }

  .reading-block p,
  .made-story p,
  .sell-note p,
  .closing-copy p {
    margin-bottom: 1.45em;
  }

  .message-card {
    font-size: 18px;
    line-height: 1.85;
  }

  .split-copy > p:not(.section-label):not(.accent-note):not(.small-note) {
    margin-bottom: 1.35em;
    font-size: 18px;
    line-height: 1.9;
  }

  .step-card {
    min-height: 370px;
    padding: 30px;
  }

  .step-card h3 {
    font-size: 24px;
  }

  .step-card p {
    font-size: 17px;
    line-height: 1.85;
  }

  .pitch-compare strong {
    font-size: 17px;
  }

  .pitch-compare span,
  .pitch-compare small {
    font-size: 14px;
  }

  .accent-note {
    font-size: 17px;
    line-height: 1.85;
  }

  .prospect-tags span {
    font-size: 15px;
  }

  .small-note {
    font-size: 16px;
    line-height: 1.85;
  }

  .beginner-details {
    gap: 20px;
  }

  .beginner-detail-card {
    padding: 30px 28px;
  }

  .beginner-detail-card h3 {
    font-size: 24px;
  }

  .beginner-detail-card p {
    font-size: 17px;
    line-height: 1.9;
  }

  .beginner-checks span {
    font-size: 16px;
  }

  .growth-line {
    font-size: 16px;
  }

  .learn-card {
    min-height: 240px;
  }

  .learn-card h3 {
    font-size: 20px;
  }

  .learn-card p {
    font-size: 16px;
    line-height: 1.8;
  }

  .dual-strength strong {
    font-size: 16px;
  }

  .month-card {
    min-height: 520px;
  }

  .month-card h3 {
    font-size: 24px;
  }

  .month-card > p {
    font-size: 17px;
    line-height: 1.85;
  }

  .month-card li {
    font-size: 16px;
    line-height: 1.75;
  }

  .month-goal {
    font-size: 15px;
  }

  .work-copy h3 {
    font-size: 22px;
  }

  .work-copy p {
    font-size: 16px;
    line-height: 1.8;
  }

  .works-message {
    font-size: 18px;
    line-height: 1.9;
  }

  .income-card > p {
    font-size: 17px;
  }

  .income-card h3 {
    font-size: 28px;
  }

  .material-card {
    min-height: 118px;
  }

  .material-card h3 {
    font-size: 18px;
  }

  .material-card p {
    font-size: 16px;
    line-height: 1.75;
  }

  .materials-end {
    font-size: 18px;
  }

  .stats-grid span,
  .trust-evolution p,
  .subheading p {
    font-size: 16px;
    line-height: 1.8;
  }

  .voice-grid p {
    font-size: 17px;
    line-height: 1.85;
  }

  .instructor-card h3 {
    margin: 4px 0 18px;
    color: var(--white);
    font-size: 32px;
  }

  .instructor-card > p {
    font-size: 17px;
    line-height: 1.85;
  }

  .instructor-copy > p {
    margin-bottom: 1.4em;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.9;
  }

  .instructor-copy blockquote {
    font-size: 17px;
    line-height: 1.85;
  }

  .not-researcher small {
    font-size: 14px;
  }

  .not-researcher strong {
    font-size: 17px;
  }

  .support-main h3 {
    font-size: 26px;
  }

  .support-main p {
    font-size: 17px;
    line-height: 1.85;
  }

  .support-list span {
    font-size: 16px;
  }

  .price-includes strong {
    font-size: 16px;
  }

  .price-includes small {
    font-size: 14px;
  }

  .price-detail {
    font-size: 15px;
  }

  .price-message {
    font-size: 16px;
    line-height: 1.85;
  }

  .faq-item button {
    font-size: 17px;
  }

  .faq-answer p {
    font-size: 17px;
    line-height: 1.9;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
    line-height: 1.85;
  }

  .section-heading,
  .closing-inner {
    text-align: center;
  }

  .section-heading .section-label,
  .light-heading .section-label,
  .closing-inner .section-label {
    justify-content: center;
  }

  h2,
  .split-copy h2,
  .closing-inner h2 {
    font-size: clamp(28px, 7.8vw, 32px);
    line-height: 1.45;
  }

  .section-heading > p:last-child {
    font-size: 16px;
    line-height: 1.85;
    text-align: left;
  }

  .section-heading h2 span {
    color: var(--blue);
  }

  .reading-block,
  .made-story,
  .sell-note,
  .closing-copy {
    font-size: 16px;
    line-height: 1.9;
    text-align: left;
  }

  .reading-block p,
  .made-story p,
  .sell-note p,
  .closing-copy p {
    margin-bottom: 1.4em;
  }

  .message-card,
  .split-copy > p:not(.section-label):not(.accent-note):not(.small-note) {
    font-size: 16px;
    line-height: 1.85;
  }

  .step-card h3 {
    font-size: 20px;
  }

  .step-card p,
  .beginner-detail-card p,
  .learn-card p,
  .month-card > p,
  .work-copy p,
  .income-card > p,
  .voice-grid p,
  .instructor-card > p,
  .instructor-copy > p,
  .support-main p,
  .faq-answer p {
    font-size: 16px;
    line-height: 1.85;
  }

  .beginner-detail-card h3,
  .month-card h3,
  .work-copy h3 {
    font-size: 20px;
  }

  .beginner-checks span,
  .growth-line,
  .month-card li,
  .month-goal,
  .material-card p,
  .support-list span {
    font-size: 15px;
    line-height: 1.75;
  }

  .learn-card h3,
  .material-card h3 {
    font-size: 18px;
  }

  .instructor-card h3 {
    margin: 4px 0 18px;
    color: var(--white);
    font-size: 28px;
  }

  .instructor-copy > p {
    margin-bottom: 1.4em;
  }

  .instructor-copy blockquote {
    font-size: 16px;
    line-height: 1.85;
  }

  .support-main h3 {
    font-size: 22px;
  }

  .faq-item button {
    font-size: 16px;
  }

  .closing-copy {
    font-size: 16px;
  }

  .legal-page .header-inner {
    gap: 10px;
    padding-inline: 14px;
  }

  .legal-back-link {
    min-height: 38px;
    padding: 7px 11px;
    font-size: 12px;
    white-space: nowrap;
  }

  .legal-main {
    padding-bottom: 64px;
  }

  .legal-hero {
    padding: 58px 20px 48px;
  }

  .legal-hero h1 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .legal-hero > p:last-child {
    font-size: 16px;
    line-height: 1.9;
    text-align: left;
  }

  .legal-content {
    width: calc(100% - 32px);
    margin-top: 32px;
    padding: 30px 22px;
    border-radius: 18px;
  }

  .legal-intro,
  .legal-section p,
  .legal-section li {
    font-size: 16px;
    line-height: 1.9;
  }

  .legal-section {
    padding: 26px 0;
  }

  .legal-section h2 {
    font-size: 20px;
  }

  .legal-date {
    font-size: 15px;
    text-align: left;
  }

  .legal-page .site-footer {
    padding-bottom: 34px;
  }
}

@media (max-width: 767px) {
  .header-logo {
    width: auto;
    height: 38px;
  }

  .hero-image-cta {
    padding: 24px 0 30px;
  }

  .hero-image-cta .button {
    width: calc(100% - 32px);
    min-height: 60px;
    gap: 10px;
    padding: 15px 14px;
    font-size: clamp(14px, 3.8vw, 16px);
    white-space: nowrap;
  }

  .hero-image-cta p {
    margin-top: 12px;
    font-size: 15px;
  }
}

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

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

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