:root {
  --color-orange: #f47a24;
  --color-orange-dark: #d85d10;
  --color-orange-soft: #fff0df;
  --color-orange-pale: #fff8ef;
  --color-green: #4caf72;
  --color-green-dark: #328554;
  --color-green-soft: #edf8f0;
  --color-line-app: #06c755;
  --color-line-app-dark: #00a849;
  --color-ink: #3b2d23;
  --color-text: #5f5147;
  --color-muted: #74665b;
  --color-line: #eedbc8;
  --color-card: #fffdf9;
  --color-dark: #30271f;
  --color-dark-soft: #45382d;
  --shadow-soft: 0 8px 24px rgba(129, 83, 42, 0.08);
  --shadow-card: 0 4px 14px rgba(129, 83, 42, 0.06);
  --radius-large: 26px;
  --radius-medium: 18px;
  --container: 1120px;
  --font-caption: 14px;
  --font-body: 16px;
  --font-card: 16px;
  --font-card-title: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: calc(74px + env(safe-area-inset-bottom, 0px));
  color: var(--color-text);
  background: #fff;
  font-family: "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: var(--font-body);
  font-weight: 500;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--color-ink);
  font-weight: 700;
  line-height: 1.45;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 5.2vw, 42px);
  letter-spacing: 0.04em;
}

h3 {
  margin-bottom: 10px;
}

section[id] {
  scroll-margin-top: 82px;
}

.container {
  width: min(100% - 36px, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: 64px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  color: #fff;
  background: var(--color-ink);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.mobile-only {
  display: inline;
}

.copy-compact {
  display: none;
}

h1,
h2,
h3 {
  text-wrap: pretty;
}

.button:focus-visible {
  outline: 3px solid var(--color-ink);
  outline-offset: 4px;
}

.text-nowrap {
  white-space: nowrap;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--color-orange-dark);
  font-size: var(--font-caption);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.eyebrow--light {
  color: #ffc589;
}

.eyebrow--green {
  color: var(--color-green-dark);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 11px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: var(--font-body);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--large {
  min-height: 54px;
  padding-inline: 26px;
  font-size: 17px;
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, #ff8a33, var(--color-orange));
  box-shadow: 0 3px 8px rgba(180, 81, 15, 0.18);
}

.button--primary:hover {
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-dark));
  box-shadow: 0 4px 12px rgba(180, 81, 15, 0.22);
}

.button--outline {
  color: var(--color-orange-dark);
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--color-orange);
}

.button--outline:hover {
  color: #fff;
  background: var(--color-orange);
}

.button--white {
  color: var(--color-orange-dark);
  background: #fff;
  border-color: rgba(244, 122, 36, 0.22);
  box-shadow: 0 2px 6px rgba(83, 45, 19, 0.08);
}

.button--white:hover {
  background: #fff7ed;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(238, 219, 200, 0.9);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  position: relative;
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}

.brand__logo {
  display: block;
  width: 160px;
  height: auto;
}

.global-nav {
  display: none;
}

.site-header__cta {
  display: none;
  min-height: 40px;
  padding: 8px 14px;
  font-size: 14px;
}

.mobile-menu {
  position: relative;
  margin-left: auto;
}

.mobile-menu summary {
  display: grid;
  width: 44px;
  height: 44px;
  align-content: center;
  gap: 5px;
  padding: 0 10px;
  color: var(--color-ink);
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 10px;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.mobile-menu[open] summary {
  color: var(--color-orange-dark);
  background: var(--color-orange-pale);
  border-color: var(--color-orange);
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: min(300px, calc(100vw - 36px));
  padding: 8px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
}

.mobile-menu nav a {
  padding: 10px 12px;
  color: var(--color-ink);
  border-radius: 9px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.mobile-menu nav a:hover {
  color: var(--color-orange-dark);
  background: var(--color-orange-pale);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: 54px 70px;
  background:
    radial-gradient(circle at 13% 18%, rgba(255, 174, 97, 0.18) 0 4px, transparent 5px) 0 0 / 22px 22px,
    linear-gradient(135deg, #fffdfa 0%, #fff7ec 50%, #fff2de 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: -150px;
  right: -110px;
  width: 360px;
  height: 360px;
  background: rgba(255, 197, 137, 0.25);
}

.hero::after {
  left: -100px;
  bottom: -170px;
  width: 320px;
  height: 320px;
  background: rgba(255, 210, 161, 0.2);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 44px;
}

.hero__copy h1 {
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 18px;
  font-size: clamp(34px, 10vw, 58px);
  letter-spacing: 0.03em;
}

.hero__copy h1 span {
  color: var(--color-orange);
}

.hero__lead {
  margin-bottom: 20px;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 600;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 18px;
  color: var(--color-orange);
}

.hero-price__label {
  font-size: 20px;
  font-weight: 900;
}

.hero-price strong {
  font-size: clamp(50px, 14vw, 76px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-price__unit {
  font-size: 18px;
  font-weight: 900;
}

.hero-price__unit small {
  display: block;
  color: var(--color-ink);
  font-size: 13px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.trust-badges li {
  position: relative;
  padding: 6px 12px 6px 30px;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--color-line);
  border-radius: 9px;
  font-size: var(--font-caption);
  font-weight: 800;
}

.trust-badges li::before {
  position: absolute;
  left: 10px;
  top: 50%;
  display: grid;
  width: 14px;
  height: 14px;
  color: #fff;
  background: var(--color-orange);
  border-radius: 50%;
  content: "✓";
  place-items: center;
  font-size: 9px;
  transform: translateY(-50%);
}

.hero__actions {
  display: grid;
  gap: 10px;
}

.hero__actions .button {
  width: 100%;
  min-width: 0;
  white-space: nowrap;
}

.hero__note {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  text-align: center;
}

.product-visual {
  position: relative;
  min-height: 330px;
  margin: 0;
}

.product-visual::before {
  position: absolute;
  inset: 10% 4% 7% 8%;
  background: linear-gradient(135deg, #ffdcb7, #ffeeda);
  border-radius: 44% 56% 48% 52% / 47% 42% 58% 53%;
  content: "";
  transform: rotate(-3deg);
}

.product-visual__dots {
  position: absolute;
  left: 0;
  top: 18%;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(244, 122, 36, 0.35) 0 2px, transparent 2.5px) 0 0 / 12px 12px;
}

.product-visual__path {
  position: absolute;
  z-index: 4;
  top: 4px;
  right: 5%;
  padding: 10px 18px;
  color: var(--color-orange-dark);
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  font-size: 17px;
  font-weight: 900;
}

.product-visual__path span {
  color: var(--color-orange);
  margin-inline: 3px;
}

.desktop-mockup {
  position: absolute;
  z-index: 2;
  left: 3%;
  top: 17%;
  width: 84%;
  padding: 13px 10px 16px;
  background: linear-gradient(145deg, #45413d, #171513);
  border: 1px solid #726a63;
  border-radius: 14px 14px 7px 7px;
  box-shadow: 0 12px 24px rgba(73, 44, 24, 0.18);
}

.desktop-mockup::after {
  position: absolute;
  left: -7%;
  bottom: -15px;
  width: 114%;
  height: 16px;
  background: linear-gradient(#e7e3df, #9e9892);
  border-radius: 2px 2px 12px 12px;
  box-shadow: 0 7px 7px rgba(62, 45, 33, 0.22);
  content: "";
}

.desktop-mockup img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
}

.desktop-mockup__camera {
  position: absolute;
  left: 50%;
  top: 4px;
  width: 4px;
  height: 4px;
  background: #111;
  border-radius: 50%;
}

.tablet-mockup {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 11%;
  width: 46%;
  padding: 7px 7px 9px;
  background: linear-gradient(150deg, #2f2d2b, #0e0e0d);
  border: 1px solid #716c67;
  border-radius: 13px;
  box-shadow: 0 8px 18px rgba(54, 38, 27, 0.2);
}

.tablet-mockup img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 7px;
}

.tablet-mockup__camera {
  position: absolute;
  left: 50%;
  top: 3px;
  width: 3px;
  height: 3px;
  background: #8d8985;
  border-radius: 50%;
}

.product-visual figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  color: var(--color-muted);
  font-size: 13px;
  text-align: center;
}

.about-strip {
  padding-block: 38px;
  background: #fff;
  border-block: 1px solid #f6eadc;
}

.about-strip__inner {
  display: grid;
  gap: 26px;
  padding: 26px 24px;
  background: linear-gradient(135deg, #fffaf4, #fff2e3);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-large);
}

.about-strip h2 {
  margin-bottom: 10px;
  font-size: clamp(25px, 7vw, 34px);
}

.about-strip h2 span {
  color: var(--color-orange);
}

.about-strip p:not(.eyebrow) {
  max-width: 670px;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.about-strip p.about-strip__origin {
  margin-top: 10px;
  padding-left: 12px;
  color: var(--color-muted);
  border-left: 3px solid var(--color-orange);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
}

.about-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-flow li {
  position: relative;
  display: grid;
  min-height: 112px;
  align-content: center;
  justify-items: center;
  gap: 2px;
  padding: 14px 8px 12px;
  color: var(--color-orange-dark);
  background: #fffdf9;
  border: 1px solid var(--color-line);
  border-radius: 16px;
  box-shadow: 0 7px 16px rgba(129, 83, 42, 0.08);
  text-align: center;
}

.about-flow li:nth-child(2) {
  color: var(--color-green-dark);
  background: #fbfffc;
  border-color: #bde3c9;
}

.about-flow li:nth-child(3) {
  color: #9b5a18;
  background: #fffaf3;
}

.about-flow__number {
  display: grid;
  width: 26px;
  height: 26px;
  color: #fff;
  background: var(--color-orange);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  place-items: center;
}

.about-flow li:nth-child(2) .about-flow__number {
  background: var(--color-green);
}

.about-flow li:nth-child(3) .about-flow__number {
  background: #eaa349;
}

.about-flow strong {
  font-size: 17px;
  line-height: 1.3;
}

.about-flow small {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.about-flow li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  right: -11px;
  top: 50%;
  display: grid;
  width: 22px;
  height: 22px;
  color: #fff;
  background: var(--color-orange);
  border: 2px solid #fff7ec;
  border-radius: 50%;
  content: "›";
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  place-items: center;
  transform: translateY(-50%);
}

.story-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(244, 122, 36, 0.08) 0 2px, transparent 2.5px) 0 0 / 18px 18px,
    linear-gradient(180deg, #fff 0%, #fffaf3 48%, #fff 100%);
}

.story-section__heading {
  max-width: none;
  margin: 0 0 38px;
  text-align: left;
}

.story-section__heading h2 {
  font-size: clamp(28px, 3.3vw, 42px);
  letter-spacing: 0.02em;
}

.story-section__heading > p:last-child {
  max-width: none;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(13px, 1.35vw, 17px);
  font-weight: 700;
}

.story-text-chunk {
  white-space: nowrap;
}

.story-scene {
  display: grid;
  gap: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
}

.story-scene__copy {
  padding: 28px 24px 0;
}

.story-scene__label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 11px;
  color: var(--color-orange-dark);
  background: var(--color-orange-soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.story-scene__copy h3 {
  margin-bottom: 12px;
  font-size: clamp(23px, 6vw, 32px);
}

.story-scene__copy > p:not(.story-scene__label) {
  margin-bottom: 20px;
  font-weight: 600;
}

.story-problem-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-problem-list li {
  position: relative;
  padding: 12px 14px 12px 42px;
  color: var(--color-ink);
  background: #fff9f3;
  border: 1px solid #f2dec9;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
}

.story-problem-list li::before {
  position: absolute;
  left: 14px;
  top: 12px;
  display: grid;
  width: 20px;
  height: 20px;
  color: #fff;
  background: var(--color-orange);
  border-radius: 50%;
  content: "!";
  font-size: 12px;
  line-height: 1;
  place-items: center;
}

.story-scene__visual {
  display: grid;
  align-content: end;
  margin: 0;
  padding: 0 22px 24px;
  background: linear-gradient(180deg, transparent, var(--color-orange-pale));
}

.story-scene__visual img {
  width: min(100%, 430px);
  max-height: 320px;
  margin: 0 auto;
  object-fit: contain;
}

.story-scene__visual figcaption {
  max-width: 440px;
  margin: 4px auto 0;
  color: var(--color-orange-dark);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.story-voice {
  position: relative;
  max-width: 900px;
  margin: 34px auto;
  padding: 26px 24px;
  color: var(--color-ink);
  background: #fff;
  border: 2px solid #f4b36f;
  border-radius: var(--radius-medium);
  box-shadow: 0 12px 26px rgba(184, 104, 36, 0.1);
  text-align: center;
}

.story-voice::before {
  position: absolute;
  top: -23px;
  left: 18px;
  color: var(--color-orange);
  content: "“";
  font-family: inherit;
  font-size: 62px;
  font-weight: 900;
  line-height: 1;
}

.story-voice p {
  margin-bottom: 6px;
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 900;
}

.story-voice span {
  color: var(--color-orange-dark);
  font-size: 14px;
  font-weight: 800;
}

.story-answer {
  display: grid;
  gap: 28px;
  padding: 30px 24px;
  color: var(--color-text);
  background: linear-gradient(135deg, #fff7ed, #f2faf5);
  border: 1px solid #efd3b7;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
}

.story-answer h3 {
  margin-bottom: 12px;
  color: var(--color-ink);
  font-size: clamp(22px, 2.3vw, 30px);
}

.story-answer__copy > p:last-child {
  margin: 0;
  font-weight: 600;
}

.story-answer__visual {
  display: grid;
  align-self: stretch;
  align-items: end;
  justify-items: center;
  margin: 0;
}

.story-answer__visual img {
  width: min(80%, 220px);
  max-height: 220px;
  object-fit: contain;
  object-position: center bottom;
}

.story-values {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.story-values article {
  position: relative;
  padding: 24px 20px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
}

.story-values article > span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color-orange);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.story-values h3 {
  margin-bottom: 8px;
  font-size: var(--font-card-title);
}

.story-values p {
  margin: 0;
  font-size: 15px;
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading > p:last-child {
  max-width: 740px;
  margin: 0;
  color: var(--color-muted);
}

.section-heading--center {
  text-align: center;
}

.section-heading--center > p:last-child {
  margin-inline: auto;
}

.section-heading--light h2,
.section-heading--light > p:last-child {
  color: #fff;
}

.pain-section {
  background: linear-gradient(#fff, #fffcf8);
}

.pain-grid {
  display: grid;
  gap: 14px;
  align-items: stretch;
}

.pain-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 24px 20px 20px;
  overflow: hidden;
  background: var(--color-card);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.pain-card__tag {
  justify-self: center;
  padding: 4px 10px;
  color: var(--color-orange-dark);
  background: var(--color-orange-soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.pain-card__tag--green {
  color: var(--color-green-dark);
  background: var(--color-green-soft);
}

.pain-card h3 {
  margin: 10px 0 4px;
  font-size: var(--font-card-title);
}

.pain-card p {
  margin-bottom: 0;
  font-size: var(--font-card);
}

.pain-card img {
  width: 100%;
  height: 164px;
  margin: 16px auto 0;
  object-fit: contain;
  object-position: center bottom;
}

.audience-section {
  position: relative;
  overflow: hidden;
  background: var(--color-orange-pale);
}

.audience-section::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(244, 122, 36, 0.07) 0 1px, transparent 1.5px) 0 0 / 15px 15px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000 70%, transparent);
}

.audience-section .container {
  position: relative;
}

.audience-grid {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

.audience-card {
  display: grid;
  min-height: 370px;
  padding: 30px 26px 20px;
  overflow: hidden;
  background: #fff;
  border: 2px solid var(--color-orange);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
}

.audience-card--green {
  border-color: #83c99d;
}

.audience-card__copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
}

.audience-card__label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--color-orange-dark);
  font-size: var(--font-caption);
  font-weight: 900;
}

.audience-card--green .audience-card__label {
  color: var(--color-green-dark);
}

.audience-card h3 {
  min-height: 3.3em;
  margin-bottom: 14px;
  font-size: 23px;
}

.audience-card__headline-prefix,
.audience-card__headline-ending {
  display: block;
}

.audience-card img {
  width: min(72%, 260px);
  height: 190px;
  margin: 2px auto -8px;
  object-fit: contain;
  object-position: center bottom;
}

.check-list {
  display: grid;
  gap: 7px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  font-size: var(--font-card);
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--color-orange);
  content: "✓";
  font-weight: 900;
}

.audience-card--green .check-list li::before,
.text-link--green {
  color: var(--color-green-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-orange-dark);
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.paper-problem {
  padding-block: 38px;
  background: #fff;
}

.paper-problem__panel {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--color-text);
  background:
    radial-gradient(circle at 76% 28%, rgba(255, 194, 130, 0.32), transparent 25%),
    linear-gradient(135deg, #fff9f1, #fff0df);
  border: 2px solid #f5c793;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
}

.paper-problem__copy {
  padding: 32px 24px 16px;
}

.paper-problem h2 {
  color: var(--color-ink);
  font-size: clamp(30px, 5.2vw, 40px);
}

.problem-list {
  display: grid;
  gap: 8px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.problem-list li {
  position: relative;
  padding-left: 24px;
  font-size: var(--font-card);
}

.problem-list li::before {
  position: absolute;
  left: 0;
  top: 0.48em;
  display: grid;
  width: 15px;
  height: 15px;
  color: #fff;
  background: var(--color-orange);
  border-radius: 50%;
  content: "✓";
  place-items: center;
  font-size: 9px;
}

.paper-problem__answer {
  margin-bottom: 0;
  color: var(--color-orange-dark);
  font-size: 19px;
  font-weight: 800;
}

.paper-problem__answer strong {
  color: var(--color-orange);
}

.paper-problem__panel > img {
  width: min(100%, 430px);
  height: 270px;
  max-height: none;
  margin-inline: auto;
  padding: 0 16px 18px;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 10px 14px rgba(111, 72, 38, 0.16));
}

.benefits-section {
  background: #fff;
}

.benefits-grid {
  display: grid;
  gap: 14px;
  align-items: stretch;
}

.benefit-card {
  display: grid;
  grid-template-rows: 104px minmax(0, 1fr);
  min-height: 280px;
  justify-items: center;
  gap: 14px;
  padding: 24px 20px;
  background: var(--color-card);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.benefit-card img {
  width: 104px;
  height: 104px;
  object-fit: contain;
}

.benefit-card > div {
  display: grid;
  align-content: start;
}

.benefit-card h3 {
  color: var(--color-orange-dark);
  font-size: var(--font-card-title);
}

.benefit-card p {
  margin: 0;
  font-size: var(--font-card);
  text-align: left;
}

.trial-band {
  padding-block: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, #ff8b31, #f47720);
}

.trial-band__inner {
  position: relative;
  display: grid;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-align: center;
}

.trial-band__seal {
  display: grid;
  width: 70px;
  height: 70px;
  margin-inline: auto;
  color: var(--color-orange-dark);
  background: #fff3df;
  border-radius: 50%;
  place-items: center;
  font-size: var(--font-caption);
  font-weight: 900;
  line-height: 1.4;
}

.trial-band__copy p {
  margin-bottom: 4px;
  font-size: var(--font-caption);
  font-weight: 700;
}

.trial-band h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 7vw, 32px);
}

.trial-band img {
  display: none;
}

.features-section {
  background: linear-gradient(#fffaf3, #fff);
}

.feature-steps {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

.feature-step {
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  min-height: 360px;
  padding: 24px 16px 20px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
}

.feature-step__number {
  position: absolute;
  left: 16px;
  top: 18px;
  display: grid;
  width: 30px;
  height: 30px;
  color: #fff;
  background: var(--color-orange);
  border-radius: 50%;
  place-items: center;
  font-weight: 900;
}

.feature-step h3 {
  margin: 0 0 16px 40px;
  font-size: var(--font-card-title);
}

.feature-step__screen {
  padding: 7px;
  background: linear-gradient(#48423d, #25221f);
  border-radius: 9px;
  box-shadow: 0 10px 18px rgba(58, 38, 25, 0.16);
}

.feature-step__screen img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
}

.feature-step__screen--tablet {
  margin-inline: 12%;
  padding: 7px 11px;
  border-radius: 13px;
}

.feature-step__screen--tablet img {
  aspect-ratio: 16 / 10;
}

.feature-step p {
  margin: 16px 0 0;
  font-size: var(--font-card);
}

.feature-details {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.feature-details article {
  padding: 20px;
  background: #fff;
  border-left: 4px solid var(--color-orange);
  border-radius: 0 14px 14px 0;
  box-shadow: var(--shadow-card);
}

.feature-details span {
  color: var(--color-orange-dark);
  font-size: var(--font-caption);
  font-weight: 900;
}

.feature-details h3 {
  margin: 4px 0 6px;
  font-size: var(--font-card-title);
}

.feature-details p {
  margin: 0;
  font-size: var(--font-card);
}

.cost-section {
  color: var(--color-text);
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 182, 111, 0.22), transparent 22%),
    linear-gradient(135deg, #fffaf3, #fff0df);
  border-block: 1px solid #f5dfc8;
}

.cost-bars {
  display: grid;
  gap: 14px;
}

.cost-bar {
  display: grid;
  gap: 6px;
}

.cost-bar__label {
  color: var(--color-ink);
  font-size: var(--font-caption);
  font-weight: 800;
}

.cost-bar__track {
  overflow: hidden;
  background: #ecdccc;
  border-radius: 8px;
}

.cost-bar__value {
  display: flex;
  min-width: 180px;
  min-height: 42px;
  align-items: center;
  padding-inline: 13px;
  color: #fff;
  background: #a99a8e;
  border-radius: 8px;
  font-size: var(--font-caption);
  font-weight: 900;
  white-space: nowrap;
}

.cost-bar__value--a {
  width: 100%;
}

.cost-bar__value--b {
  width: 80%;
}

.cost-bar__value--pon {
  width: 28%;
  background: linear-gradient(90deg, #ff913c, var(--color-orange));
}

.cost-details {
  margin-top: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
}

.cost-details__heading {
  margin-bottom: 16px;
  text-align: center;
}

.cost-details__heading .eyebrow {
  margin-bottom: 4px;
}

.cost-details__heading h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 22px;
}

.cost-details__grid {
  display: grid;
  gap: 10px;
}

.cost-detail-card {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: #f8f3ed;
  border: 1px solid #e4d4c4;
  border-radius: 12px;
}

.cost-detail-card > p {
  margin: 0;
  color: var(--color-ink);
  font-size: 15px;
  font-weight: 900;
}

.cost-detail-card > strong {
  color: #74695f;
  font-size: 23px;
  line-height: 1.25;
}

.cost-detail-card > span {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.cost-detail-card--pon {
  background: #fff5e8;
  border-color: #f3b26b;
}

.cost-detail-card--pon > strong {
  color: var(--color-orange-dark);
}

.cost-difference {
  margin-top: 18px;
  padding: 18px 22px;
  color: var(--color-ink);
  background: #fff;
  border-left: 5px solid var(--color-orange);
  border-radius: 0 14px 14px 0;
  box-shadow: var(--shadow-card);
}

.cost-difference > p {
  margin-bottom: 6px;
  color: var(--color-orange-dark);
  font-size: 15px;
  font-weight: 900;
}

.cost-difference ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 17px;
  font-weight: 800;
}

.cost-difference strong {
  color: var(--color-orange-dark);
  font-size: 1.18em;
}

.cost-section__note {
  margin: 16px 0 0;
  padding: 14px 16px;
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid #ead7c3;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.7;
}

.cost-section__note strong {
  color: var(--color-ink);
}

.security-section {
  background: #fff;
}

.security-card {
  display: grid;
  grid-template-areas:
    "visual"
    "copy"
    "legal";
  gap: 20px;
  padding-block: 30px;
  background: linear-gradient(135deg, #f4fcf6, var(--color-green-soft));
  border: 2px solid #a6d9b9;
  border-radius: var(--radius-large);
}

.security-card__visual {
  grid-area: visual;
  position: relative;
  padding-inline: 20px;
  text-align: center;
}

.security-card__visual img {
  width: min(58%, 230px);
  margin-inline: auto;
}

.security-card__badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 6px 13px;
  color: var(--color-green-dark);
  background: #fff;
  border-radius: 999px;
  font-size: var(--font-caption);
  font-weight: 900;
}

.security-card__copy {
  grid-area: copy;
  padding-inline: 24px;
}

.security-card__copy h2 {
  font-size: clamp(25px, 7vw, 34px);
}

.security-card__copy > p:not(.eyebrow) {
  margin-bottom: 14px;
  font-size: var(--font-card);
}

.security-card__lead {
  color: var(--color-ink);
  font-weight: 900;
}

.security-card__plain {
  padding: 12px 14px;
  color: var(--color-green-dark);
  background: #fff;
  border-left: 4px solid var(--color-green);
  border-radius: 0 10px 10px 0;
  font-weight: 800;
}

.security-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.security-points li {
  padding: 6px 11px;
  color: var(--color-green-dark);
  background: #fff;
  border-radius: 999px;
  font-size: var(--font-caption);
  font-weight: 800;
}

.security-card__note {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 13px;
}

.security-card__legal {
  grid-area: legal;
  margin: 0 20px 20px;
  padding: 24px;
  background: #fffdf9;
  border: 2px solid #f1bd82;
  border-radius: var(--radius-medium);
}

.security-card__legal-label {
  display: inline-block;
  margin: 0 0 8px;
  padding: 5px 10px;
  color: var(--color-orange-dark);
  background: var(--color-orange-soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.security-card__legal-intro h3 {
  margin-bottom: 8px;
  color: var(--color-ink);
  font-size: clamp(22px, 5vw, 30px);
}

.security-card__legal-intro > p:last-child {
  max-width: 900px;
  margin-bottom: 0;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 700;
}

.security-card__legal-points {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.security-card__legal-points article {
  padding: 16px;
  background: #fff;
  border: 1px solid #ead7c3;
  border-radius: 12px;
}

.security-card__legal-points p {
  margin-bottom: 4px;
  color: var(--color-orange-dark);
  font-size: 13px;
  font-weight: 900;
}

.security-card__legal-points h4 {
  margin: 0 0 6px;
  color: var(--color-ink);
  font-size: 18px;
}

.security-card__legal-points span {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
}

.security-card__legal-conclusion {
  margin: 18px 0 0;
  padding: 14px 16px;
  color: var(--color-green-dark);
  background: var(--color-green-soft);
  border-left: 5px solid var(--color-green);
  border-radius: 0 12px 12px 0;
  font-size: 16px;
  font-weight: 800;
}

.security-card__source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-green-dark);
  font-size: 14px;
  font-weight: 800;
}

.security-card__source:hover {
  color: var(--color-orange-dark);
}

.security-card__sources {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 16px;
}

.security-overview {
  display: grid;
  gap: 22px;
  align-items: center;
  padding: 26px 24px;
  background: linear-gradient(135deg, #f4fcf6, var(--color-green-soft));
  border: 2px solid #a6d9b9;
  border-radius: var(--radius-large);
}

.security-overview__visual {
  margin: 0;
  text-align: center;
}

.security-overview__visual img {
  width: min(58%, 220px);
  margin-inline: auto;
}

.security-overview__copy h2 {
  margin-bottom: 12px;
  font-size: clamp(25px, 7vw, 36px);
}

.security-overview__copy > p:last-child {
  max-width: 720px;
  margin: 0;
  font-size: 15px;
  font-weight: 650;
}

.security-summary-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.security-summary-card {
  padding: 18px;
  background: #fff;
  border: 1px solid #c8e3d1;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
}

.security-summary-card > span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  margin-bottom: 8px;
  color: #fff;
  background: var(--color-green);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  place-items: center;
}

.security-summary-card h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.security-summary-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.65;
}

.security-assurance {
  margin-top: 16px;
  padding: 16px 18px;
  background: #fffaf4;
  border: 1px solid #f1cfad;
  border-radius: 12px;
}

.security-assurance > strong {
  display: block;
  margin-bottom: 5px;
  color: var(--color-orange-dark);
}

.security-assurance > p {
  margin-bottom: 5px;
  font-size: 14px;
}

.security-assurance > small {
  display: block;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.6;
}

.price-section {
  background: var(--color-orange-pale);
}

.price-panel {
  display: grid;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
}

.price-panel__included {
  padding: 26px 24px;
  background: #fffdf9;
}

.price-panel__included h3 {
  font-size: var(--font-card-title);
}

.check-list--compact {
  margin: 0;
}

.check-list--compact li {
  font-size: var(--font-card);
}

.price-panel__main {
  padding: 32px 18px;
  text-align: center;
  background: #fff;
  border-block: 1px solid var(--color-line);
}

.price-panel__ribbon {
  display: inline-block;
  margin-bottom: 16px;
  padding: 5px 14px;
  color: #fff;
  background: var(--color-orange);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.price-panel__main > p {
  margin-bottom: 0;
  color: var(--color-ink);
  font-weight: 800;
}

.price-panel__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-top: 2px;
  color: var(--color-orange);
}

.price-panel__amount strong {
  font-size: clamp(58px, 16vw, 82px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.price-panel__amount span {
  font-size: 20px;
  font-weight: 900;
}

.price-panel__main > .price-panel__tax {
  margin: 6px 0 0;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
}

.price-panel__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}

.price-panel__badges span {
  padding: 5px 9px;
  color: var(--color-orange-dark);
  background: var(--color-orange-soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.price-panel__contract-note {
  display: grid;
  gap: 2px;
  margin-top: 16px;
  padding: 10px 12px;
  color: var(--color-text);
  background: var(--color-green-soft);
  border: 1px solid #b7ddc3;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.45;
}

.price-panel__contract-note strong {
  color: var(--color-green-dark);
  font-size: 15px;
}

.price-panel__assurance {
  display: grid;
  justify-items: center;
  padding: 22px 18px 0;
  background: linear-gradient(#fffdf8, #fff7e9);
}

.price-panel__bubble {
  position: relative;
  z-index: 1;
  padding: 8px 14px;
  color: var(--color-ink);
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  font-size: var(--font-caption);
  font-weight: 800;
  text-align: center;
}

.price-panel__assurance img {
  width: 160px;
  max-height: 190px;
  margin-top: -6px;
  object-fit: contain;
  object-position: center bottom;
}

.price-section__option {
  max-width: 900px;
  margin: 14px auto 0;
  color: var(--color-muted);
  font-size: 13px;
  text-align: center;
}

.price-section__option strong {
  color: var(--color-ink);
}

.switch-section {
  background: linear-gradient(#fff, #f7fcf8);
}

.switch-card {
  display: grid;
  overflow: hidden;
  background: #fff;
  border: 2px solid #8dcea5;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
}

.switch-card__copy {
  padding: 28px 24px 10px;
}

.switch-card__label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 12px;
  color: #fff;
  background: var(--color-green);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.switch-card h3 {
  font-size: 23px;
}

.switch-card__copy > p {
  font-size: var(--font-card);
}

.switch-steps {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.switch-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: var(--color-green-soft);
  border-radius: 10px;
  font-size: var(--font-card);
  font-weight: 700;
}

.switch-steps span {
  display: grid;
  flex: 0 0 23px;
  height: 23px;
  color: #fff;
  background: var(--color-green);
  border-radius: 50%;
  place-items: center;
  /* 日本語フォントの行ボックスに引かれず、丸内の数字を中央に置く。 */
  font-family: Arial, sans-serif;
  line-height: 1;
  font-weight: 900;
}

.switch-card > img {
  width: 82%;
  max-height: 280px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center bottom;
}

.flow-section {
  background: var(--color-orange-pale);
}

.flow-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: flow;
  align-items: stretch;
}

.flow-card {
  position: relative;
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 24px 18px 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.flow-card__number {
  display: grid;
  width: 30px;
  height: 30px;
  margin: 0 auto 7px;
  color: var(--color-orange);
  background: var(--color-orange-soft);
  border-radius: 50%;
  place-items: center;
  font-weight: 900;
}

.flow-card h3 {
  margin-bottom: 4px;
  font-size: var(--font-card-title);
}

.flow-card p {
  margin-bottom: 0;
  min-height: 4.5em;
  font-size: var(--font-card);
}

.flow-card img {
  width: 100%;
  height: 112px;
  flex-shrink: 0;
  margin: 14px auto 0;
  object-fit: contain;
  object-position: center bottom;
}

.flow-reassurance {
  max-width: 860px;
  margin: 34px auto 0;
  padding: 28px 32px;
  background: linear-gradient(135deg, #fffdf9, #fff3e5);
  border: 2px solid #f6b978;
  border-radius: var(--radius-medium);
  box-shadow: 0 14px 28px rgba(184, 104, 36, 0.13);
  text-align: center;
}

.flow-reassurance .eyebrow {
  margin-bottom: 6px;
}

.flow-reassurance h3 {
  margin-bottom: 8px;
  color: var(--color-ink);
  font-size: clamp(21px, 4vw, 28px);
  line-height: 1.45;
}

.flow-reassurance h3 span,
.flow-reassurance h3 strong {
  display: block;
}

.flow-reassurance h3 strong {
  margin-top: 3px;
  color: var(--color-orange-dark);
  font-size: 1.28em;
}

.flow-reassurance > p:last-child {
  max-width: 680px;
  margin: 0 auto;
  font-size: var(--font-card);
}

.faq-section {
  background: #fff;
}

.faq-section__inner {
  max-width: 920px;
}

.faq-section__heading {
  max-width: 720px;
}

.faq-list {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.faq-list__category {
  margin: 0;
  padding: 10px 18px;
  color: var(--color-orange-dark);
  background: var(--color-orange-light);
  border-bottom: 1px solid #f1d8c3;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.faq-list__category:not(:first-child) {
  border-top: 1px solid #f1d8c3;
}

.faq-list details {
  background: #fff;
  border-bottom: 1px solid #f1e5da;
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  position: relative;
  padding: 18px 48px 18px 48px;
  color: var(--color-ink);
  cursor: pointer;
  font-size: var(--font-card);
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  position: absolute;
  left: 18px;
  top: 17px;
  display: grid;
  width: 21px;
  height: 21px;
  color: #fff;
  background: var(--color-orange);
  border-radius: 50%;
  content: "Q";
  place-items: center;
  font-size: 12px;
}

.faq-list summary::after {
  position: absolute;
  right: 18px;
  top: 50%;
  color: var(--color-orange);
  content: "+";
  font-size: 20px;
  font-weight: 500;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -2px 24px 0 48px;
  padding-bottom: 18px;
  color: var(--color-muted);
  font-size: 15px;
}

.final-cta {
  padding-block: 70px;
  color: var(--color-text);
  background:
    radial-gradient(circle at 50% 10%, rgba(244, 122, 36, 0.18), transparent 34%),
    linear-gradient(135deg, #fff6eb, #ffe7cf);
  border-top: 1px solid #f4d6b8;
}

.final-cta__inner {
  text-align: center;
}

.final-cta h2 {
  color: var(--color-ink);
  font-size: clamp(28px, 8vw, 42px);
}

.final-cta__inner > p:not(.eyebrow) {
  max-width: 690px;
  margin-inline: auto;
}

.final-cta__actions {
  display: grid;
  gap: 10px;
  max-width: 640px;
  margin: 28px auto 30px;
}

.final-cta__trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 620px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.final-cta__trust li {
  display: grid;
  min-height: 82px;
  align-content: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--color-line);
  border-radius: 14px;
}

.final-cta__trust strong {
  color: var(--color-orange-dark);
  font-size: 20px;
}

.final-cta__trust span {
  font-size: var(--font-caption);
}

.final-cta__support {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 26px 0 0;
}

.line-support-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 11px 22px;
  color: #fff;
  background: var(--color-line-app);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(6, 199, 85, 0.22);
  font-weight: 900;
  line-height: 1.4;
  text-decoration: none;
}

.line-support-button:hover {
  background: var(--color-line-app-dark);
}

.final-cta__email {
  color: var(--color-orange-dark);
  font-size: 14px;
  font-weight: 800;
}

.final-cta__support > span {
  color: var(--color-muted);
  font-size: 13px;
}

.site-footer {
  padding-block: 40px 96px;
  color: var(--color-text);
  background: linear-gradient(180deg, #fffaf4, #fff3e5);
  border-top: 1px solid #f2d8bf;
}

.site-footer__main {
  display: grid;
  gap: 26px;
}

.brand--footer {
  margin-bottom: 10px;
}

.brand--footer .brand__logo {
  width: 166px;
}

.site-footer__brand p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.7;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 18px;
  align-content: start;
  font-size: 13px;
}

.site-footer__nav a {
  color: var(--color-ink);
  font-weight: 800;
  text-decoration: none;
}

.site-footer__contact {
  display: grid;
  gap: 4px;
  margin: 0;
  font-style: normal;
}

.site-footer__contact strong {
  margin-bottom: 2px;
  color: var(--color-ink);
}

.site-footer__contact a {
  color: var(--color-orange-dark);
  font-size: 14px;
  font-weight: 800;
}

.site-footer__contact .site-footer__line {
  color: var(--color-green-dark);
}

.site-footer__bottom {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid #efd6bd;
}

.site-footer__bottom p {
  margin: 0;
  color: var(--color-muted);
  font-size: 12px;
}

.mobile-cta {
  position: fixed;
  z-index: 90;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 9px 12px calc(9px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--color-line);
  box-shadow: 0 -2px 12px rgba(80, 56, 38, 0.07);
  backdrop-filter: blur(12px);
}

.mobile-cta .button {
  min-height: 46px;
  padding: 8px 12px;
  font-size: 15px;
}

@media (max-width: 619px) {
  body {
    line-height: 1.65;
  }

  .section {
    padding-block: 48px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .pain-section .section-heading,
  .benefits-section .section-heading,
  .features-section .section-heading,
  .flow-section .section-heading,
  .switch-section .section-heading {
    text-align: left;
  }

  .about-strip {
    padding-block: 24px;
  }

  .about-strip__inner {
    gap: 18px;
    padding: 18px 16px;
  }

  .about-strip h2 {
    font-size: 23px;
  }

  .about-strip p:not(.eyebrow) {
    font-size: 15px;
  }

  .about-flow {
    gap: 7px;
  }

  .about-flow li {
    min-height: 82px;
    padding: 9px 4px;
    border-radius: 12px;
  }

  .about-flow strong {
    font-size: 15px;
  }

  .about-flow small {
    font-size: 13px;
  }

  .about-flow li:not(:last-child)::after {
    right: -8px;
    width: 16px;
    height: 16px;
    font-size: 13px;
  }

  .story-section__heading {
    margin-bottom: 20px;
  }

  .story-section__heading > p:last-child {
    font-size: 15px;
    line-height: 1.65;
  }

  .story-scene {
    gap: 0;
  }

  .story-scene__copy {
    padding: 18px 14px 0;
  }

  .story-scene__copy h3 {
    font-size: 21px;
  }

  .story-scene__copy > p:not(.story-scene__label) {
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.7;
  }

  .story-problem-list {
    gap: 7px;
  }

  .story-problem-list li {
    padding: 9px 9px 9px 34px;
    font-size: 15px;
    line-height: 1.7;
  }

  .story-problem-list li::before {
    left: 9px;
    top: 9px;
    width: 18px;
    height: 18px;
  }

  .story-scene__visual {
    padding: 6px 14px 16px;
  }

  .story-scene__visual img {
    max-height: 170px;
  }

  .story-scene__visual figcaption {
    font-size: 13px;
  }

  .story-voice {
    margin: 18px auto;
    padding: 17px 14px;
  }

  .story-voice p {
    font-size: 17px;
  }

  .story-answer {
    padding: 18px 15px;
  }

  .story-answer h3 {
    font-size: 21px;
  }

  .story-answer__copy > p:last-child {
    font-size: 15px;
    line-height: 1.7;
  }

  .story-answer__visual img {
    width: 120px;
    max-height: 120px;
  }

  .story-values {
    gap: 8px;
    margin-top: 10px;
  }

  .story-values article {
    padding: 14px 12px;
  }

  .story-values h3 {
    font-size: 15px;
  }

  .story-values p {
    font-size: 15px;
    line-height: 1.7;
  }

  .pain-grid,
  .benefits-grid,
  .feature-steps,
  .flow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .pain-card {
    min-height: 0;
    padding: 14px 10px 10px;
    text-align: left;
  }

  .pain-card__tag {
    align-self: flex-start;
    padding: 3px 7px;
    font-size: 13px;
  }

  .pain-card h3 {
    margin: 7px 0 3px;
    font-size: 16px;
  }

  .pain-card p {
    font-size: 15px;
    line-height: 1.7;
  }

  .pain-card img {
    height: 82px;
    margin-top: 7px;
  }

  .benefit-card {
    grid-template-rows: 60px auto;
    min-height: 0;
    gap: 7px;
    justify-items: start;
    padding: 13px 10px;
    text-align: left;
  }

  .benefit-card img {
    width: 60px;
    height: 60px;
    margin-inline: auto;
  }

  .benefit-card h3 {
    margin-bottom: 4px;
    font-size: 15px;
  }

  .benefit-card p {
    font-size: 15px;
    line-height: 1.7;
  }

  .trial-band {
    padding-block: 22px;
  }

  .trial-band__inner {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 10px;
    text-align: left;
  }

  .trial-band__seal {
    width: 54px;
    height: 54px;
    font-size: 13px;
  }

  .trial-band h2 {
    font-size: 18px;
  }

  .trial-band__copy p {
    font-size: 15px;
  }

  .trial-band .button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 44px;
  }

  .trial-band img {
    display: none;
  }

  .feature-step {
    grid-template-rows: auto auto auto;
    min-height: 0;
    padding: 13px 9px 11px;
  }

  .feature-step__number {
    left: 9px;
    top: 11px;
    width: 24px;
    height: 24px;
    font-size: 13px;
  }

  .feature-step h3 {
    margin: 0 0 9px 29px;
    font-size: 15px;
  }

  .feature-step__screen,
  .feature-step__screen--tablet {
    margin-inline: 0;
    padding: 4px;
  }

  .feature-step p {
    margin-top: 9px;
    font-size: 15px;
    line-height: 1.7;
  }

  .feature-details {
    gap: 8px;
    margin-top: 16px;
  }

  .feature-details article {
    padding: 12px 10px;
  }

  .feature-details h3 {
    font-size: 15px;
  }

  .feature-details p {
    font-size: 15px;
  }

  .security-overview {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    padding: 16px 14px;
  }

  .security-overview__visual img {
    width: 90px;
  }

  .security-card__badge {
    padding: 4px 7px;
    font-size: 13px;
  }

  .security-overview__copy h2 {
    font-size: 21px;
  }

  .security-overview__copy > p:last-child {
    font-size: 15px;
    line-height: 1.7;
  }

  .security-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
  }

  .security-summary-card {
    padding: 12px 10px;
  }

  .security-summary-card > span {
    width: 22px;
    height: 22px;
    font-size: 13px;
  }

  .security-summary-card h3 {
    font-size: 14px;
    line-height: 1.4;
  }

  .security-summary-card p {
    font-size: 15px;
    line-height: 1.7;
  }

  .security-assurance {
    padding: 13px 12px;
  }

  .security-assurance > p {
    font-size: 15px;
  }

  .security-assurance > small {
    font-size: 13px;
  }

  .security-card__sources {
    gap: 4px 12px;
    margin-top: 8px;
  }

  .security-card__source {
    font-size: 13px;
  }

  .cost-bars {
    gap: 8px;
  }

  .cost-bar__value {
    min-width: 110px;
    min-height: 32px;
    font-size: 13px;
  }

  .cost-details {
    margin-top: 18px;
    padding: 12px;
  }

  .cost-details__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
  }

  .cost-detail-card {
    padding: 9px 7px;
  }

  .cost-detail-card > p {
    font-size: 15px;
  }

  .cost-detail-card > strong {
    font-size: 14px;
  }

  .cost-detail-card > span {
    font-size: 13px;
    line-height: 1.4;
  }

  .cost-difference {
    margin-top: 10px;
    padding: 12px 14px;
  }

  .cost-difference ul {
    font-size: 13px;
  }

  .cost-section__note {
    margin-top: 10px;
    padding: 10px;
    font-size: 13px;
  }

  .price-panel__included {
    padding: 18px 16px;
  }

  .price-panel__main {
    padding: 22px 14px;
  }

  .price-panel__amount strong {
    font-size: 58px;
  }

  .price-panel__assurance {
    padding-top: 14px;
  }

  .price-panel__assurance img {
    width: 110px;
    max-height: 125px;
  }

  .price-section__option {
    font-size: 13px;
    line-height: 1.7;
  }

  .flow-card {
    min-height: 0;
    padding: 13px 9px 8px;
  }

  .flow-card__number {
    width: 24px;
    height: 24px;
    font-size: 13px;
  }

  .flow-card h3 {
    font-size: 15px;
  }

  .flow-card p {
    min-height: 0;
    font-size: 15px;
    line-height: 1.7;
  }

  .flow-card img {
    height: 72px;
    margin-top: 6px;
  }

  .flow-reassurance {
    margin-top: 16px;
    padding: 16px 14px;
    text-align: left;
  }

  .flow-reassurance h3 {
    font-size: 17px;
  }

  .flow-reassurance > p:last-child {
    font-size: 15px;
  }

  .switch-card__copy {
    padding: 18px 15px 8px;
  }

  .switch-card h3 {
    font-size: 19px;
  }

  .switch-card__copy > p,
  .switch-steps li {
    font-size: 15px;
  }

  .switch-card > img {
    width: 60%;
    max-height: 150px;
  }

  .switch-section .price-section__option {
    max-width: none;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid #d5eadc;
    border-radius: 10px;
    text-align: left;
  }

  .faq-list__category {
    padding: 7px 14px;
    font-size: 13px;
  }

  .faq-list summary {
    padding: 13px 38px 13px 40px;
    font-size: 13px;
    line-height: 1.7;
  }

  .faq-list summary::before {
    left: 12px;
    top: 13px;
    width: 19px;
    height: 19px;
    font-size: 13px;
  }

  .faq-list summary::after {
    right: 12px;
  }

  .faq-list details p {
    margin: 0 14px 0 40px;
    padding-bottom: 14px;
    font-size: 15px;
    line-height: 1.7;
  }

  .final-cta {
    padding-block: 48px;
  }

  .final-cta h2 {
    font-size: 26px;
  }

  .final-cta__actions {
    margin: 18px auto;
  }

  .final-cta__trust {
    gap: 6px;
  }

  .final-cta__trust li {
    min-height: 62px;
  }

  .final-cta__trust strong {
    font-size: 16px;
  }

  .site-footer {
    padding-block: 32px 92px;
  }

  .copy-full {
    display: none;
  }

  .copy-compact {
    display: inline;
  }

  body {
    line-height: 1.7;
  }

  .container {
    width: calc(100% - 32px);
  }

  .section {
    padding-block: 36px;
  }

  .section-heading h2,
  .about-strip h2,
  .security-overview__copy h2 {
    font-size: clamp(26px, 6.8vw, 30px);
    line-height: 1.4;
    letter-spacing: 0;
  }

  .section-heading > p,
  .about-strip p:not(.eyebrow),
  .security-overview__copy > p:last-child {
    font-size: 15px;
  }

  .eyebrow {
    font-size: 13px;
    letter-spacing: 0.04em;
  }

  .hero {
    padding-block: 28px 36px;
  }

  .hero__grid {
    gap: 24px;
  }

  .hero__copy h1 {
    font-size: clamp(30px, 8.5vw, 38px);
    line-height: 1.4;
    letter-spacing: 0;
    margin-bottom: 16px;
  }

  .hero__lead {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .hero__note {
    font-size: 13px;
    text-align: left;
  }

  .hero__actions .button {
    white-space: normal;
    min-height: 48px;
    font-size: 15px;
  }

  .trust-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 16px;
  }

  .trust-badges li {
    padding-right: 6px;
    font-size: 13px;
  }

  /* 同じ訴求は後続の機能・料金・FAQに残し、スマホでは重複を省く。 */
  .pain-section .section-heading > p,
  .benefits-section .section-heading > p:not(.eyebrow),
  .story-section__heading > p:last-child,
  .story-problem-list,
  .story-voice,
  .story-scene__visual,
  .story-answer__visual,
  .story-values,
  .trial-band--repeat,
  .features-section .section-heading > p:not(.eyebrow),
  .feature-details,
  .flow-section .section-heading > p:not(.eyebrow),
  .flow-reassurance > p,
  .price-section .section-heading > p:not(.eyebrow),
  .price-panel__assurance {
    display: none;
  }

  .story-text-chunk {
    white-space: normal;
  }

  /* 狭い画面では意味のまとまりを保ち、文字拡大時だけ内部の折り返しを許す。 */
  .heading-phrase {
    display: inline-block;
    max-width: 100%;
    vertical-align: top;
    text-wrap: wrap;
  }

  .story-scene__copy,
  .story-answer {
    padding: 18px;
  }

  .story-answer {
    margin-top: 12px;
  }

  .story-scene__copy h3,
  .story-answer h3 {
    font-size: 20px;
  }

  .story-scene__copy > p:not(.story-scene__label),
  .story-answer__copy > p:last-child {
    margin-bottom: 0;
    font-size: 15px;
  }

  .pain-grid,
  .benefits-grid,
  .feature-steps,
  .flow-list,
  .security-summary-grid,
  .cost-details__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .pain-card {
    padding: 16px 12px 12px;
  }

  .pain-card__tag {
    display: none;
  }

  .pain-card img {
    height: 100px;
    margin-top: auto;
    padding-top: 10px;
  }

  .pain-card h3,
  .benefit-card h3,
  .feature-step h3,
  .flow-card h3,
  .security-summary-card h3 {
    font-size: 18px;
    line-height: 1.4;
    margin-top: 0;
  }

  .pain-card p,
  .benefit-card p,
  .feature-step p,
  .flow-card p,
  .security-summary-card p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.7;
  }

  .benefit-card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 64px auto;
    align-items: start;
    gap: 12px;
    padding: 16px 12px;
  }

  .benefit-card img {
    width: 64px;
    height: 64px;
  }

  .pain-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .pain-card h3,
  .benefit-card h3 {
    font-size: clamp(16px, 4.5vw, 18px);
  }

  .feature-step {
    grid-template-columns: 100px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
    gap: 8px 12px;
    padding: 16px;
  }

  .feature-step__number {
    left: 16px;
    top: 16px;
  }

  .feature-step h3 {
    grid-column: 1 / -1;
    margin: 0 0 4px 32px;
  }

  .feature-step__screen {
    align-self: center;
  }

  .feature-step p {
    margin-top: 0;
  }

  .security-overview {
    grid-template-columns: minmax(0, 1fr);
    padding: 20px;
  }

  .security-overview__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .security-card__badge {
    position: static;
    transform: none;
  }

  .security-overview__visual img {
    width: 64px;
  }

  .security-summary-card {
    position: relative;
    padding: 16px 16px 16px 48px;
  }

  .security-summary-card > span {
    position: absolute;
    left: 14px;
    top: 16px;
  }

  .cost-detail-card {
    padding: 12px;
  }

  .cost-detail-card > p {
    margin-bottom: 4px;
  }

  .cost-detail-card > strong {
    font-size: 18px;
  }

  .cost-bar__value {
    min-width: 150px;
  }

  .price-panel {
    display: flex;
    flex-direction: column;
  }

  .price-panel__main {
    order: -1;
  }

  .flow-card {
    position: relative;
    padding: 16px 72px 16px 48px;
    text-align: left;
  }

  .flow-card__number {
    position: absolute;
    top: 16px;
    left: 12px;
  }

  .flow-card img {
    position: absolute;
    right: 10px;
    top: 50%;
    width: 52px;
    height: 52px;
    margin: 0;
    object-fit: contain;
    transform: translateY(-50%);
  }

  .faq-list summary {
    font-size: 15px;
  }

  .faq-list details p {
    font-size: 15px;
    line-height: 1.7;
  }

  .site-footer {
    padding-bottom: 24px;
  }

  .site-footer__bottom p {
    font-size: 13px;
  }

  .about-strip__copy > p:not(.eyebrow),
  .cost-details,
  .trial-band__copy > p,
  .final-cta__trust {
    display: none;
  }

  .security-assurance > p {
    font-size: 13px;
  }

  .product-visual {
    min-height: 280px;
  }

  .feature-step__screen {
    box-shadow: var(--shadow-card);
  }
}

@media (min-width: 620px) {
  .feature-step__screen--tablet {
    margin-inline: 0;
    padding: 7px;
  }

  .feature-step__screen--tablet img {
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #fff;
  }

  .flow-card p {
    flex: 1;
    text-align: left;
  }

  .mobile-only {
    display: none;
  }

  .hero__actions,
  .final-cta__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pain-grid,
  .benefits-grid,
  .flow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-values {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .audience-card {
    grid-template-columns: minmax(0, 1.2fr) minmax(170px, 0.8fr);
    align-items: stretch;
  }

  .audience-card img {
    width: 100%;
    height: 100%;
    min-height: 190px;
    margin: 0 -10px -10px 0;
  }

  .feature-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-details {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .final-cta__trust {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 760px) {
  body {
    padding-bottom: 0;
    font-size: 16px;
  }

  .section {
    padding-block: 86px;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .site-header__cta {
    display: inline-flex;
  }

  .brand {
    font-size: 24px;
  }

  .site-header__cta {
    min-height: 44px;
    padding-inline: 20px;
    font-size: 13px;
  }

  .hero {
    padding-block: 74px 86px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
    align-items: center;
    gap: 42px;
  }

  .hero__copy h1 {
    font-size: clamp(44px, 4.6vw, 60px);
    letter-spacing: 0;
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__note {
    text-align: left;
  }

  .product-visual {
    min-height: 430px;
  }

  .about-strip__inner {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.75fr);
    align-items: center;
    padding: 30px 36px;
  }

  .story-scene {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    align-items: stretch;
  }

  .story-scene__copy {
    padding: 42px 12px 42px 42px;
  }

  .story-scene__visual {
    padding: 24px 28px 34px 12px;
  }

  .story-answer {
    grid-template-columns: 1fr;
    align-items: center;
    padding: 40px 42px;
  }

  .paper-problem__panel {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    align-items: center;
  }

  .paper-problem__copy {
    padding: 42px 24px 42px 44px;
  }

  .paper-problem__panel > img {
    width: 100%;
    height: 330px;
    max-height: none;
    padding: 16px 28px 16px 0;
  }

  .benefit-card {
    grid-template-rows: 112px minmax(0, 1fr);
    min-height: 300px;
    padding: 24px 20px;
  }

  .benefit-card img {
    width: 112px;
    height: 112px;
  }

  .trial-band__inner {
    grid-template-columns: 80px minmax(230px, 1fr) minmax(210px, 0.65fr) 130px;
    gap: 24px;
    text-align: left;
  }

  .trial-band__seal {
    margin: 0;
  }

  .trial-band img {
    display: block;
    align-self: end;
    width: 150px;
    max-height: 120px;
    margin-bottom: -30px;
    object-fit: contain;
    object-position: center bottom;
  }

  .cost-bar {
    grid-template-columns: 130px 1fr;
    align-items: center;
    gap: 14px;
  }

  .cost-details__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .security-card {
    grid-template-areas:
      "visual copy"
      "legal legal";
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    align-items: center;
    padding: 38px 46px;
  }

  .security-card__copy {
    padding: 0;
  }

  .security-card__visual img {
    width: min(82%, 270px);
  }

  .security-card__legal {
    margin: 0;
  }

  .security-card__legal-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .security-overview {
    grid-template-columns: minmax(210px, 0.7fr) minmax(0, 1.3fr);
    padding: 32px 38px;
  }

  .security-summary-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .price-panel {
    grid-template-columns: minmax(230px, 0.9fr) minmax(300px, 1.2fr) minmax(190px, 0.7fr);
    align-items: stretch;
  }

  .price-panel__included,
  .price-panel__main {
    display: grid;
    align-content: center;
  }

  .price-panel__main {
    border-block: 0;
    border-inline: 1px solid var(--color-line);
  }

  .price-panel__assurance {
    align-content: end;
  }

  .price-panel__assurance img {
    width: 190px;
    max-height: 260px;
  }

  .switch-card {
    grid-template-columns: minmax(0, 1.2fr) minmax(270px, 0.8fr);
    align-items: end;
  }

  .switch-card__copy {
    padding: 40px 20px 40px 42px;
  }

  .switch-card > img {
    width: 100%;
    max-height: 390px;
    margin: 0;
  }

  .site-footer {
    padding-bottom: 40px;
  }

  .site-footer__main {
    grid-template-columns: minmax(210px, 1.1fr) minmax(230px, 1fr) minmax(220px, 0.9fr);
    align-items: start;
  }

  .mobile-cta {
    display: none;
  }
}

@media (min-width: 980px) {
  .story-answer {
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  }

  .hero__actions .button {
    gap: 8px;
    padding-inline: clamp(14px, 1.5vw, 22px);
    font-size: clamp(14px, 1.1vw, 17px);
  }

  .global-nav {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.3vw, 18px);
  }

  .global-nav a {
    position: relative;
    color: var(--color-ink);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-menu {
    display: none;
  }

  .global-nav a::after {
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -5px;
    height: 2px;
    background: var(--color-orange);
    content: "";
    transition: right 180ms ease;
  }

  .global-nav a:hover::after {
    right: 0;
  }

  .pain-grid,
  .benefits-grid,
  .feature-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pain-card {
    min-height: 370px;
  }

  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-step {
    padding-inline: 14px;
  }

  .feature-step:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    right: -17px;
    top: 45%;
    width: 0;
    height: 0;
    border-block: 12px solid transparent;
    border-left: 14px solid var(--color-orange);
    content: "";
  }

  .flow-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .flow-card {
    min-height: 330px;
  }

  .flow-card:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    right: -15px;
    top: 48%;
    width: 0;
    height: 0;
    border-block: 10px solid transparent;
    border-left: 12px solid var(--color-orange);
    content: "";
  }
}

@media (min-width: 980px) and (max-width: 1079px) {
  .audience-card--green .audience-card__headline-prefix,
  .audience-card--green .audience-card__headline-ending {
    display: inline;
  }

  .audience-card--green .audience-card__headline-ending {
    white-space: nowrap;
  }
}

@media (min-width: 1080px) {
  .audience-card--green {
    position: relative;
    display: block;
  }

  .audience-card--green .audience-card__copy {
    display: block;
  }

  .audience-card--green h3 {
    font-size: 20px;
    letter-spacing: -0.02em;
  }

  .audience-card--green .audience-card__headline-prefix,
  .audience-card--green .audience-card__headline-ending {
    white-space: nowrap;
  }

  .audience-card--green .check-list {
    max-width: 62%;
  }

  .audience-card--green > img {
    position: absolute;
    right: 18px;
    bottom: 14px;
    width: min(35%, 190px);
    height: 180px;
    min-height: 0;
    margin: 0;
  }
}

@media (min-width: 760px) and (max-width: 979px) {
  .price-panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  }

  .price-panel__assurance {
    display: none;
  }

  .price-panel__main {
    border-right: 0;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 680px;
  }

  .hero__copy h1 {
    font-size: clamp(44px, 7vw, 58px);
  }

  .product-visual {
    width: min(100%, 720px);
    min-height: 500px;
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .global-nav a::after {
    transition: none;
  }
}
