/* ===================================
   生成AIセミナー LP - TDC NEXUS
   KCCS風インパクトデザインver.
   =================================== */

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #2d2d2d;
  line-height: 1.8;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

/* ===================================
   Variables
   =================================== */
:root {
  --red: #c41e3a;
  --red-dark: #a01830;
  --navy: #1a1a2e;
  --navy-light: #2a2a4a;
  --white: #ffffff;
  --gray-50: #f7f7f8;
  --gray-100: #eeeff1;
  --gray-200: #dddee2;
  --gray-400: #9a9da4;
  --gray-600: #6b6e75;
  --gray-800: #3d3f44;
  --text: #1a1a2e;
  --text-light: #5a5d63;
  --max-width: 1200px;
}

/* ===================================
   Header
   =================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header-logo img {
  height: 32px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-800);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--red);
}

.header-cta-btn {
  display: inline-block;
  padding: 10px 28px;
  background: var(--red);
  color: var(--white) !important;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 0;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}

.header-cta-btn:hover {
  background: var(--red-dark);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: 0.3s;
}

/* ===================================
   Hero
   =================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/hero-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

/* Red diagonal accent (KCCS style) */
.hero-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: var(--red);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.9;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 32px;
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.hero-content {
  flex: 1;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.03em;
}

.hero-badge-number {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: #ffd700;
}

.hero-main-catch {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-main-catch .accent {
  display: block;
  font-size: 3.8rem;
  color: var(--white);
  position: relative;
}

.hero-sub-heading {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-sub-copy {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  border-left: 3px solid var(--red);
  padding-left: 16px;
}

.hero-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.hero-tag svg {
  width: 16px;
  height: 16px;
  fill: #ffd700;
  flex-shrink: 0;
}

.hero-cta {
  display: inline-block;
  padding: 18px 48px;
  background: var(--red);
  color: var(--white);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.4);
}

.hero-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.hero-photo {
  position: absolute;
  right: -40px;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-photo img {
  width: 580px;
  height: auto;
  opacity: 0.85;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
  filter: drop-shadow(0 10px 60px rgba(0, 0, 0, 0.6));
}

/* ===================================
   Pain Points (Diagonal)
   =================================== */
.pain-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.pain-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--red);
}

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

.section-label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 16px;
}

.section-title .red {
  color: var(--red);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 700px;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 56px;
}

.pain-card {
  padding: 44px 40px;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: background 0.3s;
}

.pain-card:hover {
  background: var(--gray-50);
}

.pain-num {
  flex-shrink: 0;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  opacity: 0.3;
}

.pain-card-content h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.pain-card-content p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}

.pain-solution-card {
  grid-column: 1 / -1;
  padding: 44px 40px;
  background: var(--navy);
  display: flex;
  align-items: center;
  gap: 40px;
}

.pain-solution-card img {
  width: 260px;
  height: 180px;
  object-fit: cover;
  flex-shrink: 0;
}

.pain-solution-text {
  color: var(--white);
}

.pain-solution-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 12px;
}

.pain-solution-text h3 .red {
  color: #ff6b6b;
}

.pain-solution-text p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

/* ===================================
   Stats Section (数字でわかる)
   =================================== */
.stats-section {
  position: relative;
  padding: 100px 0;
  background: var(--navy);
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/stats-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.stats-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.stats-header {
  text-align: center;
  margin-bottom: 64px;
}

.stats-header .section-label {
  color: rgba(255, 255, 255, 0.5);
}

.stats-header .section-title {
  color: var(--white);
  font-size: 2.5rem;
}

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

.stat-card {
  text-align: center;
  padding: 48px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.stat-card:last-child {
  border-right: none;
}

.stat-number {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-unit {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--red);
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
  font-weight: 500;
}

/* ===================================
   Results (実績)
   =================================== */
.results-section {
  padding: 100px 0;
  background: var(--gray-50);
  position: relative;
}

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

.results-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}

.results-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.result-card {
  display: flex;
  gap: 24px;
  background: var(--white);
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: transform 0.2s, box-shadow 0.2s;
}

.result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.result-card-accent {
  width: 6px;
  background: var(--red);
  flex-shrink: 0;
}

.result-card-body {
  padding: 28px 28px 28px 0;
  flex: 1;
}

.result-card-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--white);
  background: var(--red);
  padding: 2px 10px;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.result-card-name {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.result-card-desc {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===================================
   Features (3つの特徴) - Full width alternating
   =================================== */
.features-section {
  padding: 100px 0 0;
  background: var(--white);
}

.features-header {
  max-width: var(--max-width);
  margin: 0 auto 64px;
  padding: 0 32px;
  text-align: center;
}

.feature-row {
  display: flex;
  align-items: stretch;
  min-height: 440px;
}

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

.feature-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-image-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.feature-image-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 64px;
}

.feature-content.bg-navy {
  background: var(--navy);
  color: var(--white);
}

.feature-content.bg-red {
  background: var(--red);
  color: var(--white);
}

.feature-content.bg-light {
  background: var(--gray-50);
  color: var(--text);
}

.feature-num {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.15;
  margin-bottom: 16px;
}

.feature-content.bg-navy .feature-num,
.feature-content.bg-red .feature-num {
  color: var(--white);
}

.feature-content.bg-light .feature-num {
  color: var(--navy);
}

.feature-title {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.35;
}

.feature-desc {
  font-size: 1rem;
  line-height: 2;
  opacity: 0.85;
}

/* ===================================
   Instructor
   =================================== */
.instructor-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.instructor-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: var(--gray-50);
}

.instructor-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.instructor-photo-side {
  flex: 0 0 380px;
}

.instructor-photo-wrapper {
  position: relative;
  width: 380px;
  height: 480px;
  overflow: hidden;
}

.instructor-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.instructor-photo-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--red);
}

.instructor-info {
  flex: 1;
}

.instructor-name-en {
  font-size: 0.75rem;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.instructor-name {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
}

.instructor-role {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--gray-200);
}

.instructor-message {
  font-size: 1.0625rem;
  color: var(--text);
  line-height: 2.1;
  margin-bottom: 28px;
  font-weight: 400;
}

.instructor-reputation {
  background: var(--navy);
  color: var(--white);
  padding: 24px 28px;
  font-size: 0.9375rem;
  line-height: 1.8;
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.instructor-reputation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
}

/* ===================================
   Testimonials
   =================================== */
.testimonials-section {
  padding: 100px 0;
  background: var(--gray-50);
  position: relative;
}

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

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--red);
}

.testimonial-quote-mark {
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--red);
  line-height: 1;
  opacity: 0.25;
  margin-bottom: 8px;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 2;
  margin-bottom: 24px;
}

.testimonial-author {
  font-size: 0.8125rem;
  color: var(--gray-600);
  font-weight: 500;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

/* ===================================
   Seminar Image Band
   =================================== */
.image-band {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-band-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--navy) 0%, transparent 60%);
  display: flex;
  align-items: center;
  padding: 0 64px;
}

.image-band-text {
  color: var(--white);
  max-width: 500px;
}

.image-band-text h2 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 12px;
}

.image-band-text p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
  padding: 100px 0;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--red);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.15;
}

.cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.cta-header {
  text-align: center;
  margin-bottom: 64px;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.cta-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.cta-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cta-info-block {
  display: flex;
  gap: 20px;
}

.cta-info-label {
  flex-shrink: 0;
  width: 88px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-top: 4px;
}

.cta-info-value {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.cta-info-value a {
  color: #ff8a8a;
}

.cta-info-value a:hover {
  text-decoration: underline;
}

.cta-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
}

.cta-form-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
}

.form-label .req {
  color: #ff6b6b;
  margin-left: 4px;
  font-size: 0.6875rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9375rem;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--red);
}

.form-textarea {
  min-height: 90px;
  resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.cta-submit {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--red);
  color: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.0625rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

.cta-submit:hover {
  background: var(--red-dark);
}

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

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.03em;
}

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

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

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Counter animation */
.stat-number {
  transition: all 0.5s;
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 960px) {
  .header-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }

  .header-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
    gap: 32px;
    padding: 40px 24px 60px;
  }

  .hero-photo {
    flex: none;
    justify-content: center;
  }

  .hero-photo img {
    width: 240px;
  }

  .hero-accent {
    width: 100%;
    clip-path: polygon(0 60%, 100% 40%, 100% 100%, 0% 100%);
    opacity: 0.5;
  }

  .hero-main-catch {
    font-size: 2.2rem;
  }

  .hero-main-catch .accent {
    font-size: 2.6rem;
  }

  .hero-tags {
    justify-content: center;
  }

  .hero-sub-copy {
    text-align: left;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

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

  .stat-card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .results-list {
    grid-template-columns: 1fr;
  }

  .results-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    min-height: auto;
  }

  .feature-image {
    height: 300px;
  }

  .feature-content {
    padding: 48px 32px;
  }

  .instructor-section::before {
    display: none;
  }

  .instructor-inner {
    flex-direction: column;
    text-align: center;
  }

  .instructor-photo-side {
    flex: none;
  }

  .instructor-photo-wrapper {
    width: 280px;
    height: 360px;
    margin: 0 auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-body {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .image-band-overlay {
    padding: 0 32px;
  }

  .image-band-text h2 {
    font-size: 1.5rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .pain-solution-card {
    flex-direction: column;
  }

  .pain-solution-card img {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 600px) {
  .header-inner {
    height: 60px;
    padding: 0 20px;
  }

  .hero {
    padding-top: 60px;
    min-height: auto;
  }

  .hero-main-catch {
    font-size: 1.75rem;
  }

  .hero-main-catch .accent {
    font-size: 2rem;
  }

  .hero-badge-number {
    font-size: 1.5rem;
  }

  .hero-photo img {
    width: 200px;
  }

  .pain-card {
    padding: 28px 24px;
  }

  .stat-number {
    font-size: 3rem;
  }

  .stats-header .section-title {
    font-size: 1.75rem;
  }

  .feature-content {
    padding: 36px 24px;
  }

  .feature-num {
    font-size: 3rem;
  }

  .feature-title {
    font-size: 1.35rem;
  }

  .cta-form {
    padding: 28px 20px;
  }

  .image-band {
    height: 280px;
  }
}