:root {
  --bg: #fbf8f3;
  --bg-soft: #f4eee5;
  --surface: rgba(255, 253, 248, 0.9);
  --surface-strong: #fffdf8;
  --text: #171411;
  --muted: #62584d;
  --line: rgba(178, 141, 86, 0.24);
  --gold: #b28d56;
  --gold-deep: #8a6a3c;
  --dark: #111111;
  --dark-2: #1c1a18;
  --shadow: 0 18px 45px rgba(35, 28, 19, 0.12);
  --shadow-soft: 0 10px 28px rgba(35, 28, 19, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: min(1160px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.95), transparent 36%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.8;
}

img,
picture {
  display: block;
}

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

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
}

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

.text-gold {
  color: var(--gold-deep);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(178, 141, 86, 0.14);
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 92px;
  height: 74px;
  font-family: "Cormorant Garamond", serif;
}

.brand-logo-img {
  width: 92px;
  max-height: 70px;
  object-fit: contain;
}

.brand-ring {
  position: absolute;
  inset: 8px 15px;
  border: 1.4px solid rgba(23, 20, 17, 0.32);
  border-radius: 50%;
}

.brand-copy {
  display: grid;
  place-items: center;
  gap: 1px;
  line-height: 1;
}

.brand-name {
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav > a:not(.button) {
  position: relative;
  white-space: nowrap;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

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

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  filter: brightness(1.02);
}

.rb-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
  will-change: opacity, transform;
}

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

.rb-reveal[data-delay="1"] {
  transition-delay: 0.08s;
}

.rb-reveal[data-delay="2"] {
  transition-delay: 0.16s;
}

.rb-reveal[data-delay="3"] {
  transition-delay: 0.24s;
}

.rb-reveal[data-delay="4"] {
  transition-delay: 0.32s;
}

.button-dark {
  color: #fffaf2;
  background: linear-gradient(135deg, #151515, #292725);
}

.button-gold {
  color: #fffaf2;
  background: linear-gradient(135deg, #c7a266, #9d7131);
}

.button-light {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(178, 141, 86, 0.32);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 9px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.hero-section {
  position: relative;
  overflow: clip;
  min-height: clamp(720px, calc(100vh - 82px), 900px);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.96) 0%, rgba(255, 253, 248, 0.86) 32%, rgba(255, 253, 248, 0.28) 57%, rgba(255, 253, 248, 0.04) 78%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(244, 238, 229, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: clamp(720px, calc(100vh - 82px), 900px);
  padding: 62px 0 44px;
}

.hero-copy {
  width: min(55%, 650px);
}

.hero-kicker {
  margin: 0 0 18px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.05rem, 1.4vw, 1.45rem);
  letter-spacing: 0.08em;
}

.hero-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2.3rem, 4.5vw, 4.6rem);
  line-height: 1.28;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero-title span {
  white-space: nowrap;
}

.hero-brand {
  margin: 28px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(5.4rem, 10vw, 9.2rem);
  line-height: 0.88;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.hero-description {
  margin: 18px 0 0;
  letter-spacing: 0.34em;
  font-size: 0.96rem;
  font-weight: 700;
}

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

.hero-primary-button {
  min-width: 280px;
  min-height: 58px;
  font-weight: 700;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(55%, 650px);
  margin-top: 42px;
}

.highlight-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 154px;
  padding: 24px 18px 18px;
  text-align: center;
  border-right: 1px solid rgba(178, 141, 86, 0.24);
}

.highlight-card:last-child {
  border-right: 0;
}

.highlight-card svg {
  width: 40px;
  height: 40px;
  color: var(--gold-deep);
}

.highlight-card h2 {
  margin: 14px 0 6px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.34rem;
  line-height: 1.45;
}

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

.section {
  padding: clamp(72px, 8vw, 108px) 0;
}

.section-dark {
  color: #fffaf4;
  background:
    radial-gradient(circle at 82% 0%, rgba(178, 141, 86, 0.22), transparent 30%),
    linear-gradient(135deg, #111 0%, #1d1b19 50%, #111 100%);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 24px);
  margin-bottom: 42px;
  text-align: center;
}

.section-heading span {
  width: min(9vw, 92px);
  height: 1px;
  background: rgba(178, 141, 86, 0.56);
}

.section-heading h2 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.08em;
}

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

.concern-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  min-height: 150px;
  padding: 26px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 171, 118, 0.44);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
}

.concern-icon,
.strength-icon,
.flow-step-icon,
.pricing-icon {
  display: inline-grid;
  place-items: center;
  color: var(--gold-deep);
}

.concern-icon {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(201, 171, 118, 0.62);
  border-radius: 50%;
  color: var(--gold);
}

.concern-icon svg {
  width: 30px;
  height: 30px;
}

.concern-card p {
  margin: 0;
  line-height: 1.9;
  font-weight: 700;
}

.concerns-conclusion {
  margin: 42px 0 0;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.55;
}

.concerns-conclusion strong {
  color: var(--gold);
  font-weight: 500;
}

.strengths-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(178, 141, 86, 0.08), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, #f7f2eb 100%);
}

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

.strength-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(178, 141, 86, 0.2);
  box-shadow: var(--shadow-soft);
}

.strength-image {
  margin: 0;
  overflow: hidden;
  background: #eee5d9;
}

.strength-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 380ms ease;
}

.strength-card:hover .strength-image img {
  transform: scale(1.035);
}

.strength-copy {
  position: relative;
  padding: 28px 26px 30px;
}

.strength-number {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  line-height: 1;
  color: rgba(178, 141, 86, 0.72);
}

.strength-icon {
  position: absolute;
  top: 30px;
  right: 26px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(178, 141, 86, 0.12);
}

.strength-icon svg {
  width: 25px;
  height: 25px;
}

.strength-card h3 {
  margin: 0 0 12px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.35rem, 1.65vw, 1.75rem);
  line-height: 1.5;
}

.strength-card p:not(.strength-number) {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

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

.pricing-card {
  position: relative;
  overflow: hidden;
  padding: 34px 24px 30px;
  text-align: center;
  border-radius: 24px;
  border: 1px solid rgba(201, 171, 118, 0.46);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
}

.pricing-card.featured {
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(244, 231, 209, 0.96)),
    radial-gradient(circle at top right, rgba(178, 141, 86, 0.24), transparent 42%);
  border-color: rgba(201, 171, 118, 0.74);
}

.pricing-card h3 {
  margin: 0 0 16px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.pricing-price {
  margin: 0;
  font-family: "Noto Serif JP", serif;
}

.pricing-price strong {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-variant-numeric: lining-nums tabular-nums;
}

.pricing-price span {
  margin-left: 0.2em;
}

.pricing-note {
  margin: 14px 0 18px;
  color: currentColor;
  opacity: 0.82;
}

.pricing-recommend {
  margin: -4px 0 18px;
  color: rgba(249, 245, 239, 0.82);
  font-size: 0.95rem;
  line-height: 1.7;
}

.pricing-card.featured .pricing-recommend {
  color: rgba(23, 20, 17, 0.72);
}

.pricing-icon svg {
  width: 30px;
  height: 30px;
  color: var(--gold);
}

.pricing-badge {
  position: absolute;
  top: 16px;
  right: -38px;
  width: 150px;
  padding: 7px 0;
  transform: rotate(35deg);
  background: linear-gradient(135deg, #e8d3a3, #c5a15d);
  color: #4a3315;
  font-size: 0.78rem;
  font-weight: 700;
}

.pricing-footnote {
  margin: 18px 0 0;
  text-align: center;
  color: rgba(255, 250, 244, 0.78);
}

.campaign-banner {
  display: grid;
  grid-template-columns: 170px minmax(500px, 1fr) 240px;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
  padding: 20px 30px;
  border-radius: 16px;
  border: 1px solid rgba(178, 141, 86, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.98), rgba(247, 238, 223, 0.96));
  box-shadow: 0 14px 32px rgba(20, 16, 10, 0.12);
  color: var(--text);
}

.campaign-label,
.campaign-message,
.campaign-aside {
  margin: 0;
  font-family: "Noto Serif JP", serif;
}

.campaign-label {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(23, 20, 17, 0.84);
  text-align: left;
  word-break: keep-all;
  overflow-wrap: normal;
}

.campaign-message {
  text-align: center;
  font-size: clamp(2.4rem, 3.4vw, 3.7rem);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--gold-deep);
  white-space: nowrap;
  font-variant-numeric: lining-nums tabular-nums;
}

.campaign-aside {
  text-align: right;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(23, 20, 17, 0.78);
  word-break: keep-all;
  overflow-wrap: normal;
}

@media (max-width: 1200px) and (min-width: 1081px) {
  .campaign-banner {
    grid-template-columns: 150px minmax(420px, 1fr) 220px;
    gap: 18px;
    padding-inline: 26px;
  }

  .campaign-message {
    font-size: clamp(2.2rem, 3.1vw, 3.35rem);
  }

  .campaign-label,
  .campaign-aside {
    font-size: 0.9rem;
  }
}

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

.flow-card {
  padding: 30px 24px;
  border-radius: 24px;
  border: 1px solid rgba(178, 141, 86, 0.22);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow-soft);
}

.flow-card h3 {
  margin: 0 0 26px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 1.34rem;
}

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

.flow-steps-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.flow-step {
  position: relative;
  text-align: center;
  counter-increment: flow;
}

.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -11px;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(138, 106, 60, 0.7);
  border-right: 2px solid rgba(138, 106, 60, 0.7);
  transform: rotate(45deg);
}

.flow-step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 1px solid rgba(178, 141, 86, 0.46);
  background: rgba(255, 255, 255, 0.9);
}

.flow-step-icon svg {
  width: 30px;
  height: 30px;
}

.flow-step p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
}

/* =========================
  FAQ
========================= */

.faq-section {
  background: linear-gradient(180deg, #fbf8f3 0%, #f6efe5 100%);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  padding: 0 24px;
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(178, 141, 86, 0.2);
  box-shadow: 0 12px 30px rgba(24, 18, 11, 0.08);
}

.faq-item summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  line-height: 1.7;
}

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

.faq-item p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--muted);
  line-height: 1.9;
}

.faq-q,
.faq-a {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  color: var(--gold-deep);
}

.faq-item summary svg {
  width: 22px;
  height: 22px;
  color: var(--gold-deep);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  color: #f9f5ef;
}

.final-cta-backdrop,
.final-cta-overlay {
  position: absolute;
  inset: 0;
}

.final-cta-backdrop {
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
}

.final-cta-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.94) 0%,
      rgba(5, 5, 5, 0.84) 42%,
      rgba(5, 5, 5, 0.48) 72%,
      rgba(5, 5, 5, 0.28) 100%
    );
}

.final-cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: start;
  gap: 24px;
}

.final-cta-copy {
  min-width: 0;
  max-width: 760px;
}

.final-cta-title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.8rem, 2.2vw, 2.65rem);
  line-height: 1.65;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.final-cta-title span {
  display: block;
  white-space: nowrap;
}

.final-cta-description {
  margin: 14px 0 0;
  color: rgba(249, 245, 239, 0.86);
  font-size: 0.95rem;
  line-height: 1.9;
}

.final-cta-button {
  width: min(380px, 100%);
  min-height: 60px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
  justify-self: start;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 16px;
    font-size: 0.86rem;
  }

  .hero-copy,
  .hero-highlights {
    width: min(63%, 620px);
  }

  .strengths-grid,
  .pricing-grid,
  .flow-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .flow-card {
    max-width: 760px;
    margin-inline: auto;
    width: 100%;
  }

  .campaign-banner {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
    padding: 28px 24px;
  }

  .campaign-label,
  .campaign-message,
  .campaign-aside {
    text-align: center;
    white-space: normal;
  }

  .campaign-message {
    font-size: clamp(2.3rem, 8vw, 3.6rem);
  }

}

@media (max-width: 768px) {
  :root {
    --container: min(100% - 32px, 560px);
  }

  .rb-reveal[data-delay="1"],
  .rb-reveal[data-delay="2"],
  .rb-reveal[data-delay="3"],
  .rb-reveal[data-delay="4"] {
    transition-delay: 0.06s;
  }

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

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

  .brand-mark {
    width: 82px;
    height: 64px;
  }

  .brand-logo-img {
    width: 82px;
    max-height: 62px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-sub {
    font-size: 0.56rem;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(178, 141, 86, 0.16);
    border-radius: 22px;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a:not(.button) {
    padding: 13px 8px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero-section,
  .hero-content {
    min-height: 780px;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.96) 0%, rgba(255, 253, 248, 0.86) 38%, rgba(255, 253, 248, 0.34) 68%, rgba(255, 253, 248, 0.12) 100%),
      linear-gradient(90deg, rgba(255, 253, 248, 0.78), rgba(255, 253, 248, 0.08));
  }

  .hero-content {
    align-content: start;
    padding: 44px 0 28px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-kicker {
    margin-bottom: 12px;
  }

  .hero-title {
    font-size: clamp(2.25rem, 8vw, 3.3rem);
  }

  .hero-title span {
    white-space: normal;
  }

  .hero-brand {
    margin-top: 22px;
    font-size: clamp(4.2rem, 17vw, 6.1rem);
  }

  .hero-description {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    line-height: 1.8;
  }

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

  .hero-primary-button {
    width: 100%;
    min-height: 58px;
  }

  .hero-highlights {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 30px;
    gap: 14px;
  }

  .section-heading span {
    width: 44px;
  }

  .section-heading h2 {
    font-size: clamp(1.65rem, 7vw, 2.2rem);
    letter-spacing: 0.04em;
  }

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

  .concern-card {
    min-height: auto;
    padding: 22px 20px;
  }

  .concerns-conclusion {
    font-size: clamp(1.7rem, 7vw, 2.3rem);
  }

  .strength-copy {
    padding: 24px 20px;
  }

  .strength-card h3 {
    font-size: 1.36rem;
  }

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

  .pricing-card h3 {
    font-size: 1.45rem;
  }

  .pricing-price strong {
    font-size: 3.35rem;
  }

  .pricing-recommend {
    font-size: 0.9rem;
  }

  .campaign-banner {
    margin-top: 28px;
    border-radius: 18px;
    padding: 26px 18px;
  }

  .campaign-label {
    font-size: 0.9rem;
  }

  .campaign-message {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.18;
  }

  .campaign-aside {
    font-size: 0.9rem;
  }

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

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

  .flow-step {
    display: grid;
    grid-template-columns: 74px 1fr;
    align-items: center;
    gap: 14px;
    text-align: left;
  }

  .flow-step:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 35px;
    bottom: -16px;
    transform: rotate(135deg);
  }

  .flow-step-icon {
    width: 74px;
    height: 74px;
    margin: 0;
  }

  .faq-grid {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .faq-item {
    padding: 0 18px;
    border-radius: 16px;
  }

  .faq-item summary {
    gap: 10px;
    padding: 18px 0;
    font-size: 0.95rem;
  }

  .faq-item p {
    padding-bottom: 18px;
    font-size: 0.92rem;
  }

  .final-cta {
    padding: 56px 0;
  }

  .final-cta-backdrop {
    background-position: 70% center;
  }

  .final-cta-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(5, 5, 5, 0.92) 0%,
        rgba(5, 5, 5, 0.78) 58%,
        rgba(5, 5, 5, 0.46) 100%
      );
  }

  .final-cta-content {
    gap: 24px;
  }

  .final-cta-title {
    font-size: clamp(1.45rem, 6vw, 2rem);
    line-height: 1.75;
    letter-spacing: 0.04em;
  }

  .final-cta-title span {
    white-space: normal;
  }

  .final-cta-description {
    font-size: 0.9rem;
  }

  .final-cta-button {
    width: 100%;
    min-height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rb-reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}
