:root {
  --base: #FFFBF2;
  --sub-bg: #FFF3C4;
  --gold: #F5C24A;
  --gold-light: #FFE89A;
  --coral: #FF7A59;
  --coral-hover: #FF9A7A;
  --coral-light: #FFF0EC;
  --turquoise: #34C8E0;
  --mint: #7FD1A8;
  --text: #3A3A3A;
  --text-light: #6B6B6B;
  --text-mute: #9B9B9B;
  --footer-bg: #3A3A3A;
}

html, body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--base);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

a { color: inherit; }

/* ===========================
   COMMON
   =========================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: 100px 0;
  position: relative;
}
.section--white { background: white; }
.section--cream { background: var(--base); }
.section--yellow { background: var(--sub-bg); }
.section--coral-light { background: var(--coral-light); }

.section-label {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.section-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: clamp(24px, 3.6vw, 40px);
  line-height: 1.5;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text);
  letter-spacing: 0.01em;
}
.section-title .accent { color: var(--coral); }
.section-title .turq { color: var(--turquoise); }
.section-title small {
  display: block;
  font-size: clamp(14px, 1.6vw, 18px);
  color: var(--text-light);
  font-weight: 500;
  margin-top: 12px;
  font-family: 'Noto Sans JP', sans-serif;
}

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 40px;
  width: fit-content;
}
.gold-divider::before, .gold-divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--gold);
}
.gold-divider .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ===========================
   ANNOUNCE BAR
   =========================== */
.announce {
  background: var(--sub-bg);
  padding: 10px 20px;
  text-align: center;
  font-size: 12.5px;
  color: var(--text);
  border-bottom: 1px solid rgba(245, 194, 74, 0.3);
  font-weight: 500;
  position: relative;
  z-index: 10;
}
.announce .countdown { color: var(--turquoise); font-weight: 700; }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 0;
}

.hero::before,
.hero::after { content: none; }

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 2880px;
  margin: 0 auto;
}

.hero-visual picture,
.hero-visual img {
  display: block;
  width: 100%;
}

.hero-btn {
  position: absolute;
  top: 88.4%;
  left: 44.4%;
  width: 36.875%;
  display: block;
  line-height: 0;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
}

.hero-btn img {
  width: 100%;
  height: auto;
}

.preheader {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 26px;
  letter-spacing: 0.05em;
}
.preheader::before, .preheader::after {
  content: '';
  height: 1px;
  background: var(--gold);
}
.preheader::before { flex: 0 0 30px; }
.preheader::after { flex: 1; }

.headline {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
  color: var(--text);
}
.headline .small {
  font-size: clamp(20px, 2.8vw, 32px);
  display: block;
  margin-bottom: 8px;
  color: var(--text-light);
  font-weight: 500;
}
.headline .nowrap {
  white-space: nowrap;
  display: inline-block;
}
@media (max-width: 540px) {
  .headline .nowrap { white-space: normal; display: inline; }
}
.headline .accent {
  color: var(--coral);
  position: relative;
  display: inline-block;
}
.headline .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 6'%3E%3Cpath d='M0 3 Q 50 0 100 3 T 200 3' stroke='%237FD1A8' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x;
  background-size: 100px 6px;
}

.ws-name {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 32px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  letter-spacing: 0.02em;
  padding: 14px 22px;
  background: linear-gradient(110deg,
    #FFE89A 0%,
    #FFF6D9 30%,
    #FFD86A 50%,
    #FFF6D9 70%,
    #FFE89A 100%
  );
  background-size: 220% 100%;
  border-left: 3px solid var(--gold);
  border-radius: 0 14px 14px 0;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
  animation: ws-bg-shift 6s ease-in-out infinite;
  box-shadow: 0 6px 20px rgba(245, 194, 74, 0.25);
}
.ws-name::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.65) 50%,
    transparent 100%
  );
  animation: ws-shine 4.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.ws-name > span {
  position: relative;
  z-index: 2;
}
@keyframes ws-bg-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes ws-shine {
  0% { left: -150%; }
  55%, 100% { left: 250%; }
}

.ws-name-day {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.7em;
  background: linear-gradient(90deg, #A0701A, #C49019, #E0A82A, #C49019, #A0701A);
  background-size: 250% 100%;
  color: white;
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(160, 112, 26, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  animation: ws-day-shimmer 3s linear infinite;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(80, 50, 0, 0.5);
}
@keyframes ws-day-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 250% 50%; }
}

.subcopy {
  font-size: 16px;
  line-height: 1.95;
  color: var(--text);
  margin-bottom: 36px;
  max-width: 540px;
}
.subcopy .ginko {
  color: var(--turquoise);
  font-weight: 600;
  border-bottom: 1px solid var(--turquoise);
  padding-bottom: 1px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.pill {
  background: white;
  border: 1px solid rgba(245, 194, 74, 0.55);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 10px rgba(245, 194, 74, 0.08);
  color: var(--text);
}

.price-block {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.price-old {
  color: var(--text-mute);
  text-decoration: line-through;
  font-size: 16px;
}
.price-new {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-label {
  font-size: 14px;
  color: white;
  font-weight: 600;
  background: var(--coral);
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}
.price-amount {
  font-size: 42px;
  color: var(--coral);
  font-weight: 700;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: -0.02em;
  line-height: 1;
}
.price-tax { font-size: 12px; color: var(--text-light); }

/* ===========================
   CTA BUTTON
   =========================== */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--coral);
  color: white;
  font-size: 19px;
  font-weight: 700;
  padding: 22px 48px;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(255, 122, 89, 0.4);
  transition: all 0.3s cubic-bezier(.34,1.56,.64,1);
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}
.cta:hover {
  background: var(--coral-hover);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(255, 122, 89, 0.5);
}
.cta:hover::before { left: 100%; }
.cta .arrow { display: inline-block; transition: transform 0.3s; }
.cta:hover .arrow { transform: translateX(6px); }

.cta--lg {
  font-size: 21px;
  padding: 26px 56px;
}
.cta--full { width: 100%; max-width: 520px; }
.cta--turq { background: var(--turquoise); box-shadow: 0 10px 24px rgba(52, 200, 224, 0.4); }
.cta--turq:hover { background: #4FD3E8; box-shadow: 0 14px 32px rgba(52, 200, 224, 0.5); }

.cta-meta {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-light);
}
.cta-meta strong { color: var(--turquoise); font-weight: 700; }

.trust {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
  color: var(--text-light);
}
.trust span { display: inline-flex; align-items: center; gap: 4px; }

/* ===========================
   PORTRAIT
   =========================== */
.portrait-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 60px;
}
.portrait-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(245, 194, 74, 0.3), 0 8px 20px rgba(0,0,0,0.08);
  z-index: 2;
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portrait-ring {
  position: absolute;
  border-radius: 32px;
  pointer-events: none;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.portrait-ring.r1 {
  width: calc(100% + 24px);
  max-width: 444px;
  aspect-ratio: 3/4;
  border: 1px solid rgba(245, 194, 74, 0.55);
}
.portrait-ring.r2 {
  width: calc(100% + 48px);
  max-width: 468px;
  aspect-ratio: 3/4;
  border: 1px solid rgba(245, 194, 74, 0.28);
}

.signature {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  color: var(--text-light);
  z-index: 2;
  white-space: nowrap;
}
.signature .name {
  font-size: 19px;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.signature .role {
  font-size: 12px;
  letter-spacing: 0.05em;
}

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
  filter: blur(0.5px);
}
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.5; }
  50% { transform: translateY(-20px) translateX(10px); opacity: 0.85; }
}

.scroll-down {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: var(--text-mute);
  text-align: center;
  z-index: 3;
  letter-spacing: 0.05em;
}
.scroll-down .arrow-down {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  animation: bounce 1.8s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===========================
   FADE
   =========================== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
.delay-5 { animation-delay: 0.75s; }
.delay-6 { animation-delay: 0.9s; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===========================
   SECTION 2: 共感
   =========================== */
.empathy-list {
  max-width: 720px;
  margin: 0 auto;
}
.empathy-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 24px;
  background: var(--base);
  border-radius: 14px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.7;
  border-left: 4px solid var(--mint);
}
.empathy-item .check {
  flex: 0 0 24px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--mint);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}
.empathy-conclusion {
  margin: 50px auto 0;
  max-width: 720px;
  padding: 32px;
  background: var(--coral-light);
  border: 2px solid var(--coral);
  border-radius: 16px;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.9;
}
.empathy-conclusion strong { color: var(--coral); font-weight: 700; }

/* ===========================
   SECTION 3: 比較
   =========================== */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.compare-card {
  padding: 0 0 32px;
  border-radius: 20px;
  background: white;
  overflow: hidden;
}
.compare-card--good {
  border: 2px solid var(--mint);
  box-shadow: 0 12px 30px rgba(127, 209, 168, 0.18);
}
.compare-card--bad {
  border: 2px solid #D8D8D8;
}
.compare-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.compare-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.compare-card h3,
.compare-card ul {
  padding: 0 28px;
}
.compare-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid currentColor;
  border-bottom-color: rgba(0,0,0,0.1);
}
.compare-card--good h3 { color: var(--mint); }
.compare-card--bad h3 { color: var(--text-mute); }
.compare-card ul { list-style: none; }
.compare-card li {
  font-size: 14.5px;
  line-height: 1.85;
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}
.compare-card--good li::before {
  content: '◯';
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 700;
}
.compare-card--bad li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: var(--text-mute);
  font-weight: 700;
}
.compare-conclusion {
  text-align: center;
  margin-top: 50px;
  font-size: 18px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  line-height: 1.8;
}
.compare-conclusion strong {
  color: var(--coral);
  font-weight: 700;
}

/* ===========================
   SECTION 4: レムリア
   =========================== */
.lemuria-flare {
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
  color: var(--gold);
  letter-spacing: 0.5em;
}
.lemuria-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16.5px;
  line-height: 2.1;
  text-align: center;
}
.lemuria-body p { margin-bottom: 22px; }
.lemuria-body .ginko {
  color: var(--turquoise);
  font-weight: 600;
  border-bottom: 1.5px solid var(--turquoise);
}

/* ===========================
   SECTION 5: 4つの変容
   =========================== */
.transform-list {
  max-width: 820px;
  margin: 0 auto;
}
.transform-card {
  background: white;
  border-radius: 20px;
  margin-bottom: 36px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(245, 194, 74, 0.2);
}
.transform-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 32px;
  color: white;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.transform-card:nth-child(1) .transform-header { background: linear-gradient(90deg, #FF7A59, #FF9A7A); }
.transform-card:nth-child(2) .transform-header { background: linear-gradient(90deg, #34C8E0, #5FD8E8); }
.transform-card:nth-child(3) .transform-header { background: linear-gradient(90deg, #7FD1A8, #A0E0BD); }
.transform-card:nth-child(4) .transform-header { background: linear-gradient(90deg, #F5C24A, #FFD86A); color: #3A3A3A; }
.transform-header .num {
  font-size: 1.3em;
  flex: 0 0 auto;
}
.transform-body {
  padding: 36px 40px 32px;
  background: #FFFCF0;
}
.transform-block {
  margin-bottom: 24px;
}
.transform-block:last-child { margin-bottom: 0; }
.transform-block h4 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.6;
}
.transform-block p {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--text);
}
.transform-image {
  margin-top: 28px;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.transform-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.transform-image--ph {
  color: white;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.transform-image--ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.3) 0%, transparent 50%);
  pointer-events: none;
}
.transform-image--ph span {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.transform-image--ph small {
  display: block;
  font-size: 11px;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.05em;
  margin-top: 6px;
  opacity: 0.8;
}
.transform-ph--lemuria { background: linear-gradient(135deg, #34C8E0, #7FD1A8 70%, #FFE89A); }
.transform-ph--healing { background: linear-gradient(135deg, #B8A0E8, #FF9A7A 60%, #FFE89A); }
.transform-ph--bank { background: linear-gradient(135deg, #5DA8FF, #A78BFA 50%, #F5C24A); }

/* Image-only card variant (text is embedded in image) */
.transform-card--image .transform-body {
  padding: 0;
  background: white;
}
.transform-card--image .transform-image {
  margin-top: 0;
  border-radius: 0;
  aspect-ratio: auto;
}
.transform-card--image .transform-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Split card variant (text + side photo) */
.transform-body--split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 36px;
  align-items: center;
}
.transform-photo {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.transform-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===========================
   ABOUT DOLPHIN STAR TEMPLE
   =========================== */
.dst-section { padding: 0; background: linear-gradient(180deg, #C7E2F4 0%, #E8F4FB 50%, #FFFFFF 100%); }
.dst-mountain {
  width: 100%;
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.dst-mountain img {
  width: 100%;
  height: clamp(260px, 38vw, 460px);
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.dst-mountain-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(232, 244, 251, 0) 0%, rgba(232, 244, 251, 0.6) 70%, #E8F4FB 100%);
  pointer-events: none;
}
.dst-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 5% 90px;
  position: relative;
}
.dst-title {
  font-family: 'Noto Serif JP', serif;
  font-style: normal;
  font-size: clamp(26px, 3.6vw, 38px);
  color: #2C6A99;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 36px;
  text-align: left;
  position: relative;
  z-index: 2;
  margin-top: -70px;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.85);
}
.dst-body {
  font-size: 15.5px;
  line-height: 2.15;
  color: var(--text);
}
.dst-body p { margin-bottom: 22px; }
.dst-body p:last-child { margin-bottom: 0; }

/* ===========================
   CURRICULUM
   =========================== */
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.curriculum-item {
  background: white;
  border: 1.5px solid var(--gold-light);
  border-radius: 14px;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text);
  transition: all 0.25s ease;
}
.curriculum-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(245, 194, 74, 0.18);
  background: #FFFCF0;
}
.cur-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.curriculum-notes {
  text-align: center;
  margin-top: 44px;
  font-size: 13.5px;
  color: var(--coral);
  font-weight: 600;
  line-height: 2;
}

/* ===========================
   BEFORE / AFTER 受講後の意識の変化
   =========================== */
.trans-intro {
  text-align: center;
  font-size: 16px;
  line-height: 2.0;
  color: var(--text);
  margin-bottom: 60px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.trans-intro strong { color: var(--coral); font-weight: 700; }

.trans-block {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: white;
}
.trans-block--before {
  border: 2px solid #C5C5C5;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.trans-block--after {
  border: 2px solid var(--mint);
  box-shadow: 0 12px 36px rgba(127, 209, 168, 0.22);
}

.trans-image {
  width: 100%;
  aspect-ratio: 960 / 400;
  overflow: hidden;
}
.trans-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trans-content { padding: 32px 40px 40px; }

.trans-label {
  display: inline-block;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.trans-label--before { background: #E8E8E8; color: var(--text-light); }
.trans-label--after { background: var(--mint); color: white; }
.trans-label .ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9em;
  margin-left: 8px;
  letter-spacing: 0.05em;
}

.trans-list { list-style: none; padding: 0; }
.trans-list li {
  font-size: 15.5px;
  line-height: 1.85;
  padding: 14px 0 14px 36px;
  position: relative;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}
.trans-list li:last-child { border-bottom: none; }
.trans-list li::before {
  position: absolute;
  left: 0;
  top: 17px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
}
.trans-list--before li::before { content: '✕'; background: #B5B5B5; }
.trans-list--after li::before { content: '◯'; background: var(--mint); }
.trans-list--before li {
  color: var(--text-light);
  text-decoration: line-through;
  text-decoration-color: rgba(150,150,150,0.6);
}
.trans-list--after li { color: var(--text); font-weight: 500; }

.trans-arrow {
  text-align: center;
  margin: 50px auto;
  max-width: 600px;
}
.trans-arrow-text {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(15px, 2vw, 18px);
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.trans-arrow-icon {
  font-size: 36px;
  color: var(--gold);
  animation: bounce 2s infinite;
  line-height: 1;
}

/* ===========================
   SECTION 6: 受講後の変化
   =========================== */
.changes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  max-width: 900px;
  margin: 0 auto;
}
.change-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: white;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.65;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.change-item .check {
  flex: 0 0 22px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--mint);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}

/* ===========================
   SECTION 7: 受講者の声
   =========================== */
.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.voice-card {
  background: white;
  border-radius: 20px;
  padding: 32px 28px 28px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.05);
  border-top: 4px solid var(--gold);
  position: relative;
}
.voice-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 24px;
  font-family: 'Noto Serif JP', serif;
  font-size: 80px;
  line-height: 1;
  color: var(--gold-light);
  font-weight: 700;
}
.voice-text {
  font-size: 14.5px;
  line-height: 1.95;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.voice-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #EEE;
  padding-top: 16px;
}
.voice-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
  font-family: 'Noto Serif JP', serif;
}
.voice-card:nth-child(1) .voice-avatar { background: var(--coral); }
.voice-card:nth-child(2) .voice-avatar { background: var(--turquoise); }
.voice-card:nth-child(3) .voice-avatar { background: var(--mint); }
.voice-card:nth-child(4) .voice-avatar { background: var(--gold); }
.voice-card:nth-child(5) .voice-avatar { background: var(--coral); }
.voice-card:nth-child(6) .voice-avatar { background: var(--turquoise); }
.voice-highlight {
  color: var(--coral);
  font-weight: 700;
  font-size: 1.05em;
}
.voice-name { font-size: 14px; font-weight: 600; }
.voice-role { font-size: 12px; color: var(--text-light); }

/* ===========================
   SECTION 8: こんな方に
   =========================== */
.recommend-list {
  max-width: 760px;
  margin: 0 auto;
}
.recommend-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: white;
  border-radius: 14px;
  margin-bottom: 12px;
  font-size: 15.5px;
  border: 1px solid rgba(255, 122, 89, 0.15);
  box-shadow: 0 2px 8px rgba(255, 122, 89, 0.04);
}
.recommend-item .heart {
  flex: 0 0 24px;
  font-size: 20px;
  color: var(--coral);
}

/* ===========================
   SECTION 9: 講師プロフィール
   =========================== */
.profile-section {
  background: white;
  position: relative;
}
.profile-section::before, .profile-section::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 800px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.profile-section::before { top: 60px; }
.profile-section::after { bottom: 60px; }

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.profile-photo {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold-light);
  box-shadow: 0 16px 40px rgba(245, 194, 74, 0.25);
  margin: 0 auto;
}
.profile-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.profile-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 4px;
}
.profile-name small {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 400;
  margin-left: 8px;
}
.profile-role {
  color: var(--coral);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.profile-bio {
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--text);
}
.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 60px auto 0;
}
.profile-stat {
  text-align: center;
  background: var(--base);
  border: 1px solid var(--gold-light);
  border-radius: 16px;
  padding: 28px 16px;
}
.profile-stat .num {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.profile-stat .num small { font-size: 0.55em; margin-left: 2px; }
.profile-stat .label {
  font-size: 13px;
  color: var(--text-light);
}

/* ===========================
   SECTION 10: 価格
   =========================== */
.price-intro {
  max-width: 680px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 15px;
  line-height: 1.95;
  color: var(--text);
}
.value-compare {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 40px auto 50px;
  max-width: 800px;
}
.value-strike {
  background: white;
  border: 1px solid #DDD;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 14px;
  color: var(--text-mute);
  text-decoration: line-through;
}
.value-arrow {
  font-size: 24px;
  color: var(--gold);
}
.value-now {
  background: var(--coral);
  color: white;
  padding: 18px 28px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(255, 122, 89, 0.3);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 0 auto 50px;
}
.price-card {
  background: white;
  border: 2px solid #EEE;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
}
.price-card--featured {
  border-color: var(--coral);
  background: var(--coral-light);
  transform: scale(1.04);
  box-shadow: 0 16px 40px rgba(255, 122, 89, 0.18);
}
.price-card .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.price-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}
.price-card .amount {
  font-family: 'Noto Serif JP', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.price-card--featured .amount { color: var(--coral); }
.price-card .yen-label { font-size: 14px; color: var(--text-light); }
.price-card .note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
}
.price-cta-wrap { text-align: center; }

/* Early bird countdown */
.price-deadline {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 30px;
  background: white;
  border: 2px solid var(--coral);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(255, 122, 89, 0.2);
  position: relative;
}
.price-deadline::before {
  content: '⏰';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 2px solid var(--coral);
}
.deadline-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.15em;
  margin-bottom: 18px;
  margin-top: 4px;
}
.deadline-counter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}
.dl-block {
  background: linear-gradient(180deg, var(--coral), #FF6B47);
  color: white;
  padding: 14px 12px;
  border-radius: 10px;
  min-width: 64px;
  box-shadow: 0 4px 10px rgba(255, 122, 89, 0.3);
}
.dl-block .v {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.dl-block .u {
  font-size: 11px;
  margin-top: 5px;
  letter-spacing: 0.05em;
  opacity: 0.95;
}
.deadline-meta {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}
.deadline-meta strong { color: var(--coral); }
@media (max-width: 540px) {
  .price-deadline { padding: 24px 16px; }
  .deadline-counter { gap: 6px; }
  .dl-block { min-width: 54px; padding: 12px 8px; }
  .dl-block .v { font-size: 24px; }
}

/* ===========================
   SECTION 11: 特典
   =========================== */
.bonus-banner {
  text-align: center;
  background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: var(--text);
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto 50px;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 20px rgba(245, 194, 74, 0.3);
}
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.bonus-card {
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--gold-light);
  box-shadow: 0 6px 20px rgba(245, 194, 74, 0.08);
  position: relative;
}
.bonus-card .gift-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.bonus-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.5;
}
.bonus-card p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 14px;
}
.bonus-card .price-line {
  font-size: 13px;
  color: var(--coral);
  font-weight: 600;
  border-top: 1px dashed var(--gold-light);
  padding-top: 10px;
}
.bonus-card .price-line .strike {
  text-decoration: line-through;
  color: var(--text-mute);
  margin-right: 6px;
}

/* ===========================
   SECTION 12: 限定枠
   =========================== */
.urgency-section { text-align: center; }
.urgency-num {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(56px, 9vw, 110px);
  font-weight: 900;
  color: var(--coral);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 20px 0 10px;
}
.urgency-num small {
  font-size: 0.4em;
  font-weight: 700;
  vertical-align: middle;
  margin-left: 8px;
  color: var(--text);
}
.urgency-sub {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 30px;
}
.urgency-counter {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  background: white;
  padding: 24px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  margin-bottom: 30px;
}
.urgency-counter .label {
  width: 100%;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 8px;
}
.cd-block {
  background: var(--coral);
  color: white;
  padding: 14px 18px;
  border-radius: 12px;
  min-width: 70px;
  text-align: center;
}
.cd-block .v {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.cd-block .u {
  font-size: 11px;
  margin-top: 4px;
}
.urgency-warning {
  font-size: 14px;
  color: var(--text);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===========================
   SECTION 13: 開催詳細
   =========================== */
.detail-table {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.05);
}
.detail-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: 1px solid rgba(245, 194, 74, 0.25);
  font-size: 15px;
}
.detail-row:last-child { border-bottom: none; }
.detail-row dt {
  background: var(--base);
  padding: 18px 20px;
  font-weight: 600;
  color: var(--text-light);
  font-size: 14px;
}
.detail-row dd {
  padding: 18px 24px;
  line-height: 1.85;
}

/* ===========================
   SECTION 14: FAQ
   =========================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--base);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid rgba(245, 194, 74, 0.2);
}
.faq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  cursor: pointer;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  user-select: none;
  transition: background 0.2s;
}
.faq-q:hover { background: rgba(255, 232, 154, 0.4); }
.faq-q .q-mark {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--turquoise);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Noto Serif JP', serif;
}
.faq-q .toggle {
  margin-left: auto;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--turquoise);
  color: var(--turquoise);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.3s;
}
.faq-item.is-open .faq-q .toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
}
.faq-item.is-open .faq-a {
  max-height: 400px;
  padding: 0 24px 22px 66px;
}
.faq-a-inner {
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--text);
  border-top: 1px dashed rgba(245, 194, 74, 0.5);
  padding-top: 16px;
}

/* ===========================
   SECTION 15: クロージング
   =========================== */
.closing-portrait {
  width: 180px;
  height: 180px;
  margin: 0 auto -60px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: 0 12px 30px rgba(245, 194, 74, 0.3), 0 0 0 3px var(--gold-light);
  position: relative;
  z-index: 2;
  background: white;
}
.closing-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.closing-letter {
  max-width: 680px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--gold-light);
  border-radius: 20px;
  padding: 90px 50px 60px;
  position: relative;
  box-shadow: 0 20px 50px rgba(245, 194, 74, 0.15);
}
.closing-letter::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: 20px; bottom: 20px;
  border: 1px solid var(--gold-light);
  border-radius: 14px;
  pointer-events: none;
}
.closing-body {
  font-size: 16px;
  line-height: 2.1;
  color: var(--text);
  text-align: center;
  position: relative;
  z-index: 1;
}
.closing-body p { margin-bottom: 22px; }
.closing-body .accent { color: var(--coral); font-weight: 600; }
.closing-sign {
  text-align: right;
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  margin-top: 30px;
  color: var(--text);
}

/* ===========================
   SECTION 16: 最終CTA
   =========================== */
.final-cta-section {
  background: linear-gradient(180deg, white 0%, var(--base) 100%);
  text-align: center;
}
.final-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 520px;
  margin: 0 auto;
}
.final-cta-meta {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-light);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.7);
  padding: 50px 5% 30px;
  font-size: 13px;
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }
.footer-note {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  line-height: 1.8;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

/* ===========================
   STICKY CTA
   =========================== */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--coral);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(255, 122, 89, 0.45);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 100;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s, background 0.2s;
  pointer-events: none;
}
.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta:hover { background: var(--coral-hover); }

/* ===========================
   MOBILE
   =========================== */
@media (max-width: 880px) {
  .section { padding: 70px 0; }
  .hero { padding: 0; }
  .hero-btn {
    top: 88.35%;
    left: 1%;
    width: 98%;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .portrait-wrap { order: -1; padding-bottom: 50px; }
  .portrait-frame { max-width: 240px; }
  .portrait-ring.r1 { max-width: 264px; }
  .portrait-ring.r2 { max-width: 288px; }
  .pills { gap: 8px; justify-content: center; }
  .pill { padding: 8px 16px; font-size: 12px; }
  .cta { width: 100%; padding: 20px 32px; font-size: 17px; }
  .price-amount { font-size: 34px; }
  .preheader { justify-content: center; text-align: center; }
  .preheader::before { flex: 0 0 20px; }
  .preheader::after { flex: 0 0 20px; }
  .headline { text-align: center; }
  .ws-name { display: flex; justify-content: center; text-align: center; }
  .subcopy { text-align: center; margin-left: auto; margin-right: auto; }
  .price-block { justify-content: center; }
  .trust { justify-content: center; }
  .cta-meta { text-align: center; }

  .compare-grid,
  .changes-grid,
  .voice-grid,
  .bonus-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }
  .price-card--featured { transform: none; }
  .transform-header { padding: 18px 22px; gap: 12px; }
  .transform-body { padding: 28px 22px; }
  .transform-image { aspect-ratio: 4/3; }
  .transform-body--split { grid-template-columns: 1fr; gap: 24px; }
  .transform-photo { max-width: 280px; margin: 0 auto; }

  .curriculum-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .curriculum-item { padding: 18px 12px; font-size: 12.5px; }
  .cur-icon { width: 30px; height: 30px; margin-bottom: 8px; }

  .trans-content { padding: 24px 22px 28px; }
  .trans-list li { font-size: 14.5px; padding: 12px 0 12px 32px; }
  .trans-arrow { margin: 36px auto; }

  .dst-title { margin-top: -50px; font-size: 26px; }
  .dst-inner { padding: 10px 5% 60px; }

  .profile-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .profile-photo { max-width: 200px; }
  .profile-stats { grid-template-columns: 1fr; }

  .detail-row { grid-template-columns: 110px 1fr; font-size: 14px; }
  .detail-row dt { padding: 14px; font-size: 13px; }
  .detail-row dd { padding: 14px 16px; }

  .closing-letter { padding: 70px 24px 36px; }
  .closing-portrait { width: 130px; height: 130px; margin-bottom: -50px; }

  .sticky-cta { font-size: 13px; padding: 12px 18px; right: 16px; bottom: 16px; }
}

@media (max-width: 540px) {
  .voice-card { padding: 28px 22px; }
  .transform-card { padding: 32px 24px; }
  .urgency-counter { padding: 18px 20px; }
  .cd-block { min-width: 60px; padding: 12px 14px; }
  .cd-block .v { font-size: 24px; }
}
