/* ========== Base ========== */
:root {
  --bg: #0a0a0a;
  --bg-2: #121212;
  --card: #141414;
  --line: rgba(201, 164, 92, .38);
  --gold: #c9a45c;
  --gold-lt: #e6cf94;
  --text: #ece8e0;
  --text-2: #b9b4aa;
  --serif: "Noto Serif JP", serif;
  --sans: "Noto Sans JP", sans-serif;
  --en: "Cinzel", "Noto Serif JP", serif;
  --gutter: 16px;
  --header-h: 60px;
  --page-w: 430px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: #000;
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold-lt); text-decoration: none; }
a:hover { color: #fff; }
ul { list-style: none; }
main { max-width: var(--page-w); margin: 0 auto; background: var(--bg); overflow: hidden; }

/* ========== Header ========== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  max-width: var(--page-w); margin: 0 auto;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
  background: linear-gradient(to bottom, rgba(0,0,0,.85), rgba(0,0,0,.55));
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201,164,92,.18);
}
.header__logo { display: flex; align-items: center; gap: 8px; color: var(--text); }
.header__logo-mark { width: 34px; height: 34px; object-fit: contain; transform: scale(1.3); }
.header__logo-text { display: flex; flex-direction: column; line-height: 1; }
.header__logo-main { font-family: var(--en); font-size: 20px; letter-spacing: .14em; }
.header__logo-sub { font-family: var(--en); font-size: 7.5px; letter-spacing: .38em; margin-top: 3px; color: var(--text-2); }
.header__store { font-size: 11px; font-weight: 500; margin-left: 6px; align-self: flex-end; padding-bottom: 1px; }

.header__menu {
  position: relative; z-index: 2;
  width: 44px; height: 44px; margin-right: -10px;
  background: none; border: 0; cursor: pointer;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px;
}
.header__menu span { width: 24px; height: 1.5px; background: var(--text); transition: .3s; }
.is-open .header__menu span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.is-open .header__menu span:nth-child(2) { opacity: 0; }
.is-open .header__menu span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.drawer {
  position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  max-width: var(--page-w); margin: 0 auto;
  height: calc(100dvh - var(--header-h));
  background: rgba(8,8,8,.97);
  padding: 32px 24px;
  opacity: 0; visibility: hidden; transition: .3s;
}
.is-open .drawer { opacity: 1; visibility: visible; }
.drawer__list li { border-bottom: 1px solid rgba(255,255,255,.08); }
.drawer__list a { display: block; padding: 18px 4px; color: var(--text); font-family: var(--serif); font-size: 16px; letter-spacing: .1em; }
.drawer__cta { margin-top: 32px; }

/* ========== Button ========== */
.btn-gold {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; min-height: 60px;
  border-radius: 4px;
  background: linear-gradient(180deg, #f1dfa8 0%, #d3b271 45%, #b18b45 100%);
  box-shadow: 0 6px 20px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.5);
  color: #1a1408; font-weight: 700; font-size: 16px; letter-spacing: .08em;
  transition: filter .2s, transform .2s;
}
.btn-gold:hover { color: #1a1408; filter: brightness(1.08); }
.btn-gold:active { transform: translateY(1px); }

/* --- CTA gimmick: pulse + hover shine --- */
.btn-gold, .btn-line {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  animation: btn-pulse 2s ease-in-out infinite;
}
.btn-gold::after, .btn-line::after {
  content: "";
  position: absolute; top: 0; left: -80%; z-index: 1;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.75) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  pointer-events: none;
}
.btn-gold:hover::after, .btn-line:hover::after { animation: btn-shine .7s ease-out; }
.btn-gold:hover, .btn-line:hover { animation-play-state: paused; }

@keyframes btn-pulse {
  0%, 60%, 100% { transform: scale(1); }
  70% { transform: scale(1.04) rotate(-1deg); }
  78% { transform: scale(1.04) rotate(1deg); }
  86% { transform: scale(1.03) rotate(-.6deg); }
  94% { transform: scale(1.01) rotate(0); }
}
@keyframes btn-shine {
  0%   { left: -80%; }
  100% { left: 130%; }
}
@media (prefers-reduced-motion: reduce) {
  .btn-gold, .btn-line, .btn-gold::after, .btn-line::after { animation: none !important; }
}
.btn-gold__icon { width: 30px; height: 30px; object-fit: contain; transform: scale(1.35); }
.btn-gold__arrow { font-weight: 400; margin-left: 2px; }

/* ========== Section head ========== */
.sec-head { padding: 0 var(--gutter); margin-bottom: 20px; }
.sec-head__title {
  font-family: var(--serif); font-weight: 600;
  font-size: 21px; line-height: 1.45; letter-spacing: .06em;
}
.sec-head__title .en { font-family: var(--en); font-size: 1.02em; letter-spacing: .06em; }
.sec-head__sub { margin-top: 6px; font-size: 12px; color: var(--text-2); letter-spacing: .04em; }

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 760px;
  padding-top: calc(var(--header-h) + 280px);
  padding-bottom: 36px;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 20% 0; transform: scale(1.15); transform-origin: 40% 20%; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.2) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,.55) 45%, rgba(10,10,10,.95) 72%, var(--bg) 100%),
    linear-gradient(to right, rgba(0,0,0,.45), rgba(0,0,0,0) 40%);
}
.hero__vertical {
  position: absolute; z-index: 1;
  top: calc(var(--header-h) + 14px); left: 2px;
  width: 68px; height: auto;
}
.hero__inner { position: relative; z-index: 1; padding: 0 var(--gutter); }
.hero__title { margin: 0 -10px 10px; }
.hero__title img { width: 100%; filter: drop-shadow(0 4px 14px rgba(0,0,0,.8)); }
.hero__lead {
  font-family: var(--serif); font-weight: 600;
  font-size: 16px; line-height: 1.7; letter-spacing: .04em;
  text-shadow: 0 2px 8px rgba(0,0,0,.8);
}
.hero__text {
  margin-top: 12px;
  font-size: 12.5px; line-height: 1.85; color: var(--text-2);
  text-wrap: pretty;
}
.hero__badges {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin: 22px 0 26px; padding: 0 6px;
}
.hero__badges img { width: 100%; aspect-ratio: 1; object-fit: contain; }
/* 素材ごとの余白差を補正し、表示上の円の直径を揃える */
.hero__badges li:nth-child(1) img { transform: scale(1.272); }
.hero__badges li:nth-child(2) img { transform: scale(1.155); }
.hero__badges li:nth-child(3) img { transform: scale(1.106); }
.hero__line {
  display: flex; justify-content: center; align-items: center; gap: 6px;
  margin-top: 14px; padding: 8px;
  font-size: 12.5px; letter-spacing: .08em;
  text-decoration: underline; text-underline-offset: 4px;
}

/* ========== Worry ========== */
.worry {
  position: relative;
  padding: 44px var(--gutter) 40px;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.worry__bg { position: absolute; inset: 0; }
.worry__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 20% center; }
.worry__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,10,.55) 0%, rgba(10,10,10,.8) 45%, rgba(10,10,10,.92) 100%),
    linear-gradient(to bottom, var(--bg) 0%, rgba(10,10,10,0) 20%, rgba(10,10,10,0) 70%, var(--bg) 100%);
}
.worry__inner { position: relative; z-index: 1; }
.worry__title {
  font-family: var(--serif); font-weight: 600;
  font-size: 20px; letter-spacing: .08em; text-align: center;
  margin-bottom: 24px;
}
.worry__list {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 32px;
}
.worry__list li {
  position: relative;
  padding: 12px 12px 12px 46px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 13.5px; line-height: 1.6;
}
.worry__list li::before {
  content: ""; position: absolute; left: 14px; top: 50%;
  width: 20px; height: 20px; transform: translateY(-50%);
  border: 1.5px solid var(--gold);
}
.worry__list li::after {
  content: ""; position: absolute; left: 20px; top: 50%;
  width: 7px; height: 12px; transform: translateY(-65%) rotate(45deg);
  border-right: 2px solid var(--gold-lt); border-bottom: 2px solid var(--gold-lt);
}
.worry__catch {
  font-family: var(--serif); font-weight: 600;
  font-size: 19px; line-height: 1.75; letter-spacing: .06em;
  text-shadow: 0 2px 10px rgba(0,0,0,.9);
}

/* ========== Reason ========== */
.reason { padding: 48px 0 16px; }
.reason__list { display: flex; flex-direction: column; gap: 18px; padding: 0 var(--gutter); }
.reason-card {
  background: var(--card);
  border: 1px solid var(--line);
  overflow: hidden;
}
.reason-card__img { position: relative; aspect-ratio: 16 / 9; }
.reason-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: 20% center; }
.reason-card__img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,20,20,0) 55%, var(--card) 100%);
}
.reason-card__body { position: relative; padding: 0 16px 20px; margin-top: -34px; }
.reason-card__num { display: flex; align-items: flex-end; gap: 8px; margin-bottom: 10px; }
.reason-card__num img { width: 72px; height: 58px; object-fit: cover; object-position: center; filter: drop-shadow(0 3px 8px rgba(0,0,0,.8)); }
.reason-card__num span { font-family: var(--en); font-size: 11px; letter-spacing: .24em; color: var(--gold); padding-bottom: 8px; }
.reason-card__title {
  font-family: var(--serif); font-weight: 600;
  font-size: 16.5px; line-height: 1.6; letter-spacing: .03em;
  margin-bottom: 10px;
}
.reason-card__text { font-size: 13px; line-height: 1.85; color: var(--text-2); text-wrap: pretty; }

/* ========== Service ========== */
.service { padding: 40px 0 36px; }
.service__list { display: flex; flex-direction: column; gap: 12px; padding: 0 var(--gutter); }
.service-card {
  display: grid; grid-template-columns: 38% minmax(0, 1fr);
  background: var(--card);
  border: 1px solid rgba(255,255,255,.1);
  min-height: 112px;
}
.service-card__img img { width: 100%; height: 100%; object-fit: cover; }
.service-card__body { padding: 12px 14px; display: flex; flex-direction: column; justify-content: center; }
.service-card__title {
  font-family: var(--serif); font-weight: 600;
  font-size: 15px; color: var(--gold-lt); letter-spacing: .06em;
  margin-bottom: 4px;
}
.service-card__text { font-size: 12px; line-height: 1.7; color: var(--text-2); text-wrap: pretty; }

.service__cta { padding: 28px var(--gutter) 0; }
.service__tagline {
  margin-top: 26px; text-align: center;
  font-family: var(--en); font-size: 10px; letter-spacing: .42em; color: var(--text-2);
}

/* ========== Price ========== */
.price { padding: 48px 0 40px; border-top: 1px solid rgba(255,255,255,.06); }
.price__list { display: flex; flex-direction: column; gap: 12px; padding: 0 var(--gutter); }
.price-card {
  position: relative; text-align: center;
  padding: 20px 16px 18px;
  background: linear-gradient(180deg, #1a1a1a, #101010);
  border: 1px solid var(--line);
}
.price-card--premium { border-color: var(--gold); box-shadow: 0 0 0 1px rgba(201,164,92,.25) inset; }
.price-card__name { font-family: var(--serif); font-weight: 600; font-size: 15px; letter-spacing: .08em; }
.price-card__spec, .price-card__regular { margin-top: 4px; font-size: 12px; color: var(--text-2); }
.price-card__regular s { text-decoration-color: var(--gold); }
.price-card__price {
  margin-top: 4px;
  font-family: var(--serif); font-weight: 700; font-size: 36px; line-height: 1.25;
  color: var(--gold-lt);
  background: linear-gradient(180deg, #f3e2ae, #c9a45c 60%, #a8823c);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.price-card__price .yen { font-size: 17px; margin-left: 2px; }
.price-card__price .tax { font-size: 11px; font-weight: 500; }
.price-card__note { margin-top: 6px; font-size: 12px; color: var(--text-2); }
.price-card__label {
  display: inline-block; margin-top: 8px; padding: 2px 14px;
  background: linear-gradient(180deg, #e6cf94, #b18b45); color: #1a1408;
  font-size: 11.5px; font-weight: 700; letter-spacing: .06em;
}
.option {
  position: relative; margin: 20px var(--gutter) 0; padding: 26px 14px 14px;
  background: #111; border: 1px solid rgba(255,255,255,.1);
}
.option__tag {
  position: absolute; top: 0; left: 0; padding: 2px 16px 2px 10px;
  background: linear-gradient(180deg, #e6cf94, #b18b45); color: #1a1408;
  font-size: 11.5px; font-weight: 700;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.option__list { display: flex; flex-direction: column; gap: 10px; }
.option__list div { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.option__list dt { font-size: 12.5px; line-height: 1.5; }
.option__list dd { flex-shrink: 0; font-family: var(--serif); font-weight: 700; color: var(--gold-lt); font-size: 16px; }
.option__list small { font-size: 10px; font-weight: 500; margin-left: 1px; }
.guarantee {
  display: flex; align-items: center; gap: 14px;
  margin: 12px var(--gutter) 0; padding: 12px 16px;
  background: #111; border: 1px solid var(--line);
  font-size: 13px; line-height: 1.6;
}
.guarantee strong { font-family: var(--serif); font-size: 15px; color: var(--gold-lt); }
.guarantee__icon { width: 56px; height: 56px; object-fit: contain; transform: scale(1.2); }

/* ========== Trainer ========== */
.trainer { padding: 8px 0 40px; }
.trainer__card { margin: 0 var(--gutter); background: var(--card); border: 1px solid rgba(255,255,255,.1); }
.trainer__photo { aspect-ratio: 4 / 3.4; overflow: hidden; }
.trainer__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; }
.trainer__body { padding: 18px 16px 20px; }
.trainer__role { font-size: 11px; color: var(--text-2); letter-spacing: .08em; }
.trainer__name { font-family: var(--serif); font-weight: 600; font-size: 22px; letter-spacing: .12em; margin-bottom: 12px; }
.trainer__name span { font-size: 11px; letter-spacing: .04em; color: var(--text-2); margin-left: 4px; }
.trainer__career { display: flex; flex-direction: column; gap: 6px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.08); }
.trainer__career li { position: relative; padding-left: 20px; font-size: 12.5px; line-height: 1.6; }
.trainer__career li::before {
  content: ""; position: absolute; left: 3px; top: .45em;
  width: 5px; height: 9px; transform: rotate(45deg);
  border-right: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold);
}
.trainer__msg { position: relative; padding-top: 16px; }
.trainer__msg-tag {
  display: inline-block; margin-bottom: 8px; padding: 1px 16px 1px 10px;
  background: linear-gradient(180deg, #e6cf94, #b18b45); color: #1a1408;
  font-size: 11.5px; font-weight: 700;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.trainer__msg p { font-size: 13px; line-height: 1.85; color: var(--text-2); text-wrap: pretty; }
.trainer__sign { width: 70%; margin: 6px 0 -10px auto; opacity: .9; }

/* ========== Results ========== */
.results { padding: 8px 0 40px; }
.results__list { display: flex; flex-direction: column; gap: 16px; padding: 0 var(--gutter); }
.ba-card { background: var(--card); border: 1px solid var(--line); }
.ba-card__img { position: relative; aspect-ratio: 1448 / 1086; }
.ba-card__img img { width: 100%; height: 100%; object-fit: cover; }
.ba-card__lbl {
  position: absolute; bottom: 8px; padding: 2px 8px;
  font-family: var(--en); font-size: 10px; letter-spacing: .16em;
  background: rgba(0,0,0,.75); border: 1px solid rgba(255,255,255,.2);
}
.ba-card__lbl--b { left: 8px; }
.ba-card__lbl--a { left: calc(50% + 8px); color: #1a1408; background: linear-gradient(180deg, #e6cf94, #b18b45); border-color: transparent; }
.ba-card__body { padding: 14px 16px 16px; }
.ba-card__head { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 10px; }
.ba-card__who { font-size: 13px; }
.ba-card__who strong { font-family: var(--serif); font-size: 17px; color: var(--gold-lt); margin-right: 2px; }
.ba-card__period {
  flex-shrink: 0; padding: 4px 10px;
  border: 1px solid var(--gold); color: var(--gold-lt);
  font-family: var(--serif); font-weight: 600; font-size: 13px;
}
.ba-card__data { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.ba-card__data div { display: grid; grid-template-columns: 76px minmax(0,1fr); align-items: center; gap: 10px; }
.ba-card__data dt { background: #262626; font-size: 11px; text-align: center; padding: 2px 0; }
.ba-card__data dd { font-family: var(--serif); font-weight: 600; font-size: 16px; color: var(--gold-lt); }
.ba-card__data i { font-style: normal; margin: 0 10px; color: var(--text); }
.ba-card__data b { font-size: 20px; }
.ba-card__text { font-size: 12.5px; line-height: 1.8; color: var(--text-2); }

/* ========== Trial ========== */
.trial { padding: 0 var(--gutter) 44px; }
.trial__box { position: relative; overflow: hidden; border: 1px solid var(--gold); background: #0e0e0e; }
.trial__bg { position: absolute; right: -30%; top: 0; width: 80%; height: 100%; object-fit: cover; opacity: .55; }
.trial__box::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, #0e0e0e 35%, rgba(14,14,14,.4) 100%);
}
.trial__inner { position: relative; z-index: 2; padding: 20px 16px 16px; }
.trial__limit { font-family: var(--serif); font-weight: 600; font-size: 14px; color: var(--gold-lt); letter-spacing: .06em; }
.trial__title { margin-top: 6px; font-family: var(--serif); font-weight: 600; font-size: 17px; line-height: 1.6; letter-spacing: .03em; }
.trial__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 10px; margin-top: 10px; }
.trial__regular { font-size: 12px; color: var(--text-2); }
.trial__arrow { font-size: 22px; color: var(--gold); }
.trial__now {
  font-family: var(--serif); font-weight: 700; font-size: 44px; line-height: 1.1;
  background: linear-gradient(180deg, #f3e2ae, #c9a45c 60%, #a8823c);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.trial__now .yen { font-size: 20px; }
.trial__now .tax { font-size: 11px; font-weight: 500; }
.trial__note { margin-top: 8px; font-size: 10.5px; line-height: 1.6; color: var(--text-2); }
.trial__btn { position: relative; z-index: 2; border-radius: 0; }

/* ========== Flow ========== */
.flow { padding: 0 0 40px; }
.flow__list { display: flex; flex-direction: column; gap: 8px; padding: 0 var(--gutter); counter-reset: none; }
.flow__list li {
  display: grid; grid-template-columns: 44px minmax(0,1fr); align-items: center; gap: 12px;
  padding: 12px 14px; background: #f4f1ea; color: #1a1a1a; border-radius: 2px;
}
.flow__num { font-family: var(--en); font-size: 18px; color: #a8823c; border-right: 1px solid #d8d0bf; }
.flow__list h3 { font-size: 13.5px; font-weight: 700; line-height: 1.5; }
.flow__list p { font-size: 11.5px; color: #555; line-height: 1.6; }

/* ========== FAQ ========== */
.faq { padding: 0 0 40px; }
.faq__list { display: flex; flex-direction: column; gap: 10px; padding: 0 var(--gutter); }
.faq__item { border: 1px solid rgba(255,255,255,.14); background: #111; }
.faq__item summary {
  position: relative; list-style: none; cursor: pointer;
  padding: 14px 40px 14px 40px; font-size: 13.5px; font-weight: 500; line-height: 1.5;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::before { content: "Q."; position: absolute; left: 14px; font-family: var(--en); color: var(--gold); }
.faq__item summary::after {
  content: ""; position: absolute; right: 16px; top: 50%;
  width: 8px; height: 8px; transform: translateY(-70%) rotate(45deg);
  border-right: 1.5px solid var(--text); border-bottom: 1.5px solid var(--text); transition: .2s;
}
.faq__item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq__item p {
  position: relative; margin: 0 10px 10px; padding: 12px 14px 12px 36px;
  background: #f4f1ea; color: #222; font-size: 12.5px; line-height: 1.75;
}
.faq__item p::before { content: "A."; position: absolute; left: 12px; font-family: var(--en); color: #a8823c; font-weight: 600; }

/* ========== Access ========== */
.access { padding: 0 0 40px; }
.access__card { margin: 0 var(--gutter); background: var(--card); border: 1px solid rgba(255,255,255,.1); }
.access__photo { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.access__body { padding: 16px; }
.access__name { font-family: var(--en); font-size: 15px; letter-spacing: .06em; margin-bottom: 10px; }
.access__info { display: flex; flex-direction: column; gap: 8px; }
.access__info div { display: grid; grid-template-columns: 64px minmax(0,1fr); gap: 8px; font-size: 12.5px; line-height: 1.6; }
.access__info dt { color: var(--gold); font-weight: 500; }
.access__info dd { color: var(--text-2); }
.access__map { width: calc(100% - 32px); margin: 0 16px 16px; aspect-ratio: 1; object-fit: cover; }

/* ========== Final CTA ========== */
.final { position: relative; min-height: 460px; display: flex; align-items: flex-end; padding: 0 var(--gutter) 36px; }
.final__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.final::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, var(--bg) 0%, rgba(10,10,10,.1) 25%, rgba(10,10,10,.6) 55%, rgba(10,10,10,.95) 100%);
}
.final__inner { position: relative; z-index: 2; width: 100%; text-align: center; }
.final__title { font-family: var(--serif); font-weight: 700; font-size: 26px; letter-spacing: .08em; text-shadow: 0 2px 12px rgba(0,0,0,.9); }
.final__sub { margin-top: 4px; font-size: 13px; color: var(--text); }
.final__btns { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.btn-line {
  display: flex; position: relative; overflow: hidden; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px; border-radius: 4px;
  background: #06c755; color: #fff; font-weight: 700; font-size: 15px; letter-spacing: .06em;
}
.btn-line:hover { color: #fff; filter: brightness(1.08); }
.btn-line__icon { width: 28px; height: 28px; object-fit: contain; }

/* ========== Footer ========== */
.footer {
  max-width: var(--page-w); margin: 0 auto; padding: 32px var(--gutter) 24px;
  background: #070707; border-top: 1px solid rgba(201,164,92,.25);
  display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center;
}
.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 20px; }
.footer__nav a { color: var(--text-2); font-size: 12px; padding: 6px 0; display: block; }
.footer__slogan { font-family: var(--en); font-size: 10px; letter-spacing: .36em; color: var(--text-2); }
.footer__copy { font-size: 10.5px; color: #8a857c; }

/* ========== Small screens (≤374px) ========== */
@media (max-width: 374px) {
  :root { --gutter: 14px; }
  .header__store { display: none; }
  .sec-head__title { font-size: 19px; }
  .btn-gold { font-size: 15px; }
  .service-card__text { font-size: 11.5px; }
  .price-card__price { font-size: 32px; }
  .trial__now { font-size: 38px; }
}
/* ========== Wide screens: center the phone column ========== */
@media (min-width: 431px) {
  body { background: #050505; }
}

