/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #F7F8F5;
  color: #141710;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Tokens ───────────────────────────────────────────────── */
:root {
  --lime: #9FD528;
  --lime-dark: #7BBF1A;
  --lime-lt: #EEF6DA;
  --lime-mid: #D4EDAA;
  --border: #E4E7DF;
  --surface: #ffffff;
  --subtle: #F0F2EC;
  --text: #141710;
  --muted: #6B7062;
  --dark: #1A1C17;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

/* ── Container ────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0.65rem 1.4rem; border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s ease; border: none;
}
.btn-lime { background: var(--lime); color: #141710; }
.btn-lime:hover { background: #b3e836; transform: translateY(-1px); }
.btn-dark { background: #141710; color: #fff; }
.btn-dark:hover { background: #2a2f24; }
.btn-outline { background: #fff; color: #141710; border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--lime); background: var(--lime-lt); }

/* ── NAV ──────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,248,245,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex; align-items: center; gap: 2rem;
  padding-top: 1rem; padding-bottom: 1rem;
}
.brand-logo { height: 36px; width: auto; object-fit: contain; background: transparent !important; }
.nav { display: flex; align-items: center; gap: 2rem; margin-left: auto; }
.nav a { font-size: 0.875rem; color: var(--muted); transition: color 0.2s; }
.nav a:hover { color: var(--lime-dark); }
.nav-cta { margin-left: 1rem; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; margin-left: auto; }

@media (max-width: 768px) {
  .nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #F7F8F5; padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); }
  .nav.open { display: flex; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding: 5rem 0 4rem;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(20,23,16,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,23,16,.04) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-glow {
  position: absolute; pointer-events: none;
  border-radius: 50%; filter: blur(90px);
}
.hero-glow-right {
  width: 480px; height: 480px;
  background: rgba(159,213,40,.13);
  top: -120px; right: -100px;
}
.hero-glow-left {
  width: 320px; height: 320px;
  background: rgba(159,213,40,.07);
  bottom: -60px; left: -60px;
}
.hero-layout {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
}
@media (max-width: 900px) { .hero-layout { grid-template-columns: 1fr; } }

.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lime-lt); border: 1px solid rgba(159,213,40,.3);
  color: #4E7A0D; font-size: 0.75rem; font-weight: 500;
  padding: 0.4rem 1rem; border-radius: 999px; margin-bottom: 1.5rem;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--lime-dark);
  animation: pulse 2s infinite;
}
.pulse-dot--dark { background: var(--lime-dark); }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.85); }
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; line-height: 1.06; letter-spacing: -0.02em; margin-bottom: 1.25rem; }
.accent { color: var(--lime-dark); }
.lead { font-size: 1.05rem; color: var(--muted); max-width: 520px; margin-bottom: 1.5rem; }

.trust-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 500; color: var(--text);
}

.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero card */
.hero-card { position: relative; }
.floating-badge {
  position: absolute; top: -18px; right: -12px; z-index: 10;
  background: var(--lime-lt); border: 1px solid rgba(159,213,40,.35);
  border-radius: var(--radius-sm); padding: 0.6rem 1rem;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 4px 16px rgba(159,213,40,.15);
}
.floating-label { display: block; font-size: 0.7rem; color: #4E7A0D; margin-bottom: 2px; }
.floating-value { font-size: 1.6rem; font-weight: 800; color: #4E7A0D; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.card-inner {
  background: var(--surface); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(20,23,16,.07);
  overflow: hidden;
}
.card-header {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1.1rem 1.4rem; border-bottom: 1px solid var(--border);
}
.card-logo { height: 32px; width: auto; object-fit: contain; background: transparent !important; }
.card-title { font-size: 0.85rem; font-weight: 600; }
.card-sub { font-size: 0.72rem; color: var(--muted); }
.status-pill {
  margin-left: auto; display: inline-flex; align-items: center; gap: 6px;
  background: var(--lime-lt); color: #4E7A0D;
  font-size: 0.72rem; font-weight: 500;
  padding: 0.3rem 0.75rem; border-radius: 999px;
}

.card-metrics { display: grid; grid-template-columns: repeat(3,1fr); border-bottom: 1px solid var(--border); }
.metric { padding: 1rem 1.2rem; border-right: 1px solid var(--border); }
.metric:last-child { border-right: none; }
.metric-val { font-size: 1.3rem; font-weight: 800; }
.metric-lbl { font-size: 0.68rem; color: var(--muted); margin-top: 2px; }

.card-bars { padding: 1.1rem 1.4rem; display: flex; flex-direction: column; gap: 0.85rem; }
.bar-row { display: flex; justify-content: space-between; margin-bottom: 4px; }
.bar-label { font-size: 0.78rem; color: var(--muted); }
.bar-pct { font-size: 0.78rem; font-weight: 600; }
.bar-track { height: 6px; background: var(--border); border-radius: 999px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--lime); border-radius: 999px; width: 0; transition: width 1.2s ease; }

.card-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 1.4rem; border-top: 1px solid var(--border);
  font-size: 0.72rem; color: var(--muted);
}
.accent-link { color: var(--lime-dark); font-weight: 500; }

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar { background: var(--surface); border-bottom: 1px solid var(--border); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  divide: var(--border);
}
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }
.stat-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.4rem 1.5rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--lime-lt); border-radius: var(--radius-sm);
}
.stat-val { font-size: 1.5rem; font-weight: 800; }
.stat-lbl { font-size: 0.72rem; color: var(--muted); }

/* ── MARQUEE ──────────────────────────────────────────────── */
.marquee-section { background: var(--subtle); border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.section-label-center { text-align: center; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); margin-bottom: 1.2rem; }
.marquee-outer { position: relative; overflow: hidden; }
.marquee-fade {
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.marquee-fade--left { left: 0; background: linear-gradient(90deg, var(--subtle), transparent); }
.marquee-fade--right { right: 0; background: linear-gradient(-90deg, var(--subtle), transparent); }
.marquee-track {
  display: flex; gap: 1rem; width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.logo-chip {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 74px;
  padding: 14px 22px;
  background: rgba(255,255,255,0.38);
  border: 1px solid rgba(255,255,255,0.58);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: visible;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.logo-chip:hover {
  box-shadow: 0 8px 24px rgba(20,23,16,.08);
  transform: translateY(-2px);
}
.logo-chip img {
  display: block;
  max-width: 148px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  background: transparent !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

/* ── SECTIONS ─────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section--subtle { background: var(--subtle); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-tag { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em; color: var(--lime-dark); }
.section-header { max-width: 640px; margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 800; margin-top: 0.5rem; letter-spacing: -0.02em; }
.section-desc { color: var(--muted); margin-top: 0.75rem; font-size: 1rem; }

.section-header-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: end; margin-bottom: 3rem;
}
.section-header-split h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-top: 0.5rem; letter-spacing: -0.02em; }
.section-desc-right { color: var(--muted); font-size: 0.95rem; }
@media (max-width: 768px) { .section-header-split { grid-template-columns: 1fr; } }

/* ── SERVICES ─────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
@media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  position: relative; overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(circle at top left, rgba(159,213,40,.08), transparent 60%);
  transition: opacity 0.4s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(159,213,40,.12); border-color: rgba(159,213,40,.35); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: var(--lime-lt); border: 1px solid rgba(159,213,40,.2);
  border-radius: var(--radius-sm); margin-bottom: 1rem;
}
.service-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em;
  background: var(--subtle); color: var(--muted); border: 1px solid var(--border);
  padding: 2px 10px; border-radius: 999px; margin-bottom: 0.75rem;
}
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ── STEPS ────────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px) { .steps-grid { grid-template-columns: 1fr; } }

.step-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  position: relative;
  transition: box-shadow 0.25s;
}
.step-card:hover { box-shadow: 0 6px 24px rgba(20,23,16,.07); }
.step-num { font-size: 2.5rem; font-weight: 900; color: rgba(159,213,40,.35); line-height: 1; margin-bottom: 1rem; }
.step-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.step-arrow {
  position: absolute; right: -14px; top: 50%; transform: translateY(-50%);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 50%; width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: var(--muted); z-index: 2;
}
@media (max-width: 900px) { .step-arrow { display: none; } }

/* ── WHY US ───────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; gap: 2rem; } }

.why-copy h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin: 0.5rem 0 1rem; letter-spacing: -0.02em; }
.why-copy p { color: var(--muted); margin-bottom: 1.5rem; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 500; }

.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.benefit-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.benefit-card:hover { border-color: rgba(159,213,40,.3); box-shadow: 0 4px 20px rgba(159,213,40,.08); }
.benefit-icon {
  width: 36px; height: 36px; background: var(--lime-lt);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
}
.benefit-card h3 { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.3rem; }
.benefit-card p { font-size: 0.8rem; color: var(--muted); }

/* ── SECTORS ──────────────────────────────────────────────── */
.sectors-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
@media (max-width: 768px) { .sectors-grid { grid-template-columns: repeat(2,1fr); } }
.sector-chip {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1rem 1.1rem;
  font-size: 0.875rem; font-weight: 500;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.sector-chip:hover { border-color: rgba(159,213,40,.3); box-shadow: 0 4px 16px rgba(159,213,40,.08); }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 28px; padding: 3rem;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 48px rgba(20,23,16,.06);
}
.contact-glow {
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(159,213,40,.09); filter: blur(80px);
  pointer-events: none;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .contact-box { padding: 2rem 1.5rem; } }

.contact-copy h2 { font-size: clamp(1.7rem, 2.8vw, 2.2rem); font-weight: 800; margin: 0.5rem 0 1rem; letter-spacing: -0.02em; }
.contact-copy p { color: var(--muted); margin-bottom: 1.5rem; }

.contact-meta { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.contact-meta-item { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--muted); }

.social-row { display: flex; gap: 0.75rem; }
.social-btn {
  background: var(--subtle); border: 1px solid var(--border); color: var(--muted);
  padding: 0.5rem 1rem; border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}
.social-btn:hover { border-color: rgba(159,213,40,.4); color: var(--text); }

.contact-actions { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex; flex-direction: column; justify-content: space-between;
  border-radius: var(--radius); padding: 1.4rem;
  border: 1px solid var(--border); transition: all 0.2s;
  cursor: pointer;
}
.contact-card--light { background: var(--subtle); }
.contact-card--light:hover { border-color: rgba(159,213,40,.3); background: var(--surface); box-shadow: 0 4px 16px rgba(20,23,16,.06); }
.contact-card--lime { background: var(--lime-lt); border-color: rgba(159,213,40,.3); }
.contact-card--lime:hover { background: #e6f5c8; border-color: rgba(159,213,40,.5); }

.contact-card-label { font-size: 0.72rem; color: var(--muted); margin-bottom: 0.4rem; }
.contact-card--lime .contact-card-label { color: #4E7A0D; }
.contact-card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.2rem; }
.contact-card-sub { font-size: 0.8rem; color: var(--muted); }
.contact-card-arrow { font-size: 0.8rem; color: var(--muted); margin-top: 1rem; display: block; transition: color 0.2s; }
.contact-card:hover .contact-card-arrow { color: var(--lime-dark); }
.contact-card--lime .contact-card-arrow { color: #4E7A0D; }

.contact-note {
  background: var(--subtle); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.9rem 1.1rem;
}
.contact-note-label { font-size: 0.72rem; color: var(--muted); }
.contact-note-val { font-size: 0.875rem; font-weight: 600; margin-top: 2px; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer { background: var(--surface); border-top: 1px solid var(--border); padding: 2rem 0; }
.footer-wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-logo { height: 28px; width: auto; object-fit: contain; background: transparent !important; }
.footer-sub { font-size: 0.72rem; color: var(--muted); }
.footer-copy { font-size: 0.75rem; color: var(--muted); }

/* ── ANIMATIONS ───────────────────────────────────────────── */
.animate-up { opacity: 0; transform: translateY(28px); animation: fadeUp 0.7s ease forwards; }
.animate-delay-1 { animation-delay: 0.12s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
