:root {
  --pink: #f4739a;
  --pink-light: #fff0f5;
  --pink-soft: #f9a8c0;
  --blue: #5bb8e8;
  --blue-light: #eef7ff;
  --gold: #f5c842;
  --navy: #1f3a5f;
  --text: #333333;
  --muted: #666666;
  --shadow: 0 14px 34px rgba(94, 79, 88, 0.12);
  --container: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  background: #fff;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.container { width: min(var(--container), calc(100% - 64px)); margin: 0 auto; }
.narrow { width: min(920px, calc(100% - 64px)); }
.centered { text-align: center; }
.section { position: relative; padding: 120px 0; overflow: hidden; }
.white { background: #fff; }
.pink { background: var(--pink-light); }
.blue { background: var(--blue-light); }

.logo {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(31, 58, 95, 0.08);
  transform: translateY(-110%);
  transition: transform 0.35s ease;
  backdrop-filter: blur(12px);
}
.site-header.visible { transform: translateY(0); }
.site-header .logo { color: var(--pink); font-size: 28px; white-space: nowrap; }
.header-nav { display: flex; gap: 26px; color: var(--muted); font-size: 14px; font-weight: 700; }
.header-nav a:hover { color: var(--pink); }
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 42px;
  padding: 8px 20px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pink), var(--pink-soft));
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(244, 115, 154, 0.4);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 64px 0 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 56% 22%, rgba(255,255,255,.9) 0 12%, transparent 34%),
    linear-gradient(100deg, #fff 0%, #fff 42%, var(--pink-light) 100%);
}
.fv-section {
  position: relative;
  overflow: hidden;
}
.hero-inner {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 42px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-brand { margin: 0 0 22px; color: var(--pink); font-size: 28px; }
.hero h1 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  max-width: 620px;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.6;
  font-weight: 700;
}
.fv-main-copy {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}
.fv-line2,
.fv-line3 {
  display: block;
}
.fv-line3 {
  white-space: nowrap;
}
.fv-pink {
  color: #ee5f8d;
  font-weight: 800;
  letter-spacing: 0;
}
.hero-lead { margin: 26px 0 28px; color: var(--muted); font-size: 20px; font-weight: 700; }
.hero-visual {
  position: absolute;
  inset: 0 0 0 auto;
  width: 58%;
  height: 100%;
  margin: 0;
}
.hero-visual img,
.fv-image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  object-fit: cover;
  object-position: top right;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black 50%),
    linear-gradient(to bottom, transparent 0%, black 8%);
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(to right, transparent 0%, black 50%),
    linear-gradient(to bottom, transparent 0%, black 8%);
  mask-composite: intersect;
  filter: drop-shadow(0 28px 36px rgba(92, 84, 88, .16));
}

.cta-wrap { display: flex; flex-direction: column; align-items: center; width: fit-content; max-width: 100%; }
.cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .cta-wrap { align-items: center; }
.cta-label {
  position: relative;
  margin: 0 0 8px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}
.cta-label::before,
.cta-label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--pink);
}
.cta-label::before { right: calc(100% + 8px); transform: rotate(55deg); }
.cta-label::after { left: calc(100% + 8px); transform: rotate(-55deg); }
.cta-button {
  display: inline-block;
  width: min(420px, 100%);
  padding: 0;
  background: none;
  background-image: none;
  border: none;
  transition: filter .2s ease, transform .2s ease;
}
.cta-button:hover { filter: brightness(1.06); transform: translateY(-2px); }
.cta-button img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background: transparent;
}

.label-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 30px;
  max-width: 640px;
}
.label-card {
  min-height: 82px;
  display: grid;
  place-items: center;
  gap: 5px;
  padding: 12px 10px;
  color: var(--text);
  font-weight: 800;
  font-size: 13px;
  text-align: center;
  background: rgba(255, 255, 255, .92);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(244, 115, 154, .16);
}
.label-card img { width: 30px; margin: 0 auto; }

.heading { text-align: center; margin-bottom: 50px; }
.heading h2,
.section-title,
.text-panel h2,
.about-title {
  margin: 0;
  color: var(--text);
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
h2,
h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
.heading h2,
.section-title,
.text-panel h2,
.about-title {
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.35;
}
.heading h2 span { color: var(--pink); }
.achievement-title {
  font-size: 22px;
}
.en-label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
}

.achievement {
  background:
    radial-gradient(circle at 50% 100%, rgba(245, 200, 66, .3), transparent 36%),
    linear-gradient(180deg, #fffdf4, #fff4d3 42%, #ffffff 100%);
}
.sparkles,
.night-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.95) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(245,200,66,.9) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(255,255,255,.8) 0 1px, transparent 2px);
  background-size: 120px 120px, 190px 190px, 82px 82px;
  animation: sparkleMove 11s linear infinite;
}
@keyframes sparkleMove {
  from { background-position: 0 0, 20px 30px, 70px 10px; }
  to { background-position: 120px -120px, 210px -160px, 152px -72px; }
}
.achievement-copy { margin: 26px 0 0; font-size: 25px; font-weight: 800; }
.achievement-subtitle {
  font-size: 38px;
  color: #c9a84c;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
.rate-stage {
  position: relative;
  width: min(560px, 100%);
  min-height: 245px;
  display: grid;
  place-items: center;
  margin: 8px auto 16px;
}
.rate-stage strong {
  color: #c69222;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(120px, 13vw, 184px);
  line-height: 1;
  text-shadow: 0 10px 26px rgba(198, 146, 34, .18);
}
.rate-stage small { font-size: .32em; }
.crown { position: absolute; top: 8px; left: 50%; width: 58px; transform: translateX(-50%); }
.laurel {
  position: absolute;
  top: 50%;
  width: 151px;
  transform: translateY(-43%);
}
.laurel.left { left: 38px; }
.laurel.right { right: 38px; }
.badge-row { display: flex; justify-content: center; gap: 34px; flex-wrap: wrap; }
.gold-badge { position: relative; width: 240px; height: 240px; }
.achievement-badge {
  width: 240px;
  height: 240px;
  object-fit: contain;
}
.note { color: var(--muted); font-size: 12px; text-align: right; }

.card-grid { display: grid; gap: 22px; }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.soft-card {
  min-height: 226px;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 28px 22px;
  text-align: center;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.soft-card img { width: 86px; margin: 0 auto; }
.soft-card p { margin: 0; font-size: 16px; font-weight: 800; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 58px;
}
.photo-panel img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.text-panel p { margin: 18px 0; font-weight: 500; }
.about-title,
#about-title {
  text-align: center;
  width: 100%;
  margin: 0 auto 40px;
}
.feature-list { display: grid; gap: 14px; margin-top: 28px; }
.feature-list article {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border: 2px solid rgba(244, 115, 154, .45);
  border-radius: 12px;
  background: #fff;
}
.feature-list i { color: var(--pink); font-size: 28px; width: 34px; text-align: center; }
.feature-list h3,
.feature-list p { margin: 0; }
.feature-list h3 { color: var(--pink); font-size: 16px; }
.feature-list p { color: var(--muted); font-size: 13px; }

.reason-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.reason-card {
  position: relative;
  grid-column: span 2;
  min-height: 235px;
  padding: 34px 24px 26px;
  text-align: center;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.reason-card:nth-child(4) { grid-column: 2 / span 2; }
.reason-card:nth-child(5) { grid-column: 4 / span 2; }
.reason-card span {
  position: absolute;
  top: 16px;
  left: 18px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pink), var(--pink-soft));
  border-radius: 50%;
}
.reason-card img { width: 66px; margin: 0 auto 14px; }
.reason-card h3 { margin: 0 0 10px; font-size: 17px; line-height: 1.6; }
.reason-card p { margin: 0; color: var(--muted); font-size: 14px; }

.marble {
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.84)),
    repeating-linear-gradient(115deg, rgba(31,58,95,.06) 0 1px, transparent 1px 46px),
    #fff;
}
.support-list { display: grid; gap: 14px; }
.support-card {
  display: grid;
  grid-template-columns: 40px 72px 1fr;
  align-items: center;
  gap: 18px;
  padding: 17px 24px;
  background: rgba(255, 255, 255, .88);
  border: 2px solid rgba(244, 115, 154, .25);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(244, 115, 154, .08);
}
.support-card b {
  width: 28px;
  height: 28px;
  min-height: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  background: linear-gradient(135deg, var(--pink), var(--pink-soft));
  border-radius: 8px;
}
.support-number {
  font-size: 14px;
  width: 28px;
  height: 28px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.support-card img { width: 54px; }
.support-card h3 { margin: 0 0 4px; color: var(--pink); font-size: 19px; }
.support-card p { margin: 0; color: var(--muted); }

.course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px;
  width: min(860px, 100%);
  margin: 0 auto;
}
.course-card {
  position: relative;
  padding: 32px 38px;
  background: #fff;
  border: 2px solid rgba(91, 184, 232, .24);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.course-card.pro { border-color: rgba(244, 115, 154, .45); }
.ribbon {
  position: absolute;
  top: -18px;
  left: 24px;
  padding: 7px 22px;
  color: #fff;
  font-weight: 800;
  background: var(--pink);
  border-radius: 20px;
  transform: rotate(-5deg);
}
.course-card h3 { margin: 0; text-align: center; color: var(--blue); font-size: 22px; }
.course-card.pro h3 { color: var(--pink); }
.price {
  margin: 8px 0 18px;
  color: #b78622;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 67px;
  font-weight: 700;
  line-height: 1;
  border-bottom: 2px dashed rgba(245, 200, 66, .55);
  padding-bottom: 18px;
}
.price span { font-family: "Noto Sans JP", sans-serif; font-size: 14px; }
.recommend {
  min-height: 74px;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
}
.course-card h4 {
  margin: 25px 0 8px;
  color: var(--pink);
  text-align: center;
  font-size: 15px;
}
.course-card ul { margin: 0; padding-left: 1.2em; color: var(--muted); font-size: 14px; font-weight: 700; }

.instructor .text-panel h3 { margin: 24px 0 4px; font-size: 30px; }
.instructor .text-panel small { font-size: 16px; }
.role { color: var(--pink); font-weight: 800; }
.gold-line { width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.tag-row span {
  padding: 6px 12px;
  color: var(--pink);
  font-weight: 800;
  border: 1px solid var(--pink);
  border-radius: 8px;
  background: #fff;
}

.voice-slider {
  position: relative;
  width: min(830px, 100%);
  margin: 0 auto;
  padding: 0 58px 48px;
}
.voice-track {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}
.voice-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  opacity: 0;
  transform: translateX(40px);
  pointer-events: none;
  background: #fff;
  border: 2px solid rgba(244, 115, 154, .22);
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: opacity .35s ease, transform .35s ease;
}
.voice-slide.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.voice-slide img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 50%;
}
.stars { margin: 0; color: var(--gold); font-size: 22px; letter-spacing: 4px; }
.voice-slide h3 { margin: 2px 0; }
.voice-slide b { color: var(--pink); }
.voice-slide p:last-child {
  position: relative;
  margin: 18px 0 0;
  padding: 18px 22px;
  font-weight: 800;
  background: #fff8fb;
  border: 2px solid rgba(244, 115, 154, .28);
  border-radius: 12px;
}
.slider-arrow {
  position: absolute;
  top: 43%;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 0;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 4px 12px rgba(244, 115, 154, 0.4);
  cursor: pointer;
}
.slider-arrow.prev { left: 0; }
.slider-arrow.next { right: 0; }
.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(244, 115, 154, .28);
  cursor: pointer;
}
.slider-dots button.active { width: 26px; border-radius: 12px; background: var(--pink); }

.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(31, 58, 95, .08);
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  min-height: 70px;
  display: grid;
  grid-template-columns: 44px 1fr 32px;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  color: var(--text);
  text-align: left;
  font: inherit;
  font-weight: 800;
  background: #fff;
  border: 0;
  cursor: pointer;
}
.faq-item button span,
.faq-item p span {
  color: var(--pink);
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}
.faq-item p span { color: var(--blue); margin-right: 16px; }
.faq-item button b {
  color: var(--pink);
  font-size: 26px;
  text-align: center;
}
.faq-item div {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item p {
  margin: 0;
  padding: 0 22px 22px 80px;
  color: var(--muted);
  font-weight: 500;
}

.pricing-table {
  width: min(940px, 100%);
  margin: 0 auto 34px;
  overflow-x: auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
table { width: 100%; border-collapse: collapse; min-width: 680px; }
th, td {
  padding: 15px 20px;
  text-align: center;
  border: 1px solid #e8edf3;
}
thead th { color: var(--blue); font-size: 18px; }
thead .pro-head { color: #fff; background: linear-gradient(135deg, var(--pink), var(--pink-soft)); }
tbody th { text-align: left; background: #f7fbff; }
.price-number {
  font-size: 32px;
  font-weight: bold;
  color: #f4739a;
}
.price-unit {
  font-size: 14px;
  font-weight: normal;
}
.price-col-pro {
  border: 2px solid #f4739a;
  border-radius: 8px;
  background: #fff9fb;
}
thead .price-col-pro {
  border-top: 2px solid #f4739a;
  border-radius: 8px 8px 0 0;
}
tbody tr:last-child .price-col-pro {
  border-bottom: 2px solid #f4739a;
  border-radius: 0 0 8px 8px;
}
td b {
  color: #b78622;
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
}
td small { display: inline-block; margin-left: 4px; }
.pink-text { color: var(--pink); font-weight: 900; }
.pricing .cta-wrap { margin: 0 auto; }

.final-cta {
  padding: 106px 0 124px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 42%, rgba(91, 184, 232, .35), transparent 20%),
    radial-gradient(circle at 82% 28%, rgba(245, 200, 66, .35), transparent 22%),
    linear-gradient(135deg, #132846, var(--navy) 56%, #0d2440);
}
.final-cta h2 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 500;
  line-height: 1.45;
}
.final-cta p { font-family: "Noto Serif JP", serif; font-size: 22px; font-weight: 500; }
.final-cta .cta-wrap { margin: 28px auto 34px; }
.footer-labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 42px;
}
.footer-labels div {
  min-height: 104px;
  display: grid;
  place-items: center;
  gap: 7px;
  padding: 14px 12px;
  color: var(--text);
  font-weight: 800;
  background: #fff;
  border-radius: 8px;
}
.footer-labels img { width: 38px; }
.footer-labels div:nth-child(n + 2) img { width: 44px; }
.footer-logo { margin: 52px 0 0; color: #fff; font-size: 34px; }
.night-sparkles { opacity: .8; }

.sticky-footer-cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 80;
  display: none;
  transform: translateX(-50%);
  width: min(420px, calc(100% - 28px));
  padding: 13px 22px;
  color: #fff;
  text-align: center;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--pink-soft));
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(244, 115, 154, 0.4);
}
.sticky-footer-cta.visible { display: block; }

.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(31, 58, 95, .48);
}
.exit-popup.show { display: grid; }
.popup-panel {
  position: relative;
  width: min(520px, 100%);
  padding: 44px 40px;
  text-align: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 26px 80px rgba(0,0,0,.2);
}
.popup-panel h2 { margin: 0 0 12px; color: var(--text); font-size: 27px; }
.popup-panel p { color: var(--muted); }
.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  color: var(--muted);
  font-size: 26px;
  line-height: 1;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.fade-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--delay, 0s);
}
.fade-item.is-visible { opacity: 1; transform: translateY(0); }

@media (min-width: 1024px) {
  .section:first-child { padding-top: 64px; }
  .hero-inner { gap: 28px; }
  .hero-visual { width: 70%; }
  .hero-visual img,
  .fv-image {
    right: 0;
    width: auto;
    max-width: 100%;
    -webkit-mask-image:
      linear-gradient(to right, transparent 0%, black 12%),
      linear-gradient(to bottom, transparent 0%, black 8%);
    mask-image:
      linear-gradient(to right, transparent 0%, black 12%),
      linear-gradient(to bottom, transparent 0%, black 8%);
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: clamp(37px, 3.25vw, 53px);
    line-height: 1.48;
  }
}

@media (max-width: 1023px) {
  .container,
  .narrow { width: min(100% - 42px, 860px); }
  .section { padding: 92px 0; }
  .header-nav { display: none; }
  .hero { min-height: auto; padding-top: 90px; }
  .hero-inner,
  .split { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero .cta-wrap { align-items: center; margin: 0 auto; }
  .label-grid { margin-inline: auto; }
  .card-grid.four { grid-template-columns: repeat(2, 1fr); }
  .reason-grid { grid-template-columns: repeat(2, 1fr); }
  .reason-card,
  .reason-card:nth-child(4),
  .reason-card:nth-child(5) { grid-column: auto; }
  .course-grid { gap: 24px; }
  .footer-labels { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  body { font-size: 15px; padding-bottom: 64px; }
  .container,
  .narrow { width: calc(100% - 28px); }
  .section { padding: 72px 0; }
  .site-header { height: 62px; padding: 0 14px; }
  .site-header .logo { font-size: 21px; }
  .header-cta { min-width: auto; min-height: 38px; padding: 8px 14px; font-size: 12px; }
  .hero { padding-top: 74px; }
  .hero-inner { gap: 24px; }
  .hero-brand { font-size: 23px; }
  .hero h1 { font-size: 32px; }
  .hero-lead { font-size: 16px; }
  .cta-button { width: min(360px, 100%); }
  .label-grid { grid-template-columns: repeat(2, 1fr); }
  .label-card { min-height: 74px; font-size: 12px; }
  .heading { margin-bottom: 34px; }
  .heading h2,
  .section-title,
  .text-panel h2,
  .about-title { font-size: 31px; }
  .achievement-copy { font-size: 18px; }
  .rate-stage { min-height: 190px; }
  .rate-stage strong { font-size: 118px; }
  .laurel { width: 101px; }
  .laurel.left { left: 0; }
  .laurel.right { right: 0; }
  .crown { width: 46px; }
  .gold-badge { width: 240px; height: 240px; }
  .card-grid.four,
  .reason-grid,
  .course-grid,
  .footer-labels { grid-template-columns: 1fr; }
  .split { gap: 32px; }
  .photo-panel img { aspect-ratio: 1 / .82; }
  .feature-list article { align-items: flex-start; }
  .support-card {
    grid-template-columns: 32px 42px 1fr;
    gap: 10px;
    padding-right: 12px;
  }
  .support-card b { width: 28px; height: 28px; min-height: 0; font-size: 14px; }
  .support-card img { width: 42px; }
  .support-card h3 { font-size: 16px; }
  .support-card p { font-size: 13px; }
  .course-card { padding: 30px 24px; }
  .price { font-size: 40px; }
  .voice-slider { padding: 0 0 42px; }
  .voice-track { min-height: 480px; }
  .voice-slide {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 26px 20px;
  }
  .voice-slide img { width: 130px; height: 130px; }
  .slider-arrow { top: auto; bottom: -2px; width: 38px; height: 38px; }
  .slider-arrow.prev { left: calc(50% - 100px); }
  .slider-arrow.next { right: calc(50% - 100px); }
  .faq-item button {
    grid-template-columns: 32px 1fr 24px;
    gap: 10px;
    padding: 14px;
    font-size: 14px;
  }
  .faq-item button span,
  .faq-item p span { font-size: 28px; }
  .faq-item p { padding: 0 14px 18px 56px; font-size: 14px; }
  th, td { padding: 12px 14px; }
  .final-cta h2 { font-size: 34px; }
  .final-cta p { font-size: 17px; }
  .footer-labels div { min-height: 88px; }
  .footer-logo { font-size: 28px; }
  .sticky-footer-cta { display: block; }
  .popup-panel { padding: 38px 22px; }
}
