* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
:root {
  --red: #8B1A1A;
  --red-bright: #C0392B;
  --gold: #C9A84C;
  --gold-light: #E8C96D;
  --dark: #0D0D0D;
  --dark2: #111111;
  --dark3: #161616;
  --dark4: #1C1C1C;
  --white: #FFFFFF;
}
body { background: var(--dark); color: var(--white); font-family: 'Inter', sans-serif; overflow-x: hidden; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
section { position: relative; z-index: 1; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, #E8C96D 0%, #C9A84C 50%, #9B7A2E 100%);
  color: #000; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px;
  padding: 20px 50px; text-decoration: none; cursor: pointer; border: none; border-radius: 4px;
  transition: all 0.3s ease; letter-spacing: 0.5px;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.35); filter: brightness(1.1); }

/* HERO */
.hero-left {
  grid-column: 1/2; background: #0D0D0D;
  padding: 120px 60px 80px; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2;
}
#hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr 1fr;
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--dark) 48%, var(--red) 48%);
}
.hero-left {
  grid-column: 1/2; background: transparent;
  padding: 120px 60px 80px; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2;
}
.hero-left {
  grid-column: 1/2; background: #0D0D0D;
  padding: 120px 60px 80px; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2;
}
.hero-center { grid-column: 2/3; position: relative; z-index: 3; display:flex; align-items:center; justify-content:center }
.hero-right {
  grid-column: 3/4; background: transparent;
  padding: 120px 60px 80px; display: flex; flex-direction: column; justify-content: center; gap: 36px; position: relative; z-index: 2;
}
.hero-right::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(180,30,30,0.5) 0%, transparent 70%);
}
.hero-photo-wrap {
  position: absolute; bottom: 0; left: -80px; right: -80px; height: 100%;
  display: flex; align-items: flex-end; justify-content: center;
}
.hero-photo-ph {
  width: 100%; height: 90%; display: flex; align-items: center; justify-content: center;
  font-size: 120px; opacity: 0.1;
  background: linear-gradient(to top, rgba(139,26,26,0.2), transparent 60%);
}
.hero-photo-ph img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero-title {
  font-family: 'Unbounded', sans-serif; font-size: clamp(28px, 3vw, 48px);
  font-weight: 900; line-height: 1.1; margin-bottom: 28px; animation: fadeUp 0.8s ease 0.1s both;
}
.hero-title span { color: var(--gold-light); }
.hero-badge-wrap { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 36px; animation: fadeUp 0.8s ease 0.3s both; }
.hero-badge-icon {
  width: 56px; height: 56px; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0;
}
.hero-badge-text { font-size: 14px; color: #ccc; line-height: 1.6; }
.hero-badge-text strong { color: var(--white); font-size: 15px; }
.hero-cta-wrap { animation: fadeUp 0.8s ease 0.5s both; }
.hero-stat { position: relative; z-index: 3; animation: fadeUp 0.8s ease 0.4s both; }
.hero-stat-num {
  font-family: 'Unbounded', sans-serif; font-size: 34px; font-weight: 900; color: var(--gold-light);
  display: flex; align-items: center; gap: 8px;
}
.hero-stat-num::before { content: '♛'; font-size: 18px; }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* PROBLEMS */
#problems { background: var(--dark2); padding: 100px 0; }
.problems-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.problems-title { font-family: 'Unbounded', sans-serif; font-size: clamp(22px, 2.2vw, 34px); font-weight: 700; line-height: 1.2; color: #ccc; }
.problems-title strong { color: var(--white); }
.problems-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.problem-item { display: flex; align-items: flex-start; gap: 14px; }
.problem-x {
  width: 32px; height: 32px; background: var(--red); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; color: rgba(255,255,255,0.8);
}
.problem-text { font-size: 14px; line-height: 1.5; color: #bbb; padding-top: 6px; }
.problem-text strong { color: var(--white); }

/* PROGRAM */
#program { background: var(--dark); padding: 100px 0; position: relative; overflow: hidden; }
#program::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(139,26,26,0.12) 0%, transparent 60%); pointer-events: none;
}
.program-frame {
  border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; padding: 60px;
  position: relative; background: rgba(255,255,255,0.015);
}
.program-frame-title {
  font-family: 'Unbounded', sans-serif; font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 700; text-align: center; margin-bottom: 16px; line-height: 1.2;
}
.program-frame-subtitle {
  text-align: center; color: var(--gold-light); font-size: 15px; font-weight: 600;
  margin-bottom: 50px; display: flex; align-items: center; justify-content: center; gap: 12px;
}
.laurel { font-size: 20px; color: var(--gold); opacity: 0.8; }
.program-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.program-col { display: flex; flex-direction: column; gap: 26px; }
.program-col:first-child { padding-right: 40px; border-right: 1px solid rgba(255,255,255,0.07); }
.program-col:last-child { padding-left: 40px; }
.prog-item { display: flex; gap: 14px; align-items: flex-start; }
.prog-icon {
  width: 38px; height: 38px; background: var(--red); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0;
}
.prog-text { font-size: 14px; line-height: 1.55; color: #bbb; padding-top: 7px; }
.prog-text strong { color: var(--white); }
.program-cta { text-align: center; margin-top: 50px; }

/* TRAINER */
#trainer { background: var(--dark2); padding: 0; position: relative; overflow: hidden; min-height: 600px; }
.trainer-bg-text {
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%) rotate(90deg);
  font-family: 'Unbounded', sans-serif; font-size: 110px; font-weight: 900;
  color: rgba(255,255,255,0.025); white-space: nowrap; pointer-events: none; letter-spacing: 8px;
}
.trainer-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.trainer-photo-side {
  position: relative; background: var(--dark3); display: flex; align-items: flex-end;
  justify-content: center; overflow: hidden; min-height: 600px;
}
.trainer-photo-side::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--dark2)); z-index: 2;
}
.trainer-photo-ph { font-size: 150px; opacity: 0.07; position: absolute; bottom: 0; }
.trainer-info-side { padding: 80px 60px 80px 40px; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 3; }
.trainer-name { font-family: 'Unbounded', sans-serif; font-size: clamp(28px, 2.8vw, 48px); font-weight: 700; line-height: 1.1; margin-bottom: 8px; }
.trainer-years { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.trainer-years-text { font-size: 14px; color: rgba(255,255,255,0.65); }
.trainer-years-text strong { color: var(--white); }
.trainer-rank { display: flex; align-items: center; gap: 10px; margin-bottom: 36px; }
.trainer-rank-crown { color: var(--gold); font-size: 18px; }
.trainer-rank-text { font-size: 14px; color: rgba(255,255,255,0.75); }
.trainer-stats-row { display: flex; gap: 0; margin-bottom: 36px; border: 1px solid rgba(255,255,255,0.07); }
.trainer-stat { flex: 1; padding: 18px 20px; border-right: 1px solid rgba(255,255,255,0.07); }
.trainer-stat:last-child { border-right: none; }
.trainer-stat-num { font-family: 'Unbounded', sans-serif; font-size: 24px; font-weight: 900; color: var(--gold-light); display: block; }
.trainer-stat-label { font-size: 11px; color: #555; margin-top: 4px; line-height: 1.3; }
.trainer-achs { display: flex; flex-direction: column; gap: 14px; }
.trainer-ach { display: flex; gap: 12px; align-items: flex-start; }
.trainer-ach-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.trainer-ach-text { font-size: 13px; color: #999; line-height: 1.5; }
.trainer-ach-text strong { color: var(--white); }

/* RESULTS */
#results { background: var(--dark); padding: 100px 0; }
.results-header { text-align: center; margin-bottom: 60px; }
.results-pretitle { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.results-title { font-family: 'Unbounded', sans-serif; font-size: clamp(20px, 2.2vw, 34px); font-weight: 700; line-height: 1.2; }
.results-videos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-card { background: var(--dark2); border-radius: 12px; overflow: hidden; transition: transform 0.3s ease; }
.video-card:hover { transform: translateY(-4px); }
.video-thumb {
  aspect-ratio: 9/16; background: var(--dark3); position: relative;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.video-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 50%); }
.video-play {
  width: 60px; height: 60px; background: #FF0000; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 22px; z-index: 2; cursor: pointer; transition: transform 0.2s;
}
.video-play:hover { transform: scale(1.1); }
.video-info { padding: 16px 18px; }
.video-name { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.video-desc { font-size: 12px; color: #777; line-height: 1.5; }

/* WHY */
#why { background: var(--dark2); padding: 100px 0; position: relative; overflow: hidden; }
.why-title { font-family: 'Unbounded', sans-serif; font-size: clamp(22px, 2.5vw, 38px); font-weight: 700; text-align: center; margin-bottom: 60px; color: #ccc; }
.why-title strong { color: var(--white); }
.why-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.why-card { background: var(--dark3); border-radius: 12px; padding: 28px 22px; transition: transform 0.3s; }
.why-card:hover { transform: translateY(-4px); }
.why-card-visual { width: 100%; aspect-ratio: 1; background: var(--dark4); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 44px; margin-bottom: 18px; }
.why-card-title { font-family: 'Unbounded', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; line-height: 1.3; }
.why-card-desc { font-size: 12px; color: #777; line-height: 1.5; }

/* CTA */
#cta-section { background: var(--dark); padding: 100px 0; }
.cta-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.cta-form-title { font-family: 'Unbounded', sans-serif; font-size: clamp(20px, 2.2vw, 32px); font-weight: 700; line-height: 1.2; margin-bottom: 10px; }
.cta-form-subtitle { font-size: 14px; color: #777; margin-bottom: 32px; line-height: 1.6; }
.form-field { margin-bottom: 14px; }
.form-label { display: block; font-size: 13px; color: #999; margin-bottom: 7px; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--dark2); border: 1px solid rgba(255,255,255,0.09);
  color: var(--white); font-family: 'Inter', sans-serif; font-size: 14px; padding: 15px 18px;
  outline: none; border-radius: 4px; transition: border-color 0.3s; appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: #444; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: rgba(201,168,76,0.4); }
.form-select option { background: var(--dark2); }
.form-textarea { height: 88px; resize: none; }
.form-submit-btn {
  width: 100%; background: linear-gradient(135deg, #E8C96D, #C9A84C, #9B7A2E);
  color: #000; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700;
  padding: 19px; border: none; border-radius: 4px; cursor: pointer; transition: all 0.3s; margin-top: 6px;
}
.form-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.28); filter: brightness(1.08); }
.stats-side-title { font-family: 'Unbounded', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 28px; display: flex; align-items: center; gap: 8px; line-height: 1.3; }
.stats-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.stats-row-crown { color: var(--gold); font-size: 17px; }
.stats-row-text { font-size: 15px; color: #ccc; }
.stats-row-text strong { color: var(--white); }
.stats-highlight { background: var(--dark2); border-radius: 8px; padding: 22px 26px; margin: 22px 0 28px; }
.stats-highlight-title { display: flex; align-items: flex-start; gap: 10px; font-weight: 700; margin-bottom: 14px; font-size: 14px; line-height: 1.4; }
.stats-bullet { display: flex; gap: 10px; margin-bottom: 8px; font-size: 14px; color: #aaa; }
.stats-bullet::before { content: '•'; color: var(--gold); flex-shrink: 0; }
.schedule-info { background: var(--dark2); border-radius: 8px; padding: 22px 26px; }
.schedule-info-title { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.schedule-item { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 14px; color: #999; }
.schedule-item:last-child { border-bottom: none; }
.schedule-item strong { color: var(--white); }

/* FAQ */
#faq { background: var(--dark); padding: 100px 0; }
.faq-title { font-family: 'Unbounded', sans-serif; font-size: clamp(20px, 2vw, 30px); font-weight: 700; margin-bottom: 48px; text-align: center; color: #ccc; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; cursor: pointer; font-size: 15px; font-weight: 500; color: #ddd; gap: 24px; transition: color 0.3s; }
.faq-item.open .faq-q { color: var(--white); }
.faq-toggle { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: rgba(255,255,255,0.5); flex-shrink: 0; transition: all 0.3s; font-weight: 300; }
.faq-item.open .faq-toggle { background: rgba(255,255,255,0.08); transform: rotate(45deg); border-color: rgba(255,255,255,0.35); color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 0 26px; font-size: 14px; color: #777; line-height: 1.8; max-width: 720px; }

/* FOOTER */
footer { background: var(--dark2); border-top: 1px solid rgba(255,255,255,0.05); padding: 44px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer-logo { font-family: 'Unbounded', sans-serif; font-size: 18px; font-weight: 900; color: var(--gold-light); letter-spacing: 3px; }
.footer-links { display: flex; gap: 40px; }
.footer-links a { font-size: 13px; color: #444; text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: #999; }
.footer-copy { font-size: 11px; color: #2e2e2e; }

.success-msg { display: none; background: rgba(201,168,76,0.07); border: 1px solid rgba(201,168,76,0.25); padding: 22px; border-radius: 4px; text-align: center; margin-top: 14px; }
.success-msg.show { display: block; }
.success-msg p { color: var(--gold-light); font-size: 15px; }
.floating-btn {
  position: fixed; bottom: 32px; right: 32px;
  background: linear-gradient(135deg, #E8C96D, #C9A84C); color: #000; font-weight: 700; font-size: 13px;
  padding: 16px 26px; text-decoration: none; z-index: 999; border-radius: 4px;
  box-shadow: 0 8px 32px rgba(201,168,76,0.38); animation: float 3s ease-in-out infinite;
}
.floating-btn:hover { filter: brightness(1.1); }

@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { grid-column: 1; padding: 90px 24px 50px; }
  .hero-center { display: none; }
  .hero-right { grid-column: 1; padding: 0 24px 50px; flex-direction: row; gap: 36px; background: transparent; }
  .hero-right::before { display: none; }
  .problems-layout { grid-template-columns: 1fr; gap: 36px; }
  .problems-grid { grid-template-columns: 1fr; }
  .program-frame { padding: 28px 20px; }
  .program-cols { grid-template-columns: 1fr; }
  .program-col:first-child { padding-right: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 26px; }
  .program-col:last-child { padding-left: 0; padding-top: 26px; }
  .trainer-layout { grid-template-columns: 1fr; }
  .trainer-photo-side { min-height: 280px; }
  .trainer-info-side { padding: 36px 24px; }
  .results-videos { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr 1fr; }
  .cta-layout { grid-template-columns: 1fr; gap: 50px; }
  .container { padding: 0 20px; }
  .floating-btn { bottom: 16px; right: 16px; }
}
@media (max-width: 500px) {
  .hero-right { flex-direction: column; gap: 20px; }
  .why-cards { grid-template-columns: 1fr; }
}

/* removed top-layer image styles */
