/* ============================================
   VARIABLES — ECO-LUXURY THEME
============================================ */
:root {
  --lime: #84cc16;
  --lime-light: #a3e635;
  --lime-dark: #65a30d;
  --sage: #6b8e5a;
  --sage-light: #96b088;
  --forest: #2d4a2b;
  --cream: #fefce8;
  --cream-soft: #fef9c3;
  --paper: #fefdf7;
  --amber: #f59e0b;
  --ink: #1a1a1a;
  --ink-soft: #3d3d3d;
  --ink-muted: #6b6b6b;
  --white: #ffffff;
  --mist: #f7f7f2;

  --gradient-leaf: linear-gradient(135deg, #84cc16 0%, #65a30d 50%, #2d4a2b 100%);
  --gradient-fresh: linear-gradient(135deg, #a3e635 0%, #84cc16 100%);
  --gradient-sage: linear-gradient(135deg, #96b088 0%, #6b8e5a 100%);
  --gradient-earth: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);

  --sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --serif: 'Fraunces', Georgia, serif;

  --shadow-soft: 0 4px 20px rgba(45, 74, 43, 0.08);
  --shadow-md: 0 10px 40px rgba(45, 74, 43, 0.12);
  --shadow-lg: 0 20px 60px rgba(45, 74, 43, 0.16);
  --shadow-leaf: 0 10px 40px rgba(132, 204, 22, 0.35);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 100px;
}

/* ============================================
   RESET
============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* ============================================
   ORGANIC BACKGROUND
============================================ */
.organic-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: drift 25s ease-in-out infinite;
}

.blob-a {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--lime-light), transparent 70%);
  top: -100px; right: -100px;
  opacity: 0.25;
  animation-delay: 0s;
}

.blob-b {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--sage-light), transparent 70%);
  top: 40%; left: -150px;
  opacity: 0.18;
  animation-delay: -8s;
}

.blob-c {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--amber), transparent 70%);
  bottom: 10%; right: 20%;
  opacity: 0.12;
  animation-delay: -15s;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
}

.leaf-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(132, 204, 22, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(107, 142, 90, 0.05) 0%, transparent 50%);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

a { color: inherit; text-decoration: none; transition: color 0.25s; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ============================================
   NAVIGATION
============================================ */
.eco-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.eco-nav.scrolled {
  padding: 12px 0;
  background: rgba(254, 253, 247, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(45, 74, 43, 0.08);
  border-bottom: 1px solid rgba(132, 204, 22, 0.15);
}

.nav-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.eco-logo, .footer .eco-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--forest);
}

.logo-leaf {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gradient-fresh);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-leaf);
}

.logo-leaf svg { width: 22px; height: 22px; }

.logo-word { color: var(--forest); font-weight: 700; }

.nav-menu {
  display: flex;
  gap: 36px;
}

.nav-menu a {
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-fresh);
  transition: width 0.3s;
  border-radius: 2px;
}

.nav-menu a:hover { color: var(--lime-dark); }
.nav-menu a:hover::after { width: 100%; }

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--forest);
  color: white;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  white-space: nowrap;
}

.nav-pill:hover {
  background: var(--lime-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-leaf);
}

.pill-leaf { transition: transform 0.3s; }
.nav-pill:hover .pill-leaf { transform: rotate(20deg); }

.menu-btn {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.menu-btn span {
  width: 100%; height: 2px;
  background: var(--forest);
  transition: 0.3s;
  border-radius: 2px;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-eco {
  background: var(--gradient-leaf);
  color: white;
  box-shadow: var(--shadow-leaf);
  position: relative;
  overflow: hidden;
}

.btn-eco::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.btn-eco:hover::before { left: 100%; }

.btn-eco:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(132, 204, 22, 0.45);
}

.btn-arrow { transition: transform 0.3s; font-weight: 700; }
.btn-eco:hover .btn-arrow { transform: translateX(4px); }

.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}

.btn-outline:hover {
  background: var(--forest);
  color: white;
  transform: translateY(-2px);
}

.full-width { width: 100%; justify-content: center; }

/* ============================================
   HERO
============================================ */
.hero {
  padding: 140px 0 120px;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-earth);
}

.hero-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eco-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: white;
  border: 1px solid rgba(132, 204, 22, 0.3);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--lime-dark);
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
}

.leaf-icon { font-size: 16px; }

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  color: var(--forest);
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mini-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: white;
  border: 1px solid rgba(132, 204, 22, 0.2);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  box-shadow: var(--shadow-soft);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 520px;
}

.visual-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(132, 204, 22, 0.15);
  padding: 20px;
  animation: cardFloat 6s ease-in-out infinite;
}

.vc-main {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  animation-delay: 0s;
}

.vc-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.vc-emoji {
  width: 50px; height: 50px;
  background: var(--gradient-fresh);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.vc-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--ink-muted);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.vc-value {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}

.vc-bar {
  height: 8px;
  background: var(--mist);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}

.vc-fill {
  height: 100%;
  background: var(--gradient-fresh);
  border-radius: 8px;
  transition: width 2s ease-out;
}

.vc-note {
  font-size: 12px;
  color: var(--ink-muted);
}

.vc-small {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.vc-left {
  top: 10%; left: 0;
  animation-delay: -2s;
}

.vc-right {
  bottom: 20%; right: 0;
  animation-delay: -4s;
}

.vc-small .vc-emoji {
  width: 40px; height: 40px;
  font-size: 1.2rem;
}

.vc-small .vc-value {
  font-size: 1.4rem;
}

.vc-badge {
  bottom: 5%; left: 15%;
  padding: 16px 20px;
  text-align: center;
  background: var(--forest);
  color: white;
  animation-delay: -1s;
}

.star-row {
  color: var(--amber);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 4px;
}

.badge-text {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.vc-main {
  animation-name: cardFloatMain;
}

@keyframes cardFloatMain {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-12px); }
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  z-index: 1;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ============================================
   STATS STRIP
============================================ */
.stats-strip {
  padding: 80px 0;
  background: var(--paper);
  position: relative;
  z-index: 2;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat {
  text-align: center;
  position: relative;
  padding: 24px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid rgba(132, 204, 22, 0.15);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
}

.stat:hover {
  transform: translateY(-4px);
  border-color: var(--lime);
  box-shadow: var(--shadow-md);
}

.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  display: inline;
  background: var(--gradient-leaf);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-plus {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--lime-dark);
}

.stat-label {
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
}

/* ============================================
   SECTION HEADERS
============================================ */
section { padding: 100px 0; position: relative; z-index: 2; }

.section-top {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--lime-dark);
  text-transform: uppercase;
}

.kicker-dot {
  width: 8px; height: 8px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(132, 204, 22, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(132, 204, 22, 0); }
  100% { box-shadow: 0 0 0 0 rgba(132, 204, 22, 0); }
}

.section-top h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--forest);
}

.section-top p {
  font-size: 1.1rem;
  color: var(--ink-soft);
}

/* ============================================
   SERVICES
============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  padding: 32px;
  background: white;
  border: 1px solid rgba(132, 204, 22, 0.15);
  border-radius: var(--radius-md);
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
}

.svc-card.featured {
  background: var(--forest);
  color: white;
  border-color: var(--forest);
}

.svc-badge {
  position: absolute;
  top: 20px; right: 20px;
  padding: 4px 12px;
  background: var(--amber);
  color: var(--forest);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: var(--radius-pill);
}

.svc-icon {
  font-size: 2.5rem;
  width: 72px; height: 72px;
  background: var(--gradient-earth);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.4s;
  border: 1px solid rgba(132, 204, 22, 0.2);
}

.svc-card.featured .svc-icon {
  background: var(--gradient-fresh);
  border-color: transparent;
}

.svc-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--forest);
}

.svc-card.featured h3 { color: white; }

.svc-card > p {
  color: var(--ink-soft);
  margin-bottom: 20px;
  font-size: 0.95rem;
  flex: 1;
}

.svc-card.featured > p { color: rgba(255, 255, 255, 0.8); }

.svc-feat {
  margin-bottom: 24px;
}

.svc-feat li {
  padding: 5px 0 5px 24px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  position: relative;
}

.svc-card.featured .svc-feat li { color: rgba(255, 255, 255, 0.85); }

.svc-feat li::before {
  content: '🌱';
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

.svc-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--lime-dark);
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.svc-card.featured .svc-link { color: var(--lime-light); }

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--lime);
}

.svc-card:hover .svc-icon {
  transform: rotate(-5deg) scale(1.05);
}

.svc-card:hover .svc-link { gap: 10px; }

/* ============================================
   PROCESS
============================================ */
.process { background: var(--cream); }

.steps-track {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.step-line {
  position: absolute;
  left: 40px;
  top: 20px; bottom: 20px;
  width: 3px;
  background: linear-gradient(180deg, var(--lime), var(--sage));
  border-radius: 3px;
  opacity: 0.3;
}

.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 32px;
  position: relative;
}

.step:last-child { margin-bottom: 0; }

.step-circle {
  flex-shrink: 0;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--lime);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: var(--shadow-md);
  transition: all 0.4s;
  position: relative;
}

.step-circle span {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}

.step-icon {
  font-size: 0.8rem;
  margin-top: 2px;
}

.step-card {
  flex: 1;
  padding: 24px 28px;
  background: white;
  border: 1px solid rgba(132, 204, 22, 0.15);
  border-radius: var(--radius-md);
  transition: all 0.3s;
  box-shadow: var(--shadow-soft);
}

.step-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--forest);
}

.step-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.step:hover .step-circle {
  background: var(--gradient-fresh);
  transform: scale(1.05) rotate(5deg);
  border-color: transparent;
}

.step:hover .step-circle span { color: white; }

.step:hover .step-card {
  transform: translateX(8px);
  border-color: var(--lime);
  box-shadow: var(--shadow-md);
}

/* ============================================
   RESULTS
============================================ */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.result-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s;
  border: 1px solid rgba(132, 204, 22, 0.15);
}

.result-visual {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.rv-dark {
  background: linear-gradient(135deg, #3d3d3d, #1a1a1a, #6b6b6b);
}

.rv-light {
  background: linear-gradient(135deg, #a3e635, #84cc16, #65a30d);
}

.result-shape {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  opacity: 0.5;
  transition: transform 0.6s;
}

.rv-dark .result-shape { background: radial-gradient(circle, rgba(255,255,255,0.1), transparent); }
.rv-light .result-shape { background: radial-gradient(circle, rgba(255,255,255,0.3), transparent); }

.result-tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tag-before {
  background: rgba(0, 0, 0, 0.6);
  color: white;
}

.tag-after {
  background: rgba(255, 255, 255, 0.95);
  color: var(--lime-dark);
}

.result-info {
  padding: 20px;
}

.result-info h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--forest);
}

.result-info p {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.result-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--lime);
}

.result-card:hover .result-shape {
  transform: scale(1.2);
}

/* ============================================
   JOURNAL / ARTICLE
============================================ */
.journal {
  background: white;
  border-top: 1px solid rgba(132, 204, 22, 0.1);
  border-bottom: 1px solid rgba(132, 204, 22, 0.1);
}

.journal-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(132, 204, 22, 0.1);
}

.jh-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--gradient-earth);
  border: 1px solid rgba(132, 204, 22, 0.3);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--lime-dark);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.jh-pill span:nth-child(3) { color: var(--ink-muted); }

.journal-head h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--forest);
}

.jh-byline {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--ink-muted);
  font-size: 14px;
}

.dot { color: var(--lime); }

.journal-body {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.j-lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--forest);
  margin-bottom: 40px;
  padding: 24px;
  border-left: 4px solid var(--lime);
  background: var(--cream);
  border-radius: var(--radius-md);
  font-family: var(--serif);
  font-style: italic;
}

.journal-body h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 56px 0 20px;
  color: var(--forest);
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 14px;
}

.journal-body h2::after {
  content: '🌿';
  position: absolute;
  bottom: 0; left: 0;
  font-size: 1rem;
}

.journal-body h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 36px 0 14px;
  color: var(--forest);
}

.journal-body h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 24px 0 10px;
  color: var(--forest);
}

.journal-body p { margin-bottom: 20px; }

.journal-body ul, .journal-body ol {
  padding-left: 24px;
  margin-bottom: 24px;
  list-style: disc;
}

.journal-body ul li, .journal-body ol li {
  margin-bottom: 10px;
  padding-left: 4px;
}

.journal-body ul li::marker { color: var(--lime-dark); }

.journal-body a {
  color: var(--lime-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(132, 204, 22, 0.4);
  text-underline-offset: 4px;
  transition: all 0.25s;
}

.journal-body a:hover {
  color: var(--forest);
  text-decoration-color: var(--forest);
}

/* Callouts */
.callout {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-md);
  margin: 32px 0;
  align-items: flex-start;
  border: 1px solid;
}

.callout-green {
  background: var(--cream);
  border-color: rgba(132, 204, 22, 0.3);
}

.callout-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--gradient-fresh);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-leaf);
}

.callout-text strong {
  display: block;
  margin-bottom: 4px;
  color: var(--forest);
  font-size: 1.05rem;
}

.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.comp-col {
  padding: 28px;
  border-radius: var(--radius-md);
}

.comp-good {
  background: #f0fdf4;
  border: 1px solid #86efac;
}

.comp-bad {
  background: #fef2f2;
  border: 1px solid #fca5a5;
}

.comp-col h4 {
  margin-top: 0;
  margin-bottom: 16px;
}

.comp-good h4 { color: #166534; }
.comp-bad h4 { color: #991b1b; }

.comp-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comp-col ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.95rem;
}

.comp-good ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 900;
}

.comp-bad ul li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: 900;
}

/* Stats row */
.stats-box-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0;
}

.stats-box {
  padding: 28px;
  background: var(--cream);
  border: 1px solid rgba(132, 204, 22, 0.2);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.3s;
}

.stats-box:hover {
  transform: translateY(-4px);
  border-color: var(--lime);
  box-shadow: var(--shadow-md);
}

.big-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-leaf);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.box-label {
  font-size: 0.85rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Quote */
.quote-box {
  margin: 48px 0;
  padding: 40px;
  background: var(--forest);
  color: white;
  border-radius: var(--radius-md);
  text-align: center;
  position: relative;
}

.quote-box::before {
  content: '"';
  position: absolute;
  top: -10px; left: 30px;
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 1;
  color: var(--lime);
  opacity: 0.3;
}

.quote-box blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.quote-box cite {
  display: block;
  font-style: normal;
  color: var(--lime-light);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Checklist card */
.checklist-card {
  padding: 32px;
  background: var(--cream);
  border: 2px solid var(--lime);
  border-radius: var(--radius-md);
  margin: 36px 0;
}

.checklist-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.checklist-head span {
  width: 36px; height: 36px;
  background: var(--gradient-fresh);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
}

.checklist-head h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--forest);
  margin: 0;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 8px;
}

.check-list li {
  padding: 10px 14px;
  background: white;
  border: 1px solid rgba(132, 204, 22, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0;
}

.warning-box {
  padding: 24px;
  background: #fef2f2;
  border-left: 4px solid #ef4444;
  border-radius: var(--radius-md);
  margin: 32px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.warn-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: #dc2626;
}

.warn-text strong {
  display: block;
  color: #991b1b;
  margin-bottom: 4px;
}

.tip-box {
  padding: 24px;
  background: #ecfdf5;
  border-left: 4px solid var(--lime);
  border-radius: var(--radius-md);
  margin: 32px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.tip-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
}

.tip-text strong {
  display: block;
  color: #065f46;
  margin-bottom: 4px;
}

/* Price table */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(132, 204, 22, 0.15);
  font-size: 0.95rem;
  box-shadow: var(--shadow-soft);
}

.price-table thead {
  background: var(--forest);
  color: white;
}

.price-table th {
  padding: 16px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.price-table td {
  padding: 14px 18px;
  border-top: 1px solid rgba(132, 204, 22, 0.08);
  color: var(--ink-soft);
}

.price-table tbody tr:hover {
  background: var(--cream);
}

/* Feature card */
.feature-card {
  padding: 32px;
  background: var(--forest);
  color: white;
  border-radius: var(--radius-md);
  margin: 36px 0;
}

.feature-card h4 {
  color: var(--lime-light);
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
}

.feature-item {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Journal CTA */
.journal-cta {
  margin-top: 60px;
  padding: 48px;
  background: var(--gradient-leaf);
  border-radius: var(--radius-lg);
  text-align: center;
  color: white;
  box-shadow: var(--shadow-leaf);
  position: relative;
  overflow: hidden;
}

.journal-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1), transparent 50%);
  pointer-events: none;
}

.journal-cta h3 {
  color: white;
  font-family: var(--serif);
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 12px;
  position: relative;
}

.journal-cta p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 28px;
  font-size: 1.05rem;
  position: relative;
}

.journal-cta .btn {
  background: white;
  color: var(--forest);
  position: relative;
}

.journal-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

/* ============================================
   FAQ
============================================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid rgba(132, 204, 22, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: var(--shadow-soft);
}

.faq-item:hover {
  border-color: var(--lime-light);
}

.faq-item[open] {
  border-color: var(--lime);
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--forest);
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-toggle {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--lime-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  transition: all 0.3s;
  border: 1px solid rgba(132, 204, 22, 0.2);
}

.faq-item[open] .faq-toggle {
  background: var(--gradient-fresh);
  color: white;
  transform: rotate(45deg);
  border-color: transparent;
}

.faq-body {
  padding: 0 24px 22px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials {
  background: var(--cream);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  padding: 32px;
  background: white;
  border: 1px solid rgba(132, 204, 22, 0.15);
  border-radius: var(--radius-md);
  position: relative;
  transition: all 0.4s;
  box-shadow: var(--shadow-soft);
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 10px; right: 20px;
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
  background: var(--gradient-fresh);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.2;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--lime);
}

.testi-stars {
  color: var(--amber);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testi-text {
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 0.97rem;
}

.testi-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(132, 204, 22, 0.1);
}

.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-family: var(--serif);
  flex-shrink: 0;
}

.ta-1 { background: var(--gradient-leaf); }
.ta-2 { background: var(--gradient-sage); }
.ta-3 { background: linear-gradient(135deg, var(--amber), #f97316); }

.testi-name {
  font-weight: 700;
  color: var(--forest);
  font-size: 0.95rem;
}

.testi-loc {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-top: 2px;
}

/* ============================================
   CONTACT
============================================ */
.contact { background: white; }

.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(132, 204, 22, 0.15);
}

.contact-info {
  padding: 48px 40px;
  background: var(--forest);
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(132, 204, 22, 0.2), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(163, 230, 53, 0.15), transparent 50%);
  pointer-events: none;
}

.contact-info h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  margin-bottom: 32px;
  position: relative;
  color: white;
}

.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
}

.info-row:last-of-type { border-bottom: none; }

.info-emoji {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.info-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--lime-light);
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.info-value {
  font-size: 1rem;
  color: white;
  display: block;
  font-weight: 500;
}

.info-value:hover { color: var(--lime-light); }

.hours-list {
  margin-top: 6px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.92);
}

.contact-buttons {
  display: flex;
  gap: 10px;
  margin-top: 32px;
  flex-wrap: wrap;
  position: relative;
}

.contact-buttons .btn-eco {
  background: white;
  color: var(--forest);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.contact-buttons .btn-outline {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.contact-form {
  padding: 48px 40px;
  background: white;
}

.contact-form h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--forest);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--cream);
  border: 1.5px solid rgba(132, 204, 22, 0.15);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: all 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(132, 204, 22, 0.1);
  background: white;
}

.form-field textarea { resize: vertical; min-height: 110px; }

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2365a30d' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--forest);
  color: white;
  padding: 80px 0 30px;
  position: relative;
  z-index: 2;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-fresh);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer .eco-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer .logo-word { color: white; }
.footer .logo-leaf { background: var(--gradient-fresh); }

.brand-col p {
  color: rgba(255, 255, 255, 0.7);
  margin: 16px 0 24px;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 340px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  transition: all 0.3s;
  font-size: 0.85rem;
}

.social-row a:hover {
  background: var(--lime);
  border-color: transparent;
  transform: translateY(-3px);
  color: var(--forest);
}

.footer-col h4 {
  font-family: var(--serif);
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--lime-light);
  letter-spacing: 0.5px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a,
.footer-col ul li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover { color: var(--lime-light); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
}

/* ============================================
   ANIMATIONS
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 968px) {
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual { height: 400px; }

  .nav-menu, .nav-pill { display: none; }
  .menu-btn { display: flex; }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    padding: 24px;
    gap: 16px;
    border-top: 1px solid rgba(132, 204, 22, 0.1);
    box-shadow: var(--shadow-md);
  }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .results-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-shell { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  .comparison-table { grid-template-columns: 1fr; }
  .stats-box-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  section { padding: 70px 0; }

  .hero { padding: 120px 0 100px; }
  .hero-shell { padding: 0 20px; }

  .services-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }

  .step {
    flex-direction: column;
    gap: 16px;
  }
  .step-line { display: none; }
  .step-circle { width: 64px; height: 64px; }

  .contact-info, .contact-form { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  .stats-row { grid-template-columns: 1fr; }

  .vc-small { display: none; }
  .vc-main { width: 240px; }

  .journal-head h1 { font-size: 1.7rem; }
  .quote-box { padding: 28px 20px; }
  .journal-cta { padding: 32px 24px; }
}

/* Selection */
::selection {
  background: var(--lime);
  color: white;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb {
  background: var(--gradient-leaf);
  border-radius: 10px;
}