/* =============================================
   PRIMEHR - SITE STYLESHEET
   Brand: Navy #1B3A6B | Teal #0D7377 | Gold #C9A84C
   Fonts: Fraunces (display) + DM Sans (body)
   ============================================= */

:root {
  --navy: #1B3A6B;
  --navy-dark: #122950;
  --teal: #0D7377;
  --teal-light: #e0f2f2;
  --gold: #C9A84C;
  --gold-light: #fdf6e3;
  --white: #ffffff;
  --off-white: #f8f6f2;
  --light-grey: #f0ede8;
  --mid-grey: #9b9490;
  --dark-grey: #3d3a36;
  --text: #1c1a18;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(27,58,107,0.10);
  --shadow-lg: 0 12px 40px rgba(27,58,107,0.15);
  --max-w: 1140px;
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

.section { padding: 80px 0; }

/* ---- TYPOGRAPHY ---- */

h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; font-weight: 600; }

h1 em, h2 em { font-style: italic; font-weight: 300; color: var(--teal); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- BUTTONS ---- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover { background: #0a5e62; border-color: #0a5e62; transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

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

.btn-full { width: 100%; justify-content: center; }

/* ---- SECTION TAG ---- */

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 14px;
  padding: 4px 12px;
  background: var(--gold-light);
  border-radius: 100px;
  border: 1px solid rgba(201,168,76,0.3);
}

/* ============================
   NAVIGATION
   ============================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 68px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer .nav-logo-img {
  height: 38px;
  filter: brightness(0) invert(1);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-grey);
  padding: 6px 14px;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--navy); background: var(--light-grey); }
.nav-links a.active { color: var(--teal); font-weight: 600; }

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  border-radius: 6px;
}
.nav-cta:hover { background: var(--teal) !important; }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--navy);
}

/* ============================
   HERO
   ============================ */

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1e4a8c 50%, #0D7377 100%);
  color: var(--white);
  padding: 80px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 100%;
  min-height: 580px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 580px;
  flex-shrink: 0;
  animation: fadeUp 0.7s ease both;
}

.hero-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 16px;
  padding: 4px 12px;
  background: rgba(201,168,76,0.15);
  border-radius: 100px;
  border: 1px solid rgba(201,168,76,0.3);
}

.hero-h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 5vw, 4rem);
}
.hero-h1 em { color: var(--gold); }

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-card-cluster {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  animation: fadeUp 0.9s ease both;
}

.stat-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 240px;
  transition: transform var(--transition);
}
.stat-card:hover { transform: translateY(-3px); }
.card-2 { margin-left: 28px; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}

/* ============================
   PAGE HERO (inner pages)
   ============================ */

.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1e4a8c 60%, #0D7377 100%);
  color: var(--white);
  padding: 72px 0 80px;
}

.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 560px; margin-top: 16px; }
.page-hero .section-tag { background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.3); }

.templates-hero { padding-bottom: 100px; }

/* ============================
   PROBLEM SECTION
   ============================ */

.problem { background: var(--off-white); }
.problem h2 { margin-bottom: 40px; max-width: 560px; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.problem-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--light-grey);
  transition: box-shadow var(--transition);
}
.problem-card:hover { box-shadow: var(--shadow); }

.problem-icon { font-size: 1.6rem; flex-shrink: 0; }
.problem-card p { margin: 0; font-size: 0.95rem; color: var(--dark-grey); }

.problem-close {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--teal);
  font-style: italic;
  margin: 0;
}

/* ============================
   HOW IT WORKS
   ============================ */

.how { background: var(--white); }
.how h2 { margin-bottom: 56px; }

.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.how-step {
  flex: 1;
  padding: 0 20px;
}

.how-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  margin-top: 28px;
  flex-shrink: 0;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--light-grey);
  line-height: 1;
  margin-bottom: 12px;
}

.how-step h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.15rem; }
.how-step p { font-size: 0.95rem; color: var(--dark-grey); }

/* ============================
   BOOK CALLOUT
   ============================ */

.book-callout {
  background: var(--navy);
  color: var(--white);
}

.book-callout-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.book-text { flex: 1; }
.book-text h2 { color: var(--white); margin-bottom: 6px; }
.book-sub { font-size: 1rem; color: var(--gold); font-style: italic; margin-bottom: 20px; font-family: var(--font-display); }

.book-bullets {
  list-style: none;
  margin: 20px 0 28px;
}
.book-bullets li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.book-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.book-visual { flex-shrink: 0; }

.book-cover {
  width: 220px;
  background: linear-gradient(145deg, var(--teal) 0%, #0a5e62 100%);
  border-radius: 4px 12px 12px 4px;
  padding: 32px 24px;
  box-shadow: -8px 8px 0 rgba(0,0,0,0.3), var(--shadow-lg);
  transform: rotate(-2deg);
  transition: transform var(--transition);
}
.book-cover:hover { transform: rotate(0deg); }

.book-cover-inner { color: var(--white); }
.book-cover-tag { font-size: 0.7rem; color: rgba(255,255,255,0.7); margin-bottom: 16px; font-family: var(--font-body); }
.book-cover h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.book-cover-sub { font-size: 0.75rem; color: rgba(255,255,255,0.8); margin-bottom: 20px; line-height: 1.4; }
.book-cover-weeks {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 12px;
}

/* ============================
   SERVICES SNAPSHOT
   ============================ */

.services-snap { background: var(--off-white); }
.services-snap h2 { margin-bottom: 14px; }
.section-intro { max-width: 560px; color: var(--dark-grey); margin-bottom: 40px; }

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

.service-tile {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--light-grey);
  transition: all var(--transition);
  cursor: pointer;
  display: block;
}
.service-tile:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-icon { font-size: 1.8rem; margin-bottom: 12px; }
.service-tile h3 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.service-tile p { font-size: 0.88rem; color: var(--dark-grey); margin: 0; }

.service-tile-cta {
  background: var(--navy);
  border-color: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-tile-cta p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 8px; }
.service-tile-cta strong { color: var(--gold); font-size: 1rem; }
.service-tile-cta:hover { background: var(--teal); border-color: var(--teal); }

/* ============================
   ABOUT TEASER
   ============================ */

.about-teaser { background: var(--white); }
.about-teaser-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-img-wrap { flex-shrink: 0; }
.about-img-placeholder {
  width: 260px;
  height: 300px;
  background: var(--light-grey);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid-grey);
  font-size: 0.85rem;
  font-style: italic;
  border: 2px dashed #d0ccc7;
}
.about-img-placeholder.large {
  width: 280px;
  height: 340px;
}
.wayne-photo {
  width: 260px;
  height: 300px;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.wayne-photo.large {
  width: 280px;
  height: 340px;
}

.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--dark-grey); margin-bottom: 16px; }

/* ============================
   CONTACT
   ============================ */

.contact { background: var(--off-white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-text h2 { margin-bottom: 16px; }
.contact-text p { color: var(--dark-grey); }
.contact-email { margin-top: 24px; font-weight: 600; }
.contact-email a { color: var(--teal); }

.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 36px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-grey);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,115,119,0.1);
}
.contact-form textarea { resize: vertical; }

/* ============================
   CTA BAND
   ============================ */

.cta-band {
  background: linear-gradient(135deg, var(--teal) 0%, #0a5e62 100%);
  color: var(--white);
  text-align: center;
  padding: 72px 0;
}
.cta-band-inner { max-width: 560px; margin: 0 auto; }
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 28px; }

/* ============================
   FOOTER
   ============================ */

.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-left p { font-size: 0.9rem; margin-top: 10px; line-height: 1.6; }
.footer-legal { margin-top: 8px; font-size: 0.82rem; }
.footer-legal a { color: var(--gold); }
.footer-left .nav-logo { color: var(--white); }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ============================
   ABOUT PAGE
   ============================ */

.about-main { background: var(--white); }
.about-main-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}

.about-sidebar { display: flex; flex-direction: column; gap: 24px; }

.credentials-box {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--teal);
}
.credentials-box h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); margin-bottom: 12px; }
.credentials-box ul { list-style: none; }
.credentials-box li { font-size: 0.9rem; color: var(--dark-grey); padding: 5px 0; }

.about-body h2 { margin-bottom: 20px; }
.about-body h3 { font-size: 1.15rem; color: var(--navy); margin: 28px 0 12px; }
.about-body p { color: var(--dark-grey); }

.pullquote {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--navy);
  border-radius: var(--radius);
}
.pullquote blockquote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}

.values { background: var(--off-white); }
.values h2 { margin-bottom: 40px; }

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

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--light-grey);
}

.value-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--light-grey);
  margin-bottom: 10px;
}
.value-card h3 { color: var(--navy); margin-bottom: 10px; }
.value-card p { font-size: 0.92rem; color: var(--dark-grey); margin: 0; }

/* ============================
   SERVICES FULL PAGE
   ============================ */

.services-full { background: var(--white); }

.service-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 40px;
  padding: 56px 0;
  border-bottom: 1px solid var(--light-grey);
  align-items: start;
}
.service-block:last-child { border-bottom: none; }

.service-block.reverse {
  background: var(--off-white);
  margin: 0 -32px;
  padding: 56px 32px;
}

.service-block-icon { font-size: 2.8rem; padding-top: 8px; }

.service-block-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service-block h2 { color: var(--navy); margin-bottom: 12px; }
.service-lead { font-size: 1.05rem; font-weight: 500; color: var(--teal); margin-bottom: 16px; font-family: var(--font-display); font-style: italic; }
.service-block p { color: var(--dark-grey); }

.service-list {
  list-style: none;
  margin: 20px 0 28px;
}
.service-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 0.93rem;
  color: var(--dark-grey);
  border-bottom: 1px solid var(--light-grey);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
}

/* ============================
   TEMPLATES PAGE
   ============================ */

.templates-intro { background: var(--white); margin-top: -40px; position: relative; z-index: 2; }
.templates-intro-inner {
  display: flex;
  gap: 60px;
  align-items: center;
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.book-cover-sm {
  width: 180px;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--teal) 0%, #0a5e62 100%);
  border-radius: 4px 10px 10px 4px;
  padding: 24px 20px;
  box-shadow: -6px 6px 0 rgba(0,0,0,0.2), var(--shadow);
}
.book-cover-sm-inner { color: var(--white); }
.book-cover-sm .book-cover-tag { font-size: 0.62rem; color: rgba(255,255,255,0.65); margin-bottom: 12px; font-family: var(--font-body); }
.book-cover-sm h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.book-cover-sm .book-cover-sub { font-size: 0.65rem; color: rgba(255,255,255,0.75); margin-bottom: 16px; line-height: 1.4; }
.book-cover-sm .book-cover-weeks {
  font-size: 0.6rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 10px;
}

.templates-intro-text h2 { margin-bottom: 16px; }
.templates-intro-text p { color: var(--dark-grey); }

.template-highlights {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}
.template-highlight {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.template-highlight strong { font-size: 1.1rem; color: var(--navy); font-family: var(--font-display); }
.template-highlight span { font-size: 0.8rem; color: var(--mid-grey); }

.template-list-section { background: var(--off-white); }
.template-list-section h2 { margin-bottom: 40px; }

.chapter-group { margin-bottom: 28px; }
.chapter-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--teal-light);
}

.template-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.85rem;
  color: var(--dark-grey);
  transition: all var(--transition);
  cursor: default;
}
.chip:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }

/* Download section */
.download-section { background: var(--white); }
.download-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.download-text h2 { margin-bottom: 16px; }
.download-text p { color: var(--dark-grey); }

.download-reassurance {
  list-style: none;
  margin-top: 24px;
}
.download-reassurance li {
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--dark-grey);
  border-bottom: 1px solid var(--light-grey);
}
.download-reassurance li:last-child { border-bottom: none; }

.download-form-wrap {
  background: var(--off-white);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--light-grey);
}

.download-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.download-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: -8px;
}

.download-form input,
.download-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d0ccc7;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}
.download-form input:focus,
.download-form select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,115,119,0.1);
}

.form-small {
  font-size: 0.78rem;
  color: var(--mid-grey);
  line-height: 1.5;
  margin: 4px 0 0;
}

.download-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  width: 56px;
  height: 56px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}
.download-success h3 { font-size: 1.5rem; margin-bottom: 12px; color: var(--navy); }
.download-success p { color: var(--dark-grey); }
.download-success a { color: var(--teal); font-weight: 600; }

/* ============================
   ANIMATIONS
   ============================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--light-grey);
    padding: 16px 24px;
    box-shadow: var(--shadow);
    z-index: 200;
  }
  .nav-hamburger { display: block; }
  .nav { padding: 0 24px; position: relative; }

  .hero { flex-direction: column; padding: 60px 24px; gap: 40px; min-height: auto; }
  .hero-card-cluster { flex-direction: row; flex-wrap: wrap; }
  .card-2 { margin-left: 0; }
  .stat-card { min-width: 160px; flex: 1; }

  .problem-grid { grid-template-columns: 1fr; }
  .how-steps { flex-direction: column; }
  .how-connector { width: 2px; height: 40px; margin: 0 0 0 0; background: linear-gradient(180deg, var(--teal), var(--gold)); }
  .how-step { padding: 0; }

  .book-callout-inner { flex-direction: column; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-teaser-inner { flex-direction: column; gap: 32px; }
  .contact-inner { grid-template-columns: 1fr; }
  .about-main-inner { grid-template-columns: 1fr; }
  .about-sidebar { flex-direction: row; flex-wrap: wrap; }
  .about-img-placeholder { width: 180px; height: 200px; }
  .values-grid { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; gap: 16px; }
  .service-block.reverse { margin: 0; padding: 40px 0; }
  .templates-intro-inner { flex-direction: column; gap: 32px; padding: 32px; }
  .download-inner { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .template-highlights { flex-direction: column; gap: 12px; }
  .section { padding: 56px 0; }
  .container { padding: 0 20px; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
}

/* Real book cover image */
.book-cover-img {
  width: 220px;
  border-radius: 4px 12px 12px 4px;
  box-shadow: -8px 8px 0 rgba(0,0,0,0.3), 0 12px 40px rgba(27,58,107,0.15);
  transform: rotate(-2deg);
  transition: transform 0.2s;
  display: block;
}
.book-cover-img:hover { transform: rotate(0deg); }
.book-cover-img-sm {
  width: 160px;
  border-radius: 4px 10px 10px 4px;
  box-shadow: -6px 6px 0 rgba(0,0,0,0.2), 0 8px 24px rgba(27,58,107,0.12);
  display: block;
  flex-shrink: 0;
}
