/* Emmy Leadership Development — Main Stylesheet */

:root {
  --primary: #1e2340;
  --accent: #e05252;
  --text: #2d2d4a;
  --text-light: #7777a0;
  --white: #ffffff;
  --bg-hero: #f7f2ea;
  --bg-light: #f2ede4;
  --border: #ede8de;
  --circle-teal: #85d0be;
  --circle-pink: #f5b5b5;
  --circle-yellow: #f0e0a0;
  --font: 'Nunito', 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== NAV ===== */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}

.nav-logo {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.nav-logo span { color: var(--accent); }

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

.nav-links a {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  text-decoration: none;
}

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
}

.nav-cta:hover {
  background: #2d3460 !important;
  text-decoration: none !important;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  background: var(--bg-hero);
  padding: 72px 2rem 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--circle-teal);
  opacity: 0.5;
  top: -100px;
  right: 6%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--circle-pink);
  opacity: 0.55;
  top: 10px;
  right: 20%;
  pointer-events: none;
}

.hero-circle-yellow {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 5px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.6rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin-bottom: 1.2rem;
}

.hero h1 span { color: var(--accent); }

.hero p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.btn-hero {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font);
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
}

.btn-hero:hover {
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
}

.hero-programs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.hero-program-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: #2d3460;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
}

/* ===== SECTIONS ===== */
section { padding: 72px 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

/* ===== PROGRAM CARDS ===== */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.program-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}

.program-card:hover {
  box-shadow: 0 8px 32px rgba(30,35,64,0.1);
  transform: translateY(-3px);
}

.card-icon {
  font-size: 1.8rem;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.program-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.program-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.4rem;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.badge-foundation { background: #d8f8ec; color: #1a7a52; }
.badge-intermediate { background: #e4e8f8; color: #3a4ab0; }
.badge-advanced { background: #f8e4ec; color: #b03060; }

.card-link {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 700;
  transition: color 0.2s;
}
.card-link:hover { color: var(--accent); text-decoration: none; }

/* program trigger subtitle */
.program-trigger {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

/* pain-point quote on program cards */
.pain-quote {
  font-style: italic;
  font-size: 0.93rem;
  color: var(--primary);
  border-left: 3px solid var(--accent);
  padding-left: 0.8rem;
  margin-bottom: 0.8rem;
  line-height: 1.55;
}

.disc-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff8e6;
  border: 1px solid #f0d898;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #886000;
  margin-bottom: 0.8rem;
}

/* ===== METHODOLOGY / HOUSE ===== */
.methodology-section {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.method-intro {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.method-intro p { color: var(--text-light); font-size: 1rem; }

.house-diagram {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}

/* Two-tier roof */
.house-roof-top {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 0.9rem 2rem;
}

.house-roof-top .roof-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-bottom: 0.2rem;
}

.house-roof-top .roof-title {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.house-roof-sub {
  background: #2d3460;
  text-align: center;
  padding: 0.6rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.house-roof-sub .roof-eyebrow {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-bottom: 0.15rem;
}

.house-roof-sub .roof-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
}

/* Body */
.house-body {
  display: grid;
  grid-template-columns: 148px 1fr 148px;
  min-height: 220px;
}

.house-col {
  padding: 1.1rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  background: #eef2f8;
}

.house-col-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3a5a8a;
  text-align: center;
  margin-bottom: 0.4rem;
}

.house-col.processes { border-right: 1px solid #c8d4e8; }
.house-col.technology { border-left: 1px solid #c8d4e8; }

.house-pill {
  background: var(--white);
  border: 1px solid #c8d4e8;
  border-radius: 4px;
  padding: 6px 7px;
  height: auto;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.67rem;
  color: #2a3f5f;
  text-align: center;
  font-weight: 600;
}

.house-center {
  padding: 1.6rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--white);
}

.house-center-label {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.house-center-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.35;
}

/* Foundation */
.house-foundation { border-top: 1px solid #c8d4e8; }

.house-foundation-row {
  padding: 0.85rem 1.4rem;
  border-bottom: 1px solid #dde4ef;
  background: var(--white);
  text-align: center;
}

.house-foundation-strip {
  padding: 0.65rem 1.4rem;
  border-bottom: 1px solid #dde4ef;
  background: #dde5f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
}

.house-foundation-strip:last-child { border-bottom: none; }

.house-foundation-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #3a5a8a;
  margin-bottom: 0;
}

.house-foundation-note {
  font-size: 0.72rem;
  color: var(--text-light);
  font-style: italic;
}

.house-pills-row { display: flex; flex-wrap: wrap; gap: 0.3rem; justify-content: center; }

.house-caption {
  background: var(--bg-hero);
  border-top: 1px solid var(--border);
  padding: 0.9rem 1.4rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
}

.house-caption strong { color: var(--primary); font-weight: 800; }

/* ===== ABOUT STRIP ===== */
.about-strip {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-cols > div:first-child p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-stat {
  border-radius: 12px;
  padding: 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
}

.about-stat.stat-pink  { background: #fce8e8; }
.about-stat.stat-teal  { background: #d8f2ec; }
.about-stat.stat-lav   { background: #e8e8f8; }
.about-stat.stat-yell  { background: #fdf5dc; }

.about-stat strong {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.about-stat span {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-top: 0.3rem;
}

/* ===== ABOUT EMMY BIO ===== */
.emmy-bio {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  align-items: center;
}

.emmy-avatar-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin: 0 auto 1.2rem;
  border: 4px solid var(--accent);
}

.emmy-flags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.7rem;
}

.flag-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2px 9px;
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 600;
}

.emmy-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}

.credential-tag {
  background: var(--primary);
  color: var(--white);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
}

.emmy-bio-text p { color: var(--text-light); margin-bottom: 1rem; font-size: 1rem; line-height: 1.8; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--accent);
  line-height: 1;
  font-family: Georgia, serif;
  opacity: 0.2;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1.4rem;
  padding-top: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-info strong { display: block; font-size: 0.9rem; color: var(--primary); font-weight: 800; }
.author-info span { font-size: 0.78rem; color: var(--text-light); }

/* ===== TRUSTED BY ===== */
.trusted-strip {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 2rem;
  text-align: center;
}

.trusted-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.4rem;
}

.trusted-logos { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 2.5rem; }
.trusted-company { font-size: 1rem; font-weight: 800; color: var(--primary); opacity: 0.35; letter-spacing: 0.04em; }

/* ===== CTA STRIP ===== */
.cta-strip {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 72px 2rem;
}

.cta-strip .cta-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  padding: 5px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.2rem;
}

.cta-strip h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 0.8rem; }
.cta-strip p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; font-size: 1.05rem; max-width: 540px; margin-left: auto; margin-right: auto; }

.btn-cta {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font);
  background: var(--white);
  color: var(--primary);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-cta:hover {
  background: #f0ebe2;
  text-decoration: none;
  transform: translateY(-2px);
}

/* ===== TRAINING PAGE ===== */
.training-intro { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.training-intro p { color: var(--text-light); font-size: 1rem; }

.program-detail {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.program-detail:last-of-type { border-bottom: none; }

.program-side {
  background: var(--bg-light);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--border);
}

.program-side .icon { font-size: 2.8rem; margin-bottom: 1rem; }
.program-side h3 { font-size: 1.3rem; font-weight: 800; color: var(--primary); }

.program-body h3 { font-size: 1.4rem; font-weight: 800; color: var(--primary); margin-bottom: 0.6rem; }
.program-body p { color: var(--text-light); margin-bottom: 1rem; line-height: 1.8; }

/* ===== CONTACT PAGE ===== */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info p { color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.8; }
.contact-detail { display: flex; align-items: center; gap: 0.75rem; color: var(--text-light); font-size: 0.96rem; margin-bottom: 0.7rem; }
.contact-detail .icon { font-size: 1.2rem; }
.contact-form { background: var(--bg-light); border-radius: 14px; padding: 2.5rem; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.3rem; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 700; color: var(--primary); margin-bottom: 0.45rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(224,82,82,0.1); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--text-light); margin-top: 0.3rem; }
.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; text-align: center; font-size: 1rem; padding: 1rem; }
.alert { padding: 1rem 1.2rem; border-radius: 8px; margin-bottom: 1.5rem; font-size: 0.95rem; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ===== FOOTER ===== */
footer { background: var(--primary); color: rgba(255,255,255,0.65); padding: 56px 2rem 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .logo { font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 0.7rem; }
.footer-brand .logo span { color: var(--accent); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
footer h4 { color: var(--white); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.5rem; }
footer ul li a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: color 0.2s; }
footer ul li a:hover { color: rgba(255,255,255,0.9); text-decoration: none; }
.footer-bottom { max-width: 1100px; margin: 1.5rem auto 0; font-size: 0.78rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; color: rgba(255,255,255,0.3); }

/* ===== SOUND FAMILIAR SECTION ===== */
.pain-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem 1.3rem;
}

.pain-check {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pain-item p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 62px; left: 0; right: 0; background: var(--white); padding: 1rem 2rem 1.5rem; gap: 1rem; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  nav { position: relative; }
  .hero::before, .hero::after { display: none; }
  .hero-circle-yellow { display: none; }
  .about-cols, .emmy-bio, .contact-wrap, .program-detail, .pain-grid { grid-template-columns: 1fr; gap: 1rem; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .house-body { grid-template-columns: 1fr; }
  .house-col.processes, .house-col.technology { border: none; border-top: 1px solid var(--border); }
}
