/* ============================================================
   ARE U MOTIVATED — SHARED STYLESHEET
   ============================================================ */

:root {
  --red: #CC1B1B;
  --red-light: #E84040;
  --black: #0D0D0D;
  --white: #FFFFFF;
  --off-white: #F7F5F2;
  --gray: #E8E4E0;
  --mid-gray: #AAAAAA;
  --text: #333333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

p { line-height: 1.7; }

.script-heading {
  font-family: 'Great Vibes', cursive;
  font-size: 5rem;
  font-weight: 400;
  text-transform: none;
  color: var(--red);
  line-height: 1.1;
  display: block;
  margin: 0.25rem 0 0.75rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}

.eyebrow.light { color: rgba(255,255,255,0.6); }

/* ===== LAYOUT ===== */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 6%;
}

.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 5rem 6% 4rem;
  text-align: center;
}

.page-hero h1 { color: var(--white); font-size: 2.8rem; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 640px; margin: 1rem auto 0; font-size: 1.05rem; line-height: 1.7; }

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 100;
  border-bottom: 3px solid var(--red);
}

.nav-logo img { height: 60px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.55rem 1.1rem;
  border-radius: 6px;
  font-size: 0.78rem !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--red-light) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--black); border-color: var(--black); color: var(--white); }

.btn-large { font-size: 1.1rem; padding: 1rem 2rem; }

.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline:hover { background: var(--red); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--black); }

.btn-ghost {
  background: transparent;
  color: var(--red);
  border-color: transparent;
  padding-left: 0;
  font-size: 0.95rem;
}
.btn-ghost:hover { color: var(--black); }

/* ===== HERO ===== */
.hero {
  background: var(--off-white);
  padding-top: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 5rem 6%;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.hero h1 { font-size: 2rem; color: var(--black); margin-bottom: 0; }

.hero-sub {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.hero-desc {
  font-size: 1rem;
  color: #555;
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

.hero-support {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #888;
  font-weight: 600;
}

/* ===== WHO IT'S FOR ===== */
.who-section { background: var(--white); }

.who-section h2 { text-align: center; max-width: 700px; margin: 0 auto 3rem; }

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.who-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 2.5rem;
  border: 2px solid var(--gray);
}

.who-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.who-card h3 { color: var(--black); margin-bottom: 0.75rem; }
.who-card p { color: #555; font-size: 0.95rem; margin-bottom: 1.5rem; }

/* ===== WHAT HAPPENS ===== */
.what-section {
  background: var(--black);
  color: var(--white);
}

.what-section .section-inner { text-align: center; }
.what-section h2 { color: var(--white); }

.section-desc {
  color: rgba(255,255,255,0.7);
  max-width: 620px;
  margin: 0 auto 2rem;
  font-size: 0.97rem;
  line-height: 1.75;
}

.topic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.chip {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.2);
  color: var(--white);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.what-section .btn-ghost { color: rgba(255,255,255,0.7); }
.what-section .btn-ghost:hover { color: var(--white); }

/* ===== CREDIBILITY ===== */
.cred-section { background: var(--off-white); }

.cred-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 6%;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: center;
}

.cred-photo img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  object-position: center top;
  border-radius: 16px;
  background: var(--black);
}

.cred-content h2 { margin-bottom: 1rem; }
.cred-content p { color: #555; font-size: 0.97rem; line-height: 1.75; margin-bottom: 1.5rem; }

.org-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.org-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: opacity 0.2s, filter 0.2s;
}

.org-logo:hover { opacity: 1; filter: grayscale(0%); }

/* ===== APH METHOD ===== */
.aph-section {
  background: var(--black);
  color: var(--white);
}

.aph-section .section-inner { text-align: center; }
.aph-section h2 { color: var(--white); margin-bottom: 2rem; }

.aph-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 0;
}

.aph-card {
  padding: 2rem;
  position: relative;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.25s;
  user-select: none;
  text-align: left;
}

.aph-card:hover { transform: translateY(-4px); }

.aph-red { background: var(--red); }
.aph-white { background: var(--white); }

.aph-letter {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  line-height: 1;
  text-transform: uppercase;
}

.aph-red .aph-letter { color: rgba(255,255,255,0.15); }
.aph-white .aph-letter { color: rgba(0,0,0,0.07); }

.aph-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0;
}

.aph-red h3 { color: var(--white); }
.aph-white h3 { color: var(--black); }

.click-hint {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0.5rem;
  opacity: 0.5;
}

.aph-red .click-hint { color: var(--white); }
.aph-white .click-hint { color: var(--black); }

.aph-desc {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease, opacity 0.4s ease;
  margin-top: 0;
  opacity: 0;
  font-size: 0.92rem;
  line-height: 1.65;
}

.aph-card.open .aph-desc {
  max-height: 200px;
  margin-top: 1rem;
  opacity: 1;
}

.aph-red .aph-desc { color: rgba(255,255,255,0.88); }
.aph-white .aph-desc { color: #555; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--off-white); }
.testimonials-section .section-inner { text-align: center; }
.testimonials-section h2 { margin-bottom: 2.5rem; }

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid var(--gray);
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #555;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--black);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--red);
  font-weight: 600;
}

/* ===== BOOKING ===== */
.booking-section {
  background: var(--white);
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.booking-text h2 { margin-bottom: 1rem; }
.booking-text p { color: #555; font-size: 0.97rem; line-height: 1.75; }

.booking-form-wrap {
  background: var(--off-white);
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid var(--gray);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 0.9rem;
  border: 2px solid var(--gray);
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

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

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

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success .check {
  font-size: 2.5rem;
  color: var(--red);
  display: block;
  margin-bottom: 0.75rem;
}

.form-success h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  color: var(--white);
  padding: 2.5rem 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-logo img { height: 36px; width: auto; }
footer p { color: rgba(255,255,255,0.4); font-size: 0.82rem; }

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

/* ===== PAGE-SPECIFIC: SECONDARY PAGES ===== */
.content-section { background: var(--white); }
.content-section-alt { background: var(--off-white); }
.content-section-dark { background: var(--black); color: var(--white); }
.content-section-dark h2 { color: var(--white); }
.content-section-dark p { color: rgba(255,255,255,0.75); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.two-col-wide {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}

.feature-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray);
  font-size: 0.95rem;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
}

.feature-list li::before {
  content: "—";
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

.feature-list-dark li { color: rgba(255,255,255,0.75); border-bottom-color: rgba(255,255,255,0.1); }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.stat-box {
  background: rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
}

.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  display: block;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.55);
}

.callout-box {
  background: var(--red);
  color: var(--white);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  margin: 2rem 0;
}

.callout-box p {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--white);
}

.cta-strip {
  background: var(--off-white);
  text-align: center;
}

.cta-strip .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 4rem 6%;
}

.cta-strip h2 { max-width: 640px; }
.cta-strip p { color: #666; max-width: 540px; font-size: 0.97rem; }

.topic-grid-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.topic-box {
  background: var(--off-white);
  border-radius: 12px;
  padding: 1.5rem;
  border: 2px solid var(--gray);
}

.topic-box h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.topic-box p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.principle-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  border: 2px solid var(--gray);
}

.principle-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.principle-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
}

.bio-section {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}

.bio-photo img {
  width: 100%;
  border-radius: 16px;
  object-fit: contain;
  background: var(--black);
}

.bio-content h2 { margin-bottom: 1rem; }
.bio-content p { color: #555; font-size: 0.97rem; line-height: 1.8; margin-bottom: 1rem; }

.cred-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.cred-list li {
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: #555;
  border-bottom: 1px solid var(--gray);
}

.cred-list li strong { color: var(--black); }

/* ===== RESPONSIVE ===== */
@media(max-width: 900px) {
  .who-grid { grid-template-columns: 1fr; }
  .cred-inner { grid-template-columns: 1fr; }
  .cred-photo img { height: 420px; width: 100%; }
  .aph-cards { grid-template-columns: 1fr; }
  .booking-inner { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .two-col-wide { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .topic-grid-page { grid-template-columns: 1fr 1fr; }
  .principles-grid { grid-template-columns: 1fr 1fr; }
  .bio-section { grid-template-columns: 1fr; }
  .bio-photo img { max-height: 400px; object-position: center top; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media(max-width: 600px) {
  nav { padding: 0 4%; }
  .nav-logo img { height: 48px; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: var(--black);
    padding: 1.5rem 5%;
    gap: 1.25rem;
    border-top: 2px solid var(--red);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  .script-heading { font-size: 3.5rem; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.7rem; }
  .hero-sub { font-size: 1rem; }
  .page-hero h1 { font-size: 2rem; }
  .section-inner { padding: 3.5rem 4%; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .topic-grid-page { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===== 3-SESSION PILOT HOME SECTION ===== */
.pilot-home-section {
  background: var(--off-white);
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
}

.pilot-home-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: center;
}

.pilot-home-inner h2 { margin-bottom: 1rem; }
.pilot-home-inner p { color: #555; font-size: 0.97rem; line-height: 1.75; margin-bottom: 0.75rem; }

.pilot-home-card {
  background: var(--black);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pilot-home-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1rem;
}

.pilot-big {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  min-width: 60px;
}

.pilot-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pilot-home-detail {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

@media(max-width: 900px) {
  .pilot-home-inner { grid-template-columns: 1fr; }
}
