:root {
  --lime: #84cc16;
  --lime-dark: #4d7c0f;
  --lime-soft: #ecfccb;
  --slate: #020617;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #f8fafc;
  --white: #fff;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--slate);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 16px;
  display: grid; place-items: center;
  background: var(--lime); font-weight: 900;
  box-shadow: 0 12px 30px rgba(132, 204, 22, 0.35);
}
.brand strong { display: block; letter-spacing: .22em; font-size: 14px; }
.brand small { display: block; letter-spacing: .26em; color: var(--muted); font-weight: 700; font-size: 11px; }
.desktop-nav { display: flex; align-items: center; gap: 6px; }
.desktop-nav a, .mobile-nav a {
  padding: 10px 16px; border-radius: 999px; color: #475569; font-weight: 700; font-size: 14px;
}
.desktop-nav a:hover, .mobile-nav a:hover { background: var(--lime-soft); color: var(--slate); }
.header-actions { display: flex; gap: 8px; align-items: center; }
.lang-btn, .menu-btn {
  border: 1px solid var(--line); background: var(--white); border-radius: 999px;
  padding: 10px 15px; font-weight: 800; cursor: pointer;
}
.menu-btn { display: none; width: 44px; height: 44px; padding: 0; font-size: 22px; }
.mobile-nav { display: none; padding: 8px 20px 16px; border-top: 1px solid var(--line); background: var(--white); }
.mobile-nav a { display: block; }

.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(circle at 10% 0%, rgba(132,204,22,.32), transparent 35%), linear-gradient(135deg, #f8fafc 0%, #ecfccb 45%, #fff 100%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1fr .9fr; gap: 56px; padding: 86px 0 92px; align-items: center; }
.eyebrow { display: inline-flex; border: 1px solid #d9f99d; background: rgba(255,255,255,.9); color: var(--lime-dark); border-radius: 999px; padding: 9px 14px; font-weight: 900; }
h1 { font-size: clamp(44px, 7vw, 76px); line-height: .98; letter-spacing: -.05em; margin: 24px 0; }
h2 { font-size: clamp(36px, 5vw, 54px); line-height: 1.02; letter-spacing: -.04em; margin: 8px 0 14px; }
.lead, .subtitle { font-size: 20px; line-height: 1.65; color: #334155; }
.text { color: #475569; line-height: 1.85; font-size: 16px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 14px 22px; font-weight: 900; transition: .2s ease; }
.btn:hover { transform: translateY(-2px); }
.primary, .dark { background: var(--slate); color: var(--white); box-shadow: 0 18px 34px rgba(15,23,42,.2); }
.secondary { background: var(--white); border: 1px solid var(--line); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 34px; max-width: 660px; }
.stats div { background: rgba(255,255,255,.82); border-radius: 24px; padding: 18px 12px; text-align: center; box-shadow: 0 8px 28px rgba(15,23,42,.06); }
.stats b { color: var(--lime-dark); display: block; font-size: 24px; }
.stats span { display: block; margin-top: 4px; font-size: 12px; font-weight: 900; text-transform: uppercase; color: #475569; }
.hero-card { position: relative; border-radius: 40px; padding: 12px; background: var(--white); box-shadow: var(--shadow); }
.hero-card img { width: 100%; height: 520px; object-fit: cover; border-radius: 32px; }
.floating-card { position: absolute; left: 34px; right: 34px; bottom: 34px; padding: 20px; background: rgba(255,255,255,.9); backdrop-filter: blur(12px); border-radius: 24px; box-shadow: 0 18px 45px rgba(15,23,42,.16); }
.floating-card small { display: block; color: var(--muted); font-weight: 800; }
.floating-card strong { display: block; margin-top: 4px; font-size: 22px; }
.floating-card span { display: block; margin-top: 8px; color: #475569; font-size: 14px; }

.section { padding: 86px 0; }
.anchor-section { scroll-margin-top: 90px; }
.section-white { background: var(--white); }
.split-grid { display: grid; grid-template-columns: .9fr 1fr; gap: 56px; align-items: center; }
.section-number { color: var(--lime-dark); font-weight: 1000; letter-spacing: .24em; margin: 0; }
.image-card { position: relative; overflow: hidden; border-radius: 36px; box-shadow: var(--shadow); }
.image-card img { height: 350px; width: 100%; object-fit: cover; }
.image-card.small img { height: 280px; }
.image-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(2,6,23,.55), transparent 60%); }
.image-card span { position: absolute; left: 22px; bottom: 22px; z-index: 1; padding: 10px 16px; border-radius: 999px; background: rgba(255,255,255,.9); font-weight: 900; }
.value-grid, .card-grid { display: grid; gap: 16px; margin-top: 30px; }
.value-grid { grid-template-columns: repeat(3, 1fr); }
.value-grid article, .card-grid article, .brand-grid article { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: 0 10px 34px rgba(15,23,42,.06); }
.value-grid b, .process b { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 16px; background: var(--lime-soft); color: var(--lime-dark); }
h3, h4 { margin: 0; }
.value-grid h3, .card-grid h3 { margin-top: 16px; font-size: 17px; }
.value-grid p, .card-grid p, .brand-grid p, .process p { color: var(--muted); line-height: 1.65; margin-bottom: 0; font-size: 14px; }
.legal-box { margin-top: 56px; background: var(--slate); color: var(--white); border-radius: 36px; padding: 34px; box-shadow: var(--shadow); }
.legal-box h3 { font-size: 26px; margin-bottom: 22px; }
.legal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.legal-grid div { border-radius: 22px; padding: 18px; background: rgba(255,255,255,.1); }
.legal-grid small { display: block; color: #cbd5e1; margin-bottom: 6px; }
.legal-grid strong, .legal-grid a { display: block; font-weight: 900; overflow-wrap: anywhere; }
.legal-grid .wide { grid-column: span 2; }
.email-tile { background: var(--lime) !important; color: var(--slate); }
.email-tile small { color: #365314; }
.products-head { display: grid; grid-template-columns: 1fr .75fr; gap: 44px; align-items: end; }
.card-grid.four { grid-template-columns: repeat(4, 1fr); margin-top: 42px; }
.card-grid article span { font-size: 30px; display: block; margin-bottom: 18px; }
.brand-box { margin-top: 42px; background: #f8fafc; border: 1px solid var(--line); border-radius: 36px; padding: 30px; }
.brand-box-head { display: flex; gap: 20px; justify-content: space-between; align-items: start; }
.brand-box-head h3 { font-size: 28px; }
.brand-box-head p { max-width: 560px; color: var(--muted); line-height: 1.7; margin: 0; }
.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.brand-grid article { display: flex; gap: 14px; align-items: flex-start; }
.brand-grid article > span { width: 56px; height: 56px; border-radius: 18px; flex: none; display: grid; place-items: center; background: var(--lime-soft); color: var(--lime-dark); font-size: 12px; font-weight: 1000; }
.process { margin-top: 28px; background: var(--white); border: 1px solid var(--line); border-radius: 32px; padding: 8px; box-shadow: 0 10px 34px rgba(15,23,42,.06); }
.process article { display: flex; gap: 16px; padding: 18px; border-bottom: 1px solid #f1f5f9; }
.process article:last-child { border-bottom: 0; }
.process h3 { font-size: 17px; }
.contact-section { padding: 0 0 86px; }
.contact-box { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; background: var(--lime); border-radius: 40px; padding: 46px; box-shadow: 0 28px 70px rgba(132,204,22,.25); }
.contact-box h2 { margin: 0; }
.contact-box p { font-size: 18px; line-height: 1.65; color: #1e293b; }
.contact-details { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; font-weight: 800; font-size: 14px; }
.footer { background: var(--white); border-top: 1px solid var(--line); padding: 28px 0; }
.footer-wrap { display: flex; gap: 20px; justify-content: space-between; align-items: center; color: var(--muted); font-size: 14px; }
.footer strong { color: var(--slate); }
.footer a { color: var(--lime-dark); font-weight: 900; }
.fade-in { animation: fadeIn .7s ease both; }
.delay { animation-delay: .16s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-btn { display: block; }
  .mobile-nav.open { display: block; }
  .hero-grid, .split-grid, .products-head, .contact-box { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 56px; }
  .hero-card img { height: 380px; }
  .value-grid, .card-grid.four, .brand-grid, .legal-grid { grid-template-columns: 1fr 1fr; }
  .contact-details { grid-template-columns: 1fr; }
  .footer-wrap { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand small { display: none; }
  h1 { font-size: 42px; }
  .hero-grid, .section { padding: 54px 0; }
  .stats, .value-grid, .card-grid.four, .brand-grid, .legal-grid { grid-template-columns: 1fr; }
  .legal-grid .wide { grid-column: span 1; }
  .brand-box-head { display: block; }
  .hero-card img { height: 320px; }
  .floating-card { left: 22px; right: 22px; bottom: 22px; }
  .contact-box, .legal-box, .brand-box { padding: 24px; border-radius: 28px; }
}
