/* ===================================
   BOXING GYM NAKAYAMA DOJO
   Landing Page Styles
   =================================== */

:root {
  --primary: #1a1a2e;
  --accent: #c8102e;
  --accent-light: #ff3355;
  --gold: #d4a843;
  --gold-light: #f0c060;
  --light-bg: #f5f5f7;
  --dark-bg: #0d0d1a;
  --text: #222;
  --text-light: #666;
  --white: #ffffff;
  --section-pad: 80px 0;
  --border-radius: 12px;
  --shadow: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-strong: 0 16px 48px rgba(0,0,0,0.22);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* CONTAINER */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* SECTION TITLE */
.section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 20px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  border-radius: 2px;
}
.section-title--dark { color: var(--primary); }
.section-title--dark::after { background: var(--accent); }
.section-title--light { color: var(--white); }
.section-title--light::after { background: var(--gold); }
.section-title .accent { color: var(--accent); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.btn--hero {
  background: var(--accent);
  color: var(--white);
  font-size: 1.1rem;
  padding: 18px 44px;
  box-shadow: 0 4px 20px rgba(200,16,46,0.4);
  margin-top: 32px;
}
.btn--hero:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,16,46,0.5); }
.btn--price {
  background: var(--accent);
  color: var(--white);
  width: 100%;
  font-size: 1.1rem;
  padding: 20px 36px;
  box-shadow: 0 4px 20px rgba(200,16,46,0.35);
  margin-top: 24px;
}
.btn--price:hover { background: var(--accent-light); transform: translateY(-2px); }
.btn--trial {
  background: var(--gold);
  color: var(--primary);
  font-size: 1.1rem;
  padding: 18px 44px;
  box-shadow: 0 4px 20px rgba(212,168,67,0.4);
  margin-top: 24px;
}
.btn--trial:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn--insta {
  background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  color: var(--white);
  padding: 14px 36px;
  margin-top: 24px;
}
.btn--insta:hover { opacity: 0.9; transform: translateY(-2px); }
.btn--submit {
  background: var(--primary);
  color: var(--white);
  width: 100%;
  font-size: 1.05rem;
  padding: 18px;
  border-radius: 12px;
  margin-top: 8px;
}
.btn--submit:hover { background: #2a2a4a; transform: translateY(-1px); }
.btn--float {
  background: var(--accent);
  color: var(--white);
  padding: 14px 28px;
  font-size: 0.95rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(200,16,46,0.5);
  white-space: nowrap;
}
.btn--float:hover { background: var(--accent-light); }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(160deg, #0d0d1a 0%, #1a1a2e 50%, #2a1a30 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,16,46,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212,168,67,0.1) 0%, transparent 50%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 100px 20px 80px;
  text-align: center;
}
.hero__eyebrow {
  display: inline-block;
  background: rgba(212,168,67,0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  font-weight: 600;
}
.hero__title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 12px;
}
.hero__title-line1,
.hero__title-line2,
.hero__title-line3 {
  display: block;
  font-size: clamp(2.2rem, 8vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.hero__title-line3 { color: var(--accent-light); }
.hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.15em;
  margin-top: 16px;
  font-weight: 500;
}
.hero__catch {
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-top: 8px;
  font-weight: 700;
}
.hero__trainer {
  margin: 32px auto;
  max-width: 520px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 2px solid rgba(212,168,67,0.3);
}
.hero__trainer-img {
  width: 100%;
  height: auto;
  display: block;
}
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto 8px;
  animation: scrollLine 2s ease-in-out infinite;
}
.hero__scroll p {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
}
@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ===== PAIN ===== */
.pain {
  padding: var(--section-pad);
  background: var(--light-bg);
}
.pain__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 680px;
  margin: 0 auto 40px;
}
.pain__item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-left: 4px solid var(--accent);
}
.pain__item i { color: var(--accent); font-size: 1.1rem; flex-shrink: 0; }
.pain__message {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.9;
  padding: 28px 32px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto;
  border-top: 4px solid var(--accent);
}
.pain__message strong { color: var(--accent); font-size: 1.15rem; }

/* ===== TRAINER ===== */
.trainer {
  padding: var(--section-pad);
  background: var(--primary);
}
.trainer__card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}
.trainer__photo-wrap {
  position: relative;
}
.trainer__photo {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-strong);
  border: 2px solid rgba(212,168,67,0.3);
  object-fit: cover;
  aspect-ratio: 4/5;
}
.trainer__badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
}
.trainer__label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}
.trainer__name {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-bottom: 4px;
}
.trainer__name-en {
  display: block;
  font-size: 0.9rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.2em;
  margin-top: 4px;
}
.trainer__sns {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 24px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}
.trainer__sns a { color: var(--gold); font-weight: 600; }
.trainer__sns a:hover { text-decoration: underline; }
.trainer__sns i { color: var(--gold); }
.trainer__message p {
  color: rgba(255,255,255,0.8);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 16px;
}
.trainer__message strong { color: var(--white); font-weight: 700; }

/* ===== WHY ===== */
.why {
  padding: var(--section-pad);
  background: var(--white);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.why__card {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  padding: 32px 24px;
  text-align: center;
  border-top: 4px solid var(--accent);
  transition: transform 0.3s, box-shadow 0.3s;
}
.why__card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.why__icon {
  width: 64px;
  height: 64px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.why__icon i { color: var(--white); font-size: 1.5rem; }
.why__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.4;
}
.why__text {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}
.why__safe {
  background: var(--primary);
  border-radius: 16px;
  padding: 40px 48px;
  text-align: center;
}
.why__safe-title {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.why__safe-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.why__safe-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
}
.why__safe-list i { color: var(--accent); font-size: 1.2rem; }

/* ===== FOR WHO ===== */
.forwho {
  padding: var(--section-pad);
  background: var(--dark-bg);
}
.forwho__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.forwho__item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--border-radius);
  padding: 20px 16px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.3s;
}
.forwho__item:hover { background: rgba(200,16,46,0.15); border-color: var(--accent); }
.forwho__item span {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  min-width: 36px;
}
.forwho__note {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

/* ===== LESSON ===== */
.lesson {
  padding: var(--section-pad);
  background: var(--light-bg);
}
.lesson__lead {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 40px;
  font-weight: 600;
}
.lesson__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.lesson__item {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 28px 16px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}
.lesson__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.lesson__item i {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.lesson__item p {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
}

/* ===== RESULTS ===== */
.results {
  padding: var(--section-pad);
  background: var(--primary);
  text-align: center;
}
.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.results__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--border-radius);
  padding: 28px 20px;
}
.results__tag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}
.results__before {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 12px;
  font-weight: 500;
}
.results__arrow {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 12px;
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
.results__after {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}
.results__note {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  margin-bottom: 8px;
}

/* ===== PRICE ===== */
.price {
  padding: var(--section-pad);
  background: var(--light-bg);
  text-align: center;
}
.price__catch {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 40px;
  font-weight: 500;
}
.price__main {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 540px;
  margin: 0 auto 32px;
  box-shadow: var(--shadow-strong);
  position: relative;
  border: 2px solid var(--accent);
}
.price__badge-top {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 24px;
  border-radius: 50px;
  letter-spacing: 0.1em;
}
.price__plan-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.price__detail-count {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 20px;
}
.price__detail-count strong { color: var(--accent); font-size: 1.1rem; }
.price__amount {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}
.price__yen {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  padding-bottom: 6px;
}
.price__num {
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  font-family: 'Oswald', sans-serif;
  letter-spacing: -0.02em;
}
.price__tax {
  font-size: 1rem;
  color: var(--text-light);
  padding-bottom: 8px;
}
.price__note-main {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 24px;
}
.price__merit {
  text-align: left;
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-bottom: 8px;
}
.price__merit li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid #f0f0f0;
}
.price__merit li:last-child { border-bottom: none; }
.price__merit i { color: var(--accent); font-size: 0.9rem; }

.price__trial {
  background: var(--primary);
  border-radius: 16px;
  padding: 32px 40px;
  max-width: 540px;
  margin: 0 auto;
  color: var(--white);
}
.price__trial-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.price__trial-amount {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}
.price__trial-amount span:first-child {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
}
.price__trial-sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  padding-bottom: 4px;
}
.price__trial-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}
.price__trial-campaign {
  background: rgba(212,168,67,0.15);
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.8;
  text-align: left;
}
.price__trial-campaign i {
  color: var(--gold);
  margin-right: 6px;
}
.price__trial-campaign strong {
  color: var(--gold);
  font-size: 1.05rem;
}
.price__trial-campaign span {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.price__trial-campaign span strong {
  color: var(--gold-light);
  font-size: 1.1rem;
}

/* ===== FREE TRIAL ===== */
.trial {
  padding: var(--section-pad);
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.trial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,16,46,0.12) 0%, transparent 70%);
}
.trial__inner { position: relative; z-index: 1; }
.trial__title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 36px;
}
.trial__title span {
  display: block;
  font-size: 0.6em;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  margin-top: 4px;
}
.trial__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto 32px;
}
.trial__card {
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  text-align: left;
}
.trial__card--free {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
}
.trial__card--paid {
  background: rgba(200,16,46,0.15);
  border: 2px solid var(--accent);
}
.trial__card-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.trial__card-badge--paid {
  background: var(--accent);
  color: var(--white);
  font-size: 1rem;
  padding: 6px 18px;
}
.trial__card-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}
.trial__card-time {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.trial__card-time i { color: var(--gold); }
.trial__card-list {
  margin-bottom: 16px;
}
.trial__card-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.trial__card-list li:last-child { border-bottom: none; }
.trial__card-list i { color: var(--gold); font-size: 0.5rem; }
.trial__card-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.trial__card-campaign {
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.trial__strong {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

@media (max-width: 600px) {
  .trial__cards { grid-template-columns: 1fr; max-width: 340px; }
}

/* ===== CONTACT ===== */
.contact {
  padding: var(--section-pad);
  background: var(--dark-bg);
}
.contact__lead {
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 40px;
}
.contact__lead strong { color: var(--gold); font-size: 1.05rem; }
/* ===== CONTACT CTA ===== */
.contact__cta-wrap {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.contact__cta-main {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  border-radius: 20px;
  padding: 28px 32px;
  color: var(--white);
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 32px rgba(220,39,67,0.4);
  text-decoration: none;
}
.contact__cta-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(220,39,67,0.55);
}
.contact__cta-icon {
  font-size: 3rem;
  line-height: 1;
  flex-shrink: 0;
}
.contact__cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex: 1;
}
.contact__cta-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  opacity: 0.85;
}
.contact__cta-id {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}
.contact__cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.contact__cta-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
}
.contact__cta-note i { color: var(--gold); margin-right: 4px; }

@media (max-width: 600px) {
  .contact__cta-main {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }
  .contact__cta-text { align-items: center; }
  .contact__cta-btn { width: 100%; justify-content: center; }
}

/* ===== DOJO ===== */
.dojo {
  padding: var(--section-pad);
  background: var(--white);
}
.dojo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.dojo__name {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 4px;
}
.dojo__catch {
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.dojo__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
}
.dojo__list li:last-child { border-bottom: none; }
.dojo__list i {
  color: var(--accent);
  margin-top: 3px;
  min-width: 18px;
  text-align: center;
}
.dojo__list a { color: var(--primary); font-weight: 600; }
.dojo__list a:hover { color: var(--accent); }
.dojo__list em { display: block; font-style: normal; font-size: 0.85rem; color: var(--text-light); margin-top: 2px; }
.dojo__map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.dojo__map iframe { display: block; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-bg);
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
  text-align: center;
}
.footer__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.footer__address {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.footer__links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: background 0.3s, color 0.3s;
}
.footer__links a:hover { background: var(--accent); color: var(--white); }
.footer__copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}

/* ===== FLOATING CTA ===== */
.float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.float-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ===== PLACEHOLDERS ===== */
.hero__trainer-placeholder {
  width: 100%;
  min-height: 320px;
  background: linear-gradient(135deg, rgba(200,16,46,0.15) 0%, rgba(26,26,46,0.8) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 4rem;
  color: rgba(255,255,255,0.2);
  border-radius: 0;
}
.hero__trainer-placeholder p {
  font-size: 1rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
}
.trainer__photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #1a1a3a 0%, #2a2a4a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow-strong);
  border: 2px solid rgba(212,168,67,0.3);
}
.trainer__photo-placeholder i { font-size: 4rem; color: rgba(212,168,67,0.4); }
.trainer__photo-placeholder p { color: rgba(255,255,255,0.5); text-align: center; font-size: 1rem; font-weight: 600; line-height: 1.6; }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  :root { --section-pad: 60px 0; }
  .trainer__card { grid-template-columns: 1fr; gap: 28px; }
  .trainer__photo-wrap { max-width: 280px; margin: 0 auto; }
  .why__grid { grid-template-columns: 1fr; }
  .why__safe { padding: 28px 24px; }
  .why__safe-list { flex-direction: column; align-items: center; gap: 16px; }
  .forwho__grid { grid-template-columns: 1fr 1fr; }
  .lesson__grid { grid-template-columns: repeat(2, 1fr); }
  .results__grid { grid-template-columns: 1fr; max-width: 340px; margin-left: auto; margin-right: auto; }
  
  .dojo__grid { grid-template-columns: 1fr; gap: 28px; }
  .pain__list { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 24px 20px; }
  .price__main { padding: 36px 24px; }
  .price__num { font-size: 3rem; }
  .trial__cards { grid-template-columns: 1fr; }
  .float-cta { bottom: 16px; right: 16px; }
  .float-cta .btn--float { font-size: 0.85rem; padding: 12px 20px; }
}

@media (max-width: 480px) {
  .forwho__grid { grid-template-columns: 1fr; }
  .lesson__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__trainer { max-width: 100%; }
}
