/* ============================================================
   TheFirst10DaysBook.com — Main Stylesheet
   Nonprofit Leadership / Executive Style
   ============================================================ */

/* ============================================================
   EMAIL GATE MODAL
   ============================================================ */

/* Backdrop overlay */
.gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 30, 0.88);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gate-overlay.visible {
  opacity: 1;
}

/* Blurred page content when gate is active */
body.gate-active {
  overflow: hidden;
}

body.gate-active .site-nav,
body.gate-active main,
body.gate-active .site-footer {
  filter: blur(4px);
  pointer-events: none;
  user-select: none;
}

/* Modal card */
.gate-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  transform: translateY(28px) scale(0.97);
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 0;
  position: relative;
}

.gate-overlay.visible .gate-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Modal header band */
.gate-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 32px 36px 28px;
  text-align: center;
  position: relative;
}

.gate-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}

.gate-book-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,146,42,0.15);
  border: 1px solid rgba(200,146,42,0.3);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.gate-header h2 {
  color: var(--white);
  font-size: 1.45rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.gate-header p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

/* Modal body */
.gate-body {
  padding: 32px 36px 36px;
}

/* What you get list */
.gate-benefits {
  margin-bottom: 24px;
}

.gate-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.gate-benefits li:last-child { border-bottom: none; }

.gate-check {
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  color: var(--white);
  font-weight: 700;
  margin-top: 1px;
}

/* Gate form fields */
.gate-form .form-group label {
  color: var(--gray-700);
}

.gate-form .form-group input[type="text"],
.gate-form .form-group input[type="email"] {
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  color: var(--text);
}

.gate-form .form-group input::placeholder {
  color: var(--gray-400);
}

.gate-form .form-group input:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.15);
}

.gate-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  margin-top: 6px;
}

.gate-privacy {
  text-align: center;
  font-size: 0.76rem;
  color: var(--gray-400);
  margin-top: 12px;
}

.gate-privacy a { color: var(--gray-500); }

/* Already subscribed link */
.gate-already-link {
  text-align: center;
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--gray-500);
}

.gate-already-link a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.gate-already-link a:hover { color: var(--gold-dark); }

/* Success state */
.gate-success {
  display: none;
  text-align: center;
  padding: 20px 0 8px;
}

.gate-success .success-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  display: block;
}

.gate-success h3 {
  color: var(--navy);
  margin-bottom: 8px;
}

.gate-success p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* Error message */
.gate-error-msg {
  background: rgba(200,50,50,0.08);
  border: 1px solid rgba(200,50,50,0.2);
  color: #c03030;
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.84rem;
  margin-top: 10px;
  display: none;
}

/* Responsive */
@media (max-width: 560px) {
  .gate-header { padding: 24px 24px 20px; }
  .gate-body { padding: 24px 24px 28px; }
  .gate-header h2 { font-size: 1.2rem; }
}

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --navy:       #1a2e4a;
  --navy-dark:  #0f1e33;
  --navy-mid:   #243a5a;
  --gold:       #c8922a;
  --gold-light: #e8b54d;
  --gold-dark:  #a87520;
  --cream:      #faf7f2;
  --white:      #ffffff;
  --gray-100:   #f5f5f5;
  --gray-200:   #e8e8e8;
  --gray-400:   #999999;
  --gray-600:   #666666;
  --gray-800:   #333333;
  --text:       #2c2c2c;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.18);
  --radius:     6px;
  --radius-lg:  12px;
  --transition: all 0.25s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dark); }

ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--gray-800); }
p:last-child { margin-bottom: 0; }

/* --- Layout Utilities --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }

.bg-navy { background: var(--navy); }
.bg-navy-dark { background: var(--navy-dark); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }

.divider {
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin: 16px auto 32px;
  border-radius: 2px;
}
.divider-left { margin-left: 0; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  letter-spacing: 0.02em;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(200, 146, 42, 0.35);
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 146, 42, 0.45);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-navy:hover {
  background: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-lg { padding: 18px 42px; font-size: 1.1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }

/* --- Navigation --- */
.site-nav {
  background: var(--navy-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

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

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1.2;
}

.nav-logo span { color: var(--white); font-size: 0.75rem; font-weight: 400; display: block; font-family: var(--font-sans); }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links .btn { margin-left: 8px; padding: 9px 20px; font-size: 0.88rem; }

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

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #2a4870 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8922a' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust {
  margin-top: 28px;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-trust::before {
  content: '🔒';
  font-size: 0.9rem;
}

/* ── Real book cover image ────────────────────────────────── */
.real-book-cover {
  width: 100%;
  border-radius: 4px 10px 10px 4px;
  box-shadow:
    -6px 0 0 rgba(0,0,0,0.18),
    -12px 0 0 rgba(0,0,0,0.10),
    20px 20px 60px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.06);
  transform: perspective(1000px) rotateY(-8deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: block;
  position: relative;
  z-index: 1;
}

.real-book-cover:hover {
  transform: perspective(1000px) rotateY(-3deg);
  box-shadow:
    -6px 0 0 rgba(0,0,0,0.18),
    -12px 0 0 rgba(0,0,0,0.10),
    28px 28px 70px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.08);
}

/* Flat version for about section (no 3D tilt) */
.about-book-img {
  transform: none !important;
  box-shadow: var(--shadow-lg) !important;
  border-radius: var(--radius) !important;
}

.about-book-img:hover {
  transform: none !important;
}

/* Sidebar mini version */
.sidebar-book-img {
  transform: none !important;
  max-width: 160px;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-md) !important;
  border-radius: var(--radius) !important;
}

.sidebar-book-img:hover {
  transform: none !important;
}

/* Book cover mockup */
.book-mockup-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-mockup {
  position: relative;
  width: 260px;
}

.book-cover {
  width: 100%;
  border-radius: 4px 10px 10px 4px;
  box-shadow: 
    -8px 0 0 rgba(0,0,0,0.15),
    -16px 0 0 rgba(0,0,0,0.1),
    20px 20px 60px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.08);
  transform: perspective(1000px) rotateY(-8deg);
  transition: transform 0.4s ease;
  background: var(--navy-mid);
  overflow: hidden;
}

.book-cover:hover {
  transform: perspective(1000px) rotateY(-3deg);
}

.book-cover-inner {
  background: linear-gradient(160deg, #1a2e4a 0%, #0f1e33 40%, #243a5a 100%);
  border-radius: 4px 10px 10px 4px;
  padding: 32px 28px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 6px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.book-cover-inner::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.02));
}

.book-cover-number {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  opacity: 0.35;
  position: absolute;
  top: 16px;
  right: 20px;
}

.book-cover-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

.book-cover-title {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 12px 0;
}

.book-cover-subtitle {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  font-style: italic;
}

.book-cover-line {
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0;
}

.book-cover-author {
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.book-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 10;
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 4px 16px rgba(200,146,42,0.5);
  animation: pulse 2.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* --- Section Headers --- */
.section-header {
  margin-bottom: 48px;
}

.section-header .eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

/* --- About the Book --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.about-image-block {
  position: relative;
}

.about-image-block .book-cover {
  transform: none;
  box-shadow: var(--shadow-lg);
}

.about-stat-pill {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-stat-pill strong { font-size: 1.6rem; display: block; color: var(--gold); font-family: var(--font-serif); }
.about-stat-pill span { font-size: 0.75rem; color: rgba(255,255,255,0.7); }

.feature-list {
  margin: 20px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
}
.feature-list li:last-child { border-bottom: none; }

.feature-list .icon {
  width: 28px;
  height: 28px;
  background: rgba(200,146,42,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 2px;
}

.feature-list .icon-text {
  font-size: 0.95rem;
  color: var(--gray-800);
  line-height: 1.5;
}

/* --- Who This Is For --- */
.audience-section { background: var(--cream); }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.audience-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.audience-card .emoji { font-size: 2rem; margin-bottom: 14px; }
.audience-card h4 { color: var(--navy); margin-bottom: 8px; }
.audience-card p { font-size: 0.9rem; color: var(--gray-600); margin: 0; }

/* --- Testimonials --- */
.testimonials-section { background: var(--navy); }
.testimonials-section h2 { color: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: rgba(255,255,255,0.85);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.author-info strong { color: var(--white); font-size: 0.9rem; display: block; }
.author-info span { color: rgba(255,255,255,0.55); font-size: 0.8rem; }

/* --- Author Section --- */
.author-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
}

.author-photo-wrap {
  text-align: center;
}

.author-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  box-shadow: 0 0 0 6px rgba(200,146,42,0.15), var(--shadow-md);
  border: 4px solid var(--gold);
}

.author-title {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 8px;
}

.author-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.credential-tag {
  background: rgba(200,146,42,0.1);
  color: var(--gold-dark);
  border: 1px solid rgba(200,146,42,0.2);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* --- Email Capture Section --- */
.email-capture-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.email-capture-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8922a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.email-capture-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.email-capture-section h2 { color: var(--white); }
.email-capture-section .divider { margin: 14px auto 24px; }

.email-capture-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* AWeber-ready form styles */
.aweber-form-wrapper {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-group {
  margin-bottom: 16px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-select {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='rgba(255,255,255,0.5)' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--navy-dark);
  color: var(--white);
}

.form-group select.placeholder-active { color: rgba(255,255,255,0.35); }

.form-group input::placeholder { color: rgba(255,255,255,0.35); }

.form-group input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.2);
}

.form-submit { width: 100%; padding: 16px; font-size: 1.05rem; margin-top: 8px; }

.form-privacy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 14px;
  text-align: center;
}

.form-privacy a { color: rgba(255,255,255,0.55); }

/* --- Buy Section --- */
.buy-section { background: var(--cream); }

.buy-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  border: 1px solid var(--gray-200);
}

.buy-price-block { text-align: center; }
.buy-label { font-size: 0.8rem; color: var(--gray-400); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.buy-price { font-family: var(--font-serif); font-size: 3.5rem; color: var(--navy); font-weight: 800; line-height: 1; }
.buy-price span { font-size: 1.5rem; vertical-align: super; font-size: 1.8rem; }
.buy-includes { font-size: 0.85rem; color: var(--gray-600); margin-top: 10px; }

.buy-features { margin: 20px 0; }
.buy-features li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--gray-100);
}
.buy-features li:last-child { border-bottom: none; }
.buy-features li::before { content: '✓'; color: var(--gold); font-weight: 700; }

.buy-btn-group { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.buy-btn-group .btn { text-align: center; }

/* --- Footer --- */
.site-footer {
  background: var(--navy-dark);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .nav-logo { font-size: 1.2rem; margin-bottom: 16px; }
.footer-desc { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--white); }

.footer-col h5 { color: var(--white); font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--font-sans); font-weight: 600; }

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; margin: 0; }

/* --- Page Header (internal pages) --- */
.page-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8922a' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 { color: var(--white); position: relative; }
.page-header p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 560px; margin: 12px auto 0; position: relative; }
.page-header .eyebrow { position: relative; }

/* --- Resources Page --- */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.resource-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.resource-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(200,146,42,0.12) 0%, rgba(200,146,42,0.06) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  border: 1px solid rgba(200,146,42,0.15);
}

.resource-card h4 { color: var(--navy); margin-bottom: 8px; }
.resource-card p { font-size: 0.88rem; color: var(--gray-600); flex: 1; }

.resource-tag {
  display: inline-block;
  background: rgba(26,46,74,0.06);
  color: var(--navy);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.resource-download-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 18px;
  transition: var(--transition);
  padding: 10px 0;
  border-top: 1px solid var(--gray-200);
}

.resource-download-btn:hover { color: var(--gold-dark); gap: 12px; }

/* --- Coming Soon Overlay (for locked resources) --- */
.resource-locked {
  position: relative;
  filter: none;
}

.lock-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --- Playbook Page --- */
.playbook-toc {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  border-left: 4px solid var(--gold);
  margin-bottom: 48px;
}

.playbook-toc h3 { color: var(--navy); margin-bottom: 16px; }
.playbook-toc ol { padding-left: 20px; }
.playbook-toc ol li { padding: 6px 0; color: var(--gray-700); font-size: 0.95rem; }
.playbook-toc ol li a { color: var(--navy); font-weight: 500; }
.playbook-toc ol li a:hover { color: var(--gold); }

.playbook-section {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--gray-200);
}
.playbook-section:last-child { border-bottom: none; }

.playbook-day {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--gold);
  padding: 6px 16px 6px 6px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.playbook-day-num {
  background: var(--gold);
  color: var(--navy);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}

.playbook-checklist { margin: 20px 0; }
.playbook-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.95rem;
  color: var(--gray-700);
}
.playbook-checklist li:last-child { border-bottom: none; }

.check-box {
  width: 22px;
  height: 22px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.check-box:hover, .check-box.checked {
  background: var(--gold);
  border-color: var(--gold);
}

.check-box.checked::after {
  content: '✓';
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
}

.playbook-cta-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  margin-top: 60px;
}

.playbook-cta-block h2 { color: var(--white); margin-bottom: 12px; }
.playbook-cta-block p { color: rgba(255,255,255,0.7); margin-bottom: 28px; font-size: 1.05rem; }

/* --- Alert / Notification --- */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-gold { background: rgba(200,146,42,0.1); border: 1px solid rgba(200,146,42,0.3); color: var(--gold-dark); }
.alert-navy { background: rgba(26,46,74,0.08); border: 1px solid rgba(26,46,74,0.15); color: var(--navy); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-cta-group { justify-content: center; }
  .hero-trust { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-block { max-width: 280px; margin: 0 auto; }
  .about-stat-pill { right: 0; }
  .author-grid { grid-template-columns: 1fr; text-align: center; }
  .author-photo-wrap { display: flex; flex-direction: column; align-items: center; }
  .author-credentials { justify-content: center; }
  .buy-card { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy-dark); padding: 20px; gap: 16px; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-inner { position: relative; }
  .audience-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .book-mockup { width: 200px; margin: 0 auto; }
  .aweber-form-wrapper { padding: 24px; }
  .buy-card { padding: 28px; }
  .playbook-cta-block { padding: 32px 24px; }
  .section-pad { padding: 60px 0; }
}
