/* ===== GREENOVATE — SHARED STYLESHEET ===== */

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

/* ===== CSS VARIABLES ===== */
:root {
  --sage: #4A7C59;
  --sage-dark: #3a6247;
  --sage-light: #6aA079;
  --brown: #8B6914;
  --brown-dark: #6d5210;
  --cream: #F5F0E8;
  --warm-gray: #E8DDD0;
  --dark: #2D2D2D;
  --medium: #5C5C5C;
  --light: #9a9a9a;
  --white: #FFFFFF;
  --border: #d4c9b8;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);

  --radius: 8px;
  --radius-lg: 16px;
  --max-w: 1380px;
  --transition: 0.25s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:focus, button:focus { outline: 2px solid var(--sage); outline-offset: 2px; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
button:focus { outline: 2px solid var(--sage); outline-offset: 2px; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.section {
  padding: 88px 0;
  position: relative;
}
.section:nth-child(even) { background: var(--cream); }
.section:nth-child(odd) { background: var(--white); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading); line-height: 1.25; color: var(--dark);
  letter-spacing: -0.5px;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; letter-spacing: -0.3px; }
p { color: var(--medium); line-height: 1.8; word-spacing: 0.05em; }
strong, b { font-weight: 700; }
em, i { font-style: italic; }

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center; margin-bottom: 56px;
  animation: fadeInUp 0.8s ease-out;
}
.section-header .eyebrow {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 16px;
  background: rgba(74,124,89,0.08); padding: 6px 16px; border-radius: 50px;
}
.section-header h2 { margin-bottom: 20px; }
.section-header p { max-width: 620px; margin: 0 auto; font-size: 1.05rem; line-height: 1.7; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-size: 0.95rem;
  font-weight: 600; font-family: var(--font-body);
  transition: all var(--transition);
  cursor: pointer; letter-spacing: 0.02em;
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-100%);
  transition: transform var(--transition);
}
.btn:hover::before { transform: translateX(100%); }
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn:active { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--sage), var(--sage-dark)); color: var(--white); }
.btn-primary:hover { background: linear-gradient(135deg, var(--sage-dark), var(--sage)); box-shadow: 0 8px 24px rgba(74,124,89,0.35); }
.btn-secondary { background: linear-gradient(135deg, var(--brown), var(--brown-dark)); color: var(--white); }
.btn-secondary:hover { background: linear-gradient(135deg, var(--brown-dark), var(--brown)); box-shadow: 0 8px 24px rgba(139,105,20,0.35); }
.btn-outline { background: transparent; color: var(--sage); border: 2px solid var(--sage); }
.btn-outline:hover { background: var(--sage); color: var(--white); box-shadow: 0 8px 24px rgba(74,124,89,0.25); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-sm { padding: 10px 22px; font-size: 0.875rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(212,201,184,0.4);
  transition: all var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.98);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--sage);
  text-decoration: none;
}
.nav-logo svg { width: 32px; height: 32px; }
.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  transform: none !important;
  transform-origin: center;
}
.nav-logo-img--footer { filter: brightness(0) invert(1) opacity(0.85); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; padding: 8px 14px; border-radius: var(--radius);
  color: var(--dark); transition: all var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 2px; background: var(--sage);
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--sage); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a svg { width: 14px; height: 14px; transition: transform 0.35s ease; }
.nav-dropdown:hover > a svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12); min-width: 240px;
  padding: 8px 8px 8px; padding-top: 16px;
  opacity: 0; pointer-events: none;
  transform: translateX(-50%) translateY(-8px); transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  border-radius: var(--radius); font-size: 0.875rem; color: var(--dark);
  transition: all var(--transition);
}
.dropdown-menu a:hover { background: var(--cream); color: var(--sage); transform: translateX(2px); }
.dropdown-menu a .icon { font-size: 1.1rem; }
.nav-cta { margin-left: 8px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
  width: 36px; height: 36px; justify-content: center; align-items: center;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--dark);
  border-radius: 2px; transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px; box-shadow: var(--shadow-lg);
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px; border-radius: var(--radius); font-weight: 500; font-size: 0.95rem;
  color: var(--dark); transition: background var(--transition), color var(--transition);
}
.mobile-menu a:hover { background: var(--cream); color: var(--sage); }
.mobile-menu .mobile-group-label {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--light); padding: 12px 16px 4px; margin-top: 8px;
}
.mobile-menu .mobile-cta { margin-top: 8px; }
.mobile-menu .btn { width: 100%; justify-content: center; }

/* Page offset for fixed navbar */
.page-content { padding-top: 72px; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: calc(100vh - 72px);
  display: flex; align-items: center;
  background: linear-gradient(135deg, #1a3d28 0%, #2d5a3d 40%, #4A7C59 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600'%3E%3Cellipse cx='600' cy='200' rx='300' ry='200' fill='rgba(255,255,255,0.03)'/%3E%3Cellipse cx='100' cy='400' rx='200' ry='150' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") no-repeat center/cover;
}
.hero-content {
  position: relative; z-index: 1; max-width: 680px;
  animation: fadeInUp 0.9s ease-out 0.2s both;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 50px; margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.hero h1 { color: var(--white); margin-bottom: 24px; line-height: 1.2; }
.hero h1 em { color: #a8d5b5; font-style: normal; font-weight: 700; }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 40px; max-width: 520px; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 20px; margin-top: 64px;
}
.hero-badge {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.75); font-size: 0.875rem;
}
.hero-badge svg { width: 18px; height: 18px; color: #a8d5b5; flex-shrink: 0; }
.hero-visual {
  position: absolute; right: 0; top: 0; bottom: 0; width: 42%;
  background: linear-gradient(135deg, rgba(74,124,89,0.2), rgba(26,61,40,0.6));
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.07;
  background-image: radial-gradient(circle, white 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 32px; transition: all 0.35s ease; position: relative; overflow: hidden;
  border-top: 5px solid transparent;
}
.service-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--svc-tint, rgba(74,124,89,0.04)) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--transition);
  pointer-events: none;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 52px var(--svc-shadow, rgba(74,124,89,0.18)); border-color: var(--border); }
.service-card:hover::after { opacity: 1; }

/* per-card colour tokens */
.svc-c1 { --svc-color:#2E7D52; --svc-tint:rgba(46,125,82,0.07); --svc-shadow:rgba(46,125,82,0.22); border-top-color:#2E7D52; }
.svc-c2 { --svc-color:#1565A8; --svc-tint:rgba(21,101,168,0.07); --svc-shadow:rgba(21,101,168,0.22); border-top-color:#1565A8; }
.svc-c3 { --svc-color:#C0521A; --svc-tint:rgba(192,82,26,0.07); --svc-shadow:rgba(192,82,26,0.22); border-top-color:#C0521A; }
.svc-c4 { --svc-color:#5E35B1; --svc-tint:rgba(94,53,177,0.07); --svc-shadow:rgba(94,53,177,0.22); border-top-color:#5E35B1; }
.svc-c5 { --svc-color:#00796B; --svc-tint:rgba(0,121,107,0.07); --svc-shadow:rgba(0,121,107,0.22); border-top-color:#00796B; }
.svc-c6 { --svc-color:#8B6914; --svc-tint:rgba(139,105,20,0.07); --svc-shadow:rgba(139,105,20,0.18); border-top-color:#8B6914; }

.service-icon {
  width: 60px; height: 60px;
  background: var(--svc-color, var(--sage));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
  transition: all var(--transition);
  box-shadow: 0 6px 18px var(--svc-shadow, rgba(74,124,89,0.25));
}
.service-icon svg { width: 30px; height: 30px; stroke: #fff; }
.service-card:hover .service-icon { transform: scale(1.12) rotateZ(-4deg); box-shadow: 0 10px 28px var(--svc-shadow, rgba(74,124,89,0.3)); }
.service-card h3 { margin-bottom: 12px; }
.service-card p { margin-bottom: 24px; font-size: 0.95rem; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--svc-color, var(--sage)); font-weight: 600; font-size: 0.9rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }
.service-link svg { width: 16px; height: 16px; stroke: var(--svc-color, var(--sage)); }

/* ===== STATS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item {
  padding: 48px 32px; text-align: center; position: relative;
  transition: background var(--transition);
}
.stat-item:hover { background: rgba(74,124,89,0.02); }
.stat-item + .stat-item::before {
  content: ''; position: absolute; left: 0; top: 25%; bottom: 25%;
  width: 1px; background: var(--border);
}
.stat-number {
  font-family: var(--font-heading); font-size: 3rem; font-weight: 700;
  color: var(--sage); line-height: 1; transition: transform var(--transition);
}
.stat-item:hover .stat-number { transform: scale(1.08); }
.stat-suffix { font-size: 1.8rem; }
.stat-label { font-size: 0.9rem; color: var(--medium); margin-top: 12px; font-weight: 500; letter-spacing: 0.3px; }

/* ===== WHY CHOOSE US ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 64px; }
.why-item { display: flex; gap: 20px; }
.why-icon {
  width: 52px; height: 52px; background: var(--sage); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: white;
}
.why-icon svg { width: 24px; height: 24px; stroke: white; }
.why-item h4 { margin-bottom: 8px; }
.why-item p { font-size: 0.95rem; }

/* ===== PROCESS STEPS ===== */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(90deg, var(--warm-gray), var(--sage), var(--warm-gray));
  z-index: 0;
  animation: gradientShift 3s ease-in-out infinite;
}
@keyframes gradientShift {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}
.process-step {
  text-align: center; position: relative; z-index: 1;
  transition: transform var(--transition);
}
.process-step:hover { transform: translateY(-4px); }
.step-num {
  width: 56px; height: 56px; background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700;
  border: 4px solid var(--cream);
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(74,124,89,0.2);
}
.process-step:hover .step-num { transform: scale(1.1); box-shadow: 0 6px 20px rgba(74,124,89,0.3); }
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: all 0.35s ease; position: relative;
}
.testimonial-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brown), var(--sage));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(74,124,89,0.12); }
.testimonial-card:hover::before { transform: scaleX(1); }
.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 16px; transition: transform var(--transition); }
.testimonial-card:hover .testimonial-stars { transform: scale(1.1); }
.testimonial-text { font-size: 0.95rem; color: var(--medium); margin-bottom: 24px; font-style: italic; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cream), var(--warm-gray));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.1rem; color: var(--sage); font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.95rem; color: var(--dark); }
.author-role { font-size: 0.8rem; color: var(--light); }

/* ===== BLOG CARDS ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border);
  background: var(--white); transition: all 0.35s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(74,124,89,0.15); }
.blog-cover {
  height: 200px; background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-cover {
  transform: scale(1.08);
}
.blog-cover::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.35));
}
.blog-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.blog-category {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sage); background: rgba(74,124,89,0.1); padding: 4px 10px; border-radius: 50px;
}
.blog-date { font-size: 0.8rem; color: var(--light); }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: 0.875rem; margin-bottom: 18px; }
.blog-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--sage); font-weight: 600; font-size: 0.875rem;
}
.blog-read-more:hover { gap: 10px; }

/* ===== RECYCLE SERVICE CARDS ===== */
/* ── Eco theme for the Recycling & Waste Compliance section ── */
.recycle-section {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 420px at 88% -10%, rgba(74,124,89,0.12), transparent 60%),
    radial-gradient(700px 380px at -5% 110%, rgba(139,105,20,0.08), transparent 60%),
    linear-gradient(165deg, #f6f2ea 0%, #ffffff 48%, #eef4ef 100%);
}
/* faint tiled leaf watermark */
.recycle-section::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='110' height='110' viewBox='0 0 110 110'%3E%3Cg fill='none' stroke='%234A7C59' stroke-width='2' opacity='0.5'%3E%3Cpath d='M55 22C55 22 30 44 30 70C30 85 41 96 55 96C69 96 80 85 80 70C80 44 55 22 55 22Z'/%3E%3Cline x1='55' y1='31' x2='55' y2='90'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 110px 110px; opacity: 0.05;
}
.recycle-section > .container { position: relative; z-index: 1; }
/* decorative divider under the heading */
.recycle-section .section-header h2::after {
  content: ""; display: block; width: 64px; height: 4px; margin: 16px auto 0;
  border-radius: 999px; background: linear-gradient(90deg, var(--sage), var(--brown, #8B6914));
}

.recycle-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.recycle-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d; will-change: transform;
}
.recycle-card:hover { box-shadow: var(--shadow-lg); }
.recycle-card:not(.tilting):hover { transform: translateY(-6px); }
.recycle-card.tilting { transition: transform 0.06s linear, box-shadow 0.3s ease; }
.recycle-img {
  position: relative; height: 240px; overflow: hidden;
}
.recycle-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s ease;
}
.recycle-card.tilting .recycle-img img { transform: scale(1.06); }

/* 3D mouse-tilt glossy highlight that follows the cursor */
.recycle-img::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(circle at var(--gx,50%) var(--gy,50%), rgba(255,255,255,0.4), rgba(255,255,255,0) 45%);
  opacity: 0; transition: opacity 0.25s ease;
}
.recycle-card.tilting .recycle-img::after { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .recycle-card.tilting { transform: none !important; }
  .recycle-img::after { display: none; }
}
.recycle-overlay {
  position: absolute; inset: 0;
  background: transparent;
  pointer-events: none;
}
.recycle-badge {
  display: none;
}
.recycle-label {
  font-size: 1.15rem; font-weight: 700; color: white;
  text-shadow: 0 2px 6px rgba(0,0,0,0.55); line-height: 1.3;
}
.recycle-body { padding: 20px; }
.recycle-body h4 { font-size: 1rem; margin-bottom: 8px; }
.recycle-body p { font-size: 0.85rem; color: var(--medium); line-height: 1.65; margin-bottom: 14px; }
.recycle-link { font-size: 0.85rem; font-weight: 600; color: var(--sage); text-decoration: none; transition: gap var(--transition); }
.recycle-link:hover { color: var(--sage-dark, #3a6347); }
@media (max-width: 900px) { .recycle-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .recycle-grid { grid-template-columns: 1fr; } }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, #1a3d28 0%, #2d5a3d 50%, var(--sage) 100%);
  padding: 88px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  animation: drift 20s linear infinite;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(2px, 2px); }
}
.cta-band .content {
  position: relative; z-index: 1;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 36px; line-height: 1.7; }
.cta-band-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: linear-gradient(135deg, #1a2e22 0%, #1f3a28 100%); color: rgba(255,255,255,0.75); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand .nav-logo { margin-bottom: 16px; color: var(--white); transition: transform var(--transition); }
.footer-brand .nav-logo:hover { transform: translateY(-2px); }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: all var(--transition);
}
.social-link:hover { background: var(--sage); border-color: var(--sage); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(74,124,89,0.25); }
.footer-col h4 { color: var(--white); font-size: 0.875rem; font-weight: 600; margin-bottom: 20px; letter-spacing: 0.05em; }
.footer-col ul li + li { margin-top: 10px; }
.footer-col ul a {
  font-size: 0.875rem; transition: all var(--transition);
  position: relative;
}
.footer-col ul a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0;
  height: 1px; background: var(--white); transition: width var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-col ul a:hover::after { width: 100%; }
.footer-contact-item { display: flex; gap: 10px; font-size: 0.875rem; margin-bottom: 12px; align-items: flex-start; }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--sage-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.8rem; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #1a3d28, var(--sage));
  padding: 88px 0 72px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
/* EPR page: photo-backed hero (image blurred so baked-in text is unreadable) */
.page-hero--epr { background: #14341f; }
.page-hero--epr::before {
  inset: -28px; z-index: 0;
  background: url("../images/epr-hero.jpg") center 42% / cover no-repeat;
  background-size: cover;
  filter: blur(14px) brightness(0.9) saturate(1.15);
  opacity: 1;
}
.page-hero--epr::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, rgba(13,30,22,0.82) 0%, rgba(20,52,34,0.70) 50%, rgba(26,61,40,0.80) 100%);
}
/* Environmental Compliance page: photo-backed hero */
.page-hero--compliance {
  background:
    linear-gradient(135deg, rgba(13,30,22,0.82) 0%, rgba(20,52,34,0.62) 45%, rgba(26,61,40,0.78) 100%),
    url("../images/compliance-hero.jpg") center 55% / cover no-repeat;
}
.page-hero--compliance::before { opacity: 0.4; }
/* ESG page: photo-backed hero */
.page-hero--esg {
  background:
    linear-gradient(135deg, rgba(13,30,22,0.84) 0%, rgba(20,52,34,0.66) 45%, rgba(26,61,40,0.80) 100%),
    url("../images/esg-hero.jpg") center 45% / cover no-repeat;
}
.page-hero--esg::before { opacity: 0.4; }
/* Waste Management page: photo-backed hero */
.page-hero--waste {
  background:
    linear-gradient(135deg, rgba(13,30,22,0.86) 0%, rgba(20,52,34,0.70) 45%, rgba(26,61,40,0.82) 100%),
    url("../images/waste-hero.jpg") center 50% / cover no-repeat;
}
.page-hero--waste::before { opacity: 0.4; }
/* Sustainability page: photo-backed hero */
.page-hero--sustainability {
  background:
    linear-gradient(135deg, rgba(13,30,22,0.82) 0%, rgba(20,52,34,0.60) 45%, rgba(26,61,40,0.78) 100%),
    url("../images/sustainability-hero.jpg") center 40% / cover no-repeat;
}
.page-hero--sustainability::before { opacity: 0.4; }
/* About page: photo-backed hero */
.page-hero--about {
  background:
    linear-gradient(135deg, rgba(13,30,22,0.84) 0%, rgba(20,52,34,0.64) 45%, rgba(26,61,40,0.80) 100%),
    url("../images/about-hero.jpg") center 50% / cover no-repeat;
}
.page-hero--about::before { opacity: 0.4; }
.page-hero .content {
  position: relative; z-index: 1;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}
.page-hero .eyebrow {
  display: inline-block; color: #a8d5b5; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--cream); padding: 12px 0; border-bottom: 1px solid var(--border);
}
.breadcrumb nav { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; }
.breadcrumb a { color: var(--sage); }
.breadcrumb span { color: var(--light); }

/* ===== CARD GRID ===== */
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); }

/* ===== BADGE ===== */
.badge {
  display: inline-flex; align-items: center; padding: 4px 12px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
}
.badge-green { background: rgba(74,124,89,0.12); color: var(--sage); }
.badge-brown { background: rgba(139,105,20,0.12); color: var(--brown); }

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

/* Split hero + form (Book a Free Consultation) */
.consult-split {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.consult-panel {
  background: linear-gradient(160deg, var(--sage), var(--sage-dark));
  color: var(--white); padding: 48px 44px;
  display: flex; flex-direction: column; gap: 28px; position: relative; overflow: hidden;
}
.consult-panel::after {
  content: ""; position: absolute; right: -60px; bottom: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,255,255,0.06); pointer-events: none;
}
.consult-panel > * { position: relative; z-index: 1; }
.consult-panel .eyebrow { color: rgba(255,255,255,0.85); }
.consult-panel h2 { color: var(--white); margin-bottom: 10px; }
.consult-panel .consult-intro { color: rgba(255,255,255,0.92); font-size: 0.98rem; line-height: 1.6; }
.consult-benefits { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 0; padding: 0; }
.consult-benefits li { display: flex; gap: 12px; align-items: center; font-size: 0.95rem; color: rgba(255,255,255,0.95); }
.consult-check {
  width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%;
  background: rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center;
}
.consult-check svg { width: 14px; height: 14px; stroke: var(--white); }
.consult-quote {
  border-left: 3px solid rgba(255,255,255,0.4); padding-left: 16px; margin-top: auto;
  font-size: 0.92rem; line-height: 1.6; color: rgba(255,255,255,0.92); font-style: italic;
}
.consult-quote cite { display: block; margin-top: 8px; font-style: normal; font-weight: 600; font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.consult-contact { display: flex; flex-direction: column; gap: 10px; padding-top: 4px; }
.consult-contact a {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--white); font-size: 0.9rem; font-weight: 500; text-decoration: none;
}
.consult-contact a:hover { text-decoration: underline; }
.consult-contact svg { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.85; }
.consult-form-side { padding: 48px 44px; }
@media (max-width: 860px) {
  .consult-split { grid-template-columns: 1fr; }
  .consult-panel, .consult-form-side { padding: 36px 28px; }
  .consult-quote { margin-top: 8px; }
}

.form-group { margin-bottom: 24px; position: relative; }
.form-group label {
  display: block; font-size: 0.875rem; font-weight: 600; color: var(--dark); margin-bottom: 8px;
  transition: color var(--transition);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--dark); background: var(--white);
  transition: all var(--transition);
  outline: none;
}
.form-group input:hover, .form-group textarea:hover, .form-group select:hover {
  border-color: var(--warm-gray);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--sage); box-shadow: 0 0 0 4px rgba(74,124,89,0.15); background: #fafaf9;
}
.form-group input:focus + label, .form-group textarea:focus + label {
  color: var(--sage);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start; padding: 20px;
  border-radius: var(--radius); background: var(--cream); margin-bottom: 16px;
}
.contact-info-icon {
  width: 44px; height: 44px; background: var(--sage); color: var(--white);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.2rem;
}
.contact-info-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 0.9rem; color: var(--medium); }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 16px;
  overflow: hidden; transition: all var(--transition);
  background: var(--white);
}
.faq-item:hover { box-shadow: var(--shadow-sm); border-color: var(--warm-gray); }
.faq-item.open { box-shadow: 0 8px 24px rgba(74,124,89,0.1); border-color: var(--sage); }
.faq-item.open::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--sage), var(--sage-light));
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 0.95rem; color: var(--dark);
  background: var(--white); transition: all var(--transition);
  position: relative;
}
.faq-question:hover { background: rgba(74,124,89,0.02); color: var(--sage); }
.faq-item.open .faq-question { background: rgba(74,124,89,0.05); color: var(--sage); }
.faq-chevron {
  width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.35s ease; color: var(--light);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--sage); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.35s ease; background: rgba(74,124,89,0.02); }
.faq-item.open .faq-answer { padding: 24px; max-height: 600px; }
.faq-answer p { font-size: 0.95rem; line-height: 1.7; }


/* ===== SERVICE DETAIL ===== */
.service-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 64px; align-items: start; }
.service-detail-content h2 { margin-bottom: 16px; }
.service-detail-content p { margin-bottom: 20px; }
.service-sidebar { position: sticky; top: 96px; align-self: start; }
.feature-list { margin: 24px 0; }
.feature-list li {
  display: flex; gap: 12px; align-items: flex-start; padding: 10px 0;
  border-bottom: 1px solid var(--warm-gray); font-size: 0.95rem;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '✓'; width: 22px; height: 22px; background: var(--sage); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

/* ===== SERVICE PAGE PROCESS FLOW ===== */
.svc-flow {
  position: relative;
  padding: 8px 0;
  margin: 8px 0 24px;
}
.svc-flow::before {
  content: '';
  position: absolute;
  left: 19px; top: 22px; bottom: 22px;
  width: 3px; border-radius: 2px;
  background: linear-gradient(to bottom,#3B82C4,#2BA89A,#4A7C59,#7C5CC4,#D4912B,#2B9DC4,#C44D7B,#4F63C4,#8B6914,#2BA89A);
  pointer-events: none;
}
.svc-flow-item {
  display: flex; gap: 18px; align-items: flex-start; margin-bottom: 14px;
}
.svc-flow-item:last-child { margin-bottom: 0; }
.svc-flow-num {
  position: relative; z-index: 1; flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 50%;
  color: #fff; font-weight: 700; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.svc-flow-box {
  flex: 1; border-radius: 10px; padding: 14px 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.svc-flow-box strong { display: block; font-size: 0.92rem; font-weight: 700; margin-bottom: 3px; }
.svc-flow-box span { font-size: 0.85rem; color: var(--medium); line-height: 1.55; display: block; }
/* Per-step colors (1–10) */
.svc-flow-item:nth-child(1)  .svc-flow-num { background:linear-gradient(135deg,#3B82C4,#2C6299); box-shadow:0 4px 10px rgba(59,130,196,.35); }
.svc-flow-item:nth-child(1)  .svc-flow-box { background:#EAF2FB; border:1px solid #D2E3F6; border-left:4px solid #3B82C4; }
.svc-flow-item:nth-child(1)  .svc-flow-box strong { color:#235A8C; }
.svc-flow-item:nth-child(2)  .svc-flow-num { background:linear-gradient(135deg,#2BA89A,#1F8073); box-shadow:0 4px 10px rgba(43,168,154,.35); }
.svc-flow-item:nth-child(2)  .svc-flow-box { background:#E7F5F2; border:1px solid #CDEBE5; border-left:4px solid #2BA89A; }
.svc-flow-item:nth-child(2)  .svc-flow-box strong { color:#1E7468; }
.svc-flow-item:nth-child(3)  .svc-flow-num { background:linear-gradient(135deg,#4A7C59,#3A6247); box-shadow:0 4px 10px rgba(74,124,89,.35); }
.svc-flow-item:nth-child(3)  .svc-flow-box { background:#EAF4EC; border:1px solid #D4E8D8; border-left:4px solid #4A7C59; }
.svc-flow-item:nth-child(3)  .svc-flow-box strong { color:#356046; }
.svc-flow-item:nth-child(4)  .svc-flow-num { background:linear-gradient(135deg,#7C5CC4,#5E44A0); box-shadow:0 4px 10px rgba(124,92,196,.35); }
.svc-flow-item:nth-child(4)  .svc-flow-box { background:#F0ECFA; border:1px solid #E0D7F4; border-left:4px solid #7C5CC4; }
.svc-flow-item:nth-child(4)  .svc-flow-box strong { color:#4E3A86; }
.svc-flow-item:nth-child(5)  .svc-flow-num { background:linear-gradient(135deg,#D4912B,#A86F10); box-shadow:0 4px 10px rgba(212,145,43,.35); }
.svc-flow-item:nth-child(5)  .svc-flow-box { background:#F9F1E1; border:1px solid #EEDFC0; border-left:4px solid #D4912B; }
.svc-flow-item:nth-child(5)  .svc-flow-box strong { color:#8B6914; }
.svc-flow-item:nth-child(6)  .svc-flow-num { background:linear-gradient(135deg,#2B9DC4,#1F7A99); box-shadow:0 4px 10px rgba(43,157,196,.35); }
.svc-flow-item:nth-child(6)  .svc-flow-box { background:#E6F4FA; border:1px solid #CCE7F2; border-left:4px solid #2B9DC4; }
.svc-flow-item:nth-child(6)  .svc-flow-box strong { color:#1F7A99; }
.svc-flow-item:nth-child(7)  .svc-flow-num { background:linear-gradient(135deg,#C44D7B,#9C3A60); box-shadow:0 4px 10px rgba(196,77,123,.35); }
.svc-flow-item:nth-child(7)  .svc-flow-box { background:#FBEAF1; border:1px solid #F3D4E2; border-left:4px solid #C44D7B; }
.svc-flow-item:nth-child(7)  .svc-flow-box strong { color:#93375B; }
.svc-flow-item:nth-child(8)  .svc-flow-num { background:linear-gradient(135deg,#4F63C4,#3A4B9C); box-shadow:0 4px 10px rgba(79,99,196,.35); }
.svc-flow-item:nth-child(8)  .svc-flow-box { background:#ECEFFB; border:1px solid #D8DEF6; border-left:4px solid #4F63C4; }
.svc-flow-item:nth-child(8)  .svc-flow-box strong { color:#34448C; }
.svc-flow-item:nth-child(9)  .svc-flow-num { background:linear-gradient(135deg,#8B6914,#6e520f); box-shadow:0 4px 10px rgba(139,105,20,.30); }
.svc-flow-item:nth-child(9)  .svc-flow-box { background:#F5EFE2; border:1px solid #E8DCC2; border-left:4px solid #8B6914; }
.svc-flow-item:nth-child(9)  .svc-flow-box strong { color:#6E520F; }
.svc-flow-item:nth-child(10) .svc-flow-num { background:linear-gradient(135deg,#2BA89A,#1F8073); box-shadow:0 4px 10px rgba(43,168,154,.35); }
.svc-flow-item:nth-child(10) .svc-flow-box { background:#E7F5F2; border:1px solid #CDEBE5; border-left:4px solid #2BA89A; }
.svc-flow-item:nth-child(10) .svc-flow-box strong { color:#1E7468; }
.service-sidebar .card { position: relative; }
.service-sidebar h4 { margin-bottom: 16px; }
.service-sidebar ul li {
  padding: 8px 0; border-bottom: 1px solid var(--warm-gray); font-size: 0.9rem;
}
.service-sidebar ul li:last-child { border-bottom: none; }
.service-sidebar ul li a { color: var(--medium); transition: color var(--transition); }
.service-sidebar ul li a:hover, .service-sidebar ul li a.active { color: var(--sage); font-weight: 500; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* Fade-in animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.fade-in-up { animation: fadeInUp 0.8s ease-out forwards; }
.fade-in-scale { animation: fadeInScale 0.6s ease-out forwards; }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-sage { color: var(--sage); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }

/* ===== DIVIDER ===== */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ===== CLIENT LOGOS COLORIZED ===== */
.logo-track-wrapper {
  overflow: visible;
  width: 100%;
  display: flex;
  justify-content: center;
}
.logo-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  padding: 20px;
}

.logo-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  height: 130px !important;
  border-radius: var(--radius-lg);
  text-align: center;
  padding: 15px;
  cursor: pointer;
  visibility: visible !important;
  opacity: 1 !important;
  gap: 8px;
  background: transparent;
}

.logo-item img {
  max-width: 100px;
  max-height: 80px;
  object-fit: contain;
  will-change: transform;
}

.logo-name {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--dark);
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .hero-visual { display: none; }
  h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
  h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .service-card { padding: 24px; }
  .section-header { margin-bottom: 40px; }
  h1 { font-size: clamp(1.6rem, 5vw, 2.4rem); }
  h2 { font-size: clamp(1.3rem, 3.5vw, 1.8rem); }
  .stats-grid { gap: 16px 0; }
  .testimonial-card { padding: 24px; }
  .blog-cover { height: 160px; }
}

@media (max-width: 580px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  h1 { font-size: clamp(1.4rem, 6vw, 2rem); }
  h3 { font-size: clamp(1rem, 2.5vw, 1.2rem); }
  .btn { padding: 12px 24px; font-size: 0.875rem; }
  .hero-badge { font-size: 0.75rem; }
  .section { padding: 40px 0; }
  .recycle-grid { grid-template-columns: 1fr; }
  .logo-track { gap: 16px; padding: 12px; }
  .footer-brand p { font-size: 0.8rem; }
}

/* ===== NATURE ANIMATIONS ===== */

/* Falling leaves container */
.nature-scene {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
}

/* Individual leaf */
.leaf-fall {
  position: absolute; top: -80px;
  width: 18px; height: 18px;
  opacity: 0;
  animation: leafDrop linear infinite;
  transform-origin: 50% 50%;
}
.leaf-fall svg { width: 100%; height: 100%; }

@keyframes leafDrop {
  0%   { transform: translateY(0)    rotate(0deg)   translateX(0);    opacity: 0;   }
  5%   { opacity: 0.85; }
  25%  { transform: translateY(25vh) rotate(80deg)  translateX(30px); }
  50%  { transform: translateY(50vh) rotate(170deg) translateX(-25px);}
  75%  { transform: translateY(75vh) rotate(260deg) translateX(40px); }
  95%  { opacity: 0.6; }
  100% { transform: translateY(110vh) rotate(360deg) translateX(10px); opacity: 0; }
}

/* Floating particles */
.nature-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(168, 213, 181, 0.35);
  animation: particleRise linear infinite;
  pointer-events: none;
}
@keyframes particleRise {
  0%   { transform: translateY(0) scale(1);   opacity: 0; }
  10%  { opacity: 1; }
  80%  { opacity: 0.6; }
  100% { transform: translateY(-90vh) scale(0.4); opacity: 0; }
}

/* Firefly twinkle */
.firefly {
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #c8f0d0;
  box-shadow: 0 0 8px 3px rgba(168,213,181,0.8);
  animation: fireflyFloat ease-in-out infinite;
  pointer-events: none;
}
@keyframes fireflyFloat {
  0%, 100% { transform: translate(0,0) scale(1);    opacity: 0; }
  20%       { opacity: 1; }
  50%       { transform: translate(var(--fx,20px), var(--fy,-30px)) scale(1.3); opacity: 0.9; }
  80%       { opacity: 0.4; }
}

/* Hero SVG wave bottom */
.hero-wave {
  position: absolute; bottom: -2px; left: 0; right: 0;
  line-height: 0; z-index: 2;
}
.hero-wave svg { display: block; width: 100%; }

/* Page-hero wave */
.page-hero { position: relative; }
.page-hero-wave {
  position: absolute; bottom: -2px; left: 0; right: 0;
  line-height: 0; z-index: 2;
}
.page-hero-wave svg { display: block; width: 100%; }

/* Animated wave path */
@keyframes waveShift {
  0%   { d: path("M0,32 C200,64 400,0 600,32 C800,64 1000,0 1200,32 C1400,64 1600,0 1800,32 L1800,80 L0,80 Z"); }
  50%  { d: path("M0,48 C200,16 400,64 600,48 C800,16 1000,64 1200,48 C1400,16 1600,64 1800,48 L1800,80 L0,80 Z"); }
  100% { d: path("M0,32 C200,64 400,0 600,32 C800,64 1000,0 1200,32 C1400,64 1600,0 1800,32 L1800,80 L0,80 Z"); }
}
.wave-path-1 { animation: waveShift 8s ease-in-out infinite; }
.wave-path-2 { animation: waveShift 10s ease-in-out infinite reverse; opacity: 0.5; }

/* Tree silhouette bottom of hero */
.hero-trees {
  position: absolute; bottom: 60px; left: 0; right: 0;
  z-index: 1; pointer-events: none; opacity: 0.12;
}

/* ===== LOGO MARQUEE ===== */
.logo-track-wrapper {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, white 12%, white 88%, transparent);
  mask: linear-gradient(90deg, transparent, white 12%, white 88%, transparent);
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.logo-track:hover { animation-play-state: paused; }
.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 36px;
  border-right: 1px solid var(--border);
  min-width: 160px;
  height: 80px;
}
.logo-item img {
  max-height: 48px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0%) opacity(1);
  transition: filter 0.3s ease;
}
.logo-item:hover img { filter: grayscale(0%) opacity(1); }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== ENHANCED REVEAL ANIMATIONS ===== */
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-scale { opacity: 0; transform: scale(0.9);         transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-left.visible, .reveal-right.visible, .reveal-scale.visible { opacity: 1; transform: none; }

/* ===== FLOATING ANIMATION (hero visual) ===== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}
.float-anim { animation: float 6s ease-in-out infinite; }

/* ===== SHIMMER ON STAT NUMBERS ===== */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.stat-number {
  background: linear-gradient(90deg, var(--sage) 25%, #a8d5b5 50%, var(--sage) 75%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ===== PULSE CTA BUTTON ===== */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(139,105,20,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(139,105,20,0); }
  100% { box-shadow: 0 0 0 0 rgba(139,105,20,0); }
}
.btn-secondary { animation: pulse-ring 2.5s ease-out infinite; }
.btn-secondary:hover { animation: none; }

/* ===== HERO CONTENT ENTRANCE ===== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: fadeSlideUp 1s ease both; }
.hero-eyebrow  { animation: fadeSlideUp 0.8s 0.1s ease both; }
.hero h1       { animation: fadeSlideUp 0.9s 0.2s ease both; }
.hero p        { animation: fadeSlideUp 0.9s 0.35s ease both; }
.hero-actions  { animation: fadeSlideUp 0.9s 0.5s ease both; }
.hero-badges   { animation: fadeSlideUp 0.9s 0.65s ease both; }

/* ===== CARD BORDER GLOW on hover ===== */
.service-card:hover { box-shadow: 0 8px 32px rgba(74,124,89,0.18); }
.testimonial-card:hover { box-shadow: 0 6px 24px rgba(74,124,89,0.12); transform: translateY(-4px); transition: all 0.3s ease; }

/* ===== PROCESS STEP NUMBER SPIN ===== */
.process-step:hover .step-num {
  transform: rotate(360deg) scale(1.1);
  transition: transform 0.6s cubic-bezier(0.34,1.56,0.64,1);
}

/* ===== TYPING CURSOR on hero eyebrow ===== */
.hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 1em;
  background: rgba(255,255,255,0.7);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

@media (max-width: 768px) {
  .logo-item { min-width: 120px; padding: 12px 20px; }
}

/* ================================================================
   ENHANCED VISUAL LAYER — appended by frontend upgrade
   ================================================================ */

/* ─── Scroll progress bar ────────────────────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--sage) 0%, #a8d5b5 50%, var(--brown) 100%);
  z-index: 9999;
  box-shadow: 0 0 12px rgba(74,124,89,0.55), 0 0 24px rgba(74,124,89,0.25);
  transition: width 0.08s linear;
  border-radius: 0 2px 2px 0;
}

/* ─── Hero ambient orbs ──────────────────────────────────────── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106,160,121,0.2) 0%, rgba(74,124,89,0.08) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: heroOrbFloat 11s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes heroOrbFloat {
  0%,100% { transform: translate(0,0) scale(1);       opacity: 0.65; }
  33%      { transform: translate(-20px,-28px) scale(1.1); opacity: 1;    }
  66%      { transform: translate(16px, 14px) scale(0.92); opacity: 0.5;  }
}

/* ─── Card spotlight ─────────────────────────────────────────── */
.card-spotlight {
  position: absolute;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(74,124,89,0.1) 0%, transparent 65%);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
/* ensure spotlight host has stacking context */
.service-card,
.testimonial-card,
.blog-card    { overflow: hidden; }

/* ─── Process timeline animated line ────────────────────────── */
.process-line-anim {
  position: absolute;
  top: 28px; left: 10%;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, transparent, var(--sage), var(--sage-light), var(--sage), transparent);
  z-index: 0;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(74,124,89,0.4);
}

/* ─── Button click ripple ─────────────────────────────────────  */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  transform: scale(0);
  animation: rippleExpand 0.65s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  pointer-events: none;
}
@keyframes rippleExpand {
  to { transform: scale(1); opacity: 0; }
}

/* ─── Page load fade ─────────────────────────────────────────── */
.page-content {
  animation: pageIn 0.45s ease-out both;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0);   }
}

/* ─── Service icon enhanced wiggle ──────────────────────────── */
@keyframes iconWiggle {
  0%,100% { transform: scale(1.15) rotateZ(-6deg); }
  50%      { transform: scale(1.22) rotateZ(6deg);  }
}
.service-card:hover .service-icon { animation: iconWiggle 0.7s ease-in-out; }

/* ─── Blog cover zoom on card hover ─────────────────────────── */
.blog-cover { transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94); }
.blog-card:hover .blog-cover { transform: scale(1.07); }

/* ─── Stat item hover lift ───────────────────────────────────── */
.stat-item { transition: transform 0.3s ease; }
.stat-item:hover { transform: translateY(-5px); }

/* ─── Why-item: ensure spotlight can be injected ────────────── */
.why-item { position: relative; overflow: hidden; }

/* ─── Active nav link subtle background ─────────────────────── */
.nav-links a.active { background: rgba(74,124,89,0.07); }

/* ─── Hero eyebrow glow ring ─────────────────────────────────── */
@keyframes eyebrowGlow {
  0%,100% { box-shadow: 0 0 0 0  rgba(255,255,255,0.12); }
  50%      { box-shadow: 0 0 0 8px rgba(255,255,255,0);   }
}
.hero-eyebrow { animation: eyebrowGlow 3.5s ease-in-out infinite; }

/* ─── Footer link hover arrow ───────────────────────────────── */
.footer-col ul a::before {
  content: '→';
  margin-right: 0;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.25s ease;
  display: inline-block;
}
.footer-col ul a:hover::before {
  opacity: 1;
  transform: translateX(0);
  margin-right: 6px;
}

/* ─── Hero visual grid drift ─────────────────────────────────── */
.hero-visual::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  animation: gridDrift 30s linear infinite;
  pointer-events: none;
}
@keyframes gridDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 44px 44px; }
}

/* ─── Testimonial card quote accent ─────────────────────────── */
.testimonial-card::after {
  content: '\201C';
  position: absolute;
  right: 20px; top: 12px;
  font-family: var(--font-heading);
  font-size: 5rem; line-height: 1;
  color: rgba(74,124,89,0.07);
  pointer-events: none;
  z-index: 0;
}

/* ─── CTA band particle overlay enhancement ─────────────────── */
.cta-band::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(106,160,121,0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: ctaGlow 6s ease-in-out infinite;
}
@keyframes ctaGlow {
  0%,100% { opacity: 0.7; transform: scale(1);    }
  50%      { opacity: 1;   transform: scale(1.05); }
}

/* ─── Section divider wave accent ───────────────────────────── */
.section::after {
  content: none; /* no default — opt-in */
}

/* ─── Leaf wobble variable support ──────────────────────────── */
@keyframes leafDrop {
  0%   { transform: translateY(0)    rotate(0deg)   translateX(0);                    opacity: 0;   }
  5%   { opacity: 0.85; }
  25%  { transform: translateY(25vh) rotate(80deg)  translateX(var(--leaf-wobble,30px)); }
  50%  { transform: translateY(50vh) rotate(175deg) translateX(calc(var(--leaf-wobble,-25px) * -0.5)); }
  75%  { transform: translateY(75vh) rotate(265deg) translateX(var(--leaf-wobble,40px)); }
  95%  { opacity: 0.6; }
  100% { transform: translateY(112vh) rotate(360deg) translateX(10px); opacity: 0; }
}

/* ─── Enhanced navbar glassmorphism ─────────────────────────── */
.navbar {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07), 0 1px 0 rgba(212,201,184,0.5);
}

/* ─── Service card hover top accent animation ───────────────── */
.service-card::before {
  background: linear-gradient(90deg, var(--sage), var(--sage-light), var(--brown));
  background-size: 200% 100%;
  animation: none;
  transition: transform 0.45s ease, background-position 0.6s ease;
}
.service-card:hover::before {
  transform: scaleX(1);
  background-position: 100% 0;
}

/* ─── Mobile menu smooth slide ───────────────────────────────── */
.mobile-menu {
  transform-origin: top center;
  transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.3s ease;
}
.mobile-menu:not(.open) { transform: scaleY(0.95); opacity: 0; }
.mobile-menu.open       { transform: scaleY(1);    opacity: 1; }

/* ─── Responsive fine-tune ───────────────────────────────────── */
@media (max-width: 768px) {
  .hero-orb { display: none; }
  .process-line-anim { display: none; }
}

/* ===== FULL-BLEED HERO ===== */
.hero-split {
  position: relative;
  display: block;
  min-height: 100vh;
  overflow: hidden;
}

/* Highlighted deadline alert */
.deadline-alert {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #FFF8E1, #FFEFC2);
  border: 1.5px solid #FFC107; border-left: 6px solid #FB8C00;
  border-radius: var(--radius); padding: 22px 24px; margin: 28px 0;
  box-shadow: 0 8px 24px rgba(251,140,0,0.18);
  animation: deadlineGlow 2.4s ease-in-out infinite;
}
@keyframes deadlineGlow {
  0%, 100% { box-shadow: 0 8px 24px rgba(251,140,0,0.16); }
  50%      { box-shadow: 0 8px 30px rgba(251,140,0,0.38); }
}
.deadline-alert__tag {
  display: inline-block; background: #D32F2F; color: #fff;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 11px; border-radius: 50px;
}
.deadline-alert__date {
  background: #FFD54F; color: #6E4A00; font-weight: 700;
  padding: 1px 8px; border-radius: 5px; white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) { .deadline-alert { animation: none; } }

/* Rotating circular-text badge with logo in centre */
.spin-badge {
  position: absolute; top: 112px; right: 52px; z-index: 4;
  width: 138px; height: 138px; border-radius: 50%;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
  display: grid; place-items: center;
}
.spin-badge__text {
  position: absolute; inset: 0; width: 100%; height: 100%;
  animation: spinBadge 8s linear infinite; transform-origin: 50% 50%;
}
.spin-badge__text text {
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  letter-spacing: 0.5px; fill: var(--sage); text-transform: uppercase;
}
.spin-badge__logo { width: 60px; height: auto; display: block; }
@keyframes spinBadge { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .spin-badge__text { animation: none; } }
@media (max-width: 768px) {
  .spin-badge { width: 104px; height: 104px; top: 78px; right: 18px; }
  .spin-badge__logo { width: 46px; }
  .spin-badge__text text { font-size: 13px; }
}

/* Full-bleed background image — fills entire hero */
.hero-split__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-split__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  max-width: none;
}
/* Readable gradient — image stays clearly visible; darker only at left + bottom for text */
.hero-split__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13,30,22,0.80) 0%, rgba(13,30,22,0.46) 40%, rgba(13,30,22,0.10) 68%, rgba(13,30,22,0.30) 100%),
    linear-gradient(180deg, rgba(13,30,22,0.45) 0%, rgba(13,30,22,0.02) 26%, rgba(13,30,22,0.16) 62%, rgba(13,30,22,0.88) 100%);
}

/* Content spans full viewport — vertically centred, with marquee pinned at bottom */
.hero-split__content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px clamp(28px, 7vw, 110px) 0;
  background: none;
}

.hero-split__inner {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: auto;
  margin-bottom: auto;
}

/* Heading — large, fills horizontal space */
.hero-split__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #ffffff;
  max-width: 15ch;
  margin: 0;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

/* Body copy */
.hero-split__sub {
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  max-width: 640px;
  margin: 0;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

/* CTA + proof on one row to fill horizontal space */
.hero-split__actions {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Social proof row */
.hero-split__proof {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-split__avatars { display: flex; }
.hero-split__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.85);
  object-fit: cover;
  margin-left: -14px;
  display: block;
  max-width: none;
}
.hero-split__avatars .hero-split__avatar:first-child { margin-left: 0; }
.hero-split__proof-text {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.3;
}
.hero-split__proof-count {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: #cdeeb4;
}

/* CTA button */
.hero-split__cta-wrap { }
.hero-split__cta {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  cursor: pointer;
}
.hero-split__cta-label {
  background: #e1fcad;
  color: #122023;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 999px 0 0 999px;
  transition: background 0.45s ease, color 0.45s ease;
}
.hero-split__cta-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #e1fcad;
  border-radius: 0 999px 999px 0;
  overflow: hidden;
  transition: background 0.45s ease;
}
.hero-split__arrow {
  position: absolute;
  width: 20px;
  height: 20px;
  color: #122023;
  transition: transform 0.45s ease, color 0.45s ease;
}
.hero-split__arrow--out  { transform: translate(0, 0); }
.hero-split__arrow--in   { transform: translate(-140%, 140%); }

.hero-split__cta:hover .hero-split__cta-label  { background: #122023; color: #e1fcad; }
.hero-split__cta:hover .hero-split__cta-icon   { background: #122023; }
.hero-split__cta:hover .hero-split__arrow      { color: #e1fcad; }
.hero-split__cta:hover .hero-split__arrow--out { transform: translate(140%, -140%); }
.hero-split__cta:hover .hero-split__arrow--in  { transform: translate(0, 0); }

/* ===== CLIENTS STRIP (below hero, white bg) ===== */
.clients-strip {
  background: #fff;
  border-top: 1px solid #e8e2d8;
  border-bottom: 1px solid #e8e2d8;
  padding: 28px 0 32px;
  overflow: hidden;
}
.clients-strip__label {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #9e9589;
  margin: 0 0 24px;
  font-family: var(--font-inter, sans-serif);
}
.clients-strip__marquee-outer {
  position: relative;
  overflow: hidden;
}
.clients-strip__fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.clients-strip__fade--left  { left: 0;  background: linear-gradient(to right, #fff 30%, transparent); }
.clients-strip__fade--right { right: 0; background: linear-gradient(to left,  #fff 30%, transparent); }
.clients-strip__marquee { overflow: hidden; }
.clients-strip__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: clientsMarquee 32s linear infinite;
}
.clients-strip:hover .clients-strip__track {
  animation-play-state: paused;
}
.clients-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  border-right: 1px solid #ede8df;
}
.clients-strip__item:last-child { border-right: none; }
.clients-strip__item img {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  filter: grayscale(20%) opacity(0.85);
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.clients-strip__item:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.06);
}
@keyframes clientsMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-split__content {
    padding: 110px 24px 0;
    justify-content: flex-start;
  }
  .hero-split__inner { margin-top: 0; }
  .hero-split__heading { font-size: clamp(2.3rem, 9vw, 3.4rem); max-width: 100%; margin-bottom: 18px; }
  .hero-split__sub { font-size: 1rem; margin-bottom: 28px; }
  .hero-split__actions { gap: 22px; }
  .hero-split__cta-label { font-size: 0.9rem; padding: 11px 22px; }
  .hero-split__avatar { width: 42px; height: 42px; }
  .clients-strip__item img { height: 38px; }
  .clients-strip__item { padding: 0 20px; }
}

/* ===== TEAM CARDS ===== */
.team-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-photo { height: 260px; overflow: hidden; background: var(--cream); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.45s ease; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-body { padding: 24px; }
.team-body h3 { font-size: 1.15rem; margin-bottom: 4px; }
.team-role { display: inline-block; font-size: 0.8rem; font-weight: 600; color: var(--sage); letter-spacing: 0.03em; margin-bottom: 12px; }
.team-body p { font-size: 0.875rem; color: var(--medium); line-height: 1.65; margin-bottom: 16px; }
.team-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.team-tags span { background: var(--cream); border: 1px solid var(--border); border-radius: 50px; padding: 3px 12px; font-size: 0.72rem; font-weight: 600; color: var(--dark); }
@media (max-width: 860px) { .team-grid { grid-template-columns: 1fr 1fr !important; } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr !important; } }

/* ===== CHAR REVEAL ANIMATION ===== */
.char-reveal .word, .char-reveal-dark .word {
  display: inline-block; overflow: hidden; vertical-align: bottom;
}
.char-reveal .char, .char-reveal-dark .char {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}
.char-reveal.animated .char, .char-reveal-dark.animated .char {
  animation: charUp 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes charUp {
  to { transform: translateY(0); opacity: 1; }
}

/* ===== IMPACT MANIFESTO ===== */
.impact-manifesto {
  position: relative; overflow: hidden;
  padding: 100px 0;
  background: #0d2318;
}
.impact-manifesto__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(74,124,89,0.35) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(139,105,20,0.2) 0%, transparent 50%);
}
.impact-manifesto__inner {
  position: relative; z-index: 1; max-width: 860px;
}
.impact-manifesto__eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--sage-light); margin-bottom: 20px;
}
.impact-manifesto__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700; color: white; line-height: 1.15;
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.impact-manifesto__heading em { color: #a8d5b5; font-style: italic; }
.impact-manifesto__sub {
  font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em; margin-bottom: 24px;
}
.impact-manifesto__body {
  font-size: 1.05rem; color: rgba(255,255,255,0.75); line-height: 1.8;
  max-width: 680px; margin-bottom: 36px;
}
.impact-manifesto__cta { align-self: flex-start; }

/* ===== WHO WE SERVE ===== */
.serve-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.serve-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--white);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex; flex-direction: column;
}
.serve-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sage); }
.serve-card__img {
  position: relative; height: 180px; overflow: hidden;
}
.serve-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s ease;
}
.serve-card:hover .serve-card__img img { transform: scale(1.06); }
.serve-card__num {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700;
  color: rgba(255,255,255,0.9); line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.serve-card__body { padding: 24px; flex: 1; }
.serve-card__body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.serve-card__body p { font-size: 0.875rem; color: var(--medium); line-height: 1.7; margin-bottom: 16px; }
.serve-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.serve-card__tags span {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 50px; padding: 3px 12px; font-size: 0.72rem; font-weight: 600; color: var(--sage);
}

/* ══════════════════════════════════════════
   ACCORDION SUB-SERVICE STYLES
   (moved from services.html inline <style>)
══════════════════════════════════════════ */

/* ── Panel header ── */
.svc-panel-header {
  display: flex; align-items: center; gap: 20px; padding: 32px 36px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(135deg, #1a3d28, var(--sage)); color: white;
}
.svc-panel-header-icon { font-size: 3rem; line-height: 1; }
.svc-panel-header h2 { font-size: 1.8rem; color: white; margin: 0 0 6px; }
.svc-panel-header p { font-size: 1rem; color: rgba(255,255,255,0.85); margin: 0; line-height: 1.6; }

/* ── Sub-service process flow ── */
.svc-sub-list {
  position: relative;
  padding: 28px 36px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
/* Vertical gradient connector line */
.svc-sub-list::before {
  content: '';
  position: absolute;
  left: calc(36px + 19px);
  top: 55px; bottom: 55px;
  width: 3px; border-radius: 2px;
  background: linear-gradient(to bottom, #3B82C4, #2BA89A, #4A7C59, #7C5CC4, #D4912B, #2B9DC4);
  pointer-events: none;
}
.svc-sub-item {
  display: flex; gap: 18px; align-items: flex-start;
  margin-bottom: 14px;
}
.svc-sub-item:last-child { margin-bottom: 0; }

/* Numbered circle */
.svc-sub-num {
  position: relative; z-index: 1; flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 50%;
  color: white; border: none;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem; margin-top: 2px;
}
.svc-sub-item:nth-child(1) .svc-sub-num { background: linear-gradient(135deg,#3B82C4,#2C6299); box-shadow: 0 4px 10px rgba(59,130,196,0.35); }
.svc-sub-item:nth-child(2) .svc-sub-num { background: linear-gradient(135deg,#2BA89A,#1F8073); box-shadow: 0 4px 10px rgba(43,168,154,0.35); }
.svc-sub-item:nth-child(3) .svc-sub-num { background: linear-gradient(135deg,#4A7C59,#3A6247); box-shadow: 0 4px 10px rgba(74,124,89,0.35); }
.svc-sub-item:nth-child(4) .svc-sub-num { background: linear-gradient(135deg,#7C5CC4,#5E44A0); box-shadow: 0 4px 10px rgba(124,92,196,0.35); }
.svc-sub-item:nth-child(5) .svc-sub-num { background: linear-gradient(135deg,#D4912B,#A86F10); box-shadow: 0 4px 10px rgba(212,145,43,0.35); }
.svc-sub-item:nth-child(6) .svc-sub-num { background: linear-gradient(135deg,#2B9DC4,#1F7A99); box-shadow: 0 4px 10px rgba(43,157,196,0.35); }

/* Colored card box */
.svc-sub-content {
  flex: 1; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.svc-sub-item:nth-child(1) .svc-sub-content { background:#EAF2FB; border:1px solid #D2E3F6; border-left:4px solid #3B82C4; }
.svc-sub-item:nth-child(2) .svc-sub-content { background:#E7F5F2; border:1px solid #CDEBE5; border-left:4px solid #2BA89A; }
.svc-sub-item:nth-child(3) .svc-sub-content { background:#EAF4EC; border:1px solid #D4E8D8; border-left:4px solid #4A7C59; }
.svc-sub-item:nth-child(4) .svc-sub-content { background:#F0ECFA; border:1px solid #E0D7F4; border-left:4px solid #7C5CC4; }
.svc-sub-item:nth-child(5) .svc-sub-content { background:#F9F1E1; border:1px solid #EEDFC0; border-left:4px solid #D4912B; }
.svc-sub-item:nth-child(6) .svc-sub-content { background:#E6F4FA; border:1px solid #CCE7F2; border-left:4px solid #2B9DC4; }

/* Trigger inside the card */
.svc-sub-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; background: transparent; border: none;
  cursor: pointer; text-align: left; font-family: var(--font-body);
  transition: background 0.2s ease;
}
.svc-sub-trigger:hover { background: rgba(0,0,0,0.04); }
.svc-sub-trigger.open { background: rgba(0,0,0,0.05); }
.svc-sub-trigger-left { display: flex; align-items: center; gap: 12px; }

/* Name text per color */
.svc-sub-name { font-size: 0.95rem; font-weight: 700; line-height: 1.35; }
.svc-sub-item:nth-child(1) .svc-sub-name { color: #235A8C; }
.svc-sub-item:nth-child(2) .svc-sub-name { color: #1E7468; }
.svc-sub-item:nth-child(3) .svc-sub-name { color: #356046; }
.svc-sub-item:nth-child(4) .svc-sub-name { color: #4E3A86; }
.svc-sub-item:nth-child(5) .svc-sub-name { color: #8B6914; }
.svc-sub-item:nth-child(6) .svc-sub-name { color: #1F7A99; }

.svc-sub-badge {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 2px 10px; border-radius: 50px; margin-left: 10px; white-space: nowrap;
}
.svc-sub-item:nth-child(1) .svc-sub-badge { color:#235A8C; background:rgba(59,130,196,0.15); border:1px solid rgba(59,130,196,0.3); }
.svc-sub-item:nth-child(2) .svc-sub-badge { color:#1E7468; background:rgba(43,168,154,0.15); border:1px solid rgba(43,168,154,0.3); }
.svc-sub-item:nth-child(3) .svc-sub-badge { color:#356046; background:rgba(74,124,89,0.15); border:1px solid rgba(74,124,89,0.3); }
.svc-sub-item:nth-child(4) .svc-sub-badge { color:#4E3A86; background:rgba(124,92,196,0.15); border:1px solid rgba(124,92,196,0.3); }
.svc-sub-item:nth-child(5) .svc-sub-badge { color:#8B6914; background:rgba(212,145,43,0.15); border:1px solid rgba(212,145,43,0.3); }
.svc-sub-item:nth-child(6) .svc-sub-badge { color:#1F7A99; background:rgba(43,157,196,0.15); border:1px solid rgba(43,157,196,0.3); }

/* Chevron */
.svc-chevron {
  width: 30px; height: 30px; border-radius: 50%; background: rgba(0,0,0,0.07);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), background 0.2s; flex-shrink: 0;
}
.svc-chevron svg { width: 15px; height: 15px; stroke: var(--medium); transition: stroke 0.2s; }
.svc-sub-trigger.open .svc-chevron { transform: rotate(180deg); background: rgba(0,0,0,0.15); }
.svc-sub-trigger.open .svc-chevron svg { stroke: var(--dark); }

/* ── Detail drawer ── */
.svc-detail { display: none; }
.svc-detail.open { display: block; }
.svc-detail-inner { margin: 0 16px 16px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-sm); }

/* Sub-service visual banner */
.detail-visual { height: 220px; overflow: hidden; position: relative; }
.detail-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,35,24,0.75) 0%, rgba(74,124,89,0.4) 100%);
  display: flex; align-items: flex-end; padding: 24px 28px;
}
.detail-visual-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: white; line-height: 1.2; }

/* Detail content grid */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.detail-block { padding: 28px 32px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.detail-block:nth-child(even) { border-right: none; }
.detail-block:nth-last-child(-n+2) { border-bottom: none; }
.detail-block-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(74,124,89,0.12), rgba(74,124,89,0.06));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; color: var(--sage); flex-shrink: 0;
}
.detail-block-icon svg { width: 22px; height: 22px; stroke: var(--sage); }
.detail-block h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sage); margin-bottom: 12px; }
.detail-block p { font-size: 1rem; color: var(--medium); line-height: 1.75; margin: 0; }
.detail-block ul { margin: 0; padding: 0; list-style: none; }
.detail-block ul li { font-size: 0.975rem; color: var(--medium); padding: 4px 0 4px 18px; position: relative; line-height: 1.6; }
.detail-block ul li::before { content: '›'; position: absolute; left: 0; color: var(--sage); font-weight: 700; font-size: 1.1rem; line-height: 1.4; }
.detail-block.full { grid-column: 1 / -1; border-right: none; }
.detail-cta-bar {
  grid-column: 1 / -1; padding: 24px 32px;
  background: linear-gradient(135deg, #1a3d28, var(--sage));
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.detail-cta-bar p { color: rgba(255,255,255,0.9); font-size: 1rem; margin: 0; flex: 1; line-height: 1.6; }
.detail-cta-bar a { flex-shrink: 0; }

/* Tags */
.penalty-tag { display: inline-block; background: #fff3cd; color: #856404; border: 1px solid #ffc107; border-radius: 6px; padding: 4px 10px; font-size: 0.82rem; font-weight: 600; margin-top: 8px; }
.tip-tag { display: inline-block; background: rgba(74,124,89,0.1); color: var(--sage); border: 1px solid rgba(74,124,89,0.3); border-radius: 6px; padding: 4px 10px; font-size: 0.82rem; font-weight: 600; margin-top: 8px; }
.detail-ref-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 12px; font-size: 0.82rem; font-weight: 600; color: var(--sage); border: 1px solid rgba(74,124,89,0.3); border-radius: 6px; padding: 4px 10px; background: rgba(74,124,89,0.06); transition: all 0.2s ease; text-decoration: none; }
.detail-ref-link:hover { background: rgba(74,124,89,0.14); border-color: var(--sage); }

/* ══════════════════════════════════════════
   EPR REDESIGN — Rich Visual Layout
══════════════════════════════════════════ */

/* Hero banner with image + stats strip */
.epr-hero {
  position: relative; height: 260px; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d; will-change: transform;
}
.epr-hero.tilting { transition: transform 0.06s linear; }
.epr-hero img {
  width:100%; height:100%; object-fit:cover; display:block;
  transition: transform 0.45s ease;
}
.epr-hero.tilting img { transform: scale(1.06); }
.epr-hero-overlay {
  position:absolute; inset:0; z-index:2;
  background: linear-gradient(to right, rgba(10,27,18,0.88) 0%, rgba(10,27,18,0.55) 55%, rgba(10,27,18,0.2) 100%);
  display:flex; flex-direction:column; justify-content:flex-end; padding:28px 36px 0;
}
/* glossy highlight follows cursor */
.epr-hero::after {
  content:""; position:absolute; inset:0; z-index:3; pointer-events:none;
  background: radial-gradient(circle at var(--gx,50%) var(--gy,50%), rgba(255,255,255,0.35), rgba(255,255,255,0) 45%);
  opacity:0; transition: opacity 0.25s ease;
}
.epr-hero.tilting::after { opacity:1; }
@media (prefers-reduced-motion: reduce) {
  .epr-hero.tilting { transform:none !important; }
  .epr-hero::after { display:none; }
}
.epr-hero-title { font-family:var(--font-heading); font-size:1.7rem; font-weight:700; color:white; line-height:1.2; margin-bottom:6px; }
.epr-hero-sub { font-size:0.9rem; color:rgba(255,255,255,0.8); margin-bottom:0; }

/* Stats strip below hero */
.epr-stats-strip {
  display:grid; grid-template-columns:repeat(3,1fr);
  background: #0d2318; border-bottom:3px solid var(--sage);
}
.epr-stat {
  padding:18px 24px; text-align:center; border-right:1px solid rgba(255,255,255,0.1);
  position:relative;
}
.epr-stat:last-child { border-right:none; }
.epr-stat-num { font-family:var(--font-heading); font-size:1.8rem; font-weight:700; color:#a8d5b5; line-height:1; margin-bottom:4px; }
.epr-stat-label { font-size:0.75rem; color:rgba(255,255,255,0.65); text-transform:uppercase; letter-spacing:0.08em; }

/* Body layout inside each EPR detail */
.epr-body { padding:0; }
.epr-row { display:grid; grid-template-columns:1fr 1fr; border-bottom:1px solid var(--border); }
.epr-row:last-child { border-bottom:none; }
.epr-row.single { grid-template-columns:1fr; }
.epr-row.thirds { grid-template-columns:1fr 1fr 1fr; }
.epr-col { padding:28px 32px; border-right:1px solid var(--border); }
.epr-col:last-child { border-right:none; }
.epr-col-label {
  display:flex; align-items:center; gap:10px;
  font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.1em;
  color:var(--sage); margin-bottom:14px;
}
.epr-col-label .lbl-icon {
  width:28px; height:28px; border-radius:50%; background:rgba(74,124,89,0.12);
  display:flex; align-items:center; justify-content:center; font-size:0.95rem; flex-shrink:0;
}
.epr-col p { font-size:0.975rem; color:var(--medium); line-height:1.75; margin:0; }

/* Who-needs chips */
.who-chips { display:flex; flex-wrap:wrap; gap:8px; margin-top:4px; }
.who-chip {
  display:flex; align-items:center; gap:6px;
  background:var(--cream); border:1.5px solid var(--border);
  border-radius:50px; padding:6px 14px;
  font-size:0.85rem; font-weight:600; color:var(--dark);
  transition: all 0.2s;
}
.who-chip:hover { border-color:var(--sage); color:var(--sage); background:rgba(74,124,89,0.06); }
.who-chip span { font-size:1rem; }

/* Penalty callout */
.epr-penalty-box {
  margin:0 32px 0; background:linear-gradient(135deg,#fff8e6,#fff3cd);
  border:2px solid #f59e0b; border-radius:var(--radius-lg); padding:20px 24px;
  display:flex; gap:16px; align-items:flex-start;
}
.epr-penalty-icon { font-size:2rem; flex-shrink:0; line-height:1; margin-top:2px; }
.epr-penalty-title { font-size:0.8rem; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; color:#92400e; margin-bottom:6px; }
.epr-penalty-text { font-size:0.95rem; color:#78350f; line-height:1.6; margin:0; }
.epr-penalty-amount { font-size:1.5rem; font-weight:700; color:#92400e; display:block; margin-top:4px; }

/* Tip box */
.epr-tip-box {
  margin:0 32px 28px; background:rgba(74,124,89,0.06);
  border:1.5px solid rgba(74,124,89,0.3); border-radius:var(--radius-lg);
  padding:16px 20px; display:flex; gap:12px; align-items:flex-start;
  font-size:0.9rem; color:var(--sage); line-height:1.6;
}
.epr-tip-box strong { color:var(--sage-dark); }

/* Targets table */
.epr-targets-wrap { padding:28px 32px; }
.epr-targets-wrap h5 {
  font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.1em;
  color:var(--sage); margin-bottom:16px; display:flex; align-items:center; gap:8px;
}
.epr-table { width:100%; border-collapse:collapse; font-size:0.9rem; border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--border); }
.epr-table thead tr { background:var(--sage); color:white; }
.epr-table th { padding:11px 16px; text-align:center; font-weight:700; font-size:0.8rem; letter-spacing:0.04em; }
.epr-table th:first-child { text-align:left; }
.epr-table td { padding:11px 16px; text-align:center; border-bottom:1px solid var(--border); font-size:0.875rem; }
.epr-table td:first-child { text-align:left; font-weight:600; color:var(--dark); }
.epr-table tr:nth-child(even) td { background:var(--cream); }
.epr-table tr:last-child td { border-bottom:none; }
.epr-table .cur { font-weight:700; color:var(--sage); background:rgba(74,124,89,0.08) !important; }
.epr-table .cur-h { background:#2d5a3d !important; }
.epr-table tfoot td { background:rgba(74,124,89,0.12); font-weight:700; color:var(--sage); font-size:0.8rem; text-align:center; border-top:2px solid var(--sage); }

/* Progress bars for targets */
.prog-bar-wrap { display:flex; align-items:center; gap:10px; }
.prog-bar { flex:1; height:8px; background:var(--border); border-radius:50px; overflow:hidden; }
.prog-bar-fill { height:100%; border-radius:50px; background:var(--sage); }
.prog-pct { font-size:0.8rem; font-weight:700; color:var(--sage); width:36px; text-align:right; flex-shrink:0; }

/* Process steps */
.epr-process { padding:28px 32px; border-top:1px solid var(--border); }
.epr-process h5 { font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.1em; color:var(--sage); margin-bottom:20px; display:flex; align-items:center; gap:8px; }
.epr-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.epr-step {
  text-align:center; padding:20px 16px;
  background:var(--cream); border-radius:var(--radius-lg);
  border:1px solid var(--border); position:relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.epr-step:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--sage); }
.epr-step-num {
  width:36px; height:36px; border-radius:50%; background:var(--sage); color:white;
  font-size:0.9rem; font-weight:700; display:flex; align-items:center; justify-content:center;
  margin:0 auto 12px;
}
.epr-step-icon { font-size:1.6rem; margin-bottom:8px; }
.epr-step h6 { font-size:0.85rem; font-weight:700; color:var(--dark); margin-bottom:6px; }
.epr-step p { font-size:0.8rem; color:var(--medium); line-height:1.55; margin:0; }

/* Help list */
.epr-help-list { display:flex; flex-direction:column; gap:8px; }
.epr-help-item {
  display:flex; align-items:flex-start; gap:12px;
  padding:12px 16px; background:var(--cream); border-radius:var(--radius);
  border-left:3px solid var(--sage); font-size:0.9rem; color:var(--dark); line-height:1.5;
}
.epr-help-item-icon { font-size:1.1rem; flex-shrink:0; margin-top:1px; }

/* Portal buttons */
.epr-portal-row {
  padding:20px 32px; background:var(--cream);
  border-top:1px solid var(--border);
  display:flex; align-items:center; gap:12px; flex-wrap:wrap;
}
.epr-portal-label { font-size:0.82rem; font-weight:700; color:var(--medium); text-transform:uppercase; letter-spacing:0.06em; flex-shrink:0; }
.epr-portal-btn {
  display:inline-flex; align-items:center; gap:6px;
  padding:8px 18px; border-radius:50px; font-size:0.85rem; font-weight:600;
  background:var(--white); border:1.5px solid var(--sage); color:var(--sage);
  text-decoration:none; transition:all 0.25s;
}
.epr-portal-btn:hover { background:var(--sage); color:white; }

/* Bottom CTA */
.epr-cta {
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:24px 32px;
  background:linear-gradient(135deg,#0d2318 0%,#1a3d28 50%,var(--sage) 100%);
}
.epr-cta-text { color:rgba(255,255,255,0.9); font-size:1rem; margin:0; line-height:1.6; flex:1; }
.epr-cta-text strong { color:white; }

@media (max-width:780px) {
  .epr-stats-strip { grid-template-columns:1fr 1fr; }
  .epr-row, .epr-row.thirds { grid-template-columns:1fr; }
  .epr-col { border-right:none; border-bottom:1px solid var(--border); }
  .epr-col:last-child { border-bottom:none; }
  .epr-steps { grid-template-columns:1fr 1fr; }
  .epr-penalty-box, .epr-tip-box { margin-left:16px; margin-right:16px; }
  .epr-targets-wrap, .epr-process, .epr-portal-row, .epr-cta, .epr-col { padding-left:20px; padding-right:20px; }
  .epr-cta { flex-direction:column; align-items:flex-start; }
  .epr-hero-overlay { padding:20px 20px 0; }
}

@media (max-width: 780px) {
  .detail-grid { grid-template-columns: 1fr; }
  .detail-block { border-right: none; }
  .detail-block.full, .detail-cta-bar { grid-column: 1; }
  .svc-panel-header { padding: 22px; }
  .svc-sub-trigger { padding: 18px 20px; }
  .detail-cta-bar { flex-direction: column; align-items: flex-start; }
  .detail-visual { height: 160px; }
}

/* ── Standalone sub-service section (individual service pages) ── */
.sub-services-section .svc-sub-list {
  border-radius: var(--radius-lg);
  border-top: 1px solid var(--border);
}
.sub-services-section .svc-sub-list::before {
  top: 45px; bottom: 45px;
}
@media (max-width: 900px) { .serve-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .serve-grid { grid-template-columns: 1fr; } }

/* ── Flow-item clickable links ───────────────────────── */
.flow-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1.5px dotted currentColor;
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.flow-link:hover { color: var(--sage); border-bottom-style: solid; }
.flow-link::after {
  content: ' →';
  font-size: 0.8em;
  opacity: 0;
  display: inline-block;
  transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s;
}
.flow-link:hover::after { opacity: 0.65; transform: translateX(2px); }

/* ── Sub-service child-page (detail mode) ────────────── */
.sub-services-section { display: none !important; }
body.svc-detail-active [data-overview],
body.svc-detail-active .page-hero,
body.svc-detail-active .breadcrumb { display: none !important; }
body.svc-detail-active .sub-services-section { display: block !important; }

.svc-back-bar {
  display: none;
  align-items: center;
  background: var(--cream);
  border-bottom: 2px solid var(--sage);
  padding: 12px 0;
  position: sticky;
  top: 72px;
  z-index: 90;
}
body.svc-detail-active .svc-back-bar { display: flex !important; }

.svc-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sage);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px 14px 6px 4px;
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}
.svc-back-btn:hover { background: rgba(74,124,89,0.1); }
.svc-back-btn svg { flex-shrink: 0; }

.nav-dropdown .icon { display:inline-flex; align-items:center; vertical-align:middle; margin-right:6px; }
.nav-dropdown .icon svg { width:15px; height:15px; }
.mobile-menu a svg { width:15px; height:15px; vertical-align:middle; margin-right:6px; }
