/* ============================================
   CULTIVATE — Global Styles
   ============================================ */

/* --- CSS Variables --- */
:root {
  --green: #2C835D;
  --green-dark: #236B4A;
  --green-darker: #1B5A3E;
  --green-light: #5CA37B;
  --green-lighter: #7CB592;
  --green-lightest: #95C4A8;
  --navy: #003049;
  --navy-light: #0A4D6E;
  --warm-gray: #E1DFD9;
  --warm-gray-light: #F4F3F1;
  --white: #FFFFFF;
  --text-body: #3A3A3A;
  --text-light: #666666;
  --text-muted: #999999;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Montserrat', Arial, Helvetica, sans-serif;

  --max-width: 1200px;
  --section-pad: 100px;
  --section-pad-mobile: 60px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul, ol { list-style: none; }

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

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

h1 { font-size: 3rem; margin-bottom: 1rem; }
h2 { font-size: 2.2rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; color: var(--text-light); line-height: 1.8; font-size: 1.05rem; }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.2rem; line-height: 1.8; color: var(--text-body); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(44, 131, 93, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-secondary:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-group { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 2rem; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 32px;
  width: auto;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.nav-links .btn::after { display: none; }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 6px 0;
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding-top: 72px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.25) translateX(10%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(0, 48, 73, 0.9) 0%,
    rgba(0, 48, 73, 0.75) 35%,
    rgba(0, 48, 73, 0.3) 70%,
    rgba(0, 48, 73, 0.15) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
}

.hero h1 {
  font-size: 3.2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.25;
  max-width: 48%;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero .lead {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 42%;
  color: rgba(255, 255, 255, 0.9);
}

.btn-secondary-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-secondary-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   PHOTO BANNER (Services / For Firms)
   ============================================ */
.photo-banner {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  position: relative;
}

.photo-banner img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* ============================================
   COMPARISON INTRO (For Firms — heading + photo)
   ============================================ */
.comparison-intro {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.comparison-intro-photo img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  object-fit: cover;
  height: 220px;
}

/* ============================================
   CREDIBILITY BAR
   ============================================ */
.credibility-bar {
  background: var(--warm-gray);
  padding: 32px 0;
}

.credibility-bar .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.credibility-narrative {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy);
  text-align: center;
  margin: 0;
  line-height: 1.6;
}

.credibility-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

.credibility-item {
  text-align: center;
  flex: 1;
  min-width: 150px;
  padding: 8px 12px;
}

.credibility-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.5;
  display: block;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--section-pad) 0;
}

.section-white { background: var(--white); }
.section-light { background: var(--warm-gray-light); }
.section-warm { background: var(--warm-gray); }
.section-navy { background: var(--navy); }
.section-green { background: var(--green); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.1rem; }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 12px;
}

/* ============================================
   PAIN POINTS
   ============================================ */
.pain-list {
  max-width: 700px;
  margin: 0 auto;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: 8px;
  border-left: 4px solid var(--green);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pain-item p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin: 0;
}

.pain-resolve {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 500;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 40px 32px;
  border-top: 4px solid var(--green);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.service-card p { font-size: 0.95rem; }

.service-card .best-for {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--warm-gray);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.service-card .best-for strong { color: var(--green); }

/* ============================================
   SERVICE DETAIL (Services page)
   ============================================ */
.service-detail {
  padding: 60px 0;
  border-bottom: 1px solid var(--warm-gray);
}

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

.service-detail h2 { margin-bottom: 8px; }

.service-detail .subtitle {
  font-style: italic;
  color: var(--green);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.service-detail ul {
  margin: 1.5rem 0;
}

.service-detail ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 1.05rem;
  color: var(--text-light);
}

.service-detail ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-light);
}

.service-detail .engagement-info {
  margin-top: 1.5rem;
  padding: 16px 20px;
  background: var(--warm-gray-light);
  border-radius: 6px;
  font-size: 0.95rem;
}

.service-detail .engagement-info strong { color: var(--navy); }

/* ============================================
   TESTIMONIAL CAROUSEL
   ============================================ */
.testimonial-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  min-height: 280px;
}

.testimonial-card {
  background: var(--warm-gray);
  border-radius: 12px;
  padding: 48px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.testimonial-card.visible-testimonial {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--green-light);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}

.testimonial-dots .dot.active {
  background: var(--green);
  border-color: var(--green);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--green-lightest);
  position: absolute;
  top: -10px;
  left: 24px;
  line-height: 1;
}

.testimonial-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--navy);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--green);
  font-size: 0.95rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 2.2rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto 2rem;
}

/* ============================================
   COMPARISON TABLE (For Firms)
   ============================================ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.comparison-table thead th {
  padding: 16px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table thead th:first-child {
  background: #F0F0F0;
  color: var(--text-muted);
  text-align: left;
}

.comparison-table thead th:last-child {
  background: var(--green);
  color: var(--white);
  text-align: left;
}

.comparison-table tbody td {
  padding: 16px 24px;
  font-size: 0.95rem;
  vertical-align: top;
  border-bottom: 1px solid var(--warm-gray);
}

.comparison-table tbody td:first-child {
  color: var(--text-muted);
  background: var(--white);
}

.comparison-table tbody td:last-child {
  color: var(--navy);
  font-weight: 600;
  background: var(--warm-gray-light);
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-steps {
  max-width: 700px;
  margin: 40px auto 0;
}

.process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.process-step .step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.process-step h4 {
  color: var(--navy);
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 700;
}

.process-step p {
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  padding-top: 72px;
  padding-bottom: 0;
}

.about-intro {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 48px;
  align-items: start;
}

.about-photo img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  object-fit: cover;
  object-position: center top;
}

.about-content {
  max-width: 700px;
}

.about-content .opening {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.credentials-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 2rem 0;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: var(--warm-gray-light);
  border-radius: 6px;
  font-size: 0.92rem;
  color: var(--text-body);
}

.credential-item::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   BOOKING PAGE
   ============================================ */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.booking-info h2 { margin-bottom: 1rem; }

.booking-details {
  margin: 2rem 0;
}

.booking-detail {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.booking-detail .label {
  font-weight: 700;
  color: var(--navy);
  min-width: 100px;
  font-size: 0.95rem;
}

.booking-detail .value {
  color: var(--text-light);
  font-size: 0.95rem;
}

.booking-embed {
  background: var(--warm-gray-light);
  border-radius: 12px;
  padding: 48px;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--warm-gray);
}

.booking-embed p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ============================================
   AUDIENCE CARDS (For Firms)
   ============================================ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.audience-card {
  padding: 32px 24px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border-bottom: 3px solid var(--green);
}

.audience-card h4 {
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1rem;
}

.audience-card p {
  font-size: 0.92rem;
  margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  padding: 60px 0 40px;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-brand .nav-logo {
  margin-bottom: 12px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-links h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--white); }

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 60px;
  }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }

  .hero { min-height: 70vh; padding-top: 100px; padding-bottom: 60px; }
  .hero h1 { font-size: 2.2rem; max-width: 100%; }
  .hero .lead { max-width: 100%; }
  .hero-overlay { background: linear-gradient(to bottom, rgba(0,48,73,0.85) 0%, rgba(0,48,73,0.7) 100%); }
  .photo-banner img { height: 260px; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--warm-gray);
  }
  .nav-toggle { display: block; }

  .credibility-bar .container {
    justify-content: center;
  }
  .credibility-item { flex: 0 0 45%; }

  .comparison-intro { grid-template-columns: 1fr; }
  .comparison-intro-photo { max-width: 280px; margin: 0 auto; }
  .comparison-intro .section-header { text-align: center !important; }
  .about-intro { grid-template-columns: 1fr; text-align: center; }
  .about-photo { max-width: 260px; margin: 0 auto; }
  .about-content .opening { font-size: 1.3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .credentials-list { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }

  .comparison-table { font-size: 0.85rem; }
  .comparison-table thead th,
  .comparison-table tbody td { padding: 12px 16px; }

  .footer-inner { flex-direction: column; }

  .testimonial-card { padding: 32px 24px; }
  .testimonial-card blockquote { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .btn-group { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .hero h1 { font-size: 2rem; }
  .credibility-item { flex: 0 0 100%; }
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--warm-gray-light) 0%, var(--warm-gray) 100%);
}

.page-header h1 { margin-bottom: 0.5rem; }
.page-header .lead { max-width: 600px; }

/* ============================================
   CENTERED CONTENT
   ============================================ */
.centered-content {
  text-align: center;
  max-width: 550px;
  margin: 0 auto;
}

/* ============================================
   CALENDLY PLACEHOLDER
   ============================================ */
.booking-embed svg {
  color: var(--green-light);
}

/* ============================================
   PROGRAMS / BROCHURES
   ============================================ */
.programs-group-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 20px;
  margin-top: 48px;
}

.programs-group-label:first-of-type {
  margin-top: 0;
}

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

.programs-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.program-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 3px solid var(--green-light);
}

.program-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.program-card-featured {
  border-top-color: var(--green);
}

.program-type {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 10px;
}

.program-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.35;
}

.program-card p {
  font-size: 0.92rem;
  flex-grow: 1;
}

.program-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 10px 20px;
  background: var(--warm-gray-light);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
  transition: background 0.3s, color 0.3s;
  align-self: flex-start;
}

.program-download:hover {
  background: var(--green);
  color: var(--white);
}

@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .programs-grid { grid-template-columns: 1fr; }
  .programs-grid-2 { grid-template-columns: 1fr; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
