/* ===========================
   DESIGN SYSTEM / CSS VARIABLES
   =========================== */
:root {
  --green-primary: #1a8a3c;
  --green-dark: #136b2e;
  --green-light: #e8f5ee;
  --green-mid: #2eab55;
  --orange: #f47c20;
  --orange-dark: #d96a10;
  --orange-light: #fff4ec;
  --dark: #0f1a14;
  --dark-2: #1c2e22;
  --text: #1a2e22;
  --text-muted: #5a7265;
  --text-light: #8aaa95;
  --bg: #ffffff;
  --bg-soft: #f5faf7;
  --bg-green: #edf7f1;
  --border: #d5e8dd;
  --shadow-sm: 0 2px 8px rgba(26,138,60,0.08);
  --shadow-md: 0 6px 24px rgba(26,138,60,0.12);
  --shadow-lg: 0 16px 48px rgba(26,138,60,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; }

/* ===========================
   TYPOGRAPHY
   =========================== */
h1,h2,h3,h4,h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.3rem; }
p { color: var(--text-muted); line-height: 1.75; }

/* ===========================
   LAYOUT 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; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green-primary); margin-bottom: 16px;
}
.section-label::before { content: ''; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }

/* ===========================
   TOP BAR
   =========================== */
.topbar { background: var(--green-dark); color: #fff; padding: 9px 0; font-size: 0.82rem; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar-left a { color: rgba(255,255,255,0.85); text-decoration: none; display: flex; align-items: center; gap: 6px; min-width: 0; line-height: 1.35; }
.topbar-left a:hover { color: #fff; }
.topbar-left svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-right a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.78rem; display: flex; align-items: center; gap: 4px; }
.topbar-right a:hover { color: #fff; }
.topbar-right svg { width: 13px; height: 13px; fill: currentColor; }

/* ===========================
   HEADER / NAV
   =========================== */
.header {
  background: #fff; padding: 0; position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08); transition: box-shadow 0.3s, background 0.3s;
}
.header.scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); box-shadow: 0 4px 32px rgba(0,0,0,0.14); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 92px; padding: 8px 0; }
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.site-logo { display: block; height: 72px; width: auto; max-width: 280px; object-fit: contain; }
.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-menu a { display: block; padding: 8px 14px; font-size: 0.9rem; font-weight: 500; color: var(--text); text-decoration: none; border-radius: 8px; transition: all 0.2s; }
.nav-menu a:hover, .nav-menu a.active { color: var(--green-primary); background: var(--green-light); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff; padding: 11px 22px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(244,124,32,0.35);
}
.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(244,124,32,0.45); }
.nav-cta svg { width: 16px; height: 16px; fill: currentColor; }
.menu-toggle { display: none; background: none; border: 1px solid var(--border); border-radius: 8px; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 4px 0; border-radius: 2px; transition: all 0.3s; }

/* ===========================
   SCROLL PROGRESS BAR
   =========================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--green-primary), var(--orange));
  z-index: 9999; transition: width 0.1s linear;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  background: linear-gradient(135deg, #0d5c28 0%, #1a8a3c 45%, #2eab55 80%, #4dc973 100%);
  position: relative; overflow: hidden; min-height: 620px; display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
/* Sweep shimmer — CSS only */
.hero-sweep {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  animation: heroCSSsweep 3.5s ease-in-out infinite;
}
@keyframes heroCSSsweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.cleaning-bubble-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.cleaning-bubble {
  position: absolute;
  display: block;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 24%, rgba(255,255,255,0.95) 0 7%, rgba(255,255,255,0.38) 8% 15%, transparent 16%),
    radial-gradient(circle at 64% 72%, rgba(163,255,191,0.32), transparent 28%),
    radial-gradient(circle at center, rgba(255,255,255,0.1), rgba(255,255,255,0.03) 48%, rgba(255,255,255,0.24) 68%, rgba(255,255,255,0.07) 100%);
  border: 1px solid rgba(255,255,255,0.34);
  box-shadow:
    inset -12px -14px 26px rgba(255,255,255,0.12),
    inset 14px 18px 30px rgba(255,255,255,0.08),
    0 0 28px rgba(163,255,191,0.16);
  backdrop-filter: blur(1px);
  opacity: 0.82;
  animation-name: cleaningBubbleRise;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.cleaning-bubble-1 { width: 72px; height: 72px; left: 42%; top: 10%; animation-duration: 7s; animation-delay: -.5s; }
.cleaning-bubble-2 { width: 150px; height: 150px; right: 35%; top: 25%; animation-duration: 9s; animation-delay: -2s; }
.cleaning-bubble-3 { width: 48px; height: 48px; left: 4%; top: 37%; animation-duration: 6.5s; animation-delay: -1s; }
.cleaning-bubble-4 { width: 106px; height: 106px; right: 5%; top: 15%; animation-duration: 8.5s; animation-delay: -3s; }
.cleaning-bubble-5 { width: 54px; height: 54px; right: 16%; top: 40%; animation-duration: 6.8s; animation-delay: -2.4s; }
.cleaning-bubble-6 { width: 90px; height: 90px; left: 47%; bottom: 18%; animation-duration: 7.8s; animation-delay: -1.8s; }
.cleaning-bubble-7 { width: 124px; height: 124px; left: -2%; bottom: 14%; animation-duration: 9.2s; animation-delay: -4s; }
.cleaning-bubble-8 { width: 40px; height: 40px; left: 50%; top: 40%; animation-duration: 5.8s; animation-delay: -2.6s; }
@keyframes cleaningBubbleRise {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  35% { transform: translate3d(18px, -36px, 0) scale(1.04); }
  70% { transform: translate3d(-12px, 28px, 0) scale(.96); }
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding-top: 60px; padding-bottom: 60px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 50px;
  padding: 6px 16px; font-size: 0.8rem; color: rgba(255,255,255,0.9); margin-bottom: 24px;
}
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #7eff9e; display: inline-block; animation: pulseDot 2s infinite; }
@keyframes pulseDot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }
.hero h1 { color: #fff; margin-bottom: 20px; animation: fadeSlideUp 0.8s ease 0.2s both; }
.hero h1 em { color: #a3ffbf; font-style: normal; }
.hero-badge { animation: fadeSlideUp 0.7s ease 0.1s both; }
.hero p { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-bottom: 36px; max-width: 480px; animation: fadeSlideUp 0.8s ease 0.35s both; }
.hero-btns { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; animation: fadeSlideUp 0.8s ease 0.5s both; }
.hero-image { position: relative; animation: fadeSlideRight 0.9s ease 0.3s both; }
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeSlideRight { from { opacity: 0; transform: translateX(48px); } to { opacity: 1; transform: translateX(0); } }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: #fff; padding: 15px 30px; border-radius: 50px;
  font-size: 1rem; font-weight: 700; text-decoration: none; transition: all 0.25s;
  box-shadow: 0 6px 24px rgba(244,124,32,0.5); font-family: var(--font-display);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(244,124,32,0.6); }
.btn-primary svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.3);
  color: #fff; padding: 13px 28px; border-radius: 50px;
  font-size: 1rem; font-weight: 600; text-decoration: none; transition: all 0.25s;
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.5); }
.hero-img-wrap {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.2); border-radius: 24px; overflow: hidden;
  height: 420px; display: flex; align-items: center; justify-content: center; position: relative;
  animation: floatHero 4s ease-in-out infinite;
}
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,92,40,0.08), rgba(13,92,40,0.28));
  pointer-events: none;
}
@keyframes floatHero { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.hero-illustration { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.hero-illustration svg { width: 180px; height: 180px; opacity: 0.88; }
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 50%;
  display: block;
}
.hero-stats {
  position: absolute; bottom: -20px; left: 0; right: 0;
  display: flex; gap: 12px; justify-content: center;
}
.hero-stat { background: #fff; border-radius: 12px; padding: 12px 18px; box-shadow: var(--shadow-lg); text-align: center; min-width: 110px; animation: fadeSlideUp 0.7s ease 0.8s both; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--green-primary); font-weight: 800; }
.hero-stat span { font-size: 0.72rem; color: var(--text-muted); }

/* ===========================
   STATS BAR
   =========================== */
.stats-bar { background: var(--dark); padding: 56px 0; }
.stats-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; }
.stats-bar-item { padding: 24px; border-right: 1px solid rgba(255,255,255,0.1); }
.stats-bar-item:last-child { border-right: none; }
.stats-bar-icon { margin-bottom: 12px; display: flex; justify-content: center; }
.stats-bar-icon svg { width: 36px; height: 36px; fill: var(--orange); opacity: 0.85; }
.stats-bar-num { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: #fff; display: block; line-height: 1; }
.stats-bar-num .plus { color: var(--orange); }
.stats-bar-label { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 6px; display: block; }

/* ===========================
   BENEFITS / 4 CARDS
   =========================== */
.benefits { background: var(--bg); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.benefit-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; box-shadow: var(--shadow-sm); transition: all 0.3s; }
.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--green-primary); }
.benefit-icon { width: 64px; height: 64px; border-radius: 16px; background: var(--green-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; transition: all 0.3s; }
.benefit-icon svg { width: 30px; height: 30px; fill: var(--green-primary); transition: fill 0.3s; }
.benefit-card:hover .benefit-icon { background: var(--green-primary); }
.benefit-card:hover .benefit-icon svg { fill: #fff; }
.benefit-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--text); }
.benefit-card p { font-size: 0.88rem; line-height: 1.6; }

/* ===========================
   WHY QUALITY / 3 CARDS
   =========================== */
.why-quality { background: var(--bg-soft); }
.why-quality .section-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: center; margin-top: 16px; }
.why-heading h2 { margin-bottom: 16px; }
.why-cards { display: flex; flex-direction: column; gap: 20px; }
.why-card { background: #fff; border-radius: var(--radius); padding: 28px; display: flex; gap: 20px; align-items: flex-start; box-shadow: var(--shadow-sm); border-left: 4px solid var(--green-primary); transition: all 0.25s; }
.why-card:hover { box-shadow: var(--shadow-md); }
.why-card-icon { width: 48px; height: 48px; min-width: 48px; border-radius: 12px; background: var(--green-light); display: flex; align-items: center; justify-content: center; }
.why-card-icon svg { width: 24px; height: 24px; fill: var(--green-primary); }
.why-card h3 { font-size: 1rem; margin-bottom: 6px; }
.why-card p { font-size: 0.87rem; margin: 0; }

/* ===========================
   INDUSTRY GRID
   =========================== */
.industries { background: #fff; }
.industries-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 48px; }
.industry-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 20px 14px; display: flex; align-items: center; gap: 14px; cursor: pointer; transition: all 0.2s; text-decoration: none; color: var(--text); }
.industry-card:hover { border-color: var(--green-primary); background: var(--green-light); box-shadow: var(--shadow-sm); }
.industry-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.industry-icon svg { width: 24px; height: 24px; fill: var(--green-primary); }
.industry-card span { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.industries-cta { text-align: center; margin-top: 40px; }

/* ===========================
   MINI CTA BANNER
   =========================== */
.mini-cta { background: #eef3f5; padding: 32px 0; }
.small-cta-wrap { display: flex; justify-content: center; margin-top: 40px; padding: 12px; background: #eef3f5; border-radius: 18px; }
.small-cta-compact { max-width: 520px; }
.mini-cta .small-cta-wrap { margin-top: 0; }
.industries-cta .small-cta-wrap { margin-top: 0; }
.small-cta-card { width: 100%; max-width: 760px; min-height: 84px; background: #fff; border-radius: var(--radius); padding: 18px 22px; display: grid; grid-template-columns: 4px minmax(0, 1fr) 44px; align-items: center; gap: 20px; border: 1px solid #dce6ea; box-shadow: 0 10px 28px rgba(21,54,72,0.09); text-decoration: none; color: var(--text); transition: transform 0.25s, box-shadow 0.25s; }
.small-cta-card:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(21,54,72,0.13); }
.small-cta-bar { width: 4px; height: 52px; background: var(--orange); border-radius: 4px; display: block; }
.small-cta-copy { text-align: center; min-width: 0; }
.small-cta-copy h4, .small-cta-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--text); line-height: 1.35; display: block; }
.small-cta-copy p { font-size: 0.85rem; margin: 4px 0 0; line-height: 1.55; }
.small-cta-arrow { width: 44px; height: 44px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; transition: all 0.25s; box-shadow: 0 4px 12px rgba(244,124,32,0.3); flex-shrink: 0; }
.small-cta-arrow svg { width: 18px; height: 18px; fill: #fff; }
.small-cta-card:hover .small-cta-arrow { background: var(--orange-dark); transform: translateX(3px); }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials { background: var(--bg-soft); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-card { background: #fff; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: all 0.3s; }
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-quote { font-size: 2.5rem; color: var(--green-primary); line-height: 1; margin-bottom: 16px; font-family: Georgia, serif; }
.testimonial-card p { font-size: 0.92rem; margin-bottom: 24px; color: var(--text-muted); }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; border: 2px solid var(--green-primary); overflow: hidden; flex-shrink: 0; }
.testimonial-avatar svg { width: 26px; height: 26px; fill: var(--green-primary); }
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--text); }
.testimonial-author span { font-size: 0.78rem; color: var(--green-primary); font-weight: 600; }

/* ===========================
   HOW IT WORKS
   =========================== */
.how-it-works { background: var(--bg-soft); }
.how-it-works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.how-step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.how-step-number { width: 42px; height: 42px; border-radius: 50%; background: var(--green-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 18px; }
.how-step h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--text); }
.how-step p { font-size: 0.9rem; line-height: 1.65; margin: 0; }

/* ===========================
   PRICING
   =========================== */
.pricing { background: #fff; }
.pricing .text-center h2 { max-width: 680px; margin-left: auto; margin-right: auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; align-items: stretch; }
.pricing-card { background: #fff; border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 36px 32px; position: relative; display: flex; flex-direction: column; min-height: 100%; }
.pricing-card:hover { box-shadow: var(--shadow-md); }
.pricing-card.featured { background: var(--green-dark); border-color: var(--green-dark); color: #fff; box-shadow: var(--shadow-lg); }
.pricing-badge { position: absolute; top: 18px; right: 20px; background: var(--orange); color: #fff; font-size: 0.72rem; font-weight: 800; padding: 5px 14px; border-radius: 20px; }
.pricing-tier { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-primary); margin-bottom: 14px; padding-right: 92px; }
.pricing-card.featured .pricing-tier { color: rgba(255,255,255,0.72); }
.pricing-name { font-family: var(--font-display); font-size: 1.45rem; font-weight: 800; color: var(--text); margin-bottom: 8px; letter-spacing: 0; }
.pricing-card.featured .pricing-name { color: #fff; }
.pricing-description { color: var(--text-muted); font-size: 0.92rem; line-height: 1.55; margin: 0 0 24px; min-height: 44px; }
.pricing-card.featured .pricing-description { color: rgba(255,255,255,0.76); }
.pricing-price { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--text); margin-bottom: 6px; line-height: 1; letter-spacing: 0; }
.pricing-card.featured .pricing-price { color: #fff; }
.pricing-period { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.7); }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 0 0 24px; }
.pricing-card.featured .pricing-divider { border-color: rgba(255,255,255,0.18); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; line-height: 1.45; color: var(--text-muted); }
.pricing-features li.disabled { opacity: 0.42; }
.check-icon { width: 20px; height: 20px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; margin-top: 1px; }
.check-icon.on { background: var(--green-primary); color: #fff; }
.pricing-card.featured .check-icon.on { background: var(--orange); }
.pricing-card.featured li { color: rgba(255,255,255,0.86); }
.btn-pricing { display: block; width: 100%; padding: 14px; border-radius: 50px; font-size: 0.95rem; font-weight: 800; text-align: center; cursor: pointer; border: none; font-family: var(--font-display); transition: background 0.25s, box-shadow 0.25s, color 0.25s; text-decoration: none; }
.btn-pricing-light { background: var(--orange); color: #fff; box-shadow: 0 4px 14px rgba(244,124,32,0.35); }
.btn-pricing-light:hover { background: var(--orange-dark); }
.btn-pricing-dark { background: #fff; color: var(--green-dark); }
.btn-pricing-dark:hover { background: rgba(255,255,255,0.92); }
.pricing-note { color: var(--text-muted); font-size: 0.95rem; font-weight: 600; text-align: center; margin-top: 28px; }

/* ===========================
   WHY JANITORIAL LEADS HUB
   =========================== */
.why-hub { background: var(--bg-soft); }
.why-hub-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 16px; }
.why-hub-left h2 { margin-bottom: 20px; }
.why-hub-left p { margin-bottom: 28px; }
.why-hub-points { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-hub-point { background: #fff; border-radius: var(--radius); padding: 24px 20px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: all 0.25s; }
.why-hub-point:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.why-hub-icon { margin-bottom: 12px; display: flex; }
.why-hub-icon svg { width: 28px; height: 28px; fill: var(--green-primary); }
.why-hub-point h4 { font-size: 0.95rem; font-family: var(--font-display); font-weight: 700; margin-bottom: 8px; }
.why-hub-point p { font-size: 0.83rem; line-height: 1.55; margin: 0; }
.why-hub-image { border-radius: var(--radius-lg); overflow: hidden; }
.why-hub-img-box { background: #f6f8f6; border-radius: var(--radius-lg); height: 460px; display: flex; align-items: center; justify-content: center; border: 2px solid var(--border); overflow: hidden; box-shadow: var(--shadow-md); padding: 22px; }
.why-hub-img-box svg { width: 120px; height: 120px; fill: var(--green-primary); opacity: 0.4; }
.why-hub-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.marketing-solutions { background: #edf3f6; }
.marketing-solutions .text-center h2 { color: var(--orange-dark); max-width: 820px; margin-left: auto; margin-right: auto; }
.marketing-solutions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 48px; align-items: stretch; }
.marketing-solution-card { background: #fff; border-radius: var(--radius); padding: 28px 22px 26px; border: 1px solid #dae6ea; box-shadow: 0 10px 28px rgba(21,54,72,0.08); min-height: 100%; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.marketing-solution-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(21,54,72,0.12); border-color: rgba(244,124,32,0.35); }
.marketing-solution-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--green-light); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.marketing-solution-icon svg { width: 24px; height: 24px; fill: var(--green-primary); }
.marketing-solution-card h3 { font-size: 1rem; color: var(--text); margin-bottom: 10px; }
.marketing-solution-card p { font-size: 0.84rem; line-height: 1.65; margin: 0; }

/* ===========================
   FAQ SECTION (HOME)
   =========================== */
.faq { background: var(--bg); }
.faq-subhead { font-size: 0.85rem; color: var(--green-primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.faq-card { background: var(--bg-soft); border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); transition: all 0.25s; }
.faq-card:hover { box-shadow: var(--shadow-sm); border-color: var(--green-primary); }
.faq-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--green-light); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.faq-icon svg { width: 20px; height: 20px; fill: var(--green-primary); }
.faq-card h3 { font-size: 0.95rem; margin-bottom: 10px; color: var(--text); }
.faq-card p { font-size: 0.85rem; line-height: 1.65; }

/* ===========================
   CONTACT SECTION
   =========================== */
.contact { background: var(--bg-soft); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; margin-top: 56px; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: 16px; }
.contact-info > p { margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-item-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--green-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon svg { width: 22px; height: 22px; fill: var(--green-primary); }
.contact-item strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.contact-item span { font-size: 0.83rem; color: var(--text-muted); line-height: 1.55; }
.contact-link { color: var(--text-muted); text-decoration: none; }
.contact-link:hover { color: var(--green-primary); }
.contact-form-wrap { background: #fff; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.contact-form-label { display: inline-flex; align-items: center; gap: 6px; background: var(--orange-light); color: var(--orange-dark); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; margin-bottom: 12px; }
.contact-form-label svg { width: 14px; height: 14px; fill: currentColor; }
.contact-form-wrap h3 { margin-bottom: 28px; font-size: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-group label span { color: var(--orange); }
.form-control { width: 100%; padding: 15px 18px; border: 1.5px solid #d9e1e6; border-radius: 16px; font-size: 0.94rem; font-family: var(--font-body); color: var(--text); background: #fff; transition: all 0.2s; outline: none; }
.form-control:focus { border-color: var(--green-primary); box-shadow: 0 0 0 3px rgba(26,138,60,0.1); }
.form-control::placeholder { color: #9aa9b1; }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 150px; }
.form-submit { display: block; width: auto; min-width: 190px; margin: 10px auto 0; padding: 15px 38px; border: none; border-radius: 50px; background: var(--orange); color: #fff; font-size: 1rem; font-weight: 700; font-family: var(--font-display); cursor: pointer; transition: all 0.25s; box-shadow: 0 6px 20px rgba(244,124,32,0.4); }
.form-submit:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero { background: linear-gradient(135deg, #0d5c28 0%, #1a8a3c 60%, #2eab55 100%); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.85rem; }
.breadcrumb span { color: rgba(255,255,255,0.45); font-size: 0.85rem; }

/* ===========================
   ABOUT PAGE
   =========================== */
.about-intro { padding: 80px 0; }
.about-visual { background: var(--bg-green); border-radius: var(--radius-lg); height: clamp(300px, 42vw, 420px); display: flex; align-items: center; justify-content: center; border: 2px solid var(--border); overflow: hidden; box-shadow: var(--shadow-md); }
.about-photo { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.about-mission { background: var(--bg-soft); padding: 80px 0; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.mission-card { background: #fff; border-radius: var(--radius-lg); padding: 40px 36px; border-top: 4px solid var(--green-primary); box-shadow: var(--shadow-sm); }
.mission-card.vision { border-top-color: var(--orange); }
.mission-card-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--green-light); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.mission-card.vision .mission-card-icon { background: var(--orange-light); }
.mission-card-icon svg { width: 28px; height: 28px; fill: var(--green-primary); }
.mission-card.vision .mission-card-icon svg { fill: var(--orange-dark); }
.mission-card h3 { font-size: 1.4rem; margin-bottom: 16px; }
.mission-card p { font-size: 0.95rem; }

/* ===========================
   INDUSTRY PAGE
   =========================== */
.industry-full-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.industry-full-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px 20px; display: flex; flex-direction: column; align-items: center; gap: 12px; cursor: pointer; transition: all 0.2s; text-decoration: none; text-align: center; }
.industry-full-card:hover { border-color: var(--green-primary); background: var(--green-light); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.industry-full-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--green-light); display: flex; align-items: center; justify-content: center; }
.industry-full-card:hover .industry-full-icon { background: var(--green-primary); }
.industry-full-icon svg { width: 24px; height: 24px; fill: var(--green-primary); transition: fill 0.2s; }
.industry-full-card:hover .industry-full-icon svg { fill: #fff; }
.industry-full-card span { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.industry-full-card p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* ===========================
   PRICING PAGE
   =========================== */
.pricing-details { background: var(--bg-soft); padding: 80px 0; }
.pricing-details-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pricing-detail-card { background: #fff; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.pricing-detail-card h3 { margin-bottom: 16px; color: var(--green-primary); font-size: 1.05rem; }
.pricing-detail-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-detail-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--text-muted); }
.pricing-detail-card li::before { content: '✓'; color: var(--green-primary); font-weight: 700; flex-shrink: 0; }

/* ===========================
   FAQ PAGE (full)
   =========================== */
.accordion-item { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: all 0.2s; }
.accordion-item.open { border-color: var(--green-primary); box-shadow: var(--shadow-sm); }
.accordion-trigger { width: 100%; padding: 20px 24px; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--text); text-align: left; }
.accordion-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; font-size: 16px; color: var(--green-primary); }
.accordion-item.open .accordion-icon { background: var(--green-primary); color: #fff; transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.accordion-body-inner { padding: 0 24px 20px; }
.accordion-body p { font-size: 0.9rem; line-height: 1.7; }

/* ===========================
   ARTICLES / BLOG
   =========================== */
.articles { background: var(--bg); }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.article-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s; }
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.article-img { height: 200px; background: linear-gradient(135deg, var(--green-light), var(--bg-green)); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--border); }
.article-img svg { width: 64px; height: 64px; fill: var(--green-primary); opacity: 0.35; }
.article-body { padding: 24px; }
.article-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.article-tag { background: var(--green-light); color: var(--green-primary); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; }
.article-date { font-size: 0.78rem; color: var(--text-light); }
.article-card h3 { font-size: 1rem; line-height: 1.45; margin-bottom: 10px; }
.article-card p { font-size: 0.85rem; margin-bottom: 16px; }
.read-more { color: var(--green-primary); font-size: 0.85rem; font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: 4px; }
.read-more:hover { color: var(--green-dark); }

/* ===========================
   FOOTER
   =========================== */
.footer { background: #0d1f12; color: #fff; }
.footer-cta { border-bottom: 1px solid rgba(255,255,255,0.1); padding: 24px 0; display: flex; align-items: center; justify-content: center; }
.footer-cta-link { display: inline-flex; align-items: center; gap: 10px; color: var(--orange); font-family: var(--font-display); font-weight: 700; font-size: 1rem; text-decoration: none; }
.footer-cta-arrow { width: 32px; height: 32px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.footer-cta-arrow svg { width: 14px; height: 14px; fill: #fff; }
.footer-main { padding: 60px 0 40px; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 64px; }
.footer-brand .logo { display: inline-flex; max-width: 100%; margin-bottom: 22px; }
.footer-logo { display: block; width: 100%; max-width: 280px; height: auto; object-fit: contain; filter: drop-shadow(0 1px 1px rgba(255,255,255,0.28)) drop-shadow(0 3px 8px rgba(0,0,0,0.22)); }
.footer-brand p { font-size: 0.87rem; color: rgba(255,255,255,0.6); margin-top: 0; margin-bottom: 24px; max-width: 240px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { color: rgba(255,255,255,0.7); font-size: 0.85rem; text-decoration: none; display: flex; align-items: center; gap: 8px; }
.footer-contact a:hover { color: #fff; }
.footer-contact svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }
.footer-col h4 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; margin-bottom: 20px; color: var(--orange); text-transform: uppercase; letter-spacing: 0.06em; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.87rem; text-decoration: none; transition: all 0.2s; }
.footer-links a:hover { color: #fff; padding-left: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.social-links { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); text-decoration: none; font-size: 13px; font-weight: 700; transition: all 0.2s; }
.social-link:hover { background: var(--green-primary); color: #fff; transform: translateY(-2px); }

/* ===========================
   PAGE ROUTING
   =========================== */
.page { display: none; }
.page.active { display: block; }

/* ===========================
   SCROLL TO TOP
   =========================== */
.scroll-top { position: fixed; bottom: 88px; right: 28px; width: 44px; height: 44px; background: var(--green-primary); color: #fff; border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow-md); transition: all 0.25s; opacity: 0; pointer-events: none; z-index: 900; }
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--green-dark); transform: translateY(-3px); }
.scroll-top svg { width: 18px; height: 18px; fill: currentColor; }

/* ===========================
   AOS OVERRIDE — never hide elements when AOS not initialized
   =========================== */
.aos-init[data-aos]:not(.aos-animate) { pointer-events: none; }
.aos-init[data-aos].aos-animate { pointer-events: auto; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
  .industries-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
  .footer-logo { max-width: 240px; }
}
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { display: block; width: min(100%, 560px); margin: 0 auto 20px; }
  .hero-img-wrap { height: clamp(280px, 58vw, 380px); }
  .hero-stats { position: relative; bottom: auto; margin-top: -18px; flex-wrap: wrap; }
  .how-it-works-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .why-quality .section-inner { grid-template-columns: 1fr; gap: 36px; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .why-hub-layout { grid-template-columns: 1fr; }
  .why-hub-image { display: block; width: min(100%, 680px); margin: 10px auto 0; }
  .why-hub-img-box { height: clamp(280px, 58vw, 420px); }
  .marketing-solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .industry-full-grid { grid-template-columns: repeat(3, 1fr); }
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nav-menu { display: none; }
  .nav-menu.open { display: flex; flex-direction: column; position: absolute; top: 78px; left: 0; right: 0; background: #fff; padding: 16px; box-shadow: var(--shadow-md); border-top: 1px solid var(--border); z-index: 999; }
  .nav { min-height: 78px; padding: 8px 0; }
  .site-logo { height: 54px; max-width: 220px; }
  .menu-toggle { display: flex; flex-direction: column; justify-content: center; }
  .topbar-left { gap: 8px 14px; }
  .topbar-left a { font-size: 0.78rem; }
  .topbar-right { display: none; }
  .hero-img-wrap { height: 260px; border-radius: 18px; }
  .hero-stats { gap: 8px; }
  .hero-stat { min-width: 96px; padding: 10px 12px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand .logo { margin-bottom: 18px; }
  .footer-logo { max-width: 200px; }
  .why-hub-points { grid-template-columns: 1fr; }
  .why-hub-img-box { height: 260px; padding: 12px; }
  .marketing-solutions-grid { gap: 14px; }
  .marketing-solution-card { padding: 22px 14px 20px; }
  .marketing-solution-icon { width: 42px; height: 42px; margin-bottom: 14px; }
  .marketing-solution-card h3 { font-size: 0.92rem; }
  .marketing-solution-card p { font-size: 0.76rem; line-height: 1.5; }
  .industry-full-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: 1fr; }
  .small-cta-wrap { margin-top: 32px; padding: 10px; }
  .small-cta-card { grid-template-columns: 4px minmax(0, 1fr) 40px; gap: 14px; padding: 16px 14px; min-height: 76px; }
  .small-cta-bar { height: 48px; }
  .small-cta-copy h4, .small-cta-title { font-size: 0.94rem; }
  .small-cta-copy p { font-size: 0.78rem; line-height: 1.45; }
  .small-cta-arrow { width: 40px; height: 40px; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-details-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 30px 20px; }
}

/* WordPress content region - hidden unless editable page content exists. */
.wp-page-content { background: var(--bg); }
.wp-page-content .container > * + * { margin-top: 1rem; }
