/* =============================================
   ewastewale - Main Stylesheet
   Recycling Theme: Green, Earth, Clean
   ============================================= */

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

:root {
  --green-primary: #2ECC71;
  --green-dark: #27AE60;
  --green-deep: #1E8449;
  --green-light: #A9DFBF;
  --green-pale: #EAFAF1;
  --teal: #1ABC9C;
  --teal-dark: #17A589;
  --earth: #6D4C41;
  --dark: #0D1F0D;
  --dark-2: #1A2E1A;
  --dark-3: #243624;
  --mid: #3D5C3D;
  --text: #2C3E2C;
  --text-light: #5D7A5D;
  --text-muted: #8FA88F;
  --white: #FFFFFF;
  --off-white: #F8FDF8;
  --border: #D5EDD5;
  --shadow: rgba(46, 204, 113, 0.15);
  --shadow-dark: rgba(13, 31, 13, 0.12);
  
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.15; color: var(--dark-2); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--text-light); line-height: 1.75; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.feather {
  width: 1em;
  height: 1em;
  stroke-width: 2;
  vertical-align: middle;
  fill: none;
}

/* ---- Utilities ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-green { color: var(--green-primary); }
.bg-dark { background: var(--dark-2); }
.bg-green { background: var(--green-primary); }
.bg-pale { background: var(--green-pale); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-pale);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-light); max-width: 560px; margin-bottom: 48px; }
.section-subtitle.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-primary);
  color: var(--white);
  box-shadow: 0 4px 20px var(--shadow);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-primary);
}
.btn-outline:hover {
  background: var(--green-pale);
  border-color: var(--green-dark);
}

.btn-white {
  background: var(--white);
  color: var(--dark-2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.btn-white:hover {
  background: var(--green-pale);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark-2);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark-3);
  transform: translateY(-2px);
}

/* ---- Cards ---- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px var(--shadow);
  border-color: var(--green-light);
}

/* ---- Icon Box ---- */
.icon-box {
  width: 52px;
  height: 52px;
  background: var(--green-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: var(--transition);
}
.icon-box svg,
.icon-box .feather { width: 22px; height: 22px; }
.card:hover .icon-box {
  background: var(--green-primary);
  color: var(--white);
}

/* ---- Grid ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px var(--shadow-dark);
}
.header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px var(--shadow-dark);
  padding: 14px 0;
}
.header.light-header:not(.scrolled) {
  background: linear-gradient(180deg, rgba(13,31,13,0.68) 0%, rgba(13,31,13,0.32) 62%, rgba(13,31,13,0) 100%);
  backdrop-filter: none;
  box-shadow: none;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo img { height: 44px; width: auto; }
.logo-white { display: none; }
.logo-dark { display: block; }
.header.light-header .logo-white { display: block; }
.header.light-header .logo-dark { display: none; }
.header.scrolled .logo-white { display: none !important; }
.header.scrolled .logo-dark { display: block !important; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  color: var(--dark-2);
  transition: var(--transition);
}
.nav a:hover, .nav a.active {
  color: var(--green-dark);
  background: var(--green-pale);
}
.header.light-header:not(.scrolled) .nav a { color: rgba(255,255,255,0.9); }
.header.light-header:not(.scrolled) .nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.18);
}
.header.light-header:not(.scrolled) .nav a:hover { color: var(--white); background: rgba(255,255,255,0.15); }

.header-cta { display: flex; align-items: center; gap: 12px; }

.header.light-header:not(.scrolled) .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.08);
}
.header.light-header:not(.scrolled) .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.72);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-2);
  border-radius: 2px;
  transition: var(--transition);
}
.header.light-header:not(.scrolled) .hamburger span {
  background: var(--white);
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 50%, #1A3020 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20% 50%, var(--green-primary) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--teal) 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, var(--green-light) 1px, transparent 1px);
  background-size: 60px 60px, 40px 40px, 80px 80px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(46,204,113,0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26,188,156,0.08) 0%, transparent 70%);
  bottom: -50px;
  left: 100px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,204,113,0.15);
  border: 1px solid rgba(46,204,113,0.3);
  color: var(--green-primary);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--green-primary); }
.hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 36px; max-width: 500px; }

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

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item {
  min-width: 0;
}
.stat-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-primary);
  line-height: 1;
  min-width: 6ch;
  font-variant-numeric: tabular-nums;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 4px; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 380px;
  height: 420px;
}

.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--white);
  animation: floatCard 6s ease-in-out infinite;
}

.floating-card-1 {
  top: 0; left: 0;
  width: 260px;
  animation-delay: 0s;
}
.floating-card-2 {
  top: 120px; right: 0;
  width: 200px;
  animation-delay: 2s;
}
.floating-card-3 {
  bottom: 0; left: 40px;
  width: 240px;
  animation-delay: 4s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.fc-icon {
  width: 40px; height: 40px;
  background: rgba(46,204,113,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-primary);
  margin-bottom: 12px;
}
.fc-icon svg,
.fc-icon .feather { width: 20px; height: 20px; }
.fc-title { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--white); }
.fc-sub { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.fc-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--green-primary); margin-top: 8px; }

/* ============ ABOUT STRIP ============ */
.about-strip {
  background: var(--green-primary);
  padding: 20px 0;
  overflow: hidden;
}
.strip-inner {
  display: flex;
  gap: 48px;
  align-items: center;
  white-space: nowrap;
  animation: stripScroll 20s linear infinite;
}
@keyframes stripScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark-2);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.strip-dot {
  width: 6px; height: 6px;
  background: var(--dark-2);
  border-radius: 50%;
  opacity: 0.4;
}

/* ============ SERVICES ============ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-primary), var(--teal));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px var(--shadow);
  border-color: var(--green-light);
}
.service-card:hover::before { transform: scaleX(1); }

.service-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-pale);
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--transition);
}
.service-card:hover .service-number { color: var(--green-light); }
.service-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.service-card p { font-size: 0.9rem; margin-bottom: 20px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
}
.service-link:hover { gap: 10px; }

/* ============ PROCESS ============ */
.process-section { background: var(--dark-2); }
.process-section .section-label { background: rgba(46,204,113,0.15); border-color: rgba(46,204,113,0.2); }
.process-section h2 { color: var(--white); }
.process-section .section-subtitle { color: rgba(255,255,255,0.6); }

.process-demo-shell {
  max-width: 980px;
  margin: 40px auto 0;
  padding: 20px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 26px 70px rgba(0,0,0,0.22);
}
.process-demo-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.process-demo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--green-primary);
  background: rgba(46,204,113,0.12);
}
.process-demo-dots {
  display: flex;
  gap: 8px;
}
.process-demo-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
}
.process-demo-dots span:first-child { background: #ff6b6b; }
.process-demo-dots span:nth-child(2) { background: #ffd166; }
.process-demo-dots span:last-child { background: var(--green-primary); }
.process-demo-screen {
  position: relative;
  isolation: isolate;
  min-height: 360px;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(46,204,113,0.2), transparent 35%),
    radial-gradient(circle at bottom right, rgba(26,188,156,0.16), transparent 30%),
    linear-gradient(135deg, #101c10 0%, #162916 48%, #1d3322 100%);
  border: 1px solid rgba(255,255,255,0.08);
}
.process-demo-track {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.process-demo-line {
  position: absolute;
  left: 9%;
  right: 9%;
  top: 56%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}
.process-demo-progress {
  position: absolute;
  left: 9%;
  top: 56%;
  height: 4px;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-primary), var(--teal));
  animation: processProgress 9s ease-in-out infinite;
}
.process-demo-node {
  position: absolute;
  z-index: 3;
  top: calc(56% - 26px);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(46,204,113,0.28);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 10px rgba(255,255,255,0.02);
  color: var(--white);
  animation: processNodePulse 9s ease-in-out infinite;
}
.process-demo-node span {
  position: absolute;
  top: 64px;
  white-space: nowrap;
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.node-1 { left: 8%; animation-delay: 0s; }
.node-2 { left: 26%; animation-delay: 1.8s; }
.node-3 { left: 44%; animation-delay: 3.6s; }
.node-4 { left: 62%; animation-delay: 5.4s; }
.node-5 { left: 80%; animation-delay: 7.2s; }
.process-demo-device {
  position: absolute;
  z-index: 2;
  top: calc(56% - 36px);
  left: calc(8% - 11px);
  width: 74px;
  height: 74px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 34px rgba(0,0,0,0.24);
  animation: processTravel 9s ease-in-out infinite;
}
.demo-device-screen {
  width: 42px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green-primary), var(--teal));
  position: relative;
}
.demo-device-screen::after {
  content: '';
  position: absolute;
  inset: 6px 8px;
  border-radius: 5px;
  background: rgba(255,255,255,0.22);
}
.demo-device-glow {
  position: absolute;
  inset: -10px;
  border-radius: 28px;
  border: 1px solid rgba(46,204,113,0.18);
}
.process-demo-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}
.process-demo-caption {
  position: absolute;
  z-index: 4;
  width: min(280px, 22vw);
  min-width: 190px;
  max-width: 280px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  opacity: 0.18;
  transform: translateY(10px) scale(0.98);
  animation: processCaption 9s ease-in-out infinite;
}
.process-demo-caption strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 0.84rem;
}
.process-demo-caption span {
  display: block;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.66);
}
.caption-1 { left: 6%; top: 16%; animation-delay: 0s; }
.caption-2 { left: 20%; bottom: 12%; animation-delay: 1.8s; }
.caption-3 { left: 40%; top: 12%; animation-delay: 3.6s; }
.caption-4 { left: 58%; bottom: 12%; animation-delay: 5.4s; }
.caption-5 { right: 4%; top: 16%; animation-delay: 7.2s; }
.process-demo-badge {
  position: absolute;
  z-index: 5;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}
.badge-top { top: 18px; right: 18px; }
.badge-bottom { left: 18px; bottom: 18px; }
.badge-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green-primary);
  box-shadow: 0 0 0 6px rgba(46,204,113,0.14);
  animation: pulseBadge 1.8s ease-in-out infinite;
}

.process-video-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.process-video-modal.open {
  display: flex;
}
.process-video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 15, 8, 0.78);
  backdrop-filter: blur(10px);
}
.process-video-dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(1080px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-radius: 30px;
  background: linear-gradient(180deg, #122012 0%, #101b13 100%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 120px rgba(0,0,0,0.35);
}
.process-video-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  z-index: 2;
}
.process-video-frame {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding: 28px;
}
.process-video-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-right: 56px;
}
.process-video-label {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(46,204,113,0.12);
  color: var(--green-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.process-video-tabs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.process-video-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.process-video-tab:hover,
.process-video-tab.is-active {
  background: rgba(46,204,113,0.16);
  color: var(--white);
}
.process-video-tab .feather {
  width: 15px;
  height: 15px;
}
.process-modal-panel {
  display: none;
}
.process-modal-panel.is-active {
  display: block;
}
.process-modal-panel[data-process-modal-panel="video"].is-active {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.process-modal-panel .process-demo-shell {
  margin: 0;
}
.process-video-topbar h3 {
  color: var(--white);
  font-size: 1.6rem;
}
.process-video-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.process-video-pills span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  font-weight: 600;
}
.process-video-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: min(56vh, 560px);
  min-height: 260px;
  max-height: 560px;
  flex-shrink: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #000;
}
.process-demo-screen-modal {
  min-height: clamp(360px, 56vh, 520px);
}
.process-video-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}
.process-video-play {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}
.play-triangle {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--green-primary);
}
.process-video-timeline {
  flex: 1;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.process-video-progress {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-primary), var(--teal));
  animation: modalVideoProgress 9s linear infinite;
}
.process-video-time {
  color: rgba(255,255,255,0.66);
  font-size: 0.82rem;
  font-weight: 600;
}

@keyframes processTravel {
  0%, 12% { left: calc(8% - 11px); transform: scale(1); }
  20%, 32% { left: calc(26% - 11px); transform: scale(1.02); }
  40%, 52% { left: calc(44% - 11px); transform: scale(1); }
  60%, 72% { left: calc(62% - 11px); transform: scale(1.02); }
  80%, 92% { left: calc(80% - 11px); transform: scale(1); }
  100% { left: calc(8% - 11px); transform: scale(1); }
}
@keyframes processProgress {
  0%, 10% { width: 0; opacity: 0.6; }
  20%, 32% { width: 21%; opacity: 1; }
  40%, 52% { width: 41%; opacity: 1; }
  60%, 72% { width: 61%; opacity: 1; }
  80%, 92% { width: 82%; opacity: 1; }
  100% { width: 0; opacity: 0.6; }
}
@keyframes processCaption {
  0%, 12% { opacity: 1; transform: translateY(0) scale(1); }
  16%, 100% { opacity: 0.18; transform: translateY(10px) scale(0.98); }
}
@keyframes processNodePulse {
  0%, 12% {
    background: rgba(46,204,113,0.24);
    border-color: rgba(46,204,113,0.95);
    transform: scale(1.08);
    box-shadow: 0 0 0 12px rgba(46,204,113,0.14);
  }
  16%, 100% {
    background: rgba(255,255,255,0.06);
    border-color: rgba(46,204,113,0.28);
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255,255,255,0.02);
  }
}
@keyframes pulseBadge {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.18); opacity: 0.8; }
}
@keyframes modalVideoProgress {
  0% { width: 0; }
  100% { width: 100%; }
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 60px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-deep), var(--green-primary), var(--teal), var(--green-primary), var(--green-deep));
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 2px solid rgba(46,204,113,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  margin-bottom: 20px;
  transition: var(--transition);
  position: relative;
}
.step-circle::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(46,204,113,0.2);
}
.process-step:hover .step-circle {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
  transform: scale(1.1);
}
.step-num {
  position: absolute;
  top: -8px; right: -8px;
  width: 24px; height: 24px;
  background: var(--green-primary);
  color: var(--dark-2);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
}
.process-step h4 { color: var(--white); margin-bottom: 8px; font-size: 0.95rem; }
.process-step p { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

/* ============ WHY US ============ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-features { display: flex; flex-direction: column; gap: 20px; }
.why-feature {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: default;
}
.why-feature:hover {
  background: var(--green-pale);
}
.why-feature .icon-box { margin-bottom: 0; flex-shrink: 0; }
.why-feature-text h4 { margin-bottom: 6px; }
.why-feature-text p { font-size: 0.88rem; }

.why-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-image-inner { padding: 40px; width: 100%; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-block {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.stat-block .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green-primary);
  line-height: 1;
}
.stat-block .lbl { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 6px; }

/* ============ CTA PICKUP ============ */
.cta-section {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 50%, var(--teal-dark) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-text h2 { color: var(--white); margin-bottom: 16px; }
.cta-text p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 32px; }
.cta-perks { display: flex; flex-direction: column; gap: 12px; }
.cta-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
}
.cta-perk svg,
.cta-perk .feather { color: var(--green-light); flex-shrink: 0; }

/* Pickup Form */
.pickup-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}
.pickup-form-wrap h3 { margin-bottom: 24px; font-size: 1.3rem; }
.pickup-promo-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.pickup-promo-icon {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-pale);
  color: var(--green-dark);
}
.pickup-promo-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(46,204,113,0.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.lead-captcha-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(110px, 180px);
  gap: 10px;
  align-items: center;
}
.lead-captcha-question {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1.5px dashed rgba(22, 160, 85, 0.36);
  border-radius: var(--radius);
  background: var(--green-pale);
  color: var(--green-dark);
  font-weight: 700;
  letter-spacing: 0;
}
.lead-form-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 12px;
}
.lead-form-status {
  min-height: 24px;
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.lead-form-status.is-success { color: var(--green-dark); }
.lead-form-status.is-error { color: #c0392b; }

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 3200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lead-modal.open { display: flex; }
.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 15, 8, 0.76);
  backdrop-filter: blur(10px);
}
.lead-modal-dialog {
  position: relative;
  width: min(840px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 40px 120px rgba(0,0,0,0.24);
}
.lead-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--green-pale);
  color: var(--green-dark);
  z-index: 2;
}
.lead-modal-content {
  padding: 36px;
}
.lead-modal-intro {
  margin-bottom: 24px;
  padding-right: 48px;
}
.lead-modal-intro h3 { margin-bottom: 10px; }
.lead-modal-intro p { margin: 0; }

/* Thank You Modal */
.lead-modal-sm .lead-modal-content {
  max-width: 340px;
  text-align: left;
  margin: 0 auto;
}
.lead-modal-thankyou {
  padding: 16px 16px 20px;
}
.thankyou-icon {
  margin-bottom: 16px;
  color: var(--green-primary);
}
.thankyou-icon i {
  display: inline-block;
}
.lead-modal-thankyou h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}
.thankyou-message {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 8px;
}
.thankyou-lead-id {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.thankyou-lead-id strong {
  color: var(--green-dark);
  font-size: 1.1rem;
}
.thankyou-next {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
}
.thankyou-promote {
  background: var(--green-pale);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 24px;
  text-align: left;
}
.thankyou-promote h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.thankyou-promote h4 i {
  flex-shrink: 0;
}
.thankyou-promote p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}
.lead-modal-thankyou .btn {
  min-width: 140px;
  justify-content: center;
}

.select2-container {
  width: 100% !important;
}
.select2-container--open {
  z-index: 4000 !important;
}
.select2-container .select2-selection--single {
  height: 48px !important;
  padding: 0 14px !important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius) !important;
  background: var(--white) !important;
  display: flex !important;
  align-items: center !important;
  transition: var(--transition) !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--text) !important;
  font-family: var(--font-body) !important;
  font-size: 0.88rem !important;
  line-height: 46px !important;
  padding-left: 0 !important;
  padding-right: 28px !important;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: var(--text-muted) !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 46px !important;
  right: 12px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: var(--green-dark) transparent transparent transparent !important;
  border-width: 6px 5px 0 5px !important;
}
.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default .select2-selection--single:focus {
  border-color: var(--green-primary) !important;
  box-shadow: 0 0 0 3px rgba(46,204,113,0.12) !important;
}
.select2-dropdown {
  border: 1px solid var(--border) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: 0 18px 40px rgba(13, 31, 13, 0.12) !important;
}
.select2-container--open .select2-dropdown--below {
  margin-top: 8px !important;
}
.select2-results__options {
  padding: 8px !important;
  background: var(--white) !important;
}
.select2-container--default .select2-results__option {
  padding: 12px 14px !important;
  border-radius: 10px !important;
  font-size: 0.88rem !important;
  color: var(--text) !important;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: var(--green-pale) !important;
  color: var(--green-dark) !important;
}
.select2-container--default .select2-results__option--selected {
  background: rgba(46,204,113,0.12) !important;
  color: var(--green-dark) !important;
}

/* ============ TESTIMONIALS ============ */
.testimonials-section { background: var(--green-pale); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px var(--shadow); }
.stars { display: flex; gap: 4px; margin-bottom: 16px; color: #F39C12; }
.t-text { font-size: 0.9rem; color: var(--text-light); margin-bottom: 20px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-pale);
  border: 2px solid var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--green-dark);
}
.t-name { font-weight: 600; font-size: 0.9rem; }
.t-role { font-size: 0.78rem; color: var(--text-muted); }

/* ============ FOOTER ============ */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); }
.footer-main { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin: 16px 0 24px; color: rgba(255,255,255,0.5); }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-link:hover { background: var(--green-primary); color: var(--white); border-color: var(--green-primary); }

.footer-col h5 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul a:hover { color: var(--green-primary); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.85rem;
}
.footer-contact-item svg,
.footer-contact-item .feather { flex-shrink: 0; color: var(--green-primary); margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.82rem;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: var(--green-primary); }

/* ============ PAGE HERO ============ */
.page-hero {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(46,204,113,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero h1 { color: var(--white); position: relative; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  position: relative;
}
.page-hero .breadcrumb a { color: var(--green-primary); }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 16px auto 0; position: relative; }

/* ============ LEGAL / SITEMAP ============ */
.info-layout {
  max-width: 980px;
  margin: 0 auto;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(13, 31, 13, 0.05);
}
.info-card + .info-card {
  margin-top: 24px;
}
.info-card h2 {
  margin-bottom: 14px;
}
.info-card h3 {
  margin: 24px 0 10px;
}
.info-card p + p,
.info-card ul + p,
.info-card p + ul {
  margin-top: 12px;
}
.info-card ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--text-light);
}
.info-card li + li {
  margin-top: 8px;
}
.info-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.info-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--green-pale);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
}
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.sitemap-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sitemap-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--dark-2);
  background: var(--off-white);
}
.sitemap-list a:hover {
  border-color: var(--green-light);
  background: var(--green-pale);
  color: var(--green-dark);
}

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--green-light); background: var(--green-pale); }
.contact-card-text h4 { margin-bottom: 4px; font-size: 0.95rem; }
.contact-card-text p, .contact-card-text a { font-size: 0.85rem; color: var(--text-light); }
.contact-card-text a:hover { color: var(--green-dark); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
}
.contact-form-card h3 { margin-bottom: 8px; }
.contact-form-card > p { margin-bottom: 32px; font-size: 0.9rem; }

/* ============ ABOUT PAGE ============ */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.mission-visual {
  background: linear-gradient(135deg, var(--green-deep), var(--teal-dark));
  border-radius: var(--radius-xl);
  padding: 48px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.mission-stat {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.mission-stat .num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--white); }
.mission-stat .lbl { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 4px; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px var(--shadow); border-color: var(--green-light); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-primary), var(--teal));
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
}
.team-card h4 { margin-bottom: 4px; font-size: 1rem; }
.team-card p { font-size: 0.82rem; color: var(--text-muted); }

/* ============ MOBILE NAV ============ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13,31,13,0.98);
  backdrop-filter: blur(16px);
  z-index: 2000;
  padding: 24px;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; }
.mobile-nav-close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.72);
  padding: 8px;
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 8px; }
.mobile-nav-links a {
  padding: 16px 20px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius);
  transition: var(--transition);
}
.mobile-nav-links a.active {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.mobile-nav-links a:hover { background: rgba(255,255,255,0.06); color: var(--green-primary); }

/* ============ FORM SUCCESS ============ */
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.success-icon {
  width: 64px; height: 64px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark);
  margin: 0 auto 16px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-demo-screen { min-height: 420px; }
  .process-demo-screen-modal { min-height: 460px; }
  .process-demo-line { left: 12%; right: 12%; top: 52%; }
  .node-1 { left: 10%; }
  .node-2 { left: 28%; }
  .node-3 { left: 46%; }
  .node-4 { left: 64%; }
  .node-5 { left: 82%; }
  .process-demo-device { top: calc(52% - 36px); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  .section-pad { padding: 64px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-video-modal { padding: 12px; }
  .process-video-frame { padding: 18px; }
  .process-video-topbar {
    flex-direction: column;
    padding-right: 48px;
  }
  .process-video-tabs {
    width: 100%;
    justify-content: stretch;
  }
  .process-video-tab {
    flex: 1;
    justify-content: center;
  }
  .process-video-topbar h3 { font-size: 1.25rem; }
  .process-video-screen {
    height: auto;
    min-height: 220px;
    max-height: none;
  }
  .process-demo-screen-modal { min-height: 500px; }
  .process-demo-shell { padding: 16px; }
  .process-demo-meta { flex-direction: column; align-items: flex-start; }
  .process-demo-screen { min-height: 500px; }
  .process-demo-line { left: 50%; right: auto; top: 14%; bottom: 14%; width: 4px; height: auto; transform: translateX(-50%); }
  .process-demo-progress {
    left: 50%;
    top: 14%;
    width: 4px;
    height: 0;
    transform: translateX(-50%);
    animation: processProgressMobile 9s ease-in-out infinite;
  }
  .process-demo-node { left: calc(50% - 26px); }
  .process-demo-node span {
    top: 16px;
    left: 74px;
  }
  .node-1 { top: 12%; }
  .node-2 { top: 28%; }
  .node-3 { top: 44%; }
  .node-4 { top: 60%; }
  .node-5 { top: 76%; }
  .process-demo-device {
    left: calc(50% - 37px);
    top: 12%;
    animation: processTravelMobile 9s ease-in-out infinite;
  }
  .process-demo-caption {
    min-width: 0;
    width: calc(100% - 32px);
    left: 16px !important;
    right: 16px !important;
  }
  .caption-1 { top: 6%; }
  .caption-2 { top: 22%; bottom: auto; }
  .caption-3 { top: 38%; }
  .caption-4 { top: 54%; bottom: auto; }
  .caption-5 { top: 70%; }
  .badge-top { top: 14px; right: 14px; }
  .badge-bottom { left: 14px; bottom: 14px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .cta-inner, .contact-grid, .mission-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .lead-captcha-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .header-cta .btn { display: none; }
  .info-card { padding: 28px 22px; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .pickup-form-wrap { padding: 24px; }
  .lead-modal { padding: 16px; }
  .lead-modal-content { padding: 28px 22px; }
  .lead-modal-intro { padding-right: 32px; }
  .contact-form-card { padding: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@keyframes processTravelMobile {
  0%, 12% { top: 12%; transform: scale(1); }
  20%, 32% { top: 28%; transform: scale(1.02); }
  40%, 52% { top: 44%; transform: scale(1); }
  60%, 72% { top: 60%; transform: scale(1.02); }
  80%, 92% { top: 76%; transform: scale(1); }
  100% { top: 12%; transform: scale(1); }
}
@keyframes processProgressMobile {
  0%, 10% { height: 0; opacity: 0.6; }
  20%, 32% { height: 18%; opacity: 1; }
  40%, 52% { height: 36%; opacity: 1; }
  60%, 72% { height: 54%; opacity: 1; }
  80%, 92% { height: 72%; opacity: 1; }
  100% { height: 0; opacity: 0.6; }
}

/* ============================================
   AUDIT FIXES — appended
   ============================================ */

/* ---- Skip to main content ---- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--green-primary);
  color: var(--dark-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
}

/* ---- Focus-visible styles for keyboard nav ---- */
:focus-visible {
  outline: 2px solid var(--green-primary);
  outline-offset: 3px;
}
.btn:focus-visible {
  outline: 2px solid var(--green-primary);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.2);
}
a:focus-visible {
  outline: 2px solid var(--green-primary);
  outline-offset: 3px;
  border-radius: 4px;
}
.nav a:focus-visible {
  outline: 2px solid var(--green-primary);
  outline-offset: 2px;
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 2px solid var(--green-primary);
  outline-offset: 2px;
}
/* Remove outline for mouse users only */
:focus:not(:focus-visible) {
  outline: none;
}

/* ---- 480px mobile breakpoint ---- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .section-pad { padding: 48px 0; }
  .hero { padding-top: 80px; }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .stat-num { font-size: 1.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn { padding: 12px 20px; font-size: 0.88rem; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .cta-inner { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .lead-modal-content { padding: 20px 16px; }
  .pickup-form-wrap { padding: 20px 16px; }
  .page-hero { padding: 110px 0 56px; }
  .hero-badge { font-size: 0.68rem; }
  .floating-card { display: none; }
}

/* ---- Process video player styles ---- */
.process-video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
  border-radius: 0;
}

.process-video-poster {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--dark-2) 0%, #1A3020 100%);
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.process-video-poster.hidden {
  opacity: 0;
  pointer-events: none;
}
.process-video-poster p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin: 0;
}
.process-video-big-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-2);
  transition: transform 0.2s ease, background 0.2s ease;
}
.process-video-big-play:hover {
  transform: scale(1.1);
  background: var(--green-dark);
}
.process-video-big-play:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}
.process-video-screen {
  position: relative;
  overflow: hidden;
}
/* Controls now use real button — ensure pointer & layout */
.process-video-controls {
  cursor: default;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: var(--dark-3);
}
.process-video-play {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.process-video-timeline {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.process-video-progress {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--green-primary);
  border-radius: 2px;
  transition: width 0.1s linear;
}
.process-video-time {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  flex-shrink: 0;
  min-width: 36px;
  text-align: right;
}

/* ---- Process popup final overrides ---- */
#processVideoModal .process-video-dialog {
  display: flex;
  flex-direction: column;
}
#processVideoModal .process-video-frame {
  width: 100%;
}
#processVideoModal .process-modal-panel[data-process-modal-panel="video"].is-active {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
#processVideoModal .process-video-screen {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: min(56vh, 560px);
  min-height: 260px;
  max-height: 560px;
  background: #000;
}
#processVideoModal .process-video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#processVideoModal .process-video-controls {
  background: var(--dark-3);
}
#processVideoModal .process-video-timeline {
  position: relative;
  cursor: pointer;
}
#processVideoModal .process-video-progress {
  width: 0%;
  animation: none;
}
#processVideoModal .process-modal-panel[data-process-modal-panel="animated"] .process-demo-shell {
  margin: 0;
  max-width: 100%;
}
#processVideoModal .process-modal-panel[data-process-modal-panel="animated"] .process-demo-screen {
  position: relative;
  isolation: isolate;
  min-height: clamp(420px, 60vh, 560px);
}
#processVideoModal .process-modal-panel[data-process-modal-panel="animated"] .process-demo-caption {
  width: min(260px, 18vw);
  max-width: 260px;
}
#processVideoModal .process-modal-panel[data-process-modal-panel="animated"] .caption-1 {
  left: 6%;
  top: 18%;
}
#processVideoModal .process-modal-panel[data-process-modal-panel="animated"] .caption-2 {
  left: 18%;
  bottom: 10%;
}
#processVideoModal .process-modal-panel[data-process-modal-panel="animated"] .caption-3 {
  left: 39%;
  top: 10%;
}
#processVideoModal .process-modal-panel[data-process-modal-panel="animated"] .caption-4 {
  left: 58%;
  bottom: 10%;
}
#processVideoModal .process-modal-panel[data-process-modal-panel="animated"] .caption-5 {
  right: 3%;
  top: 18%;
}
#processVideoModal .process-modal-panel[data-process-modal-panel="animated"] .process-demo-track {
  z-index: 1;
}
#processVideoModal .process-modal-panel[data-process-modal-panel="animated"] .process-demo-device {
  z-index: 2;
}
#processVideoModal .process-modal-panel[data-process-modal-panel="animated"] .process-demo-node {
  z-index: 3;
}
#processVideoModal .process-modal-panel[data-process-modal-panel="animated"] .process-demo-overlay {
  z-index: 4;
}
#processVideoModal .process-modal-panel[data-process-modal-panel="animated"] .process-demo-caption {
  z-index: 4;
}
#processVideoModal .process-modal-panel[data-process-modal-panel="animated"] .process-demo-badge {
  z-index: 5;
}

@media (max-width: 768px) {
  #processVideoModal .process-video-screen {
    height: auto;
    min-height: 220px;
    max-height: none;
  }
  #processVideoModal .process-modal-panel[data-process-modal-panel="animated"] .process-demo-screen {
    min-height: 500px;
  }
}
