/* ========================================
   COLOR PALETTE - Premium Consulting Firm
   ======================================== */
:root {
  --navy-dark: #1a1f3a;
  --navy-main: #2c3e50;
  --navy-light: #34495e;
  --gold-main: #d4af37;
  --gold-light: #e6c964;
  --gold-dark: #b8941f;
  --white: #ffffff;
  --off-white: #fafafa;
  --light-gray: #f5f5f5;
  --text-dark: #2c3e50;
  --text-gray: #555;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.8;
  color: var(--text-dark);
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   Header Navigation
   ======================================== */
#header {
  background: var(--navy-dark);
  color: white;
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  border-bottom: 2px solid var(--gold-main);
}

#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#header .logo h1 {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--gold-main);
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.nav-menu a:hover {
  color: var(--gold-light);
}

.cta-button-nav {
  background: linear-gradient(135deg, var(--gold-main) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
  padding: 0.7rem 1.8rem;
  border-radius: 30px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button-nav:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-main) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  color: var(--navy-dark) !important;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--gold-main);
  transition: 0.3s;
}

/* ========================================
   Hero Section (First View)
   ======================================== */
#hero {
  background: 
    linear-gradient(135deg, rgba(26, 31, 58, 0.75) 0%, rgba(44, 62, 80, 0.70) 100%),
    url('/static/hero-bg.jpg') center center / cover no-repeat;
  color: white;
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.2) 100%);
  pointer-events: none;
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.main-copy {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-shadow: 3px 3px 10px rgba(0,0,0,0.5);
  letter-spacing: 2px;
  color: white;
}

.sub-copy {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0.98;
  line-height: 2;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
  font-weight: 500;
  color: white;
}

.hero-features {
  list-style: none;
  text-align: left;
  max-width: 750px;
  margin: 3rem auto;
  background: rgba(255,255,255,0.12);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.hero-features li {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: start;
  gap: 1.2rem;
  font-size: 1.1rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
  font-weight: 500;
}

.hero-features li:last-child {
  margin-bottom: 0;
}

.hero-features .icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.cta-button-large {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-main) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
  padding: 1.6rem 4rem;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 900;
  text-decoration: none;
  margin: 3rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
  border: 2px solid var(--gold-light);
}

.cta-button-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-main) 100%);
}

.badges {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255,255,255,0.15);
  padding: 2.5rem 3rem;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  min-width: 240px;
  border: 2px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.2);
  box-shadow: 0 15px 50px rgba(0,0,0,0.4);
  border-color: var(--gold-main);
}

.badge-number {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.8rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
  letter-spacing: 1px;
  color: var(--gold-light);
}

.badge-label {
  font-size: 1rem;
  opacity: 0.95;
  line-height: 1.5;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

/* ========================================
   Problems Section
   ======================================== */
#problems {
  padding: 6rem 0;
  background: var(--off-white);
}

.section-title {
  font-size: 2.8rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--navy-dark);
  letter-spacing: 1px;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.problem-item {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  border-left: 5px solid var(--gold-main);
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.problem-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-left-width: 8px;
}

.problem-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.problem-item p {
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 1.05rem;
}

.conclusion {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  margin: 4rem 0;
  border: 2px solid var(--gold-main);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.conclusion-text {
  font-size: 1.3rem;
  line-height: 2;
  color: var(--navy-dark);
  text-align: center;
}

.cta-center {
  text-align: center;
  margin: 4rem 0;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-main) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
  padding: 1.3rem 3rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
  letter-spacing: 0.5px;
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-main) 100%);
}

/* ========================================
   Why Fail Section
   ======================================== */
#why-fail {
  padding: 6rem 0;
  background: var(--navy-dark);
  color: white;
}

#why-fail .section-title {
  color: white;
}

.section-intro {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 4rem;
  color: rgba(255,255,255,0.9);
}

.fail-reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.fail-item {
  background: rgba(255,255,255,0.08);
  padding: 3rem;
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s;
}

.fail-item:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold-main);
  transform: translateY(-5px);
}

.fail-number {
  background: var(--gold-main);
  color: var(--navy-dark);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.fail-item h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--gold-light);
}

.fail-item p {
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
}

.negative-loop {
  background: rgba(212, 175, 55, 0.15);
  padding: 3rem;
  border-radius: 15px;
  border: 2px solid var(--gold-main);
  margin-top: 4rem;
}

.warning-title {
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.warning-text {
  font-size: 1.2rem;
  line-height: 2;
  color: white;
}

/* ========================================
   About / Reasons Section
   ======================================== */
#about {
  padding: 6rem 0;
  background: white;
}

#about .section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 4rem;
  font-weight: 500;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.reason-card {
  background: var(--off-white);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.reason-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.reason-card-1 {
  border-color: rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, #fafaf8 0%, #fdfdfb 100%);
}

.reason-card-1:hover {
  border-color: var(--gold-main);
}

.reason-card-2 {
  border-color: rgba(201, 169, 97, 0.3);
  background: linear-gradient(135deg, #fdfdfb 0%, #f9f9f6 100%);
}

.reason-card-2:hover {
  border-color: var(--gold-light);
}

.reason-card-3 {
  border-color: rgba(184, 148, 31, 0.3);
  background: linear-gradient(135deg, #f9f9f6 0%, #fafaf8 100%);
}

.reason-card-3:hover {
  border-color: var(--gold-dark);
}

.reason-card-4 {
  border-color: rgba(212, 175, 55, 0.25);
  background: linear-gradient(135deg, #fdfdfb 0%, #fafaf8 100%);
}

.reason-card-4:hover {
  border-color: var(--gold-main);
}

.reason-card .reason-number {
  background: linear-gradient(135deg, var(--gold-main) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.reason-title {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  color: var(--navy-dark);
  font-weight: 700;
  line-height: 1.5;
}

.reason-description {
  line-height: 1.9;
  color: var(--text-gray);
  font-size: 1.02rem;
}

.reason-description small {
  color: var(--text-gray);
  opacity: 0.85;
  font-size: 0.9rem;
}

/* ========================================
   Cases Section
   ======================================== */
#cases {
  padding: 6rem 0;
  background: var(--off-white);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.case-item {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border: 2px solid transparent;
  transition: all 0.3s;
}

.case-item:hover {
  border-color: var(--gold-main);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

.case-label {
  background: var(--navy-dark);
  color: var(--gold-main);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.case-label-sns {
  background: linear-gradient(135deg, var(--gold-main) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
}

.case-coming-soon {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
}

.coming-soon-text {
  font-size: 2rem;
  color: var(--gold-main);
  font-weight: 700;
  margin-bottom: 1rem;
}

.coming-soon-note {
  color: var(--text-gray);
  font-size: 1.05rem;
}

.case-item h3 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: var(--navy-dark);
}

.case-detail {
  background: var(--off-white);
  padding: 2rem;
  border-radius: 10px;
}

.case-row {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: start;
}

.case-row:last-child {
  margin-bottom: 0;
}

.case-row strong {
  color: var(--navy-dark);
  min-width: 70px;
  flex-shrink: 0;
  font-weight: 700;
}

.case-result {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  border-left: 4px solid var(--gold-main);
}

.case-result strong {
  color: var(--navy-dark);
}

.case-result span {
  color: var(--navy-dark);
  font-weight: 700;
}

.honest-note {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  border: 2px solid var(--navy-light);
  margin-top: 4rem;
}

.honest-note h4 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--navy-dark);
}

.honest-note p {
  color: var(--text-gray);
  line-height: 2;
}

/* ========================================
   Profile Section
   ======================================== */
#profile {
  padding: 6rem 0;
  background: var(--off-white);
}

.profile-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  padding: 4rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 2px solid var(--gold-main);
}

.profile-image {
  text-align: center;
}

.profile-image img {
  width: 100%;
  max-width: 280px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border: 4px solid var(--gold-main);
}

.profile-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.profile-name {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy-dark);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--gold-main);
}

.profile-description p {
  color: var(--text-gray);
  line-height: 2;
  margin-bottom: 1.5rem;
}

.profile-belief {
  font-size: 1.3rem;
  color: var(--navy-dark);
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
  border-left: 4px solid var(--gold-main);
  border-radius: 8px;
  margin: 2rem 0;
}

.profile-trust {
  font-size: 1.1rem;
  color: var(--gold-main);
  font-weight: 700;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--gold-accent);
}

/* ========================================
   Flow Section
   ======================================== */
#flow {
  padding: 6rem 0;
  background: white;
}

.flow-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.flow-step {
  background: var(--off-white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  min-width: 150px;
  flex: 1;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.flow-step:hover {
  border-color: var(--gold-main);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.step-number {
  background: var(--navy-dark);
  color: var(--gold-main);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 auto 1.2rem;
}

.flow-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--navy-dark);
  font-weight: 700;
}

.flow-step p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.flow-arrow {
  color: var(--gold-main);
  font-size: 2rem;
  font-weight: 900;
}

.flow-note {
  text-align: center;
  color: var(--text-gray);
  font-style: italic;
  margin-top: 3rem;
  font-size: 1.05rem;
}

/* ========================================
   Consultation Benefits
   ======================================== */
#consultation-benefits {
  padding: 6rem 0;
  background: var(--off-white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.benefit-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  display: flex;
  gap: 1.5rem;
  align-items: start;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.benefit-icon {
  background: linear-gradient(135deg, var(--gold-main) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  flex-shrink: 0;
}

.benefit-item p {
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 1.05rem;
}

.consultation-details {
  text-align: center;
  background: white;
  padding: 3rem;
  border-radius: 15px;
  max-width: 700px;
  margin: 3rem auto 0;
  border: 2px solid var(--gold-main);
}

.consultation-details p {
  margin-bottom: 0.8rem;
  font-size: 1.15rem;
  color: var(--text-dark);
}

.emphasis {
  color: var(--navy-dark);
  font-weight: 700;
  margin-top: 1.5rem;
  font-size: 1.2rem;
}

/* ========================================
   Contact Form Section
   ======================================== */
#contact {
  padding: 6rem 0;
  background: white;
}

.contact-intro {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  line-height: 2;
  color: var(--text-gray);
}

.contact-note {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 4rem;
  color: var(--navy-dark);
  font-weight: 700;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: var(--off-white);
  padding: 4rem;
  border-radius: 20px;
  border: 2px solid var(--gold-main);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 700;
  color: var(--navy-dark);
  font-size: 1.05rem;
}

.required {
  color: #dc2626;
  font-size: 0.9rem;
  margin-left: 0.3rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-main);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.radio-group {
  display: flex;
  gap: 2rem;
  margin-top: 0.8rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  font-weight: 500;
}

.radio-label input[type="radio"] {
  width: auto;
  cursor: pointer;
}

.submit-button {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-main) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
  padding: 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.3);
  letter-spacing: 0.5px;
}

.submit-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-main) 100%);
}

.form-message {
  max-width: 800px;
  margin: 2rem auto 0;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  display: none;
}

.form-message.success {
  background: #dcfce7;
  color: #166534;
  display: block;
  border: 2px solid #22c55e;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  display: block;
  border: 2px solid #ef4444;
}

/* ========================================
   Exclusions Section
   ======================================== */
#exclusions {
  padding: 4rem 0;
  background: var(--off-white);
}

.exclusions-title {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--navy-dark);
  font-weight: 700;
}

.exclusions-text {
  text-align: center;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.exclusions-note {
  text-align: center;
  color: var(--text-gray);
}

/* ========================================
   FAQ Section
   ======================================== */
#faq {
  padding: 6rem 0;
  background: white;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--off-white);
  padding: 3rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--gold-main);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.faq-question {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  color: var(--navy-dark);
  font-weight: 700;
}

.faq-answer {
  color: var(--text-gray);
  line-height: 2;
  font-size: 1.05rem;
}

/* ========================================
   Footer
   ======================================== */
#footer {
  background: var(--navy-dark);
  color: white;
  padding: 4rem 0 2rem;
  border-top: 3px solid var(--gold-main);
}

.footer-content {
  text-align: center;
  margin-bottom: 3rem;
}

.footer-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 900;
  color: var(--gold-main);
}

.footer-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.footer-cta {
  margin-top: 2rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  opacity: 0.7;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
  .main-copy {
    font-size: 2.5rem;
  }
  
  .sub-copy {
    font-size: 1.2rem;
  }
  
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .problems-grid,
  .fail-reasons,
  .cases-grid,
  .benefits-grid,
  .reasons-grid {
    grid-template-columns: 1fr;
  }
  
  .profile-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 2rem;
  }
  
  .profile-image img {
    max-width: 200px;
  }
  
  .profile-name {
    font-size: 1.6rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .badges {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .flow-steps {
    flex-direction: column;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
  }
  
  .contact-form {
    padding: 2.5rem 2rem;
  }
  
  #header .logo h1 {
    font-size: 1.2rem;
  }
  
  #hero {
    padding: 5rem 0;
  }
  
  .hero-features {
    padding: 2rem;
  }
  
  .reason-card {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .main-copy {
    font-size: 2rem;
  }
  
  .cta-button-large {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .reason-card {
    padding: 1.5rem;
  }
  
  .reason-title {
    font-size: 1.2rem;
  }
}
