/* ============================================
   SpamJammer — Organic / Nature-Inspired Theme
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,400;1,9..144,500&family=Libre+Franklin:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  --forest:       #166534;
  --forest-dark:  #0F4D28;
  --forest-light: #1E7A3F;
  --ochre:        #B45309;
  --ochre-light:  #D97706;
  --cream:        #FEF3C7;
  --cream-light:  #FFFBEB;
  --cream-dark:   #FDE68A;
  --terracotta:   #C2410C;
  --sage:         #6B8E6B;
  --sage-light:   #8BAF8B;
  --sage-dark:    #4A6B4A;
  --bark:         #78350F;
  --bark-light:   #92400E;
  --parchment:    #FDF8F0;
  --earth:        #A16207;
  --moss:         #365314;
  --dawn-start:   #FEF3C7;
  --dawn-end:     #FECACA;
  --dusk-start:   #166534;
  --dusk-end:     #1E3A5F;
  --text-primary: #292524;
  --text-body:    #44403C;
  --text-muted:   #78716C;
  --text-on-dark: #FEF3C7;
  --white:        #FFFFFF;
  --shadow-warm:  0 4px 24px rgba(120, 53, 15, 0.10);
  --shadow-leaf:  0 8px 32px rgba(22, 101, 52, 0.12);
  --radius-organic: 24px;
  --radius-soft:    12px;
  --radius-pill:    999px;
  --font-serif:  'Fraunces', Georgia, serif;
  --font-sans:   'Libre Franklin', 'Segoe UI', sans-serif;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background-color: var(--parchment);
  line-height: 1.7;
  overflow-x: hidden;
  /* Paper texture via CSS */
  background-image:
    url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: var(--forest); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--ochre); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }

p { margin-bottom: 1rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Paper Texture Overlay --- */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 9999;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(120, 53, 15, 0.008) 2px,
      rgba(120, 53, 15, 0.008) 4px
    );
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107, 142, 107, 0.2);
  transition: box-shadow var(--transition);
}

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

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
}

.nav-logo svg {
  width: 36px;
  height: 36px;
}

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

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

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

.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--forest); font-weight: 600; }

.nav-cta {
  background: var(--forest);
  color: var(--cream) !important;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-cta:hover {
  background: var(--forest-dark);
  color: var(--cream) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(22, 101, 52, 0.25);
}

.nav-cta svg { width: 16px; height: 16px; }

/* 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(--forest);
  margin: 6px 0;
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: rgba(253, 248, 240, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    transform: translateY(-120%);
    transition: transform var(--transition);
    border-bottom: 1px solid rgba(107, 142, 107, 0.2);
  }
  .nav-links.open { transform: translateY(0); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--forest);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--forest-dark);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(22, 101, 52, 0.3);
}

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

.btn-warm {
  background: var(--ochre);
  color: var(--white);
}
.btn-warm:hover {
  background: var(--ochre-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(180, 83, 9, 0.3);
}

.btn svg { width: 18px; height: 18px; }

/* ============================================
   SECTION DIVIDERS — Organic SVG Waves
   ============================================ */
.wave-divider {
  width: 100%;
  display: block;
  line-height: 0;
  overflow: hidden;
}

.wave-divider svg {
  width: 100%;
  height: auto;
  display: block;
}

.wave-divider.flip {
  transform: scaleY(-1);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 140px 0 60px;
  position: relative;
  background: linear-gradient(160deg, var(--cream-light) 0%, var(--parchment) 40%, rgba(107, 142, 107, 0.08) 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22, 101, 52, 0.08);
  border: 1px solid rgba(22, 101, 52, 0.15);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 20px;
}

.hero-badge svg { width: 16px; height: 16px; }

.hero h1 {
  margin-bottom: 20px;
  color: var(--forest-dark);
}

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

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--forest);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Hero visual — organic illustration area */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.hero-shield {
  width: 320px;
  height: 360px;
  position: relative;
  z-index: 2;
}

/* Floating leaves */
.floating-leaf {
  position: absolute;
  opacity: 0.5;
  animation: leafFloat 8s ease-in-out infinite;
}

.floating-leaf:nth-child(2) { animation-delay: -2s; animation-duration: 10s; }
.floating-leaf:nth-child(3) { animation-delay: -4s; animation-duration: 7s; }
.floating-leaf:nth-child(4) { animation-delay: -6s; animation-duration: 9s; }
.floating-leaf:nth-child(5) { animation-delay: -1s; animation-duration: 11s; }

@keyframes leafFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(5deg); }
  50% { transform: translateY(-8px) rotate(-3deg); }
  75% { transform: translateY(-20px) rotate(4deg); }
}

/* Leaf fall animation */
.leaf-fall {
  position: fixed;
  top: -50px;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  animation: fallDown linear forwards;
}

@keyframes fallDown {
  0% {
    opacity: 0.6;
    transform: translateX(0) rotate(0deg);
  }
  25% {
    transform: translateX(30px) rotate(90deg);
  }
  50% {
    transform: translateX(-20px) rotate(180deg);
  }
  75% {
    transform: translateX(40px) rotate(270deg);
  }
  100% {
    opacity: 0;
    transform: translateX(10px) rotate(360deg) translateY(110vh);
  }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { min-height: 280px; }
  .hero-shield { width: 240px; height: 270px; }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
  padding: 80px 0;
  position: relative;
}

.section-green {
  background: linear-gradient(170deg, var(--forest) 0%, var(--forest-dark) 100%);
  color: var(--text-on-dark);
}

.section-green h2,
.section-green h3 { color: var(--cream); }
.section-green p { color: rgba(254, 243, 199, 0.85); }

.section-cream {
  background: var(--cream-light);
}

.section-sage {
  background: linear-gradient(170deg, rgba(107, 142, 107, 0.1) 0%, var(--parchment) 100%);
}

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

.section-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage);
  margin-bottom: 12px;
}

.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* ============================================
   FEATURE CARDS
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-organic);
  padding: 36px;
  border: 1px solid rgba(107, 142, 107, 0.15);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--forest));
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-leaf);
  border-color: rgba(107, 142, 107, 0.3);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(22, 101, 52, 0.08), rgba(107, 142, 107, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--forest);
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ============================================
   ORGANIC STATS
   ============================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 32px 20px;
  background: rgba(254, 243, 199, 0.08);
  border-radius: var(--radius-organic);
  border: 1px solid rgba(254, 243, 199, 0.15);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(254, 243, 199, 0.7);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-organic);
  padding: 36px;
  border: 1px solid rgba(107, 142, 107, 0.12);
  position: relative;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 28px;
  width: 40px;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 25c-3 0-5-2-5-5s3-10 10-15l2 3c-5 4-7 7-7 9 0 0 1-1 3-1 3 0 5 2 5 5s-2 4-4 4h-4zm17 0c-3 0-5-2-5-5s3-10 10-15l2 3c-5 4-7 7-7 9 0 0 1-1 3-1 3 0 5 2 5 5s-2 4-4 4h-4z' fill='%236B8E6B' opacity='0.15'/%3E%3C/svg%3E") no-repeat;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 20px;
  padding-top: 8px;
  line-height: 1.8;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--forest));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--cream);
  font-size: 1.1rem;
}

.testimonial-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.testimonial-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn { font-size: 1.1rem; padding: 16px 40px; }

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-organic);
  padding: 40px 32px;
  border: 1px solid rgba(107, 142, 107, 0.15);
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

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

.pricing-card.highlighted {
  border: 2px solid var(--forest);
  box-shadow: var(--shadow-leaf);
  transform: scale(1.03);
}

.pricing-card.highlighted:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--forest);
  color: var(--cream);
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-icon svg {
  width: 48px;
  height: 48px;
  color: var(--forest);
}

.pricing-tier {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage);
  margin-bottom: 4px;
}

.pricing-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.pricing-price {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid rgba(107, 142, 107, 0.08);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li svg {
  width: 18px;
  height: 18px;
  color: var(--forest);
  flex-shrink: 0;
  margin-top: 2px;
}

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

/* ============================================
   FAQ / ACCORDION
   ============================================ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-soft);
  margin-bottom: 12px;
  border: 1px solid rgba(107, 142, 107, 0.12);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: rgba(107, 142, 107, 0.25);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--forest); }

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--sage);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 28px 22px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(107, 142, 107, 0.25);
  border-radius: var(--radius-soft);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(22, 101, 52, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-organic);
  padding: 36px;
  border: 1px solid rgba(107, 142, 107, 0.12);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(107, 142, 107, 0.08);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(22, 101, 52, 0.08), rgba(107, 142, 107, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--forest);
}

.contact-info-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(170deg, var(--forest-dark) 0%, var(--moss) 100%);
  color: var(--text-on-dark);
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

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

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand p {
  color: rgba(254, 243, 199, 0.7);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 280px;
}

.footer h4 {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  color: rgba(254, 243, 199, 0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(254, 243, 199, 0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(254, 243, 199, 0.5);
  margin: 0;
}

/* Footer leaf decorations */
.footer-leaves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.footer-leaves svg {
  position: absolute;
  opacity: 0.05;
}

/* ============================================
   PAGE HEADERS (inner pages)
   ============================================ */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(160deg, var(--cream-light) 0%, var(--parchment) 40%, rgba(107, 142, 107, 0.08) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  color: var(--forest-dark);
  margin-bottom: 16px;
}

.page-header p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-40 { margin-top: 40px; }

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   FEATURES PAGE — detailed feature sections
   ============================================ */
.feature-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 48px 0;
}

.feature-detail.reverse {
  direction: rtl;
}
.feature-detail.reverse > * {
  direction: ltr;
}

.feature-detail-visual {
  background: linear-gradient(135deg, rgba(22, 101, 52, 0.05), rgba(107, 142, 107, 0.1));
  border-radius: var(--radius-organic);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.feature-detail-visual svg {
  width: 160px;
  height: 160px;
  color: var(--forest);
  opacity: 0.7;
}

.feature-detail-content h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.feature-detail-content p {
  font-size: 1.02rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.feature-detail-content ul {
  list-style: none;
  margin-top: 20px;
}

.feature-detail-content ul li {
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-detail-content ul li svg {
  width: 18px;
  height: 18px;
  color: var(--forest);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .feature-detail {
    grid-template-columns: 1fr;
  }
  .feature-detail.reverse { direction: ltr; }
}
