:root {
  --rose: #dd8a9a;
  --rose-deep: #b86274;
  --rose-soft: #f7dee3;
  --rose-pale: #fceef0;
  --cream: #fdf8f3;
  --beige: #f6ebdd;
  --beige-dark: #ead9c2;
  --gold: #c2a368;
  --gold-light: #ddc28a;
  --text: #5a4944;
  --heading: #6a4a4d;
  --muted: #9a847e;
  --green: #06c755;
  --shadow: 0 16px 38px rgba(146, 96, 104, 0.16);
  --shadow-soft: 0 12px 26px rgba(146, 96, 104, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: #efe7e0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Times New Roman", serif;
  line-height: 1.9;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: calc((100vw - 430px) / 2);
  background: #efe7e0;
  z-index: -1;
}

body::before {
  left: 0;
}

body::after {
  right: 0;
}

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

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

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 800ms ease,
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.reveal.reveal-soft {
  transform: translateY(14px);
}

.reveal.reveal-left {
  transform: translateX(-18px);
}

.reveal.reveal-right {
  transform: translateX(18px);
}

.reveal.reveal-pop {
  transform: translateY(16px) scale(0.97);
}

.reveal.reveal-left.is-visible,
.reveal.reveal-right.is-visible,
.reveal.reveal-pop.is-visible {
  transform: translate(0, 0) scale(1);
}

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

/* ===== Layout frame ===== */
.site-header,
main {
  width: min(100%, 430px);
  margin-inline: auto;
}

.floating-line {
  max-width: 430px;
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 10px 16px;
  background: #ffffff;
  border-bottom: 1px solid rgba(184, 98, 116, 0.14);
  backdrop-filter: blur(10px);
}

.brand img {
  width: 108px;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mens-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

.header-mens-link {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(154, 132, 126, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(184, 98, 116, 0.32);
  font-family: system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

main {
  overflow: hidden;
  background: var(--cream);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: #fffaf7;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1179 / 1110;
  min-height: 560px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 48% 8%, rgba(255, 250, 247, 0.84) 0 6%, rgba(255, 250, 247, 0) 16%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 29%, rgba(255, 255, 255, 0.18) 57%, rgba(255, 255, 255, 0) 78%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 42%, rgba(255, 251, 247, 0.9) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(86%, 340px);
  padding: 30px 0 0 30px;
  text-shadow:
    0 1px 14px rgba(255, 255, 255, 0.95),
    0 0 30px rgba(255, 255, 255, 0.88);
}

.hero-eyebrow {
  position: relative;
  display: inline-block;
  width: max-content;
  margin: 0 0 31px;
  padding-bottom: 23px;
  color: #d45f78;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.65;
}

.hero-eyebrow-text {
  display: block;
}

.hero-eyebrow-line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  opacity: 0.58;
  filter: saturate(0.72) brightness(1.12);
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin: 0 0 25px;
  letter-spacing: 0;
}

.hero-title .l1 {
  color: #4c3832;
  font-size: clamp(26px, 7.4vw, 33px);
  font-weight: 500;
  line-height: 1.35;
}

.hero-title .l2 {
  color: #4c3832;
  font-size: clamp(52px, 15vw, 66px);
  font-weight: 500;
  line-height: 1.12;
}

.hero-title .l3 {
  color: #cf6177;
  font-size: clamp(35px, 10.2vw, 43px);
  font-weight: 500;
  line-height: 1.18;
}

.hero-sub {
  margin: 0 0 28px;
  color: #4b3730;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.78;
  letter-spacing: 0;
}

.hero-tag {
  position: relative;
  width: min(306px, calc(100vw - 58px));
  margin: 0;
  padding: 15px 26px 16px;
  color: #4b3730;
  background: rgba(255, 248, 240, 0.9);
  border: 1px solid rgba(230, 203, 177, 0.7);
  box-shadow: 0 10px 24px rgba(142, 96, 82, 0.12);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
  clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 14px 100%, 0 50%);
  backdrop-filter: blur(2px);
}

.hero-tag b {
  display: inline-block;
  margin-top: 4px;
  color: #cf6177;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-lower {
  position: relative;
  margin-top: -2px;
  padding: 38px 16px 26px;
  background:
    radial-gradient(circle at 15% 28%, rgba(255, 255, 255, 0.95) 0 8%, rgba(255, 255, 255, 0) 27%),
    linear-gradient(180deg, #fff8f3 0%, #fff8f3 34%, #fffefe 70%, #fff8f4 100%);
}

.hero-wave {
  position: absolute;
  left: 0;
  top: -58px;
  width: 100%;
  height: 102px;
  fill: #fff8f3;
  filter: drop-shadow(0 -5px 10px rgba(255, 255, 255, 0.62));
}

/* ヒーロー：3つの特徴 */
.hero-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  position: relative;
  z-index: 1;
  margin: -40px auto 0;
  padding: 0;
  list-style: none;
}

.hero-features li {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 5px;
  min-width: 0;
  aspect-ratio: 1;
  padding: 13px 7px 11px;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.9) 0 8%, rgba(255, 248, 243, 0.62) 38%, #fff8f3 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.98);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.36),
    inset 0 0 26px rgba(255, 255, 255, 0.88),
    0 0 16px rgba(255, 255, 255, 0.9),
    0 6px 14px rgba(92, 62, 56, 0.06),
    0 10px 24px rgba(143, 96, 87, 0.1);
  text-align: center;
}

.hero-features li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.95);
}

.hero-features img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.hero-features b {
  color: #d45f78;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

.hero-features span {
  color: #4b3730;
  font-size: 9px;
  line-height: 1.45;
  letter-spacing: 0;
}

.hero-features .feature-nowrap {
  white-space: nowrap;
}

/* ヒーロー：下部の帯 */
.hero-band {
  position: relative;
  z-index: 1;
  padding: 25px 0 0;
  background: transparent;
  text-align: center;
}

.hero-band p {
  margin: 0;
  color: #4b3730;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.72;
  letter-spacing: 0;
}

.hero-band .strong {
  position: relative;
  display: block;
  margin-top: 4px;
  padding-bottom: 20px;
  color: #cf6177;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}

.hero-band .strong::before,
.hero-band .strong::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hero-band .strong::before {
  bottom: 0;
  width: min(240px, 72vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 95, 120, 0), rgba(212, 95, 120, 0.55), rgba(212, 95, 120, 0));
}

.hero-band .strong::after {
  bottom: -5px;
  width: 10px;
  height: 10px;
  background: #f1bbc6;
  box-shadow: 0 0 0 5px #fffaf7;
  transform: translateX(-50%) rotate(45deg);
}

.hero-cta-wrap {
  padding: 24px 20px 32px;
  background: #fffaf7;
}

/* 画像のLINE CTAボタン（line-v3.png） */
.line-btn-img {
  display: block;
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.line-btn-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  filter: drop-shadow(0 10px 20px rgba(6, 199, 85, 0.32));
  animation: lineGlow 3s ease-in-out infinite;
}

.line-btn-img:active {
  transform: translateY(1px) scale(0.99);
}

.hero-cta-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

/* ===== Section base ===== */
.section-inner {
  width: min(100% - 36px, 392px);
  margin-inline: auto;
  padding: 58px 0;
}

.section-inner.wide {
  width: min(100% - 28px, 404px);
}

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

h2 {
  margin-bottom: 26px;
  color: var(--heading);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
  overflow-wrap: anywhere;
}

.section-title {
  display: block;
  margin-bottom: 4px;
  color: var(--rose-deep);
  font-family: system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.title-divider {
  width: 140px;
  margin: -6px auto 30px;
  opacity: 0.85;
}

.section-cream {
  background: linear-gradient(180deg, #fdf6f1, var(--cream));
}

.faq .section-inner {
  padding-top: 28px;
}

.merit .section-inner {
  padding-top: 28px;
}

/* 施術写真セクションのみ背景を白に */
.cases.section-cream {
  background: #ffffff;
}

.section-beige {
  background: linear-gradient(180deg, var(--beige), #fbf3ea);
}

/* 共感・悩み喚起 */
.worry {
  position: relative;
  background:
    radial-gradient(110% 60% at 50% 0%, rgba(247, 222, 227, 0.7), transparent 60%),
    linear-gradient(180deg, #fbeef0 0%, #fcf4ef 100%);
}

.worry .section-inner {
  padding-top: 48px;
  padding-bottom: 28px;
}

.worry-heading {
  font-size: 22px;
  line-height: 1.62;
}

.worry-heading .age {
  display: inline-flex;
  align-items: baseline;
}

.worry-heading .num {
  color: var(--gold);
  background: linear-gradient(135deg, #c79a4a 0%, #f0d89a 45%, #b88b3a 75%, #e7c878 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.42em;
  font-weight: 600;
  line-height: 1;
}

.worry-heading .unit,
.worry-heading .dot {
  color: var(--heading);
  font-size: 0.84em;
  font-weight: 700;
}

.worry-heading .rest {
  font-size: 0.82em;
  font-weight: 700;
}

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

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(221, 138, 154, 0.28);
  border-radius: 12px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.check-list li::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--rose) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 15px no-repeat;
}

.message-pill {
  margin: 26px auto 24px;
  padding: 13px 16px;
  color: var(--rose-deep);
  background: #fff;
  border: 1px solid rgba(221, 138, 154, 0.5);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.solution {
  margin-bottom: 30px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
  text-align: center;
}

.solution b {
  color: var(--rose-deep);
  font-size: 17px;
}

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

.feature-item {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 18px 6px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  color: var(--heading);
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

.feature-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* ===== CTA section ===== */
.cta-section {
  padding: 40px 18px;
  background: var(--cream);
}

/* CTA1：上のworryセクションと背景を揃え、カードを上に寄せる */
#line-contact.cta-section {
  background: #fcf4ef;
  margin-top: 0;
  padding-top: 0;
}

.cta-box {
  padding: 28px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
}

.cta-box-outline {
  background: linear-gradient(180deg, #fff, #fdf3f0);
  border: 1.5px solid rgba(221, 138, 154, 0.55);
}

.cta-lead {
  margin-bottom: 4px;
  color: var(--rose-deep);
  font-size: 21px;
  font-weight: 700;
}

.cta-sub {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.cta-note {
  margin: 16px 0 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.8;
}

/* ===== Before / After ===== */
.cases h2::after,
.faq h2::after,
.reasons h2::after,
.process h2::after,
.voices h2::after,
.salon h2::after,
.merit h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 999px;
}

.case-card,
.info-card,
.reason-card,
.process-card,
.voice-card,
.merit-card {
  background: #fff;
  border: 1px solid rgba(184, 98, 116, 0.1);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.case-card {
  padding: 18px 16px 16px;
}

.case-card + .case-card {
  margin-top: 18px;
}

.case-head {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--rose-deep);
  font-size: 16px;
  font-weight: 700;
}

.case-head span {
  color: var(--gold);
}

.case-title {
  margin-bottom: 12px;
  color: var(--heading);
  font-size: 20px;
  font-weight: 700;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

figure {
  margin: 0;
}

figcaption {
  margin-bottom: 6px;
  padding: 3px 0;
  border-radius: 999px;
  color: #fff;
  font-family: system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.before-after .before figcaption {
  background: #b6a99f;
}

.before-after .after figcaption {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
}

.before-after img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: 10px;
}

.disclaimer {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

/* ===== Merit (誰にもバレない / 完全個室) ===== */
.merit {
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(247, 222, 227, 0.6), transparent 45%),
    var(--cream);
}

.merit h2 {
  font-size: 24px;
  line-height: 1.6;
}

.merit h2 span {
  color: var(--rose-deep);
}

.merit-lead {
  margin: 0 0 26px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.95;
  text-align: center;
}

.merit-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.merit-images figure img {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.merit-images figcaption {
  margin-top: 8px;
  padding: 0;
  color: var(--rose-deep);
  background: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
}

.merit-card {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
}

.merit-card + .merit-card {
  margin-top: 13px;
}

.merit-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(212, 112, 132, 0.18);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(159, 78, 94, 0.08);
}

.merit-icon img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.merit-card p {
  margin: 0;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.78;
}

.merit-card p b {
  color: var(--rose-deep);
}

.gold-frame {
  position: relative;
  margin-top: 30px;
  padding: 34px 26px;
  background: linear-gradient(135deg, #fdf3ef, #fbeef0);
  border: 1.5px solid var(--gold-light);
  border-radius: 18px;
  text-align: center;
}

.gold-frame p {
  margin: 0;
  color: var(--heading);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.85;
}

.gold-frame span {
  color: var(--rose-deep);
}

/* ===== FAQ ===== */
.faq-item {
  margin-bottom: 12px;
  background: #fff;
  border: 1px solid rgba(184, 98, 116, 0.12);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px;
  list-style: none;
  cursor: pointer;
  color: var(--heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

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

.faq-item summary .q {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  border-radius: 50%;
  color: #fff;
  font-family: system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.faq-item summary .arrow {
  margin-left: auto;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--rose);
  border-bottom: 2px solid var(--rose);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.faq-item[open] summary .arrow {
  transform: rotate(-135deg);
}

.faq-body {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 0 16px 18px;
}

.faq-body .a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: var(--beige);
  border-radius: 50%;
  color: var(--gold);
  font-family: system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.faq-body p {
  margin: 3px 0 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.85;
}

/* ===== Pricing ===== */
.pricing {
  position: relative;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.96) 0 18%, rgba(255, 255, 255, 0) 48%),
    radial-gradient(circle at 50% 62%, rgba(255, 255, 255, 0.92) 0 16%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, #fff8f7 0%, #fffdfc 52%, #fff8f5 100%);
}

.pricing::before,
.pricing::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  pointer-events: none;
}

.pricing::before {
  top: 0;
  height: 210px;
  background: linear-gradient(180deg, rgba(247, 211, 219, 0.22), rgba(247, 211, 219, 0));
}

.pricing::after {
  bottom: 0;
  height: 180px;
  background: linear-gradient(0deg, rgba(247, 211, 219, 0.18), rgba(247, 211, 219, 0));
}

.pricing .section-inner {
  position: relative;
  z-index: 1;
  padding-top: 42px;
  padding-bottom: 48px;
}

.pricing .section-title {
  position: relative;
  display: block;
  margin-bottom: 48px;
  color: #d45f78;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-align: center;
}

.pricing .section-title::before,
.pricing .section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.pricing .section-title::before {
  bottom: -24px;
  width: 82px;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 95, 120, 0), rgba(212, 95, 120, 0.5), rgba(212, 95, 120, 0));
}

.pricing .section-title::after {
  bottom: -29px;
  width: 10px;
  height: 10px;
  background: #e5a7b3;
  box-shadow: 0 0 0 7px #fffafa;
  transform: translateX(-50%) rotate(45deg);
}

.pricing h2 {
  margin-bottom: 24px;
  color: #4c3832;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  text-align: center;
}

.pricing .lead {
  position: relative;
  margin: 0 0 18px;
  color: #cf6177;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.pricing .lead::before,
.pricing .lead::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 25px;
  background: #cf6177;
}

.pricing .lead::before {
  left: 27px;
  transform: translateY(-50%) rotate(-24deg);
}

.pricing .lead::after {
  right: 27px;
  transform: translateY(-50%) rotate(24deg);
}

.pricing .lead span {
  display: inline-block;
  max-width: calc(100% - 86px);
}

.price-card {
  position: relative;
  margin-inline: auto;
  filter: drop-shadow(0 12px 22px rgba(115, 80, 70, 0.08));
}

.price-card img {
  width: 100%;
  height: auto;
}

.price-card.first {
  width: 100%;
}

.price-card.course {
  width: 100%;
}

.step-guide {
  padding: 19px 0 18px;
  text-align: center;
}

.step-guide span {
  display: block;
  color: #bf8264;
  font-size: 24px;
  line-height: 1;
}

.step-guide p {
  position: relative;
  display: inline-block;
  margin: 13px 0 0;
  padding-bottom: 10px;
  color: #4c3832;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
}

.step-guide p::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 190px;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 95, 120, 0), rgba(212, 95, 120, 0.44), rgba(212, 95, 120, 0));
  transform: translateX(-50%);
}

.step-guide em {
  color: #cf6177;
  font-style: normal;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.payment-methods li {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  aspect-ratio: 1;
  min-width: 0;
  padding: 15px 8px 13px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(212, 95, 120, 0.38);
  border-radius: 50%;
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.85),
    0 8px 20px rgba(115, 80, 70, 0.08);
  text-align: center;
}

.payment-methods img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.payment-methods span {
  color: #4c3832;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
}

.payment {
  margin: 18px 0 0;
  color: #4c3832;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
}

/* ===== Reasons ===== */
.reason-card {
  display: grid;
  grid-template-columns: 1fr 108px;
  gap: 16px;
  align-items: center;
  padding: 18px;
}

.reason-card + .reason-card {
  margin-top: 16px;
}

.reason-label {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin: 0 0 8px;
  color: var(--rose-deep);
  font-family: system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.reason-label b {
  color: var(--gold);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.reason-card h3 {
  margin-bottom: 8px;
  color: var(--heading);
  font-size: 18px;
  line-height: 1.5;
}

.reason-card p:last-child {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.75;
}

.reason-card img {
  width: 108px;
  height: 116px;
  object-fit: cover;
  border-radius: 12px;
}

/* ===== Process ===== */
.process {
  background: var(--cream);
}

.process-card {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
}

.process-card + .process-card {
  margin-top: 14px;
}

.process-card + .process-card::before {
  content: "";
  position: absolute;
  top: -17px;
  left: 64px;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--rose);
  border-bottom: 2px solid var(--rose);
  transform: rotate(45deg);
}

.process-card {
  position: relative;
}

.process-photo {
  position: relative;
}

.process-photo span {
  position: absolute;
  top: -8px;
  left: -8px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(184, 98, 116, 0.35);
  font-family: system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.process-photo img {
  width: 116px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
}

.process-card h3 {
  margin-bottom: 5px;
  color: var(--heading);
  font-size: 17px;
}

.process-card p {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.7;
}

/* ===== Mechanism ===== */
.mechanism {
  background: linear-gradient(180deg, var(--beige), #fbf3ea);
}

.mechanism-lead {
  margin-bottom: 6px;
  color: var(--rose-deep);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.mechanism h2 {
  margin-bottom: 22px;
}

.mechanism h2 span {
  position: relative;
  display: inline-block;
  font-size: 27px;
}

.mechanism-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.mechanism-copy {
  margin: 26px 0 0;
}

.mechanism-copy p {
  padding: 18px 0;
  margin: 0;
  border-bottom: 2px dotted rgba(221, 195, 138, 0.85);
  color: var(--text);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 2.05;
}

.mechanism-copy p:first-child {
  padding-top: 4px;
}

.mechanism-copy strong {
  color: var(--rose-deep);
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
}

.mechanism-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.mechanism-thumbs img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.mechanism-thumbs .machine-thumb {
  padding: 3px;
  background: #fff8f0;
  object-fit: contain;
}

/* ===== Voices ===== */
.voices {
  background: var(--cream);
}

.voices .lead {
  margin-bottom: 24px;
  color: var(--text);
  text-align: center;
}

.voice-card {
  padding: 20px;
}

.voice-card + .voice-card {
  margin-top: 16px;
}

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

.voice-head img {
  width: 48px;
  height: 48px;
  padding: 8px;
  background: var(--rose-pale);
  border-radius: 50%;
  object-fit: contain;
}

.voice-head p {
  margin: 0;
  color: var(--rose-deep);
  font-weight: 700;
}

.voice-head span {
  color: var(--gold);
}

.voice-card .stars {
  margin-left: auto;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 1px;
}

.voice-card h3 {
  margin-bottom: 8px;
  color: var(--heading);
  font-size: 18px;
  line-height: 1.65;
}

.voice-card > p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.85;
}

/* ===== Closing CTA ===== */
.cta-second {
  background: linear-gradient(180deg, #fdf6f1, var(--rose-pale));
}

.cta-second .cta-box {
  background: #fff;
}

.cta-second h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

.cta-second .intro {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.85;
}

.cta-second .intro b {
  color: var(--rose-deep);
}

/* ===== Salon info ===== */
.salon {
  background: #fff;
}

.salon-logo {
  width: 280px;
  margin: 0 auto 8px;
}

.salon-sub {
  margin-bottom: 22px;
  color: var(--rose-deep);
  font-weight: 700;
  text-align: center;
}

.salon-photo {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.salon-info {
  display: grid;
  grid-template-columns: 88px 1fr;
  column-gap: 16px;
  row-gap: 0;
  margin: 22px 0;
}

.salon-info dt {
  padding: 14px 0;
  border-bottom: 1px solid rgba(184, 98, 116, 0.18);
  color: var(--rose-deep);
  font-weight: 700;
}

.salon-info dd {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(184, 98, 116, 0.18);
  color: var(--text);
}

.map-embed {
  margin: 0 0 18px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.map-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  color: var(--rose-deep);
  background: #fff;
  border: 1.5px solid var(--rose);
  border-radius: 999px;
  font-family: system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

/* ===== Final CTA ===== */
.final-cta {
  padding-bottom: 70px;
  color: var(--text);
  background: linear-gradient(180deg, #fceef0 0%, #f7dee3 100%);
  text-align: center;
}

.final-cta .section-inner {
  padding: 44px 0 30px;
}

.final-cta p {
  margin-bottom: 10px;
  color: var(--rose-deep);
  font-size: 14px;
  font-weight: 600;
}

.final-cta h2 {
  color: var(--heading);
  font-size: 23px;
}

.footer-mens-link {
  display: flex;
  width: max-content;
  margin: 18px auto 0;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(154, 132, 126, 0.45);
}

/* ===== Floating LINE CTA ===== */
.floating-line {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 30;
  display: block;
  width: min(calc(100vw - 28px), 320px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.floating-line img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 12px 22px rgba(6, 199, 85, 0.34));
  animation: lineGlow 3s ease-in-out infinite;
}

.floating-line.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

@keyframes lineGlow {
  0%,
  100% {
    filter: drop-shadow(0 10px 20px rgba(6, 199, 85, 0.32));
  }
  25%,
  50% {
    filter:
      drop-shadow(0 10px 22px rgba(6, 199, 85, 0.46))
      drop-shadow(0 0 10px rgba(75, 232, 128, 0.22));
  }
}

@media (prefers-reduced-motion: reduce) {
  .line-btn-img img,
  .floating-line img {
    animation: none;
  }
}

/* ===== Small screens ===== */
@media (max-width: 360px) {
  .site-header {
    padding-inline: 12px;
  }

  .brand img {
    width: 96px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-mens-link {
    min-height: 30px;
    padding-inline: 8px;
    font-size: 10px;
  }

  .header-cta {
    padding: 0 12px;
    font-size: 11px;
  }

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

  .hero-badges li {
    font-size: 11px;
  }

  .feature-item {
    font-size: 11px;
  }

  .reason-card {
    grid-template-columns: 1fr 92px;
  }

  .reason-card img {
    width: 92px;
    height: 104px;
  }

  .process-card {
    grid-template-columns: 100px 1fr;
  }

  .process-photo img {
    width: 100px;
  }
}
