/* ====================================================================
   Rejuv landing — styles
   ==================================================================== */

*, *::before, *::after { box-sizing: border-box; }

:root {
  --color-orange:      #E8730C;
  --color-orange-deep: #C25E00;
  --color-cream:       #FDF4EF;
  --color-black:       #0F0F0F;
  --color-black-2:     #161616;
  --color-black-3:     #0A0A0A;
  --color-card:        #FFFFFF;
  --color-text:        #1A1A1A;
  --color-muted:       #6B6B6B;
  --color-tag-bg:      #FCE9DD;
  --color-tag-text:    #C25E00;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Noto Sans JP', system-ui, -apple-system, sans-serif;
  color: var(--color-text);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  line-break: strict;
  overflow-wrap: break-word;
  word-break: auto-phrase;
  overflow-x: hidden;
}

a { color: var(--color-orange-deep); text-decoration: none; }
a:hover { color: var(--color-orange); }
p { text-wrap: pretty; }
iframe { border: 0; }
::selection { background: var(--color-tag-bg); color: var(--color-orange-deep); }
button { font-family: inherit; }

/* ================= header ================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 72px;
  transition: background .3s ease, box-shadow .3s ease;
  background: transparent;
}
.header.scrolled {
  background: rgba(253, 244, 239, .95);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.brand { font-weight: 900; font-size: 26px; letter-spacing: .02em; color: #fff; transition: color .3s; }
.header.scrolled .brand { color: var(--color-black); }

.header-right { display: flex; align-items: center; gap: 14px; }

.ig-btn {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 10px; color: #fff; transition: color .3s, background .2s;
}
.header.scrolled .ig-btn { color: var(--color-black); }
.ig-btn:hover { background: rgba(255, 255, 255, .12); color: var(--color-orange); }
.header.scrolled .ig-btn:hover { background: rgba(15, 15, 15, .06); }

.lang-pill {
  display: inline-flex; border: 1.5px solid rgba(255, 255, 255, .6);
  border-radius: 999px; overflow: hidden; font-size: 13px; font-weight: 700;
  transition: border-color .3s;
}
.header.scrolled .lang-pill { border-color: rgba(15, 15, 15, .25); }
.lang-pill button {
  background: transparent; color: #fff; border: none;
  padding: 6px 12px; cursor: pointer; font-weight: 700; font-size: 13px;
  transition: color .3s;
}
.header.scrolled .lang-pill button { color: var(--color-black); }
.lang-pill button.active { background: var(--color-orange); color: #fff !important; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-orange); color: #fff; font-weight: 700; font-size: 15px;
  padding: 11px 20px; border-radius: 12px;
  box-shadow: 0 6px 16px rgba(232, 115, 12, .28);
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(232, 115, 12, .36); color: #fff; }

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

/* ================= buttons ================= */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; border-radius: 12px;
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: pointer; text-decoration: none;
}
.btn-primary { background: var(--color-orange); color: #fff; box-shadow: 0 8px 22px rgba(232, 115, 12, .4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(232, 115, 12, .5); color: #fff; }
.btn-outline-light { background: rgba(255, 255, 255, .08); color: #fff; border: 2px solid rgba(255, 255, 255, .85); }
.btn-outline-light:hover { background: rgba(255, 255, 255, .16); transform: translateY(-2px); color: #fff; }
.btn-outline-dark { background: transparent; color: #fff; border: 2px solid rgba(255, 255, 255, .8); }
.btn-outline-dark:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.btn-lg { font-size: clamp(15px, 2vw, 17px); padding: 16px 28px; }
.btn-md { font-size: 16px; padding: 14px 26px; }
.btn-xl { font-size: 17px; padding: 17px 34px; }

/* ================= hero ================= */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; transform: scale(1.1); will-change: transform;
  background: linear-gradient(135deg, #c9a184 0%, #a67853 100%);
}
.hero-bg-label {
  position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 40px;
}
.hero-bg-label span {
  font-family: ui-monospace, monospace; font-size: 12px; letter-spacing: .08em;
  color: rgba(255, 255, 255, .85); background: rgba(0, 0, 0, .35);
  padding: 5px 12px; border-radius: 999px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,15,15,.55) 0%, rgba(15,15,15,.35) 40%, rgba(15,15,15,.72) 100%);
}
.hero-content {
  position: relative; max-width: 1200px; margin: 0 auto;
  padding: 120px 20px 60px; width: 100%;
}
.hero-inner { max-width: 640px; }
.hero h1 {
  font-weight: 900; font-size: clamp(38px, 7vw, 68px); line-height: 1.12;
  color: #fff; margin: 0 0 24px; letter-spacing: .01em;
}
.hero p {
  font-size: clamp(15px, 2.2vw, 19px); line-height: 1.9;
  color: rgba(255, 255, 255, .92); margin: 0 0 14px; max-width: 560px;
}
.hero p.last { margin-bottom: 34px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center;
}
.trust-strip .rating { display: inline-flex; align-items: center; gap: 6px; color: #fff; font-weight: 700; font-size: 15px; }
.trust-strip .star { color: #FFC15A; }
.trust-strip .sep { color: rgba(255, 255, 255, .55); }
.trust-strip .meta { color: rgba(255, 255, 255, .9); font-size: 14px; }

/* ================= sections common ================= */
.section { padding: clamp(72px, 10vw, 130px) 20px; }
.section-narrow { padding: clamp(64px, 9vw, 110px) 20px; }
.container { max-width: 1200px; margin: 0 auto; }
.container-md { max-width: 1100px; margin: 0 auto; }
.container-sm { max-width: 1000px; margin: 0 auto; }
.container-xs { max-width: 820px; margin: 0 auto; }

.eyebrow {
  display: inline-block; font-family: ui-monospace, monospace;
  font-size: 13px; letter-spacing: .2em; margin-bottom: 14px;
}
.eyebrow-orange { color: var(--color-orange); }
.eyebrow-light { color: rgba(255, 255, 255, .85); }

.section-heading {
  font-weight: 900; font-size: clamp(28px, 4.5vw, 44px);
  color: var(--color-text); margin: 0; line-height: 1.3;
}
.section-heading.light { color: #fff; }
.section-heading.md { font-size: clamp(26px, 4.5vw, 42px); }
.section-head-center { text-align: center; margin-bottom: clamp(44px, 6vw, 68px); }

/* ================= pain / concerns ================= */
.pain-section { background: var(--color-orange); padding: clamp(64px, 9vw, 110px) 20px; }
.pain-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px;
}
.pain-card {
  background: #fff; border-radius: 14px; padding: 26px 24px;
  display: flex; align-items: flex-start; gap: 14px;
  box-shadow: 0 10px 30px rgba(120, 50, 0, .14);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pain-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(120, 50, 0, .22); }
.pain-check {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--color-tag-bg); color: var(--color-orange-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 15px;
}
.pain-card p { margin: 0; font-size: 16px; font-weight: 700; line-height: 1.6; color: var(--color-text); }
.pain-emphasis {
  max-width: 820px; margin: clamp(36px, 5vw, 52px) auto 0;
  text-align: center; font-size: clamp(16px, 2.4vw, 21px);
  font-weight: 700; line-height: 1.9; color: #fff;
}

/* ================= dark sections (concept, philosophy) ================= */
.dark-section {
  background: var(--color-black); padding: clamp(72px, 10vw, 130px) 20px;
  clip-path: polygon(0 58px, 100% 0, 100% 100%, 0 100%);
}
.dark-section.no-wedge { clip-path: none; background: var(--color-black-2); }
.dark-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
.concept-images { position: relative; min-height: 360px; }
.concept-img-1, .concept-img-2 {
  position: absolute; border-radius: 16px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .5);
}
.concept-img-1 {
  top: 0; left: 0; width: 72%; height: 300px;
  background: linear-gradient(135deg, #2a2a2a, #444);
}
.concept-img-2 {
  bottom: 0; right: 0; width: 60%; height: 230px;
  background: linear-gradient(135deg, #3a2a1e, #5a4029);
  border: 4px solid var(--color-black);
}
.concept-img-label {
  font-family: ui-monospace, monospace; font-size: 12px; color: #888;
  background: rgba(0,0,0,.4); padding: 4px 10px; border-radius: 999px;
}

.dark-copy h2 {
  font-weight: 900; font-size: clamp(26px, 4vw, 40px);
  color: #fff; margin: 0 0 22px; line-height: 1.35;
}
.dark-copy p {
  font-size: clamp(15px, 1.8vw, 17px); line-height: 2;
  color: rgba(255, 255, 255, .8); margin: 0 0 18px;
}
.dark-copy p.emphasis { color: #fff; font-weight: 700; margin-bottom: 30px; }
.dark-copy .btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 12px; }

.philosophy-img {
  min-height: 420px; border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, #2a2a2a, #444);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .5);
}

/* ================= reasons ================= */
.reasons-section { background: var(--color-cream); padding: clamp(72px, 10vw, 130px) 20px; }
.reasons-list { display: flex; flex-direction: column; gap: clamp(40px, 6vw, 72px); }
.reason-row {
  display: flex; gap: clamp(24px, 4vw, 52px); align-items: center;
}
.reason-row.reverse { flex-direction: row-reverse; }
.reason-image {
  flex: 1 1 0; width: 100%; aspect-ratio: 16 / 11;
  border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, #efd9c9, #f6e6da);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(120, 50, 0, .1);
  transition: transform .3s ease, box-shadow .3s ease;
}
.reason-image:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(120, 50, 0, .18); }
.image-tag {
  font-family: ui-monospace, monospace; font-size: 12px; color: #a06a3c;
  background: rgba(255, 255, 255, .7); padding: 5px 12px; border-radius: 999px;
}
.reason-body { flex: 1 1 0; min-width: 0; }
.reason-no {
  display: inline-block; font-family: ui-monospace, monospace;
  font-size: 15px; font-weight: 700; letter-spacing: .1em;
  color: var(--color-orange); margin-bottom: 12px;
}
.reason-body h3 {
  font-weight: 900; font-size: clamp(21px, 3vw, 28px);
  color: var(--color-text); margin: 0 0 14px; line-height: 1.4;
}
.reason-body p { font-size: 16px; line-height: 1.95; color: var(--color-muted); margin: 0; }

@media (max-width: 767px) {
  .reason-row, .reason-row.reverse { flex-direction: column; align-items: stretch; }
}

/* ================= steps ================= */
.steps-section { background: #fff; padding: clamp(72px, 10vw, 130px) 20px; }
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px;
}
.step-card {
  background: var(--color-cream); border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 8px 24px rgba(120, 50, 0, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(120, 50, 0, .16); }
.step-image {
  position: relative; height: 150px;
  background: linear-gradient(135deg, #efd9c9, #f6e6da);
  display: flex; align-items: center; justify-content: center;
}
.step-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--color-orange); color: #fff;
  font-family: ui-monospace, monospace; font-size: 12px; font-weight: 700;
  padding: 4px 10px; border-radius: 8px;
}
.step-body { padding: 20px 18px 24px; }
.step-body h3 { font-weight: 700; font-size: 17px; color: var(--color-text); margin: 0 0 10px; }
.step-body p { font-size: 14px; line-height: 1.8; color: var(--color-muted); margin: 0; }

/* ================= testimonials ================= */
.testi-section {
  background: var(--color-orange); padding: clamp(72px, 10vw, 130px) 20px;
  clip-path: polygon(0 0, 100% 58px, 100% 100%, 0 100%);
}
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px;
}
.testi-card {
  background: #fff; border-radius: 16px; padding: 26px;
  box-shadow: 0 14px 36px rgba(120, 50, 0, .18);
  transition: transform .25s ease, box-shadow .25s ease;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 24px 52px rgba(120, 50, 0, .26); }
.testi-head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-tag-bg); color: var(--color-orange-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 18px;
}
.testi-name { font-weight: 700; font-size: 18px; color: var(--color-text); }
.testi-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.testi-photo {
  height: 130px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: ui-monospace, monospace; font-size: 11px; color: #a06a3c;
}
.testi-photo.before { background: linear-gradient(135deg, #efd9c9, #f6e6da); }
.testi-photo.after  { background: linear-gradient(135deg, #e8cbb4, #f0d8c4); }
.testi-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.testi-tag {
  background: var(--color-tag-bg); color: var(--color-orange-deep);
  font-weight: 700; font-size: 13px; padding: 5px 12px; border-radius: 999px;
}
.testi-card p { font-size: 15px; line-height: 1.85; color: var(--color-text); margin: 0 0 10px; }
.testi-card p:last-child { margin-bottom: 0; }
.google-pill-wrap { text-align: center; margin-top: 32px; }
.google-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--color-orange-deep);
  font-weight: 700; font-size: 15px; padding: 12px 22px; border-radius: 999px;
  box-shadow: 0 8px 20px rgba(120, 50, 0, .15);
}
.google-pill:hover { color: var(--color-orange-deep); transform: translateY(-2px); }
.google-pill .star { color: #FFC15A; }

/* ================= trainer ================= */
.trainer-section { background: var(--color-cream); padding: clamp(72px, 10vw, 130px) 20px; }
.trainer-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(120, 50, 0, .12);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.trainer-image {
  min-height: 420px;
  background: linear-gradient(135deg, #e8cbb4, #f0d8c4);
  display: flex; align-items: center; justify-content: center;
}
.trainer-body { padding: clamp(28px, 4vw, 48px); }
.trainer-badge {
  display: inline-block; background: var(--color-orange); color: #fff;
  font-weight: 700; font-size: 13px;
  padding: 5px 14px; border-radius: 999px; margin-bottom: 16px;
}
.trainer-body h2 {
  font-weight: 900; font-size: clamp(24px, 3.4vw, 34px);
  color: var(--color-text); margin: 0 0 20px;
}
.trainer-body > p { font-size: 15px; line-height: 1.95; color: #4a4a4a; margin: 0 0 18px; }
.trainer-details {
  background: #F5EDE7; border-radius: 14px; padding: 22px 24px; margin-top: 6px;
}
.trainer-details h4 {
  font-weight: 700; font-size: 14px; letter-spacing: .05em;
  color: var(--color-orange-deep); margin: 0 0 12px;
}
.trainer-details ul {
  margin: 0 0 20px; padding-left: 20px;
  display: flex; flex-direction: column; gap: 7px;
}
.trainer-details ul:last-child { margin-bottom: 0; }
.trainer-details li { font-size: 14px; line-height: 1.7; color: #4a4a4a; }

/* ================= bonuses ================= */
.bonus-section { background: var(--color-cream); padding: clamp(64px, 9vw, 110px) 20px 0; }
.bonus-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px;
}
.bonus-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 10px 28px rgba(120, 50, 0, .1);
  transition: transform .25s ease, box-shadow .25s ease;
}
.bonus-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(120, 50, 0, .18); }
.bonus-image {
  height: 150px;
  background: linear-gradient(135deg, #efd9c9, #f6e6da);
  display: flex; align-items: center; justify-content: center;
  font-family: ui-monospace, monospace; font-size: 11px; color: #a06a3c;
}
.bonus-body { padding: 22px 20px; }
.bonus-label {
  display: block; font-family: ui-monospace, monospace;
  font-size: 13px; font-weight: 700; color: var(--color-orange); margin-bottom: 8px;
}
.bonus-body p { font-size: 16px; font-weight: 700; line-height: 1.6; color: var(--color-text); margin: 0; }

/* ================= LINE banner ================= */
.line-section { background: var(--color-cream); padding: clamp(48px, 7vw, 80px) 20px clamp(64px, 9vw, 110px); }
.line-banner {
  max-width: 1000px; margin: 0 auto;
  background: var(--color-black); border-radius: 24px;
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
  text-align: center; box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
}
.line-banner h2 {
  font-weight: 900; font-size: clamp(24px, 3.6vw, 38px);
  color: #fff; margin: 0 0 18px; line-height: 1.4;
}
.line-banner p {
  font-size: clamp(15px, 1.8vw, 17px); line-height: 1.9;
  color: rgba(255, 255, 255, .78); margin: 0 auto 32px; max-width: 640px;
}
.line-banner .btn-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ================= pricing ================= */
.pricing-section {
  background: var(--color-orange); padding: clamp(72px, 10vw, 130px) 20px;
  clip-path: polygon(0 58px, 100% 0, 100% 100%, 0 100%);
}
.pricing-grid {
  max-width: 1150px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
}
.price-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 14px 36px rgba(120, 50, 0, .2);
  position: relative; display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 24px 52px rgba(120, 50, 0, .3); }
.price-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: #FFC15A; color: #7a4a00;
  font-weight: 900; font-size: 12px; padding: 5px 12px; border-radius: 999px;
}
.price-header {
  background: var(--color-black); color: #fff;
  padding: 22px 22px; text-align: center;
}
.price-header h3 { font-weight: 700; font-size: 17px; margin: 0; line-height: 1.5; }
.price-body {
  padding: 28px 22px 26px; text-align: center;
  flex: 1; display: flex; flex-direction: column; justify-content: space-between; gap: 20px;
}
.price-num {
  font-weight: 900; font-size: clamp(28px, 4vw, 36px); color: var(--color-orange);
}
.price-unit { font-size: 16px; font-weight: 700; color: var(--color-muted); }
.price-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--color-orange); color: #fff; font-weight: 700; font-size: 15px;
  padding: 13px 20px; border-radius: 10px; transition: transform .2s;
}
.price-btn:hover { transform: translateY(-2px); color: #fff; }

/* ================= trial ================= */
.trial-section { background: var(--color-cream); padding: clamp(56px, 8vw, 96px) 20px; }
.trial-card {
  max-width: 820px; margin: 0 auto;
  background: #fff; border-radius: 20px;
  padding: clamp(32px, 5vw, 52px); text-align: center;
  box-shadow: 0 16px 40px rgba(120, 50, 0, .12);
  border: 2px solid var(--color-tag-bg);
}
.trial-badge {
  display: inline-block; background: var(--color-tag-bg); color: var(--color-orange-deep);
  font-weight: 700; font-size: 13px;
  padding: 6px 16px; border-radius: 999px; margin-bottom: 18px;
}
.trial-offer {
  font-weight: 900; font-size: clamp(24px, 4vw, 34px);
  color: var(--color-text); margin: 0 0 26px; line-height: 1.4;
}

/* ================= access ================= */
.access-section { background: #fff; padding: clamp(72px, 10vw, 130px) 20px; }
.access-head { text-align: center; margin-bottom: clamp(36px, 5vw, 52px); }
.map-wrap {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .1); margin-bottom: 28px;
}
.map-wrap iframe { display: block; width: 100%; height: 360px; }
.access-rows { display: grid; gap: 12px; }
.access-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  background: var(--color-cream); border-radius: 12px; padding: 16px 20px;
}
.access-label {
  flex: none; min-width: 88px;
  background: var(--color-tag-bg); color: var(--color-orange-deep);
  font-weight: 700; font-size: 14px;
  padding: 6px 14px; border-radius: 999px; text-align: center;
}
.access-value { font-size: 16px; color: var(--color-text); line-height: 1.6; }

/* ================= FAQ ================= */
.faq-section { background: var(--color-cream); padding: clamp(72px, 10vw, 130px) 20px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff; border-radius: 14px;
  box-shadow: 0 8px 22px rgba(120, 50, 0, .08); overflow: hidden;
}
.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 24px;
  background: none; border: none; cursor: pointer; text-align: left;
}
.faq-q { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 16px; color: var(--color-text); }
.faq-q .q-mark { color: var(--color-orange); font-weight: 900; }
.faq-plus {
  flex: none; font-size: 22px; color: var(--color-orange);
  transition: transform .3s;
}
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
  font-size: 15px; line-height: 1.9; color: #4a4a4a;
}
.faq-item.open .faq-body { max-height: 400px; padding: 0 24px 22px; }

/* ================= final CTA ================= */
.final-cta {
  background: var(--color-black); padding: clamp(72px, 10vw, 120px) 20px; text-align: center;
}
.final-cta-inner { max-width: 760px; margin: 0 auto; }
.final-cta h2 {
  font-weight: 900; font-size: clamp(28px, 5vw, 48px);
  color: #fff; margin: 0 0 22px; line-height: 1.25;
}
.final-cta p {
  font-size: clamp(15px, 2vw, 18px); line-height: 1.9;
  color: rgba(255, 255, 255, .78); margin: 0 auto 34px; max-width: 560px;
}
.final-cta .btn-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ================= footer ================= */
.footer { background: var(--color-black-3); padding: clamp(52px, 7vw, 80px) 20px 40px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.footer-brand { font-weight: 900; font-size: 28px; color: #fff; margin-bottom: 12px; }
.footer-tagline { font-size: 14px; line-height: 1.8; color: rgba(255, 255, 255, .6); margin: 0; max-width: 280px; }
.footer-heading {
  font-weight: 700; font-size: 13px; letter-spacing: .08em;
  color: var(--color-orange); margin: 0 0 14px;
}
.footer-info p { font-size: 14px; line-height: 1.9; color: rgba(255, 255, 255, .7); margin: 0; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 14px; color: rgba(255, 255, 255, .7); transition: color .2s; }
.footer-links a:hover { color: var(--color-orange); }
.copy { text-align: center; font-size: 13px; color: rgba(255, 255, 255, .4); margin: 28px 0 0; }

/* ================= sticky mobile bar ================= */
.mobile-bar { display: none; }
@media (max-width: 1023px) {
  .mobile-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
    background: rgba(253, 244, 239, .96); backdrop-filter: blur(8px);
    box-shadow: 0 -6px 24px rgba(0, 0, 0, .14);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
  }
  body { padding-bottom: 84px; }
}
.mobile-bar a {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-weight: 700; font-size: 14px; padding: 14px 8px; border-radius: 12px;
  line-height: 1.3; text-align: center;
}
.mobile-bar .bar-line {
  background: var(--color-orange); color: #fff;
  box-shadow: 0 6px 16px rgba(232, 115, 12, .35);
}
.mobile-bar .bar-line:hover { color: #fff; }
.mobile-bar .bar-trial {
  background: #fff; color: var(--color-orange-deep); border: 2px solid var(--color-orange);
}

/* ================= reveal animation ================= */
[data-reveal] {
  opacity: 0; transform: translateY(28px) scale(.985);
  transition: opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1);
}
[data-reveal].revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-bg { transform: none !important; }
}

/* ================= legal pages ================= */
.legal-header { background: var(--color-black); padding: 22px 20px; }
.legal-header-inner {
  max-width: 820px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.legal-header-inner a.brand { color: #fff; font-size: 24px; }
.legal-back { font-size: 14px; font-weight: 700; color: rgba(255, 255, 255, .8); }
.legal-back:hover { color: var(--color-orange); }
.legal-main { max-width: 820px; margin: 0 auto; padding: clamp(48px, 8vw, 88px) 20px; }
.legal-main h1 {
  font-weight: 900; font-size: clamp(28px, 5vw, 42px);
  color: var(--color-text); margin: 0 0 12px;
}
.legal-main h1.md { font-size: clamp(24px, 4.5vw, 38px); }
.legal-sub { font-size: 15px; color: var(--color-muted); margin: 0 0 40px; }
.legal-placeholder {
  background: #fff; border-radius: 16px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 12px 30px rgba(120, 50, 0, .1);
  color: #9a9a9a; font-family: ui-monospace, monospace;
  font-size: 14px; line-height: 1.9; text-align: center;
}
.legal-footer { background: var(--color-black-3); padding: 32px 20px; }
.legal-footer p { text-align: center; font-size: 13px; color: rgba(255, 255, 255, .4); margin: 0; }
