/* ===== UPdate Nagoya — Clean Elegant × Mint Green (#9BE3D7) ===== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&family=Noto+Serif+JP:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --c-primary: #9BE3D7;
  --c-primary-dark: #6ec4b6;
  --c-primary-light: rgba(155, 227, 215, 0.12);
  --c-primary-glow: rgba(155, 227, 215, 0.25);
  --c-bg: #FFFFFF;
  --c-bg-alt: #F8FAFC;
  --c-text: #333333;
  --c-text-light: #4A4A4A;
  --c-text-muted: #94A3B8;
  --c-border: #E2E8F0;
  --c-white: #FFFFFF;
  --c-green: #4ecb71;
  --c-gold-deep: #b28758;
  --c-line-green: #06c755;
  --f-en: 'Outfit', sans-serif;
  --f-jp: 'Noto Sans JP', sans-serif;
  --f-heading: 'Noto Serif JP', serif;
  --section-py: clamp(100px, 12vw, 160px);
  --container-max: 700px;
  --container-px: clamp(24px, 5vw, 48px);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.4s;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: var(--f-jp);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.9;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.92) brightness(1.03) hue-rotate(-5deg);
}

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

ul,
ol {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--container-px);
  height: 68px;
}

.header__logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  padding: 8px 0;
  isolation: isolate;
}

.header__logo::before {
  content: '';
  position: absolute;
  inset: 2px -14px 0 -12px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 50%, rgba(155, 227, 215, 0.2) 0%, rgba(155, 227, 215, 0.1) 38%, rgba(255, 255, 255, 0) 76%);
  filter: blur(12px);
  pointer-events: none;
  opacity: 0.82;
}

.header__logo::after {
  content: '';
  position: absolute;
  inset: -2px -14px -3px -14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 255, 253, 0.74));
  border: 1px solid rgba(155, 227, 215, 0.18);
  box-shadow: 0 8px 20px rgba(134, 206, 194, 0.09);
  opacity: 0.88;
  pointer-events: none;
}

.header__logo-image {
  position: relative;
  z-index: 2;
  display: block;
  width: auto;
  height: clamp(34px, 5vw, 46px);
  max-width: min(38vw, 138px);
  opacity: 1;
  filter: drop-shadow(0 4px 9px rgba(105, 190, 175, 0.14));
  transition: transform var(--duration) var(--ease), filter var(--duration) var(--ease);
}

.header__logo:hover .header__logo-image {
  transform: translateY(-1px);
  filter: drop-shadow(0 6px 12px rgba(105, 190, 175, 0.17));
}

.header__nav {
  display: none;
}

.header__nav a {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--c-text-light);
  letter-spacing: 0.08em;
  transition: color var(--duration) var(--ease);
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-primary);
  transition: width var(--duration) var(--ease);
}

.header__nav a:hover {
  color: var(--c-primary-dark);
}

.header__nav a:hover::after {
  width: 100%;
}

.header__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-primary);
  color: var(--c-white) !important;
  padding: 10px 22px;
  border-radius: 99px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  box-shadow: 0 4px 12px var(--c-primary-glow);
}

.header__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 227, 215, 0.4);
}

.header__cta-btn::after {
  display: none;
}

/* Mobile hamburger & nav */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  transition: all 0.3s var(--ease);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  font-size: 1.1rem;
  color: var(--c-text);
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: var(--c-primary);
}

/* ===== Section titles ===== */
.section-label {
  display: inline-block;
  font-family: var(--f-en);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-primary-dark);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--f-heading);
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  color: var(--c-text);
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--c-text-light);
  line-height: 2;
  max-width: 600px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all var(--duration) var(--ease);
}

.btn--lg {
  padding: 20px 48px;
  font-size: 0.95rem;
}

.btn--primary {
  background: var(--c-primary);
  color: var(--c-white);
  box-shadow: 0 4px 16px var(--c-primary-glow);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(155, 227, 215, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--c-primary-dark);
  border: 1.5px solid var(--c-primary);
}

.btn--outline:hover {
  background: var(--c-primary);
  color: var(--c-white);
  transform: translateY(-3px);
}

.btn--line {
  background: var(--c-line-green);
  color: var(--c-white);
}

.btn--line:hover {
  background: #05b04c;
  transform: translateY(-3px);
}

.btn--white {
  background: var(--c-white);
  color: var(--c-text);
}

.btn--white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: url('./images/design/hero-bg-pc-202604.jpg') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 25, 30, 0.72) 0%,
    rgba(10, 25, 30, 0.55) 35%,
    rgba(10, 25, 30, 0.15) 65%,
    transparent 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 40px 40px;
  text-align: left;
}

.hero__title {
  font-family: var(--f-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s var(--ease) 0.1s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.45), 0 1px 8px rgba(0,0,0,0.3);
}

.hero__sub {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.95);
  margin-bottom: 28px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.9;
  animation: fadeInUp 0.8s var(--ease) 0.2s both;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35), 0 1px 4px rgba(0,0,0,0.25);
}

.hero__text {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.95);
  margin-bottom: 28px;
  line-height: 1.8;
  animation: fadeInUp 0.8s var(--ease) 0.3s both;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35), 0 1px 4px rgba(0,0,0,0.25);
}

.hero__text strong {
  font-size: 1.3em;
  font-weight: 800;
  color: #ffd740;
  padding: 2px 6px;
  background: rgba(255, 215, 64, 0.15);
  border-radius: 4px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* ヒーローCTAボタン */
.btn--hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--c-white);
  color: var(--c-main);
  padding: 20px 48px;
  border-radius: 99px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid var(--c-main);
}

.btn--hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  background: var(--c-main);
  color: var(--c-white);
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s var(--ease) 0.4s both;
}

.hero__badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease) 0.5s both;
}

.hero__badges-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #555;
  background: rgba(255,255,255,0.92);
  border: 2px solid rgba(200, 180, 100, 0.5);
  border-radius: 8px;
  padding: 10px 20px;
  line-height: 1.3;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.hero__badges-icon {
  font-size: 1.3rem;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero__badges-item span:last-child {
  font-size: 0.8rem;
}

/* ===== Intro Band ===== */
.intro-band {
  padding: 56px 0;
  background: linear-gradient(135deg, #1a3a3a, #0c2e2e);
  text-align: center;
}

.intro-band__text {
  font-family: var(--f-heading);
  font-size: clamp(0.88rem, 2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.06em;
  line-height: 2.4;
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* ===== Agitation ===== */
.agitation {
  padding: var(--section-py) 0;
  background: var(--c-bg);
}

.agitation__title {
  text-align: center;
  margin-bottom: 48px;
}

.agitation__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 680px;
  margin: 0 auto 56px;
}

.agitation__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--c-bg-alt);
  padding: 22px 28px;
  border-radius: 16px;
  border: 1px solid var(--c-border);
  transition: transform var(--duration) var(--ease);
}

.agitation__item:hover {
  transform: translateX(4px);
}

.agitation__item-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--c-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  font-size: 0.65rem;
  margin-top: 3px;
}

.agitation__item p {
  font-size: 0.88rem;
  line-height: 1.8;
}

.agitation__cta {
  text-align: center;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  padding: 44px 36px;
  border-radius: 20px;
  max-width: 720px;
  margin: 0 auto;
}

.agitation__cta p {
  font-size: 0.92rem;
  line-height: 2.2;
  color: var(--c-text-light);
}

.agitation__cta em {
  font-style: normal;
  color: var(--c-primary-dark);
  font-weight: 600;
}

/* ===== Split Row (Method alternating layout) ===== */
.method-section {
  padding: var(--section-py) 0;
  background: var(--c-bg-alt);
}

.method__header {
  text-align: center;
  margin-bottom: 72px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 64px;
}

.split-row--reverse {
  direction: ltr;
}

.split-row--reverse>* {
  direction: ltr;
}

.split-row__media {
  position: relative;
}

.split-row__img-wrap {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.split-row__img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.split-row:hover .split-row__img-wrap img {
  transform: scale(1.03);
}

.split-row__deco {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--c-primary-light);
  border: 2px solid rgba(155, 227, 215, 0.2);
  bottom: -24px;
  right: -24px;
  z-index: 0;
}

.split-row--reverse .split-row__deco {
  right: auto;
  left: -24px;
}

.split-row__body {
  padding: 12px 0;
}

.split-row__label {
  font-family: var(--f-en);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-primary);
  opacity: 0.35;
  margin-bottom: 6px;
  line-height: 1;
}

.split-row__title {
  font-family: var(--f-heading);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.split-row__text {
  font-size: 0.88rem;
  color: var(--c-text-light);
  line-height: 2;
}

.method__link {
  text-align: center;
}

.method__link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-primary-dark);
  font-weight: 500;
  font-size: 0.9rem;
  transition: gap var(--duration) var(--ease);
}

.method__link a:hover {
  gap: 14px;
}

/* ===== Trainer Bridge ===== */
.trainer-bridge {
  padding: 20px 16px 0;
  background: linear-gradient(180deg, rgba(255, 249, 245, 0.88) 0%, rgba(255, 255, 255, 0) 100%);
}

.trainer-bridge__inner {
  position: relative;
  width: min(100%, 1120px);
  height: clamp(220px, 30vw, 300px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 16px 36px rgba(42, 69, 66, 0.1);
}

.trainer-bridge__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.trainer-bridge__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(25, 46, 46, 0.72) 0%, rgba(25, 46, 46, 0.42) 42%, rgba(25, 46, 46, 0.08) 78%, rgba(25, 46, 46, 0.02) 100%);
}

.trainer-bridge__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  max-width: 410px;
  padding: 32px 40px;
  color: var(--c-white);
}

.trainer-bridge__eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-family: var(--f-jp);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.trainer-bridge__catch {
  font-family: var(--f-heading);
  font-size: clamp(1.15rem, 2.15vw, 1.72rem);
  line-height: 1.55;
  letter-spacing: 0.03em;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
  word-break: keep-all;
}

.trainer-bridge__text {
  max-width: 30ch;
  font-size: 0.9rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
  word-break: keep-all;
}

/* ===== Trainers — Horizontal with circular photos ===== */
.trainers-section {
  padding: var(--section-py) 0;
  background: var(--c-bg);
}

.trainer-bridge + .trainers-section {
  padding-top: clamp(64px, 8vw, 96px);
}

.trainers__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.trainers__subtitle {
  max-width: 34rem;
  margin: 18px auto 0;
  color: rgba(51, 51, 51, 0.78);
}

.trainer-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 28px;
  padding: clamp(28px, 3.8vw, 42px);
  border-radius: 32px;
  border: 1px solid rgba(155, 227, 215, 0.22);
  background: linear-gradient(145deg, #ffffff 0%, #fff9f5 52%, #f9fffd 100%);
  box-shadow: 0 18px 40px rgba(71, 124, 116, 0.08);
  overflow: hidden;
}

.trainer-row::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(155, 227, 215, 0) 0%, rgba(155, 227, 215, 0.86) 34%, rgba(212, 165, 116, 0.58) 100%);
  opacity: 0.72;
}

.trainer-row--reverse {
  flex-direction: row-reverse;
}

.trainer-row__photo {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--c-primary-light);
  box-shadow: 0 8px 32px rgba(155, 227, 215, 0.12);
}

.trainer-row__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.trainer-row__body {
  flex: 1;
  min-width: 0;
}

.trainer-row__role {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(155, 227, 215, 0.15);
  border: 1px solid rgba(155, 227, 215, 0.28);
  font-family: var(--f-en);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-primary-dark);
  margin-bottom: 14px;
  font-weight: 600;
}

.trainer-row__name {
  font-family: var(--f-heading);
  font-size: clamp(1.28rem, 2vw, 1.6rem);
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.trainer-row__name span {
  font-family: var(--f-en);
  font-size: 0.8rem;
  color: var(--c-text-muted);
  margin-left: 10px;
  font-weight: 400;
}

.trainer-row__desc {
  max-width: 37rem;
  font-size: 0.9rem;
  color: var(--c-text-light);
  line-height: 1.95;
}

.trainers__link {
  margin-top: 44px;
}

/* ===== Voices ===== */
.voices-section {
  padding: var(--section-py) 0;
  background: var(--c-bg-alt);
}

.voices__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.voices__subtitle {
  margin: 18px auto 0;
  color: rgba(51, 51, 51, 0.78);
}

.voices__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 560px;
  margin: 0 auto;
}

.voice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--c-border);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
  overflow: hidden;
}

.voice-card__visual {
  margin: 0 0 22px;
  padding: 14px;
  background:
    radial-gradient(circle at top left, rgba(155, 227, 215, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 250, 246, 0.98), rgba(248, 244, 238, 0.96));
  border: 1px solid rgba(212, 165, 116, 0.16);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.voice-card__visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 32px rgba(74, 101, 95, 0.08);
}

.voice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(155, 227, 215, 0.15);
  border-color: var(--c-primary);
}

.voice-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-bottom: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(155, 227, 215, 0.14);
  border: 1px solid rgba(155, 227, 215, 0.26);
  font-family: var(--f-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--c-primary-dark);
}

.voice-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--c-primary-dark);
  background: var(--c-primary-light);
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.voice-card__quote {
  font-family: var(--f-heading);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.voice-card__text {
  font-size: 0.85rem;
  color: var(--c-text-light);
  line-height: 1.9;
  margin-top: auto;
}

.voice-card__result {
  font-size: 0.74rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--c-gold-deep);
  margin-bottom: 14px;
}

/* ===== Pricing ===== */
.pricing-section {
  padding: var(--section-py) 0;
  background: var(--c-bg);
}

.pricing__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.pricing__subtitle {
  margin: 18px auto 0;
  color: rgba(51, 51, 51, 0.78);
}

.pricing__card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--c-bg-alt);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 700px;
  margin: 0 auto 32px;
  border: 1px solid var(--c-border);
}

.pricing__card-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(155, 227, 215, 0.14);
  border: 1px solid rgba(155, 227, 215, 0.28);
  font-family: var(--f-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-primary-dark);
}

.pricing__card--featured {
  border: 2px solid var(--c-primary);
  position: relative;
  background: var(--c-white);
}

.pricing__card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-primary);
  color: var(--c-white);
  padding: 6px 24px;
  border-radius: 99px;
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 12px var(--c-primary-glow);
}

.pricing__card-title {
  font-family: var(--f-heading);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: 0.04em;
}

.pricing__card-sub {
  text-align: center;
  font-size: 0.85rem;
  color: var(--c-text-light);
  line-height: 1.9;
  margin-bottom: 28px;
}

.pricing__card-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 10px;
}

.pricing__card-price-old {
  font-size: 1rem;
  color: var(--c-text-muted);
  text-decoration: line-through;
  font-weight: 400;
}

.pricing__card-price-new {
  font-size: 2.8rem;
  color: var(--c-primary);
  font-weight: 900;
  font-family: var(--f-en);
}

.pricing__card-unit {
  width: fit-content;
  margin: 0 auto 28px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(212, 165, 116, 0.22);
  font-size: 0.8rem;
  color: var(--c-text-muted);
}

.pricing__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto 32px;
  padding: 18px 18px 4px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(155, 227, 215, 0.2);
}

.pricing__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
}

.pricing__feature-icon {
  color: var(--c-primary-dark);
  flex-shrink: 0;
}

.pricing__feature span:last-child {
  line-height: 1.75;
}

.pricing__cta {
  margin-top: 6px;
  padding-top: 24px;
  text-align: center;
  border-top: 1px solid rgba(212, 165, 116, 0.18);
}

.pricing__link {
  text-align: center;
  margin-top: 24px;
}

.pricing__link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-primary-dark);
  font-weight: 500;
  font-size: 0.9rem;
  transition: gap var(--duration) var(--ease);
}

.pricing__link a:hover {
  gap: 14px;
}

/* ===== Flow ===== */
.flow-section {
  padding: var(--section-py) 0;
  background: var(--c-bg-alt);
}

.flow__header {
  text-align: center;
  margin-bottom: 48px;
}

.flow__steps {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow__step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--c-border);
  position: relative;
}

.flow__step:last-child {
  border-bottom: none;
}

.flow__step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-white);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px var(--c-primary-glow);
  position: relative;
}

.flow__step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 22px;
  top: 72px;
  bottom: -1px;
  width: 1.5px;
  background: linear-gradient(to bottom, rgba(155, 227, 215, 0.3), transparent);
}

.flow__step-body {
  flex: 1;
  padding-top: 2px;
}

.flow__step-title {
  font-family: var(--f-heading);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.flow__step-body p {
  font-size: 0.85rem;
  color: var(--c-text-light);
  line-height: 1.8;
}

/* ===== FAQ ===== */
.faq-section {
  padding: var(--section-py) 0;
  background: var(--c-bg);
}

.faq__header {
  text-align: center;
  margin-bottom: 48px;
}

.faq__list {
  max-width: 700px;
  margin: 0 auto 40px;
}

.faq__item {
  border-bottom: 1px solid var(--c-border);
  padding: 24px 0;
  cursor: pointer;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 500;
  font-size: 0.92rem;
}

.faq__question::before {
  content: 'Q.';
  font-family: var(--f-en);
  font-weight: 700;
  color: var(--c-primary);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.faq__toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--c-text-muted);
  transition: transform var(--duration) var(--ease), background var(--duration) var(--ease), color var(--duration) var(--ease);
}

.faq__item.active .faq__toggle {
  transform: rotate(45deg);
  background: var(--c-primary);
  color: var(--c-white);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
  padding-left: 32px;
}

.faq__item.active .faq__answer {
  max-height: 200px;
  padding-top: 14px;
}

.faq__answer p {
  font-size: 0.85rem;
  color: var(--c-text-light);
  line-height: 1.9;
}

.faq__link {
  text-align: center;
}

/* ===== Blog ===== */
.blog-section {
  padding: var(--section-py) 0;
  background: var(--c-bg-alt);
}

.blog__header {
  text-align: center;
  margin-bottom: 40px;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.blog-card {
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.blog-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.blog-card:hover .blog-card__img img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: 16px 20px 20px;
}

.blog-card__date {
  font-size: 0.72rem;
  color: var(--c-text-muted);
  margin-bottom: 6px;
  display: block;
}

.blog-card__title {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.7;
}

/* ===== Gallery ===== */
.gallery-section {
  padding: 0;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.gallery__item {
  aspect-ratio: 1;
  overflow: hidden;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.08);
}

/* ===== Instagram ===== */
.instagram-section {
  padding: var(--section-py) 0;
  background: var(--c-bg);
}

.instagram__header {
  text-align: center;
  margin-bottom: 40px;
}

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-width: 620px;
  margin: 0 auto 28px;
}

.instagram__item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  display: block;
  transition: transform 0.3s var(--ease);
}

.instagram__item:hover {
  transform: scale(1.03);
  z-index: 1;
}

.instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.instagram__item:hover img {
  transform: scale(1.08);
}

.instagram__follow {
  text-align: center;
}

/* ===== CTA ===== */
.cta-section {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, #0a1e28, #0c3040);
  color: var(--c-white);
  text-align: center;
}

.cta-section .section-label {
  color: var(--c-primary);
}

.cta-section .section-title {
  color: var(--c-white);
}

.cta__offer {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px;
  max-width: 560px;
  margin: 32px auto;
}

.cta__offer p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 2;
}

.cta__offer strong {
  color: var(--c-primary);
  font-size: 1.3rem;
}

.cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.cta__note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 14px;
}

.cta-section--form .container {
  max-width: 1100px;
}

.contact-app {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-app__quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-quick {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  text-decoration: none;
  text-align: left;
  border: 1px solid rgba(155, 227, 215, 0.28);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(71, 124, 116, 0.08);
  color: var(--c-text);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.contact-quick:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(71, 124, 116, 0.12);
  border-color: rgba(91, 188, 171, 0.45);
}

.contact-quick strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.92rem;
}

.contact-quick small {
  display: block;
  color: var(--c-text-light);
  font-size: 0.74rem;
  line-height: 1.6;
}

.contact-quick__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.18rem;
  flex-shrink: 0;
}

.contact-quick--line {
  background: linear-gradient(135deg, rgba(6, 199, 85, 0.96) 0%, rgba(3, 168, 72, 0.96) 100%);
  border-color: rgba(6, 199, 85, 0.18);
  color: #fff;
}

.contact-quick--line small {
  color: rgba(255, 255, 255, 0.8);
}

.contact-quick--line .contact-quick__icon {
  background: rgba(255, 255, 255, 0.16);
}

.contact-quick--ghost .contact-quick__icon {
  background: rgba(155, 227, 215, 0.16);
}

.contact-app__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.contact-app__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(155, 227, 215, 0.18);
}

.contact-app__step.is-active,
.contact-app__step.is-complete {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(91, 188, 171, 0.38);
}

.contact-app__step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(178, 190, 195, 0.24);
  color: var(--c-text-light);
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-app__step.is-active .contact-app__step-num,
.contact-app__step.is-complete .contact-app__step-num {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: #fff;
}

.contact-app__step-label {
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: rgba(51, 51, 51, 0.72);
}

.contact-app__step.is-active .contact-app__step-label,
.contact-app__step.is-complete .contact-app__step-label {
  color: var(--c-primary-dark);
  font-weight: 700;
}

.contact-form,
.contact-thanks {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(155, 227, 215, 0.32);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 18px 44px rgba(71, 124, 116, 0.12);
  text-align: left;
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form__panel[hidden] {
  display: none;
}

.contact-form__head {
  margin-bottom: 24px;
}

.contact-form__eyebrow {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-primary-dark);
}

.contact-form__title {
  margin: 0;
  font-family: var(--f-heading);
  font-size: 1.38rem;
  line-height: 1.6;
  color: var(--c-text);
}

.contact-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-menu-grid .contact-menu:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: min(100%, 420px);
  justify-self: center;
}

.contact-menu {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-height: 190px;
  padding: 20px 18px;
  border-radius: 22px;
  border: 1.5px solid rgba(155, 227, 215, 0.18);
  background: #fff;
  text-align: left;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease), background var(--duration) var(--ease);
}

.contact-menu:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(71, 124, 116, 0.08);
}

.contact-menu.is-selected {
  border-color: rgba(91, 188, 171, 0.58);
  background: linear-gradient(180deg, rgba(232, 245, 242, 0.92) 0%, rgba(255, 255, 255, 1) 100%);
  box-shadow: 0 14px 34px rgba(91, 188, 171, 0.16);
}

.contact-menu__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(212, 165, 116, 0.16);
  color: var(--c-gold-deep);
  font-size: 0.68rem;
  font-weight: 700;
}

.contact-menu__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.32rem;
  background: rgba(155, 227, 215, 0.18);
}

.contact-menu__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
}

.contact-menu__price {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--c-primary-dark);
}

.contact-menu__desc {
  margin-top: auto;
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--c-text-light);
}

.contact-field {
  margin-bottom: 18px;
}

.contact-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--c-text);
}

.contact-label span {
  margin-left: 6px;
  font-size: 0.66rem;
  color: #d64545;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1.5px solid rgba(178, 190, 195, 0.44);
  background: rgba(255, 255, 255, 0.98);
  font: inherit;
  color: var(--c-text);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease), background var(--duration) var(--ease);
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: rgba(91, 188, 171, 0.72);
  box-shadow: 0 0 0 4px rgba(91, 188, 171, 0.12);
}

.contact-input--stacked {
  margin-top: 10px;
}

.contact-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-chip {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(178, 190, 195, 0.42);
  background: #fff;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--c-text-light);
  transition: border-color var(--duration) var(--ease), background var(--duration) var(--ease), color var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.contact-chip:hover {
  transform: translateY(-1px);
}

.contact-chip.is-selected {
  border-color: rgba(91, 188, 171, 0.8);
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: #fff;
}

.contact-trainer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact-trainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 12px;
  border-radius: 20px;
  border: 1.5px solid rgba(178, 190, 195, 0.34);
  background: #fff;
  text-align: center;
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease), background var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.contact-trainer:hover {
  transform: translateY(-2px);
}

.contact-trainer.is-selected {
  border-color: rgba(91, 188, 171, 0.72);
  background: rgba(232, 245, 242, 0.94);
  box-shadow: 0 14px 24px rgba(91, 188, 171, 0.12);
}

.contact-trainer__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(155, 227, 215, 0.2);
  font-size: 1.3rem;
}

.contact-trainer__name {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--c-text);
}

.contact-trainer__meta {
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--c-text-light);
}

.contact-summary {
  padding: 8px 0;
  border-top: 1px solid rgba(155, 227, 215, 0.18);
  border-bottom: 1px solid rgba(155, 227, 215, 0.18);
}

.contact-summary__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(178, 190, 195, 0.18);
}

.contact-summary__row:last-child {
  border-bottom: none;
}

.contact-summary__row span {
  min-width: 104px;
  font-size: 0.78rem;
  color: var(--c-text-light);
}

.contact-summary__row strong {
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--c-text);
  text-align: right;
  white-space: pre-wrap;
}

.contact-summary__row--message strong {
  max-width: 72%;
}

.contact-form__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.contact-form__back,
.contact-form__next,
.contact-form__submit {
  border-radius: 14px;
  font: inherit;
  font-weight: 700;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease), background var(--duration) var(--ease);
}

.contact-form__back {
  padding: 14px 20px;
  border: 1.5px solid rgba(178, 190, 195, 0.42);
  background: #fff;
  color: var(--c-text-light);
}

.contact-form__next,
.contact-form__submit {
  margin-left: auto;
  padding: 15px 28px;
  border: none;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(91, 188, 171, 0.24);
}

.contact-form__submit[disabled] {
  opacity: 0.75;
  cursor: wait;
}

.contact-form__back:hover,
.contact-form__next:hover,
.contact-form__submit:hover {
  transform: translateY(-2px);
}

.contact-form__alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 0.82rem;
  line-height: 1.7;
  border: 1px solid rgba(214, 69, 69, 0.18);
  background: rgba(214, 69, 69, 0.08);
  color: #b03b3b;
}

.contact-form__alert.is-success {
  border-color: rgba(91, 188, 171, 0.22);
  background: rgba(91, 188, 171, 0.12);
  color: var(--c-primary-dark);
}

.contact-form__error {
  min-height: 18px;
  margin: 6px 0 0;
  font-size: 0.74rem;
  color: #d64545;
}

.contact-thanks {
  text-align: center;
}

.contact-thanks__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(91, 188, 171, 0.14);
  color: var(--c-primary-dark);
  font-size: 1.8rem;
  font-weight: 700;
}

.contact-thanks__title {
  margin: 0 0 12px;
  font-family: var(--f-heading);
  font-size: 1.4rem;
  color: var(--c-text);
}

.contact-thanks__text {
  margin: 0 auto 20px;
  max-width: 560px;
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--c-text-light);
}

.contact-thanks__box {
  margin: 0 auto 22px;
  padding: 18px 20px;
  max-width: 420px;
  border-radius: 20px;
  background: rgba(255, 249, 245, 0.92);
  border: 1px solid rgba(155, 227, 215, 0.26);
}

.contact-thanks__name {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
}

.contact-thanks__menu {
  margin: 0;
  font-size: 0.82rem;
  color: var(--c-primary-dark);
}

.contact-thanks__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-app__trust {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(155, 227, 215, 0.2);
  color: var(--c-text-light);
}

.contact-trust small {
  font-size: 0.74rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .contact-app__quick,
  .contact-menu-grid,
  .contact-trainer-grid {
    grid-template-columns: 1fr;
  }

  .contact-menu-grid .contact-menu:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
  }

  .contact-app__steps {
    gap: 8px;
  }

  .contact-app__step {
    padding: 12px 8px;
  }

  .contact-app__step-label {
    font-size: 0.65rem;
  }

  .contact-form,
  .contact-thanks {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .contact-form__title {
    font-size: 1.14rem;
  }

  .contact-summary__row {
    flex-direction: column;
    gap: 8px;
  }

  .contact-summary__row span {
    min-width: 0;
  }

  .contact-summary__row strong,
  .contact-summary__row--message strong {
    max-width: 100%;
    text-align: left;
  }

  .contact-form__nav {
    flex-wrap: wrap;
  }

  .contact-form__back,
  .contact-form__next,
  .contact-form__submit {
    width: 100%;
    margin-left: 0;
  }

  .contact-thanks__actions {
    flex-direction: column;
  }

  .contact-thanks__actions .btn {
    width: 100%;
  }
}

/* ===== Access ===== */
.access-section {
  padding: 64px 0;
  background: #0c1820;
  color: var(--c-white);
}

.access__inner {
  text-align: center;
}

.access__name {
  font-family: var(--f-en);
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-primary);
  margin-bottom: 8px;
}

.access__address {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.access__station {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.access__map {
  border-radius: 12px;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

.access__map iframe {
  width: 100%;
  height: 280px;
  border: none;
}

/* ===== Footer ===== */
.footer {
  background: #0f1a20;
  color: rgba(255, 255, 255, 0.5);
  padding: 64px 0 32px;
}

.footer__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  margin-bottom: 14px;
  text-decoration: none;
}

.footer__brand-image {
  display: block;
  height: clamp(30px, 3.2vw, 36px);
  width: auto;
  max-width: min(40vw, 168px);
  opacity: 0.96;
  filter:
    drop-shadow(0 3px 8px rgba(0, 0, 0, 0.22))
    drop-shadow(0 0 10px rgba(155, 227, 215, 0.06));
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.footer__brand:hover .footer__brand-image {
  opacity: 1;
  transform: translateY(-1px);
}

.footer__info p {
  font-size: 0.8rem;
  line-height: 2.2;
}

.footer__nav-title {
  font-weight: 500;
  color: var(--c-white);
  font-size: 0.82rem;
  margin-bottom: 14px;
}

.footer__nav a {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  padding: 4px 0;
  transition: color 0.3s;
}

.footer__nav a:hover {
  color: var(--c-primary);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  text-align: center;
  font-size: 0.7rem;
  font-family: var(--f-en);
  color: rgba(255, 255, 255, 0.25);
}

/* ===== Sub pages ===== */
.page-hero {
  padding: 140px 0 64px;
  background: linear-gradient(135deg, #0a1e28, #0c3040);
  text-align: center;
  color: var(--c-white);
}

.page-hero .section-label {
  color: rgba(155, 227, 215, 0.9);
}

.page-hero .section-title {
  color: var(--c-white);
}

.page-hero .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto;
}

.page-content {
  padding: var(--section-py) 0;
}

.content-block {
  max-width: 750px;
  margin: 0 auto 64px;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-block__label {
  font-family: var(--f-en);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-primary-dark);
  margin-bottom: 8px;
}

.content-block__title {
  font-family: var(--f-heading);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.6;
}

.content-block__text {
  font-size: 0.9rem;
  color: var(--c-text-light);
  line-height: 2.1;
  margin-bottom: 20px;
}

.content-block__img {
  border-radius: 16px;
  overflow: hidden;
  margin: 24px 0;
}

.content-block__img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
}

.benefit-item__icon {
  color: var(--c-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border-radius: 12px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.83rem;
  border-bottom: 1px solid var(--c-border);
}

.comparison-table th {
  background: var(--c-primary);
  color: var(--c-white);
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even) td {
  background: var(--c-bg-alt);
}

.comparison-table .highlight {
  background: var(--c-primary-light) !important;
  font-weight: 600;
}

.price-card {
  background: var(--c-white);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 20px;
  border: 1px solid var(--c-border);
}

.price-card--featured {
  border: 2px solid var(--c-primary);
}

.price-card__title {
  font-family: var(--f-heading);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.price-card__desc {
  font-size: 0.83rem;
  color: var(--c-text-light);
  margin-bottom: 20px;
}

.price-card__lead {
  margin-bottom: 18px;
  font-size: 0.84rem;
  line-height: 1.8;
  color: var(--c-primary-dark);
  text-align: center;
}

.price-table {
  width: 100%;
  margin-bottom: 20px;
}

.price-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.88rem;
}

.price-table td:last-child {
  text-align: right;
  font-weight: 700;
  font-family: var(--f-en);
}

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

.pricing-plan-card {
  padding: 20px 18px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(155, 227, 215, 0.22);
  box-shadow: 0 10px 24px rgba(71, 124, 116, 0.06);
}

.pricing-plan-card--best {
  border-color: rgba(155, 227, 215, 0.42);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(233, 250, 245, 0.88));
}

.pricing-plan-card__term {
  font-family: var(--f-heading);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.pricing-plan-card__sessions {
  font-size: 0.76rem;
  line-height: 1.6;
  color: var(--c-text-muted);
  margin-bottom: 14px;
}

.pricing-plan-card__price {
  margin-bottom: 14px;
}

.pricing-plan-card__price-label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
}

.pricing-plan-card__price strong {
  display: block;
  font-family: var(--f-en);
  font-size: 1.7rem;
  line-height: 1.1;
  color: var(--c-primary-dark);
}

.pricing-plan-card__meta {
  display: grid;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(212, 165, 116, 0.16);
  font-size: 0.74rem;
  line-height: 1.6;
  color: var(--c-text-light);
}

.trainer-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto 80px;
}

.trainer-detail__img {
  border-radius: 16px;
  overflow: hidden;
}

.trainer-detail__img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top;
}

.trainer-detail__role {
  font-family: var(--f-en);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-primary-dark);
  margin-bottom: 6px;
}

.trainer-detail__name {
  font-family: var(--f-heading);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.trainer-detail__name-en {
  font-family: var(--f-en);
  font-size: 0.82rem;
  color: var(--c-text-muted);
  margin-bottom: 20px;
}

.trainer-detail__message {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-primary-dark);
  margin-bottom: 16px;
  line-height: 1.7;
}

.trainer-detail__career {
  margin-bottom: 20px;
}

.trainer-detail__career li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  padding: 4px 0;
  color: var(--c-text-light);
}

.trainer-detail__career li::before {
  content: '●';
  color: var(--c-primary);
  font-size: 0.4rem;
}

.trainer-detail__story {
  font-size: 0.88rem;
  color: var(--c-text-light);
  line-height: 2;
}

.voice-detail {
  max-width: 750px;
  margin: 0 auto 64px;
  background: var(--c-bg-alt);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--c-border);
}

.voice-detail__header {
  padding: 32px;
}

.voice-detail__visual {
  padding: 18px;
  background:
    radial-gradient(circle at top left, rgba(155, 227, 215, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(255, 250, 246, 0.98), rgba(248, 244, 238, 0.96));
  border-bottom: 1px solid rgba(212, 165, 116, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.voice-detail__visual img {
  display: block;
  width: 100%;
  max-width: 620px;
  height: auto;
  margin: 0 auto;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(74, 101, 95, 0.08);
}

.voice-detail__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--c-primary-dark);
  background: var(--c-primary-light);
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 12px;
}

.voice-detail__title {
  font-family: var(--f-heading);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
}

.voice-detail__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.voice-detail__stats span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(155, 227, 215, 0.12);
  border: 1px solid rgba(155, 227, 215, 0.28);
  font-size: 0.74rem;
  line-height: 1.4;
  color: var(--c-primary-dark);
}

.voice-phases {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

.voice-phase {
  padding: 24px;
  border-left: 2px solid;
}

.voice-phase--before {
  border-color: var(--c-border);
  background: var(--c-white);
}

.voice-phase--after {
  border-color: var(--c-primary);
  background: var(--c-primary-light);
}

.voice-phase--future {
  border-color: var(--c-green);
  background: rgba(78, 203, 113, 0.03);
}

.voice-phase__label {
  font-family: var(--f-en);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.voice-phase--before .voice-phase__label {
  color: var(--c-text-muted);
}

.voice-phase--after .voice-phase__label {
  color: var(--c-primary-dark);
}

.voice-phase--future .voice-phase__label {
  color: var(--c-green);
}

.voice-phase p {
  font-size: 0.83rem;
  color: var(--c-text-light);
  line-height: 1.9;
}

.pricing__system {
  background: var(--c-primary-light);
  border: 1px solid rgba(155, 227, 215, 0.18);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.pricing__system-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--c-primary-dark);
  margin-bottom: 6px;
}

.pricing__system p {
  font-size: 0.83rem;
  color: var(--c-text-light);
}

/* ===== Scroll animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== PC Desktop (wider than 900px) ===== */
@media (min-width: 901px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .hamburger {
    display: none;
  }

  .header__inner {
    max-width: 1100px;
  }

  /* Split-row side-by-side on desktop */
  .split-row {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .split-row--reverse {
    flex-direction: row-reverse;
  }

  .split-row__media {
    flex: 1;
    min-width: 0;
  }

  .split-row__body {
    flex: 1;
    min-width: 0;
  }

  /* Trainer rows already horizontal via flexbox, ensure proper sizing */
  .trainer-row__photo {
    width: 220px;
    height: 220px;
  }

  /* Hide fixed CTA on desktop */
  .fixed-cta {
    display: none;
  }

  body {
    padding-bottom: 0;
  }

  /* Container wider on desktop */
  :root {
    --container-max: 1100px;
  }

  /* Wider voice grid on desktop */
  .voices__grid {
    max-width: 1000px;
    grid-template-columns: repeat(3, 1fr);
  }

  /* Blog grid 3 columns on desktop */
  .blog__grid {
    max-width: 1000px;
  }

  /* Footer wider */
  .footer__inner {
    max-width: 1100px;
  }

  /* Hero desktop 2-column feel */
  .hero::before {
    background: linear-gradient(
      90deg,
      rgba(10, 25, 30, 0.75) 0%,
      rgba(10, 25, 30, 0.55) 40%,
      rgba(10, 25, 30, 0.1) 70%,
      transparent 100%
    );
  }

  .hero__content {
    max-width: 55%;
    padding: 140px 60px 60px;
  }
}

/* ===== Responsive (900px and below) ===== */
@media (max-width: 900px) {
  .mobile-nav {
    display: flex;
  }

  .split-row,
  .trainers__grid,
  .voices__grid,
  .trainer-detail,
  .voice-phases,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .split-row {
    gap: 28px;
  }

  .split-row--reverse {
    direction: ltr;
  }

  .trainer-row,
  .trainer-row--reverse {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .trainer-row {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .trainer-row__photo {
    margin: 0 auto;
  }

  .trainer-row__desc {
    margin: 0 auto;
  }

  .blog__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }

  .hero__content {
    padding: 120px 28px 80px;
  }

  :root {
    --section-py: clamp(56px, 8vw, 80px);
  }
}

@media (max-width: 768px) {

  .section-title br,
  .hero__title br,
  .agitation__cta p br,
  .pricing__card-sub br,
  .cta__offer p br,
  .cta-section .section-title br {
    display: none;
  }

  .section-title {
    font-size: clamp(1.1rem, 4.5vw, 1.4rem);
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .hero__content {
    padding: 90px 20px 36px;
    text-align: left;
  }

  .hero__title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    line-height: 1.5;
    word-break: keep-all;
  }

  .hero__title br {
    display: inline !important;
  }

  .hero__sub {
    font-size: clamp(0.85rem, 3.5vw, 1rem);
    line-height: 1.9;
  }

  .hero__badges {
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
  }

  .hero__badges-item {
    padding: 8px 14px;
    font-size: 0.72rem;
  }

  .hero__overlay {
    background: linear-gradient(160deg, rgba(20, 60, 60, 0.3) 0%, rgba(0, 0, 0, 0.05) 60%, transparent 100%);
  }

  .hero__deco--left {
    width: 30%;
    background: linear-gradient(155deg, rgba(155, 227, 215, 0.65) 0%, rgba(155, 227, 215, 0.2) 50%, transparent 75%);
  }

  .hero__deco--right {
    width: 15%;
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(10, 25, 30, 0.65) 0%,
      rgba(10, 25, 30, 0.35) 50%,
      rgba(10, 25, 30, 0.2) 100%
    );
  }

  .hero__buttons {
    align-items: stretch;
  }

  .btn--hero {
    font-size: 0.95rem;
    padding: 16px 28px;
    text-align: center;
    justify-content: center;
  }

  .agitation__cta {
    padding: 28px 20px;
  }

  .agitation__cta p {
    font-size: 0.85rem;
    word-break: keep-all;
  }

  .cta-section .section-title {
    font-size: clamp(1.1rem, 4.5vw, 1.4rem);
    word-break: keep-all;
  }

  .trainer-bridge {
    padding: 18px 16px 0;
  }

  .trainer-bridge__inner {
    height: 204px;
    border-radius: 24px;
  }

  .trainer-bridge__content {
    max-width: 320px;
    padding: 24px 22px;
    gap: 8px;
  }

  .trainer-bridge__catch {
    font-size: clamp(1rem, 4.6vw, 1.28rem);
    line-height: 1.62;
  }

  .trainer-bridge__text {
    font-size: 0.8rem;
    line-height: 1.68;
  }

  .pricing__subtitle {
    margin-top: 14px;
  }

  .pricing__card-kicker {
    margin-bottom: 10px;
  }

  .pricing__card-sub {
    margin-bottom: 24px;
    line-height: 1.82;
  }

  .pricing__features {
    padding: 16px 14px 2px;
  }

  .pricing__cta {
    padding-top: 18px;
  }

  .section-cta {
    padding: 36px 0;
  }

  .intro-band {
    padding: 36px 0;
  }

  .agitation__item {
    padding: 16px 20px;
  }

  .pricing__card {
    padding: 32px 24px;
  }

  .intro-band__text br {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 85vh;
  }

  .trainer-bridge {
    padding: 16px 12px 0;
  }

  .trainer-bridge__inner {
    height: 184px;
    border-radius: 20px;
  }

  .trainer-bridge__overlay {
    background:
      linear-gradient(180deg, rgba(25, 46, 46, 0.28) 0%, rgba(25, 46, 46, 0.46) 42%, rgba(25, 46, 46, 0.78) 100%);
  }

  .trainer-bridge__content {
    justify-content: flex-end;
    max-width: none;
    padding: 18px 16px;
  }

  .trainer-bridge__eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }

  .trainer-bridge__catch {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .trainer-bridge__text {
    max-width: 24ch;
    font-size: 0.72rem;
    line-height: 1.58;
  }

  .pricing__card-kicker {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .pricing__card-unit {
    max-width: 100%;
    text-align: center;
  }

  .pricing__feature {
    font-size: 0.82rem;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .hero__buttons .btn {
    width: 100%;
  }

  .btn--lg {
    padding: 16px 32px;
    font-size: 0.88rem;
  }

  .cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta__buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  .voice-phases {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: clamp(1.4rem, 7vw, 1.8rem);
  }

  .section-title {
    font-size: clamp(1rem, 5vw, 1.25rem);
  }

  .trainer-row__photo {
    width: 180px;
    height: 180px;
  }

  .trainer-row {
    padding: 24px 18px;
  }

  .voice-card {
    padding: 24px 20px;
  }

  .voice-card__visual {
    margin: 0 0 18px;
    padding: 12px;
  }

  .voice-detail__visual {
    min-height: 300px;
    padding: 16px;
  }

  .flow__step {
    gap: 16px;
    padding: 20px 0;
  }

  .flow__step-num {
    width: 38px;
    height: 38px;
    font-size: 0.82rem;
  }

  .flow__step:not(:last-child)::after {
    left: 19px;
    top: 58px;
  }

  .cta__offer {
    padding: 28px 20px;
  }

  .agitation__title {
    margin-bottom: 32px;
  }

  .trainers__header,
  .voices__header,
  .pricing__header {
    margin-bottom: 36px;
  }

  .trainers__link {
    margin-top: 32px;
  }

  .method__header {
    margin-bottom: 48px;
  }
}

/* Fixed CTA — mobile only */
.fixed-cta {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 30, 40, 0.95);
  backdrop-filter: blur(16px);
  padding: 14px 20px;
  z-index: 998;
  text-align: center;
}

@media (min-width: 901px) {
  .fixed-cta {
    display: none !important;
  }

  body {
    padding-bottom: 0 !important;
  }
}

body {
  padding-bottom: 70px;
}

.fixed-cta .btn {
  width: 100%;
  max-width: 400px;
  padding: 16px 20px;
  font-size: 0.9rem;
  font-weight: 700;
}

/* ===== Section CTA (repeated between sections) ===== */
.section-cta {
  padding: 52px 0;
  background: linear-gradient(135deg, #1a2f3a 0%, #0e2828 50%, #1a3a3a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(155, 227, 215, 0.06);
  pointer-events: none;
}

.section-cta::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(155, 227, 215, 0.04);
  pointer-events: none;
}

.section-cta__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--container-px);
  position: relative;
  z-index: 1;
}

.section-cta__text {
  font-family: var(--f-heading);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.section-cta__sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.section-cta .btn--white {
  background: var(--c-white);
  color: var(--c-primary-dark);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.section-cta .btn--white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

/* ===== 2026-03 Material Integration Overrides ===== */
:root {
  --c-gold: #D4A574;
  --c-bg-warm: #FFF9F5;
  --c-bg-alt: #FFF9F5;
  --c-primary-dark: #55b7a7;
  --gradient-mint: linear-gradient(135deg, #dff8f2 0%, #9BE3D7 52%, #86d6c8 100%);
  --shadow-soft: 0 18px 44px rgba(111, 177, 167, 0.14);
}

img {
  filter: none;
}

.sprite-row {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.sprite-row img {
  position: absolute;
  top: 50%;
  left: calc(var(--sprite-index, 0) * -100%);
  width: 300%;
  height: auto;
  max-width: none;
  transform: translateY(-50%);
}

.sprite-row--1 {
  --sprite-index: 0;
}

.sprite-row--2 {
  --sprite-index: 1;
}

.sprite-row--3 {
  --sprite-index: 2;
}

.header__cta-btn,
.btn--primary,
.btn--hero,
.fixed-cta .btn,
.section-cta .btn--white {
  background: var(--gradient-mint);
  color: #173537 !important;
  border: 1px solid rgba(23, 53, 55, 0.08);
  border-radius: 50px;
  box-shadow: 0 12px 28px rgba(155, 227, 215, 0.28);
}

.header__cta-btn:hover,
.btn--primary:hover,
.btn--hero:hover,
.fixed-cta .btn:hover,
.section-cta .btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(155, 227, 215, 0.34);
}

.btn--hero {
  font-size: 1rem;
  font-weight: 700;
  padding: 18px 34px;
}

.btn--outline {
  border-color: rgba(155, 227, 215, 0.65);
  color: var(--c-primary-dark);
  background: rgba(255, 255, 255, 0.8);
}

.hero {
  align-items: center;
  isolation: isolate;
  background: url('./images/design/hero-bg-pc-202604.jpg') center/cover no-repeat;
}

.hero::before {
  display: none !important;
}

.hero__content {
  max-width: min(52%, 620px);
  padding: 140px 40px 84px clamp(24px, 7vw, 96px);
}

.hero__title,
.hero__sub,
.hero__text {
  text-shadow: none;
}

.hero__title {
  color: var(--c-text);
}

.hero__title-break-mobile {
  display: none;
}

.hero__title-break-default {
  display: inline;
}

.hero__sub {
  color: rgba(51, 51, 51, 0.92);
  max-width: 32rem;
}

.hero__text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #2f2b28;
}

.hero__text strong {
  color: var(--c-primary-dark);
  background: transparent;
  padding: 0;
}

.free-badge {
  flex-shrink: 0;
}

.free-badge img,
.pricing__card-badge img,
.voice-card__avatar img {
  display: block;
  position: static;
  inset: auto;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  transform: none;
}

.free-badge--hero {
  width: 170px;
  height: 52px;
}

.free-badge--cta {
  width: 178px;
  height: 54px;
  margin-top: 10px;
}

.free-badge--cta-small {
  width: 90px;
  height: 28px;
  display: inline-flex;
  vertical-align: middle;
  margin-left: 4px;
}

.free-badge--cta-small img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cta__offer--compact {
  font-size: 1rem;
}

.cta__offer--compact p {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

.hero__badges {
  gap: 12px;
}

.hero__badges-item {
  color: var(--c-text);
  background: rgba(255, 249, 245, 0.94);
  border: 1px solid rgba(212, 165, 116, 0.35);
  box-shadow: 0 10px 20px rgba(212, 165, 116, 0.12);
}

.hero__badges-icon {
  font-size: 1.1rem;
}

.agitation,
.method-section,
.flow-section {
  position: relative;
  isolation: isolate;
}

.agitation > .container,
.method-section > .container,
.flow-section > .container {
  position: relative;
  z-index: 1;
}

.agitation::before,
.method-section::before,
.flow-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('./images/design/section-bg-texture.jpg') center/cover no-repeat;
  opacity: 0.13;
  pointer-events: none;
  z-index: 0;
}

.agitation::after,
.method-section::after,
.flow-section::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  background: url('./images/design/decorations-set.png') center/contain no-repeat;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.agitation::after {
  top: 40px;
  right: -80px;
  transform: rotate(6deg);
}

.method-section::after {
  bottom: 28px;
  left: -84px;
  transform: rotate(-8deg);
}

.flow-section::after {
  right: -76px;
  bottom: 20px;
  transform: rotate(8deg);
}

.agitation__item,
.agitation__cta,
.voice-card,
.pricing__card,
.flow__step {
  box-shadow: var(--shadow-soft);
}

.agitation__item,
.agitation__cta {
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(6px);
}

.agitation__item-icon,
.pricing__feature-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: transparent;
  background-color: transparent;
  background-image: url('./images/design/transparent/checkmark-main.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
  box-shadow: none;
}

.split-row__label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 56px;
  margin-bottom: 12px;
  font-size: 0;
  color: transparent;
  opacity: 1;
}

.split-row__label::before {
  content: 'Step';
  padding-top: 10px;
  font-family: var(--f-en);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.split-row__label::after {
  content: '01';
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
  background: linear-gradient(180deg, #b8e8dd 0%, #9be3d7 50%, #7dd4c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.split-row--reverse .split-row__label::after {
  content: '02';
}

.trainer-row__photo--arched {
  width: 250px;
  height: 326px;
  padding: 12px;
  border: none;
  border-radius: 160px 160px 28px 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 249, 245, 0.82));
  box-shadow: 0 18px 40px rgba(212, 165, 116, 0.16);
}

.trainer-row__photo--arched img {
  border-radius: 146px 146px 20px 20px;
  object-position: center top;
}

.voices-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--c-bg-warm) 100%);
}

.voice-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  border-color: rgba(155, 227, 215, 0.32);
  box-shadow: 0 18px 38px rgba(71, 124, 116, 0.08);
}

.voice-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(155, 227, 215, 0) 0%, rgba(155, 227, 215, 0.8) 34%, rgba(212, 165, 116, 0.5) 100%);
  opacity: 0.8;
}

.voice-card::after {
  content: '“';
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--f-heading);
  font-size: 5rem;
  line-height: 1;
  color: rgba(155, 227, 215, 0.16);
  pointer-events: none;
}

.voice-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.voice-card__avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(155, 227, 215, 0.12);
  border: 2px solid rgba(155, 227, 215, 0.3);
  overflow: hidden;
}

.voice-card__tag {
  margin-bottom: 0;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.voice-card__quote {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  padding-bottom: 18px;
  font-size: 1.02rem;
  line-height: 1.82;
  border-bottom: 1px solid rgba(212, 165, 116, 0.18);
}

.voice-card__text {
  position: relative;
  z-index: 1;
  font-size: 0.84rem;
  line-height: 1.86;
}

.pricing-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--c-bg-warm) 100%);
}

.pricing__card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 245, 0.96));
  max-width: 500px;
}

.pricing__card--featured {
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(212, 165, 116, 0.35);
}

.pricing__card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('./images/design/transparent/price-frame-featured.png') center/100% 100% no-repeat;
  opacity: 0.92;
  pointer-events: none;
  z-index: 0;
}

.pricing__card--featured > * {
  position: relative;
  z-index: 1;
}

.pricing__card-badge {
  top: 22px;
  right: 24px;
  left: auto;
  width: 176px;
  height: 58px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.pricing__card-title {
  padding-top: 40px;
}

.pricing__card-price {
  gap: 18px;
}

.pricing__card-price-old {
  padding-bottom: 10px;
}

.pricing__card-price-new--badge {
  width: 140px;
  height: 42px;
  font-size: 0;
  line-height: 0;
}

.pricing__feature {
  gap: 12px;
}

.pricing__cta {
  padding-top: 20px;
}

.flow-section {
  background: linear-gradient(180deg, var(--c-bg-warm) 0%, #ffffff 100%);
}

.flow__steps {
  max-width: 720px;
}

.flow__step {
  gap: 18px;
  padding: 24px;
  margin-bottom: 16px;
  border: 1px solid rgba(155, 227, 215, 0.22);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.flow__step:last-child {
  margin-bottom: 0;
}

.flow__step:not(:last-child)::after {
  display: none;
}

.flow__step-num {
  width: 88px;
  height: 50px;
  border-radius: 18px;
  background: var(--gradient-mint);
  color: #173537;
  box-shadow: none;
  font-family: var(--f-en);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.section-cta,
.cta-section {
  position: relative;
  overflow: hidden;
  background: url('./images/design/cta-section-bg.jpg') center/cover no-repeat;
  color: var(--c-text);
}

.section-cta::before,
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 249, 245, 0.94) 0%, rgba(255, 255, 255, 0.76) 100%);
  z-index: 0;
}

.section-cta::after,
.cta-section::after {
  content: '';
  position: absolute;
  right: -24px;
  bottom: -44px;
  width: 280px;
  height: 280px;
  background: url('./images/design/decorations-set.png') center/contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.section-cta__inner,
.cta-section .container {
  position: relative;
  z-index: 1;
}

.section-cta__text,
.cta-section .section-title,
.cta__offer p {
  color: var(--c-text);
  text-shadow: none;
}

.section-cta__sub,
.cta__note {
  color: rgba(51, 51, 51, 0.72);
}

.cta-section .section-label {
  color: var(--c-primary-dark);
}

.cta__offer {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(155, 227, 215, 0.34);
  box-shadow: var(--shadow-soft);
}

.cta__offer strong {
  color: var(--c-primary-dark);
}

@media (min-width: 901px) {
  .hero__content {
    max-width: min(52%, 620px);
    padding: 142px 48px 86px clamp(40px, 6vw, 92px);
  }

  .trainer-row__photo--arched {
    width: 260px;
    height: 338px;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-image: url('./images/design/hero-bg-sp-202604.jpg');
    background-position: center 40%;
    background-size: cover;
  }

  .hero__content {
    max-width: min(100%, 430px);
    padding: 80px 24px 0;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .hero__title {
    color: #2f2a26;
    font-size: clamp(1.55rem, 7vw, 2rem);
    margin-bottom: 6px;
    line-height: 1.18;
  }

  .hero__sub {
    color: #3a322d;
    max-width: 18rem;
    font-size: 0.82rem;
    line-height: 1.55;
    margin-bottom: 6px;
    text-shadow: 0 0 10px rgba(255, 249, 245, 1), 0 0 20px rgba(255, 249, 245, 0.8);
  }

  .hero__text {
    color: #2f2a26;
    max-width: 18rem;
    font-size: 0.85rem;
    background: rgba(255, 249, 245, 0.8);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 5px 10px;
    border-radius: 8px;
    margin-left: -10px;
    margin-bottom: 0;
  }

  .hero__buttons {
    margin-top: auto;
    padding-bottom: 6px;
  }

  .hero__buttons .btn--hero {
    font-size: 0.82rem;
    padding: 12px 20px;
    background: rgba(155, 227, 215, 0.92);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .hero__badges {
    gap: 3px;
    margin-top: 0;
    padding-bottom: 24px;
  }

  .hero__badges-item {
    font-size: 0.72rem;
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 6px;
  }

  .agitation::after,
  .method-section::after,
  .flow-section::after,
  .section-cta::after,
  .cta-section::after {
    width: 220px;
    height: 220px;
    opacity: 0.08;
  }
}

@media (max-width: 768px) {
  .hero__content {
    max-width: 340px;
    padding-top: 76px;
    padding-bottom: 16px;
  }

  .hero__title {
    font-size: clamp(1.6rem, 7.5vw, 2.1rem);
    line-height: 1.2;
    letter-spacing: 0;
  }

  .hero__sub {
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 600;
  }

  .hero__text {
    gap: 8px;
    font-size: 0.98rem;
    line-height: 1.65;
    font-weight: 700;
  }

  .hero__title-break-mobile {
    display: inline;
  }

  .free-badge--hero,
  .pricing__card-price-new--badge,
  .free-badge--cta {
    width: 156px;
    height: 48px;
  }

  .hero__badges-item {
    width: 100%;
    justify-content: flex-start;
  }

  .voice-card__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing__card-badge {
    top: 16px;
    right: 16px;
    width: 150px;
    height: 50px;
  }

  .pricing__card-title {
    padding-top: 48px;
  }

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

  .flow__step-num {
    width: 84px;
  }
}

/* ===== Responsive cleanup (2026-04-05) ===== */
:root {
  --c-dark: var(--c-text);
  --c-off-white: #fffaf5;
  --c-gray-light: #c6ced6;
  --c-gray-lighter: rgba(255, 255, 255, 0.74);
  --c-gray: #6b7280;
  --c-red: #d65f5f;
}

.header__nav a.active,
.mobile-nav a.active {
  color: var(--c-primary-dark);
}

.header__nav a.active::after {
  width: 100%;
}

.btn,
.header__cta-btn {
  white-space: nowrap;
}

.page-hero {
  overflow: hidden;
}

.page-hero .container {
  max-width: 760px;
}

.page-hero .section-title {
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  line-height: 1.48;
  letter-spacing: 0.04em;
  text-wrap: balance;
}

.page-hero .section-subtitle {
  max-width: 34rem;
  line-height: 1.82;
}

.trainer-scene-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  gap: 12px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}

.trainer-scene-grid__item {
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 20px rgba(71, 124, 116, 0.08);
}

.trainer-scene-grid__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .pricing-plan-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pricing-plan-card {
    padding: 18px 16px 16px;
  }

  .hero {
    min-height: 92svh;
    background-position: center 28%;
  }

  .hero__content {
    max-width: 360px;
    padding: 74px 22px 20px;
    justify-content: flex-start;
  }

  .hero__title {
    max-width: 10.5ch;
    font-size: clamp(1.48rem, 6.4vw, 1.95rem);
    line-height: 1.18;
    margin-bottom: 10px;
  }

  .hero__sub {
    max-width: 17rem;
    font-size: 0.86rem;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .hero__text {
    max-width: 17rem;
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .hero__buttons {
    margin-top: 16px;
    margin-bottom: 14px;
  }

  .hero__buttons .btn--hero {
    font-size: 0.82rem;
    padding: 12px 18px;
  }

  .hero__badges {
    margin-top: 0;
    padding-bottom: 14px;
  }

  .page-hero {
    padding: 118px 0 50px;
    text-align: left;
  }

  .page-hero .container {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero .section-title {
    max-width: none;
    font-size: clamp(1.18rem, 4.9vw, 1.58rem);
    line-height: 1.56;
    letter-spacing: 0.02em;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    overflow-wrap: anywhere;
  }

  .page-hero .section-title br {
    display: block;
  }

  .page-hero .section-subtitle {
    max-width: none;
    font-size: 0.86rem;
    line-height: 1.78;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    overflow-wrap: anywhere;
  }

  .contact-app__step-label {
    font-size: 0.72rem;
    line-height: 1.35;
  }
}

@media (max-width: 768px) {
  .section-title {
    line-height: 1.58;
  }

  .hero__content {
    max-width: 340px;
    padding: 72px 20px 18px;
  }

  .hero__title {
    max-width: 10ch;
    font-size: clamp(1.42rem, 6.4vw, 1.82rem);
    line-height: 1.18;
  }

  .hero__sub {
    font-size: 0.84rem;
    line-height: 1.62;
  }

  .hero__text {
    gap: 6px;
    font-size: 0.8rem;
    line-height: 1.5;
    padding: 6px 10px;
  }

  .hero__title-break-mobile {
    display: inline;
  }

  .hero__title-break-default {
    display: inline;
  }

  .page-hero .section-title {
    max-width: none;
  }

  .contact-app__steps {
    gap: 6px;
  }

  .contact-app__step {
    padding: 12px 6px;
  }

  .trainer-scene-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 360px;
  }

  .trainer-scene-grid__item {
    aspect-ratio: 5 / 4;
  }
}

@media (max-width: 600px) {
  .pricing-plan-card__price strong {
    font-size: 1.5rem;
  }

  .page-hero .section-title {
    max-width: none;
    font-size: clamp(1.08rem, 4.7vw, 1.32rem);
    line-height: 1.58;
  }

  .page-hero .section-subtitle {
    font-size: 0.82rem;
    line-height: 1.72;
  }
}
