/* =============================================
   RUN4WHY.COM - Main Stylesheet
   Brand Colors: Orange #F7941D, Green #5CB040
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --orange: #F7941D;
  --orange-dark: #d97c0e;
  --orange-light: #fff3e0;
  --green: #5CB040;
  --green-dark: #4a9034;
  --green-light: #edf7e8;
  --dark: #1a1a2e;
  --dark-mid: #2d2d44;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --bg-light: #f9f9f9;
  --bg-white: #ffffff;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
  --font-head: 'Montserrat', 'Arial Black', sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --max-width: 1180px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- Utility ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.highlight { color: var(--orange); }
.highlight-orange { color: var(--orange); }
.highlight-white { color: #fff; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
  justify-content: center;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  border: 2px solid var(--orange);
  box-shadow: 0 4px 14px rgba(247,148,29,0.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247,148,29,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--orange);
  border: 2px solid #fff;
  font-weight: 800;
}
.btn-white:hover {
  background: var(--orange-light);
  color: var(--orange-dark);
  transform: translateY(-2px);
}
.btn-large { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ---- Section Headers ---- */
.section-eyebrow {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-header { margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-subhead {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announcement-bar {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  position: relative;
  z-index: 200;
}
.announcement-bar a { color: var(--orange); font-weight: 700; }
.announcement-bar a:hover { color: var(--orange-dark); }

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { height: 44px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links li a {
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-links li a:hover { color: var(--orange); background: var(--orange-light); }
.nav-links li a.nav-cta {
  background: var(--orange);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  margin-left: 8px;
}
.nav-links li a.nav-cta:hover { background: var(--orange-dark); color: #fff; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 88vh;
  min-height: 88svh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark) 0%, #2d1a5e 40%, #1a3a1a 100%);
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(247,148,29,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(92,176,64,0.12) 0%, transparent 50%);
  pointer-events: none;
}
/* Animated running dots */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(247,148,29,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: moveDots 20s linear infinite;
  pointer-events: none;
}
@keyframes moveDots {
  from { background-position: 0 0; }
  to { background-position: 40px 40px; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 72px 24px 48px;
}
.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.6s 0.2s ease forwards;
}
.hero-headline {
  color: #fff;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.6s 0.4s ease forwards;
}
.hero-subhead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.6s 0.6s ease forwards;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 0.6s 0.8s ease forwards;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s 1s ease forwards;
}
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--orange);
}
.stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-head);
  animation: pulse 2s ease infinite;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.45; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.8; transform: translateX(-50%) translateY(6px); }
}

/* =============================================
   APP SECTION
   ============================================= */
.app-section {
  padding: 100px 0;
  background: var(--bg-white);
}
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.app-text h2 { margin-bottom: 16px; }
.app-desc { font-size: 1.05rem; color: var(--text-light); margin-bottom: 32px; }
.app-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.app-features li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.app-features li strong { display: block; color: var(--dark); margin-bottom: 2px; }
.app-features li p { font-size: 0.9rem; color: var(--text-light); margin: 0; }
.app-ctas { display: flex; flex-direction: column; gap: 10px; }
.app-note { font-size: 0.82rem; color: var(--text-muted); }

/* Phone Mockup */
.app-visual { display: flex; flex-direction: column; gap: 24px; align-items: center; }
.app-phone-mockup { display: flex; justify-content: center; }
.phone-frame {
  width: 280px;
  background: var(--dark);
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}
.phone-frame::before {
  content: '';
  display: block;
  width: 80px;
  height: 8px;
  background: #333;
  border-radius: 4px;
  margin: 0 auto 10px;
}
.phone-screen {
  background: linear-gradient(160deg, #1a1a2e, #2d2d44);
  border-radius: 26px;
  padding: 24px 20px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.app-screen-header { text-align: center; }
.app-screen-header img { margin: 0 auto 8px; }
.app-screen-tagline { font-family: var(--font-head); font-size: 0.7rem; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; }
.coach-bubble { display: flex; gap: 10px; align-items: flex-start; background: rgba(255,255,255,0.06); border-radius: 12px; padding: 12px; }
.coach-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}
.bubble-text strong { display: block; font-size: 0.75rem; color: var(--orange); margin-bottom: 4px; }
.bubble-text p { font-size: 0.78rem; color: rgba(255,255,255,0.8); margin: 0; line-height: 1.5; }
.app-stats-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.preview-stat {
  background: rgba(247,148,29,0.12);
  border-radius: 10px;
  padding: 10px 6px;
  text-align: center;
  border: 1px solid rgba(247,148,29,0.2);
}
.p-num { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--orange); }
.p-label { display: block; font-size: 0.62rem; color: rgba(255,255,255,0.55); margin-top: 2px; line-height: 1.3; }
.app-screen-cta {
  display: block;
  text-align: center;
  background: var(--orange);
  color: #fff;
  border-radius: 10px;
  padding: 12px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  transition: background var(--transition);
}
.app-screen-cta:hover { background: var(--orange-dark); color: #fff; }
.app-badge-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.app-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
}
.badge-icon { font-size: 1.1rem; }
.badge-text { font-size: 0.8rem; font-family: var(--font-head); color: var(--dark); }

/* =============================================
   ABOUT
   ============================================= */
.about-section {
  padding: 100px 0;
  background: var(--bg-light);
}
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.about-image-stack { position: relative; }
.about-book-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}
.about-book-card:hover { transform: translateY(-4px); }
.about-book-card img { width: 100%; border-radius: var(--radius-lg); }
.about-credential-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
}
.cred-title { font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.8; margin-bottom: 4px; }
.cred-name { font-family: var(--font-head); font-size: 1.1rem; font-weight: 900; margin-bottom: 6px; }
.cred-sub { font-size: 0.78rem; opacity: 0.85; line-height: 1.5; }
.about-text { padding-top: 0; }
.about-text h2 { margin-bottom: 20px; }
.about-quote {
  border-left: 4px solid var(--orange);
  padding: 16px 20px;
  margin: 28px 0;
  background: var(--orange-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--dark);
}
.about-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 8px;
}
.about-cred-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.cred-badge {
  background: var(--dark);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
}

/* =============================================
   SERVICES
   ============================================= */
.services-section {
  padding: 100px 0;
  background: var(--bg-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.service-card--featured {
  background: linear-gradient(160deg, var(--dark), var(--dark-mid));
  border-color: var(--orange);
  color: #fff;
}
.service-card--featured h3 { color: #fff; }
.service-card--featured p { color: rgba(255,255,255,0.8); }
.service-card--featured .service-features li { color: rgba(255,255,255,0.8); }
.service-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.service-icon { font-size: 2.5rem; }
.service-card h3 { margin-top: 8px; }
.service-card p { font-size: 0.95rem; flex: 1; }
.service-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 8px 0 20px;
}
.service-features li {
  font-size: 0.88rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* =============================================
   BOOK SECTION
   ============================================= */
.book-section {
  padding: 100px 0;
  background: linear-gradient(160deg, #0f0f1e 0%, #1a2e1a 100%);
}
.book-section .section-eyebrow { color: var(--green); }
.book-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
}
.book-cover-col { display: flex; justify-content: center; }
.book-cover-wrapper { position: relative; }
.book-cover-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  transition: transform var(--transition);
  width: 280px;
}
.book-cover-wrapper:hover img { transform: translateY(-6px) rotate(-1deg); }
.book-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(92,176,64,0.2), transparent 70%);
  pointer-events: none;
  filter: blur(10px);
}
.book-text h2 { color: #fff; margin-bottom: 8px; }
.book-subtitle { color: var(--green); font-size: 0.88rem; font-family: var(--font-head); font-weight: 600; margin-bottom: 20px; letter-spacing: 0.5px; }
.book-text p { color: rgba(255,255,255,0.8); }
.book-topics { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.book-topic { display: flex; gap: 16px; align-items: flex-start; }
.topic-emoji { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.book-topic strong { display: block; color: #fff; margin-bottom: 2px; }
.book-topic p { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin: 0; }

/* =============================================
   CHARITY SECTION
   ============================================= */
.charity-section {
  padding: 100px 0;
  background: var(--bg-light);
}
.charity-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
  margin-bottom: 48px;
}
.charity-icon { font-size: 3rem; margin-bottom: 16px; }
.charity-story h3 { margin-bottom: 16px; }
.charity-stats-col { display: flex; flex-direction: column; gap: 16px; }
.charity-stat-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.c-stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.c-stat-label { font-size: 0.85rem; color: var(--text-light); }
.charity-cta-box {
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.charity-cta-box p { color: rgba(255,255,255,0.9); font-size: 0.9rem; }
.charity-cta-box .btn-primary {
  background: #fff;
  color: var(--orange);
  border-color: #fff;
  margin-top: 12px;
}
.charity-cta-box .btn-primary:hover { background: var(--orange-light); }
.psa-callout {
  background: linear-gradient(135deg, var(--dark), var(--dark-mid));
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.psa-icon { font-size: 2rem; flex-shrink: 0; }
.psa-text strong { display: block; color: var(--orange); font-family: var(--font-head); margin-bottom: 8px; font-size: 1rem; }
.psa-text p { color: rgba(255,255,255,0.8); font-size: 0.92rem; margin: 0; }

/* =============================================
   APP CTA BANNER
   ============================================= */
.app-cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--orange) 0%, #e87c08 100%);
  position: relative;
  overflow: hidden;
}
.app-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.banner-text h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.banner-text p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-top: 8px; }
.banner-ctas { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* =============================================
   COMMUNITY / SOCIAL
   ============================================= */
.community-section {
  padding: 100px 0;
  background: var(--bg-white);
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.social-card {
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 2px solid transparent;
  text-decoration: none;
}
.social-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.social-youtube { background: #fff0f0; border-color: #ffcccc; }
.social-youtube:hover { border-color: #ff0000; }
.social-youtube .social-icon { color: #ff0000; }
.social-instagram { background: #fff0f8; border-color: #ffd6ee; }
.social-instagram:hover { border-color: #e1306c; }
.social-instagram .social-icon { color: #e1306c; }
.social-tiktok { background: #f0f0ff; border-color: #d6d6ff; }
.social-tiktok:hover { border-color: #000; }
.social-tiktok .social-icon { color: #000; }
.social-facebook { background: #f0f4ff; border-color: #d6e0ff; }
.social-facebook:hover { border-color: #1877f2; }
.social-facebook .social-icon { color: #1877f2; }
.social-card h3 { color: var(--dark); font-size: 1.05rem; }
.social-card p { color: var(--text-light); font-size: 0.85rem; margin: 0; }
.social-handle {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--orange);
  background: var(--orange-light);
  padding: 4px 12px;
  border-radius: 50px;
}


/* =============================================
   FAQ
   ============================================= */
.faq-section {
  padding: 100px 0;
  background: var(--bg-light);
}
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item[open] { box-shadow: var(--shadow); border-color: var(--orange); }
.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: color var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform var(--transition);
  font-weight: 400;
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-item[open] .faq-question { color: var(--orange); }
.faq-answer { padding: 0 24px 20px; }
.faq-answer p { color: var(--text-light); font-size: 0.95rem; margin: 0; }
.faq-answer a { color: var(--orange); font-weight: 600; }

/* =============================================
   CONTACT
   ============================================= */
.contact-section {
  padding: 100px 0;
  background: var(--bg-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-text h2 { margin-bottom: 16px; }
.contact-text > p { color: var(--text-light); margin-bottom: 32px; }
.contact-options { display: flex; flex-direction: column; gap: 20px; }
.contact-option { display: flex; gap: 16px; align-items: flex-start; }
.contact-option-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-option strong { display: block; color: var(--dark); margin-bottom: 2px; }
.contact-option p { color: var(--text-light); font-size: 0.9rem; margin: 0; }
.contact-form {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--dark); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-white);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 280px 140px 140px 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-top: 16px;
  line-height: 1.6;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.footer-social a:hover { color: var(--orange); }
.footer-nav-col h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-nav-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-col li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-nav-col li a:hover { color: var(--orange); }
.footer-app-col h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 700;
}
.footer-app-col p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links a:hover { color: var(--orange); }

/* =============================================
   FLOATING CTA
   ============================================= */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.floating-cta.visible { transform: translateY(0); opacity: 1; }
.floating-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 6px 24px rgba(247,148,29,0.45);
  transition: all var(--transition);
}
.floating-cta-btn:hover {
  background: var(--orange-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(247,148,29,0.5);
}
.floating-cta-icon { font-size: 1.1rem; }

/* =============================================
   RESPONSIVE - TABLET
   ============================================= */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-image-stack { max-width: 380px; margin: 0 auto; }
  .app-grid { grid-template-columns: 1fr; gap: 60px; }
  .app-visual { order: -1; }
  .book-grid { grid-template-columns: 1fr; gap: 48px; }
  .book-cover-wrapper { display: flex; justify-content: center; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   RESPONSIVE - MOBILE
   ============================================= */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 12px 16px; display: block; border-radius: 8px; }
  .nav-links li a.nav-cta { margin-left: 0; margin-top: 8px; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 60px; height: 1px; }
  .services-grid { grid-template-columns: 1fr; }
  .charity-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
.banner-content { flex-direction: column; }
  .banner-ctas { flex-direction: column; width: 100%; }
  .banner-ctas .btn { width: 100%; justify-content: center; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .psa-callout { flex-direction: column; }
  .about-credential-card { position: static; margin-top: 20px; border-radius: var(--radius); }
  .floating-cta { bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .social-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.4rem; }
  .contact-form { padding: 24px 20px; }
}

/* =============================================
   PRINT
   ============================================= */
@media print {
  .announcement-bar, .site-header, .floating-cta, .hero-scroll-indicator { display: none; }
}
