:root {
  color-scheme: light;
  --bg: #fbfaf8;
  --surface: #ffffff;
  --surface-soft: #eef8f8;
  --ink: #101828;
  --muted: #526071;
  --line: #dde5ea;
  --dark: #07111f;
  --cyan: #67e8f9;
  --cyan-deep: #0891b2;
  --red: #ef4e4e;
  --green: #1e7d5b;
  --gold: #c5a059;
  --gold-dark: #7a5428;
  --gold-soft: #f5eedf;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--cyan);
  color: var(--dark);
}

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

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  color: white;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0;
}

.site-header.is-scrolled .brand {
  background: transparent;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: linear-gradient(145deg, #fff5cf 0%, var(--gold) 100%);
  object-fit: contain;
  padding: 4px;
  box-shadow: inset 0 0 0 1px rgba(122, 84, 40, 0.2), 0 8px 24px rgba(15, 23, 42, 0.14);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand small {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 800;
  color: currentColor;
  opacity: 0.78;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 800;
}

.desktop-nav a {
  opacity: 0.82;
}

.desktop-nav a:hover {
  opacity: 1;
}

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

.header-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(122, 84, 40, 0.28);
  border-radius: 8px;
  background: linear-gradient(145deg, #fff5cf 0%, var(--gold) 100%);
  padding: 10px 14px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 950;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22), 0 8px 24px rgba(15, 23, 42, 0.14);
}

.site-header.is-scrolled .header-link {
  border-color: rgba(122, 84, 40, 0.28);
  background: linear-gradient(145deg, #fff5cf 0%, var(--gold) 100%);
  color: var(--dark);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.header-action {
  border: 1px solid rgba(122, 84, 40, 0.28);
  background: linear-gradient(145deg, #fff5cf 0%, var(--gold) 100%);
  color: var(--dark);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22), 0 8px 24px rgba(15, 23, 42, 0.14);
}

.site-header.is-scrolled .header-action {
  border-color: rgba(122, 84, 40, 0.28);
  background: linear-gradient(145deg, #fff5cf 0%, var(--gold) 100%);
  color: var(--dark);
}

.header-action:hover,
.button:hover {
  transform: translateY(-1px);
}

.header-action svg,
.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button.primary {
  background: var(--cyan);
  color: var(--dark);
}

.button.dark {
  background: var(--dark);
  color: white;
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.button.outline {
  border: 1px solid rgba(7, 17, 31, 0.2);
  background: transparent;
  color: var(--dark);
}

.button.outline:hover {
  border-color: var(--dark);
  background: white;
}

.portal-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: clamp(28px, 5vw, 54px) auto 38px;
  border: 1px solid rgba(197, 160, 89, 0.28);
  border-radius: 8px;
  background: #fffaf0;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
}

.portal-strip h2 {
  margin: 4px 0 0;
  color: var(--dark);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
  font-weight: 950;
}

.portal-strip p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 650;
}

.portal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.gift-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 38px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: white;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.gift-strip h2 {
  margin: 4px 0 0;
  color: var(--dark);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  font-weight: 950;
}

.gift-strip p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 650;
}

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: var(--dark);
  color: white;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  inset: 0 0 0 auto;
  width: min(58vw, 820px);
  object-fit: contain;
  object-position: right center;
  opacity: 0.84;
  transform: none;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.96) 0%, rgba(7, 17, 31, 0.82) 46%, rgba(7, 17, 31, 0.38) 72%, rgba(7, 17, 31, 0.12) 100%),
    linear-gradient(0deg, rgba(7, 17, 31, 0.74) 0%, rgba(7, 17, 31, 0.04) 42%);
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 118px 0 48px;
}

.offer-pill,
.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.offer-pill {
  margin: 0 0 18px;
  background: var(--red);
  color: white;
  padding: 10px 12px;
  box-shadow: 0 18px 38px rgba(239, 78, 78, 0.26);
}

.eyebrow {
  color: var(--cyan-deep);
}

.eyebrow.red {
  color: var(--red);
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  color: white;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 950;
}

.hero-copy {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.48;
  font-weight: 580;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 780px;
  margin: 20px 0 0;
}

.trust-row div {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  backdrop-filter: blur(12px);
}

.trust-row dt {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.trust-row dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
}

.conversion-band {
  display: grid;
  grid-template-columns: 1fr 1.15fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 36px));
  margin: 34px auto 0;
  position: relative;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 26px;
}

.conversion-band h2,
.section-heading h2,
.sales-copy h2,
.inquiry-copy h2,
.final-cta h2 {
  margin: 8px 0 0;
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 950;
}

.conversion-band p,
.section-heading p,
.sales-copy p,
.inquiry-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 560;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 780px;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.reviews-section {
  padding-top: 76px;
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  border: 1px solid rgba(197, 160, 89, 0.36);
  border-radius: 8px;
  background: linear-gradient(135deg, #fffaf0 0%, white 58%, #eef8f8 100%);
  padding: 20px 22px;
}

.reviews-summary div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
}

.reviews-summary strong {
  color: var(--dark);
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
}

.reviews-summary p {
  flex-basis: 100%;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 780;
}

.stars {
  color: #f4b400;
  letter-spacing: 1px;
  font-size: 18px;
  line-height: 1;
}

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

.review-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.review-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.review-meta strong {
  color: var(--dark);
  font-size: 18px;
  line-height: 1.15;
  font-weight: 950;
}

.review-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
  font-weight: 560;
}

.review-card > span:last-child {
  margin-top: auto;
  padding-top: 18px;
  color: var(--cyan-deep);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}

.service-card.featured {
  grid-column: span 2;
}

.service-card img {
  width: 100%;
  height: 238px;
  object-fit: cover;
  background: #eef2f6;
}

.service-card:not(.featured) img {
  object-fit: contain;
  padding: 18px;
}

.service-card:not(.featured) img.skin-device-image {
  background: #eef8f8;
  object-position: center;
  padding: 14px 66px;
}

.service-card .service-progress-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 2px;
  height: 238px;
  padding: 0;
  background: #dfe7ec;
}

.service-card .service-progress-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card div {
  padding: 22px;
}

.service-card h3 {
  margin: 9px 0 0;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 950;
}

.service-card p:not(.eyebrow) {
  min-height: 78px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 560;
}

.service-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--cyan-deep);
  font-weight: 950;
}

.sales-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
  padding: 92px max(18px, calc((100vw - 1180px) / 2));
}

.sales-section.dark-section {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  background: var(--dark);
  color: white;
}

.sales-section.alternate {
  background: var(--surface-soft);
}

.dark-section .sales-copy p:not(.offer-pill),
.dark-section .check-list {
  color: rgba(255, 255, 255, 0.82);
}

.dark-section .button.ghost {
  border-color: rgba(255, 255, 255, 0.28);
}

.sales-copy h2 {
  max-width: 680px;
}

.sales-copy > p:not(.offer-pill):not(.eyebrow) {
  max-width: 670px;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 26px 0 0;
  padding: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 800;
  list-style: none;
}

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

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38em;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--cyan);
  box-shadow: inset 0 0 0 4px var(--dark);
}

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

.progress-panel article,
.visual-card,
.skin-gallery img {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.progress-panel img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.progress-panel span {
  display: block;
  padding: 14px;
  color: white;
  font-weight: 950;
}

.visual-card {
  border-color: var(--line);
  background: white;
  box-shadow: var(--shadow);
}

.visual-card img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  padding: 28px;
}

.skin-gallery {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 14px;
}

.skin-gallery img {
  width: 100%;
  height: 410px;
  object-fit: contain;
  border-color: var(--line);
  background: white;
}

.skin-gallery .skin-gallery-device,
.skin-gallery .skin-gallery-serum {
  object-position: center;
}

.practice-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: center;
}

.practice-copy h2 {
  margin: 8px 0 0;
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.02;
  font-weight: 950;
}

.practice-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 560;
}

.practice-gallery {
  display: grid;
  grid-template-columns: 1fr;
}

.practice-gallery img {
  width: 100%;
  height: 430px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  object-position: 58% center;
  box-shadow: var(--shadow);
}

.price-section {
  padding-top: 98px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.price-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.price-grid span {
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.price-grid h3 {
  min-height: 54px;
  margin: 10px 0 16px;
  font-size: 22px;
  line-height: 1.12;
  font-weight: 950;
}

.price-grid strong {
  display: block;
  color: var(--cyan-deep);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 950;
}

.price-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 560;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.inquiry-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: start;
  padding: 92px max(18px, calc((100vw - 1180px) / 2));
  background: var(--surface-soft);
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-strip a {
  border: 1px solid rgba(8, 145, 178, 0.22);
  border-radius: 8px;
  background: white;
  padding: 12px 14px;
  color: var(--dark);
  font-weight: 900;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
  box-shadow: var(--shadow);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 950;
}

.inquiry-form .wide,
.inquiry-form button,
.form-status {
  grid-column: 1 / -1;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid #cfd9df;
  border-radius: 8px;
  background: white;
  color: var(--dark);
  padding: 13px 12px;
  font-size: 16px;
  outline: none;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--cyan-deep);
  box-shadow: 0 0 0 3px rgba(103, 232, 249, 0.25);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
}

.knowledge {
  padding-bottom: 104px;
}

.knowledge-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.knowledge-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.knowledge-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-size: 20px;
  font-weight: 950;
}

.knowledge-list details > div {
  border-top: 1px solid var(--line);
  padding: 6px 22px 20px;
}

.knowledge-list p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 560;
}

.text-link {
  display: inline-flex;
  margin-top: 4px;
  color: var(--cyan-deep);
  font-weight: 950;
}

.text-link:hover {
  color: var(--dark);
}

.final-cta {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 38px;
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 92px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: var(--dark);
  color: white;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.final-cta img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  object-position: center bottom;
  background: #050b14;
  padding: 22px 0 0 20px;
}

.final-cta div {
  padding: 36px 40px 36px 0;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0 98px;
  border-top: 1px solid var(--line);
}

.footer img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.footer div:last-child {
  display: grid;
  gap: 8px;
  text-align: right;
  font-weight: 900;
}

.mobile-bar {
  display: none;
}

.site-header.detail-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.site-header.detail-header .header-action {
  border-color: rgba(122, 84, 40, 0.28);
  background: linear-gradient(145deg, #fff5cf 0%, var(--gold) 100%);
  color: var(--dark);
}

.site-header.detail-header .header-link {
  border-color: rgba(122, 84, 40, 0.28);
  background: linear-gradient(145deg, #fff5cf 0%, var(--gold) 100%);
  color: var(--dark);
}

.detail-main {
  padding-top: 92px;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  gap: 44px;
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0 72px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.breadcrumb a {
  color: var(--cyan-deep);
}

.detail-hero h1,
.faq-hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(42px, 5.4vw, 70px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
}

.detail-intro,
.faq-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
  font-weight: 560;
}

.detail-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.detail-visual img {
  width: 100%;
  height: 430px;
  object-fit: contain;
  padding: 24px;
  background: white;
}

.detail-visual.cover img {
  object-fit: cover;
  padding: 0;
}

.detail-visual.dark img {
  background: var(--dark);
}

.detail-visual figcaption {
  border-top: 1px solid var(--line);
  padding: 14px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 750;
}

.detail-content-wrap {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 44px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding-bottom: 92px;
}

.detail-toc {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 8px;
  align-self: start;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}

.detail-toc strong {
  margin-bottom: 4px;
  font-size: 13px;
  text-transform: uppercase;
}

.detail-toc a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}

.detail-toc a:hover {
  color: var(--dark);
}

.detail-content {
  display: grid;
  gap: 18px;
}

.detail-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.detail-section h2 {
  margin: 0;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.05;
  font-weight: 950;
}

.detail-section h3 {
  margin: 26px 0 8px;
  font-size: 21px;
  line-height: 1.15;
  font-weight: 950;
}

.detail-section p,
.detail-section li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 560;
}

.detail-section ul,
.detail-section ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.legal-content {
  max-width: 980px;
  min-width: 0;
}

.legal-content > .detail-section {
  min-width: 0;
}

.legal-page h1,
.legal-content h2,
.legal-content h3,
.legal-content p,
.legal-content li {
  overflow-wrap: break-word;
  hyphens: auto;
}

.legal-signature {
  margin-top: 28px;
  color: var(--dark);
  font-weight: 900;
}

.detail-note {
  margin-top: 20px;
  border-left: 4px solid var(--cyan-deep);
  background: var(--surface-soft);
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 760;
  line-height: 1.62;
}

.voucher-content {
  display: grid;
  gap: 18px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 92px;
}

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

.voucher-info-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: clamp(18px, 3vw, 24px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.voucher-info-card strong {
  display: block;
  color: var(--dark);
  font-size: 21px;
  line-height: 1.15;
  font-weight: 950;
}

.voucher-info-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 650;
}

.voucher-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.voucher-form label {
  display: grid;
  gap: 8px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 950;
}

.voucher-form .full {
  grid-column: 1 / -1;
}

.voucher-form input,
.voucher-form select,
.voucher-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 8px;
  background: white;
  color: var(--dark);
  padding: 13px 12px;
  font-size: 16px;
  outline: none;
}

.voucher-form input:focus,
.voucher-form select:focus,
.voucher-form textarea:focus {
  border-color: var(--cyan-deep);
  box-shadow: 0 0 0 3px rgba(103, 232, 249, 0.25);
}

.voucher-form button,
.voucher-form .form-status {
  align-self: end;
}

.voucher-payment {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  border: 1px solid rgba(197, 160, 89, 0.34);
  border-radius: 8px;
  background: #fffaf0;
  padding: clamp(16px, 3vw, 22px);
}

.voucher-payment strong {
  display: block;
  color: var(--dark);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 950;
}

.voucher-payment p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
}

.twint-button {
  display: inline-flex;
  width: auto;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.twint-button img {
  width: auto;
  height: 58px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

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

.detail-mini-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 950;
}

.detail-mini-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.detail-faq {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.detail-faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  padding: 16px 18px;
}

.detail-faq summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 950;
}

.detail-faq p {
  margin-bottom: 0;
}

.detail-cta-band {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 92px;
  border-radius: 8px;
  background: var(--dark);
  color: white;
  padding: clamp(26px, 5vw, 44px);
}

.detail-cta-band h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  font-weight: 950;
}

.detail-cta-band p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.6;
}

.faq-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0 36px;
}

.faq-groups {
  display: grid;
  gap: 18px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 92px;
}

.price-page-nav {
  position: sticky;
  z-index: 20;
  top: 74px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 8px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}

.price-page {
  overflow-x: hidden;
}

.price-page-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 8px 12px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 950;
}

.price-page-nav a:hover {
  background: var(--surface-soft);
}

.price-content {
  display: grid;
  gap: 18px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 92px;
  min-width: 0;
}

.price-content > .detail-section {
  min-width: 0;
}

.price-explainer {
  background: var(--dark);
}

.price-explainer h2,
.price-explainer strong {
  color: white;
}

.price-explainer p {
  color: rgba(255, 255, 255, 0.76);
}

.price-explain-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.price-explain-grid article {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
}

.price-explain-grid strong {
  display: block;
  font-size: 15px;
  font-weight: 950;
}

.price-explain-grid p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.55;
}

.price-accordion-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.price-promise-card {
  margin-top: 22px;
  border: 1px solid rgba(8, 145, 178, 0.18);
  border-radius: 8px;
  background: #eef8f8;
  padding: clamp(18px, 3vw, 24px);
}

.price-promise-card strong {
  display: block;
  color: var(--dark);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.12;
  font-weight: 950;
}

.price-promise-card p {
  margin: 10px 0 0;
  max-width: 900px;
  color: var(--dark);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.6;
  font-weight: 760;
}

.price-accordion {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.price-accordion summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  min-height: 82px;
  padding: 17px 18px;
  cursor: pointer;
  list-style: none;
}

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

.price-accordion summary::after {
  content: "+";
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--dark);
  font-size: 22px;
  font-weight: 950;
}

.price-accordion[open] summary {
  border-bottom: 1px solid var(--line);
}

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

.price-summary-main {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.price-summary-main strong {
  color: var(--dark);
  font-size: 20px;
  line-height: 1.15;
  font-weight: 950;
}

.price-summary-main small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 720;
}

.price-summary-price {
  display: grid;
  justify-items: end;
  color: var(--dark);
  font-size: 24px;
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
}

.price-summary-price small {
  margin-bottom: 5px;
  color: var(--cyan);
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.price-accordion-body {
  padding: 18px;
  background: #fbfaf8;
}

.price-option-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.price-option-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 16px;
}

.price-option-card span {
  display: block;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.price-option-card strong {
  display: block;
  margin-top: 8px;
  color: var(--dark);
  font-size: clamp(21px, 2.1vw, 28px);
  line-height: 1.1;
  font-weight: 950;
}

.price-option-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 680;
}

.price-option-card.featured {
  border-color: var(--dark);
  background: var(--dark);
}

.price-option-card.featured span {
  color: var(--accent);
}

.price-option-card.featured strong,
.price-option-card.featured p {
  color: white;
}

.price-table-wrap {
  overflow-x: auto;
  max-width: 100%;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.price-table {
  width: 100%;
  min-width: 1100px;
  border-collapse: collapse;
  font-size: 15px;
}

.price-table.compact-table {
  min-width: 820px;
}

.price-table th,
.price-table td {
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.price-table th {
  background: var(--dark);
  color: white;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.price-table td {
  color: var(--muted);
  line-height: 1.42;
  font-weight: 680;
}

.price-table td:first-child,
.price-table td:nth-child(3) {
  color: var(--dark);
  font-weight: 950;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-table small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.price-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.price-card-grid.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1060px) {
  .desktop-nav {
    display: none;
  }

  .conversion-band,
  .portal-strip,
  .gift-strip,
  .service-grid,
  .review-grid,
  .sales-section,
  .inquiry-section,
  .final-cta,
  .practice-section,
  .practice-gallery,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .portal-actions {
    justify-content: flex-start;
  }

  .voucher-info-grid,
  .voucher-form,
  .voucher-payment {
    grid-template-columns: 1fr;
  }

  .voucher-payment .twint-button {
    justify-self: start;
  }

  .detail-hero,
  .detail-content-wrap {
    grid-template-columns: 1fr;
  }

  .detail-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 0;
    border-top: 3px solid var(--gold);
    padding: 14px 0 0;
  }

  .price-card-grid,
  .price-card-grid.two-columns {
    grid-template-columns: 1fr;
  }

  .price-explain-grid,
  .price-option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card.featured {
    grid-column: auto;
  }

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

  .sales-section {
    gap: 32px;
  }

  .progress-panel {
    grid-template-columns: 1fr;
  }

  .progress-panel img {
    height: 340px;
  }

  .final-cta div {
    padding: 0 28px 34px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand small {
    display: none;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .header-action {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 14px;
  }

  .header-link {
    display: none;
  }

  .price-explain-grid,
  .price-option-grid {
    grid-template-columns: 1fr;
  }

  .price-accordion summary {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .price-summary-price {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-items: start;
    font-size: 22px;
  }

  .price-accordion summary::after {
    grid-column: 2;
    grid-row: 1;
  }

  .hero {
    min-height: 700px;
  }

  .hero-image {
    inset: 0 -64px 0 auto;
    width: 112%;
    object-fit: contain;
    object-position: right bottom;
    opacity: 0.68;
    transform: none;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 17, 31, 0.96) 0%, rgba(7, 17, 31, 0.82) 56%, rgba(7, 17, 31, 0.3) 100%),
      linear-gradient(0deg, rgba(7, 17, 31, 0.8) 0%, rgba(7, 17, 31, 0.1) 50%);
  }

  .hero-inner {
    width: min(100% - 28px, 1180px);
    padding-top: 96px;
  }

  .hero h1 {
    font-size: clamp(34px, 9.1vw, 38px);
    line-height: 1.02;
  }

  .hero-copy,
  .conversion-band p,
  .section-heading p,
  .sales-copy p,
  .inquiry-copy p,
  .final-cta p {
    font-size: 16px;
  }

  .hero-actions,
  .button-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .trust-row div {
    padding: 10px;
  }

  .trust-row div:last-child {
    grid-column: 1 / -1;
  }

  .trust-row dt {
    margin-bottom: 4px;
    font-size: 11px;
  }

  .trust-row dd {
    font-size: 12px;
    line-height: 1.28;
  }

  .conversion-band {
    width: min(100% - 28px, 1180px);
    margin-top: 24px;
    padding: 18px;
  }

  .section,
  .sales-section,
  .inquiry-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

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

  .service-grid,
  .review-grid,
  .price-grid {
    gap: 12px;
  }

  .review-card {
    min-height: 0;
  }

  .service-card img {
    height: 210px;
  }

  .skin-gallery {
    grid-template-columns: 1fr;
  }

  .skin-gallery img {
    height: 270px;
  }

  .practice-section {
    gap: 24px;
  }

  .practice-gallery {
    gap: 12px;
  }

  .practice-gallery img {
    height: 240px;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .final-cta {
    width: min(100% - 28px, 1180px);
    margin-bottom: 78px;
  }

  .final-cta img {
    height: 280px;
    padding: 18px 0 0;
  }

  .footer {
    display: grid;
    width: min(100% - 28px, 1180px);
    padding-bottom: 92px;
  }

  .footer div:last-child {
    text-align: left;
  }

  .detail-main {
    padding-top: 76px;
  }

  .detail-hero,
  .faq-hero {
    width: min(100% - 28px, 1180px);
    padding-top: 36px;
    padding-bottom: 48px;
  }

  .detail-content-wrap,
  .detail-cta-band,
  .price-content,
  .price-page-nav,
  .faq-groups {
    width: min(100% - 28px, 1180px);
  }

  .price-page-nav {
    position: static;
    margin-bottom: 18px;
  }

  .detail-visual img {
    height: 300px;
  }

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

  .mobile-bar {
    position: fixed;
    z-index: 60;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    padding: 7px;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(12px);
  }

  .mobile-bar a {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--dark);
    color: white;
    font-size: 12px;
    font-weight: 950;
  }
}
