/* ========================================
   DDV Website — styles.css
   Brand: Digitally Demented Ventures
   ======================================== */

/* --- Custom Properties --- */
:root {
  --forest: #065F46;
  --forest-dark: #044D38;
  --forest-light: #0A7B5C;
  --forest-glow: rgba(6, 95, 70, 0.08);
  --forest-glow-strong: rgba(6, 95, 70, 0.14);
  --slate: #374151;
  --slate-light: #6B7280;
  --sandstone: #FCD34D;
  --sandstone-hover: #FBBF24;
  --sandstone-glow: rgba(252, 211, 77, 0.15);
  --white: #FFFFFF;
  --light-gray: #E5E7EB;
  --cream: #FAF8F5;
  --warm-white: #FDFCFB;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1120px;
  --max-width-narrow: 720px;
  --nav-height: 72px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-lift: 0 12px 40px rgba(0, 0, 0, 0.1);
  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;
}

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--slate);
  line-height: 1.6;
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--forest);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--forest-light);
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--slate);
  line-height: 1.2;
}

h1 { font-size: 2.75rem; letter-spacing: -0.02em; }
h2 { font-size: 2rem; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

.text-forest { color: var(--forest); }
.text-slate-light { color: var(--slate-light); }
.text-center { text-align: center; }

/* --- Section Label (pill above headings) --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--forest);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--sandstone);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  width: 100%;
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

.section-cream {
  background: var(--cream);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--sandstone);
  color: var(--slate);
  box-shadow: 0 2px 8px rgba(252, 211, 77, 0.3);
}

.btn-primary:hover {
  background: var(--sandstone-hover);
  color: var(--slate);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(252, 211, 77, 0.4);
}

.btn-secondary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(6, 95, 70, 0.2);
}

.btn-secondary:hover {
  background: var(--forest-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(6, 95, 70, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}

.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.0625rem;
}

/* --- Pill / Tag --- */
.pill {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--forest-glow);
  color: var(--forest);
}

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 252, 251, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #D1D5DB;
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.nav-brand img {
  height: 36px;
  width: auto;
}

.nav-brand span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--forest);
}

.nav-brand:hover span {
  color: var(--forest);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--slate);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}

.nav-links a:hover {
  color: var(--forest);
  background: var(--forest-glow);
}

.nav-links a.active {
  color: var(--forest);
  background: var(--forest-glow);
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--slate);
  margin: 5px 0;
  transition: all var(--transition);
  border-radius: 2px;
}

/* --- Hero (Split Layout with Photo) --- */
.hero {
  padding: 5rem 0 3rem;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--forest-glow) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--sandstone-glow) 0%, transparent 60%);
  pointer-events: none;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.hero-text {
  position: relative;
}

.hero-greeting {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--forest);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-greeting::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 3px;
  background: var(--sandstone);
  border-radius: 2px;
}

.hero h1 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  color: var(--slate);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.hero p.hero-sub {
  font-size: 1.125rem;
  color: var(--slate-light);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-photo {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo-frame {
  position: relative;
  max-width: 480px;
  width: 100%;
}

.hero-photo-frame img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Decorative shape behind photo */
.hero-photo-frame::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: var(--sandstone);
  border-radius: var(--radius-lg);
  opacity: 0.3;
  z-index: 1;
}

.hero-photo-frame::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--forest);
  border-radius: var(--radius-lg);
  opacity: 0.2;
  z-index: 1;
}

/* --- VMV Strip --- */
.vmv-strip {
  padding: 3.5rem 0;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.vmv-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(252, 211, 77, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.vmv-items {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.vmv-item {
  text-align: center;
  flex: 0 1 160px;
  min-width: 130px;
}

.vmv-item .vmv-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  font-size: 1.125rem;
  color: var(--sandstone);
}

.vmv-item h4 {
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
  color: var(--white);
}

.vmv-item p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
  line-height: 1.4;
}

/* --- Cards --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest) 0%, var(--forest-light) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-6px);
  border-color: transparent;
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--white);
  font-size: 1.5rem;
}

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.card p {
  color: var(--slate-light);
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.card-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--forest);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.card-link:hover {
  color: var(--forest-light);
  gap: 0.625rem;
}

/* --- Quote / Callout --- */
.quote-section {
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 50%, var(--forest-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(252, 211, 77, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.quote-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.quote-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.quote-mark {
  font-size: 5rem;
  line-height: 1;
  color: var(--sandstone);
  opacity: 0.4;
  font-family: Georgia, serif;
  margin-bottom: -1.5rem;
}

.quote-section blockquote {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.35;
  position: relative;
}

.quote-section cite {
  font-style: normal;
  font-size: 1rem;
  opacity: 0.7;
}

/* --- Social Proof / Testimonial Slider --- */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
}

.testimonial {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  border-left: 3px solid var(--forest);
  flex: 0 0 calc(50% - 0.75rem);
  min-width: 0;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--slate);
  line-height: 1.7;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--slate-light);
}

/* Slider controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.slider-prev,
.slider-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--light-gray);
  background: var(--white);
  color: var(--slate);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  transition: all var(--transition);
}

.slider-prev:hover:not(:disabled),
.slider-next:hover:not(:disabled) {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.slider-prev:disabled,
.slider-next:disabled {
  opacity: 0.3;
  cursor: default;
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--light-gray);
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.slider-dot.active {
  background: var(--forest);
  width: 24px;
  border-radius: 4px;
}

/* Legacy grid fallback (for pages without slider JS) */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* --- Packages / Tiers --- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.package {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.package:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.package.featured {
  border-color: var(--forest);
  box-shadow: var(--shadow-md);
  position: relative;
}

.package.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 1.25rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package h3 {
  margin-bottom: 0.75rem;
}

.package .timeline {
  font-size: 0.875rem;
  color: var(--slate-light);
  margin-bottom: 1.25rem;
}

.package p.description {
  margin-bottom: 1.5rem;
  color: var(--slate-light);
  font-size: 0.9375rem;
}

.package ul {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.package ul li {
  padding: 0.4rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.9375rem;
  color: var(--slate);
}

.package ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--forest);
  font-weight: 700;
}

.package .btn {
  width: 100%;
}

/* --- Page Header --- */
.page-header {
  background: var(--cream);
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--forest-glow) 0%, transparent 70%);
  pointer-events: none;
}

.page-header h1 {
  margin-bottom: 1rem;
  position: relative;
}

.page-header p {
  font-size: 1.125rem;
  color: var(--slate-light);
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

/* --- Content Sections --- */
.content-section {
  max-width: 800px;
  margin: 0 auto;
}

.content-section h2 {
  margin-bottom: 1rem;
}

.content-section h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.content-section p {
  color: var(--slate);
  line-height: 1.7;
}

.content-section ul {
  margin: 1rem 0;
}

.content-section ul li {
  padding: 0.375rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--slate);
}

.content-section ul li::before {
  content: '\2022';
  position: absolute;
  left: 0.5rem;
  color: var(--forest);
  font-weight: 700;
}

/* --- Values Grid --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.value-item {
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all var(--transition);
}

.value-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.value-item h4 {
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.9375rem;
  color: var(--slate-light);
  margin-bottom: 0;
}

/* --- About Sections --- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.about-image-placeholder {
  background: linear-gradient(135deg, var(--cream) 0%, var(--light-gray) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-light);
  font-size: 0.875rem;
}

/* --- Contact Form Area --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--slate);
}

.contact-detail .icon {
  width: 44px;
  height: 44px;
  background: var(--forest-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.social-links a {
  width: 44px;
  height: 44px;
  background: var(--forest-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-size: 1.125rem;
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-2px);
}

.form-placeholder {
  background: var(--cream);
  border: 2px dashed var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--slate-light);
}

/* --- Course Section --- */
.course-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.course-tier {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}

.course-tier:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.course-tier h3 {
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.course-tier .tier-label {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

/* --- Tools Grid --- */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.tool-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all var(--transition);
}

.tool-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}

.tool-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.tool-card h4 {
  margin-bottom: 0.25rem;
}

.tool-card p {
  font-size: 0.875rem;
  color: var(--slate-light);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.tool-card .card-link {
  font-size: 0.875rem;
}

/* --- Affiliate Disclosure --- */
.affiliate-notice {
  background: var(--sandstone-glow);
  border: 1px solid rgba(252, 211, 77, 0.3);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: 0.875rem;
  color: var(--slate);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* --- Privacy / Legal --- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.legal-content ul {
  margin: 1rem 0;
}

.legal-content ul li {
  padding: 0.25rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.legal-content ul li::before {
  content: '\2022';
  position: absolute;
  left: 0.5rem;
  color: var(--forest);
}

/* --- Divider with Logo --- */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.section-divider img {
  width: 40px;
  height: 40px;
  opacity: 0.12;
}

/* --- Stat / Number Callout --- */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 2rem 0;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--slate-light);
}

/* --- Footer --- */
.footer {
  background: var(--slate);
  color: var(--white);
  padding: 4rem 0 2rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-area {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  height: 72px;
  width: auto;
  align-self: flex-start;
  opacity: 0.85;
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1rem;
  display: block;
}

.footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer h4 {
  color: var(--white);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  padding: 0.3rem 0;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 50%, var(--forest-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(252, 211, 77, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  max-width: 520px;
  margin: 0 auto 2rem;
  position: relative;
}

/* --- Module List --- */
.module-list {
  counter-reset: module;
}

.module-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.module-item:last-child {
  border-bottom: none;
}

.module-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--forest);
  min-width: 2.5rem;
}

.module-item h4 {
  margin-bottom: 0.25rem;
}

.module-item p {
  font-size: 0.9375rem;
  color: var(--slate-light);
  margin-bottom: 0;
}

/* --- Course Tier Tabs --- */
.course-tier {
  cursor: pointer;
}

.course-tier.active {
  border-color: var(--forest);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.tier-panel {
  display: none;
  margin-top: 3rem;
  animation: fadeIn 0.3s ease;
}

.tier-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Quote Section Light Variant --- */
.quote-section-light {
  background: var(--cream);
  color: var(--slate);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.quote-section-light .quote-mark {
  font-size: 5rem;
  line-height: 1;
  color: var(--forest);
  opacity: 0.15;
  font-family: Georgia, serif;
  margin-bottom: -1.5rem;
}

.quote-section-light blockquote {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.35;
  color: var(--forest);
}

.quote-section-light cite {
  font-style: normal;
  font-size: 1rem;
  color: var(--slate-light);
}

/* --- Logo Slider (Companies I've Worked With) --- */
.logo-slider {
  padding: 3rem 0;
  overflow: hidden;
}

.logo-slider h2 {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--slate-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: scrollLogos 30s linear infinite;
}

.logo-track img {
  height: 40px;
  width: 150px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.logo-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Decorative Accents for Inner Pages --- */
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 75%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--sandstone), var(--forest));
  pointer-events: none;
}


/* About photo decorative shapes */
.about-image {
  overflow: visible;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: var(--sandstone);
  border-radius: var(--radius-lg);
  opacity: 0.25;
  z-index: 0;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: -12px;
  width: 90px;
  height: 90px;
  border: 3px solid var(--forest);
  border-radius: var(--radius-lg);
  opacity: 0.15;
  z-index: 0;
}

.about-image img {
  position: relative;
  z-index: 1;
}

/* Tool card accent decoration */
.tool-card {
  position: relative;
  overflow: hidden;
}

.tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest) 0%, var(--forest-light) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.tool-card:hover::before {
  opacity: 1;
}

/* Decorative section accents */
.content-section {
  position: relative;
}

.section-decorated {
  position: relative;
  overflow: hidden;
}

.section-decorated::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--forest-glow) 0%, transparent 70%);
  pointer-events: none;
}

/* ======================================
   RESPONSIVE
   ====================================== */

/* Tablet */
@media (max-width: 1024px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }

  .hero h1 { font-size: 2.25rem; }

  .hero-split {
    gap: 2.5rem;
  }

  .hero-photo-frame {
    max-width: 340px;
  }

  .cards-grid,
  .packages-grid,
  .course-tiers {
    grid-template-columns: repeat(2, 1fr);
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .about-split {
    gap: 2.5rem;
  }

  .stats-row {
    gap: 2.5rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.5rem; }

  section {
    padding: 3.5rem 0;
  }

  .hero {
    padding: 3rem 0 2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p.hero-sub {
    font-size: 1rem;
  }

  .hero-greeting {
    font-size: 1.125rem;
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-photo {
    order: -1;
  }

  .hero-photo-frame {
    max-width: 280px;
  }

  .hero-photo-frame::before {
    width: 100px;
    height: 100px;
    top: -12px;
    right: -12px;
  }

  .hero-photo-frame::after {
    width: 80px;
    height: 80px;
    bottom: -10px;
    left: -10px;
  }

  .hero-greeting::before {
    display: none;
  }

  .quote-section blockquote {
    font-size: 1.5rem;
  }

  .quote-mark {
    font-size: 3.5rem;
  }

  .vmv-items {
    gap: 1.25rem 1rem;
  }

  .vmv-item {
    flex: 0 1 130px;
    min-width: 110px;
  }

  /* Nav mobile */
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(253, 252, 251, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 0.75rem 1rem;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Grid fallbacks */
  .cards-grid,
  .packages-grid,
  .testimonials-grid,
  .course-tiers,
  .tools-grid {
    grid-template-columns: 1fr;
  }

  .testimonial {
    flex: 0 0 100%;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .stats-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}
