:root {
  --green: #00d83f;
  --bg: #030303;
  --text: #ffffff;
  --muted: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Inter, Arial, sans-serif; background: var(--bg); color: var(--text); }
a { color: inherit; text-decoration: none; }

.hero {
  min-height: 100vh;
  padding: 28px 6% 54px;
  background:
    radial-gradient(circle at 54% 28%, rgba(0,216,63,.26), transparent 28%),
    radial-gradient(circle at 8% 88%, rgba(0,216,63,.10), transparent 26%),
    #030303;
}

.navbar {
  max-width: 1440px;
  margin: 0 auto 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img { display: block; width: 205px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 38px; font-weight: 600; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 12px;
  border: 0;
  font-weight: 800;
  cursor: pointer;
}

.btn-primary {
  background: var(--green);
  color: #010101;
  box-shadow: 0 14px 34px rgba(0,216,63,.22);
}

.hero-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .85fr .88fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  color: var(--green);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .6px;
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.08;
  letter-spacing: -2.5px;
  margin-bottom: 26px;
}

h1 strong, h2 span, h3 span, .cta span, .section-title span { color: var(--green); }

.hero-copy > p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
  max-width: 650px;
}

.mini-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.mini-features div { text-align: center; }

.mini-features span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 14px;
  font-weight: 800;
  margin-bottom: 10px;
}

.mini-features p { font-size: 14px; line-height: 1.4; }

.rate-box {
  margin-top: 34px;
  display: inline-block;
  max-width: 340px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
}

.rate-box strong { display: block; font-size: 22px; margin-bottom: 8px; }
.rate-box p { color: var(--muted); line-height: 1.6; }

.hero-product { position: relative; text-align: center; }

.green-ring {
  position: absolute;
  inset: 2% 0 auto;
  margin: auto;
  width: min(390px, 90%);
  aspect-ratio: 1;
  border: 3px solid var(--green);
  border-radius: 50%;
  box-shadow: 0 0 42px rgba(0,216,63,.34);
  z-index: 0;
}

.machine-img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(410px, 100%);
  margin: auto;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.65));
}

.hero-product h2 { margin-top: 8px; font-size: 28px; }
.hero-product p { color: var(--muted); margin-top: 8px; line-height: 1.6; }

.lead-card {
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

.lead-card h2 { font-size: 34px; line-height: 1.15; margin-bottom: 14px; }
.lead-card p { color: var(--muted); margin-bottom: 22px; }
form { display: grid; gap: 13px; }

input, select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  color: var(--text);
  font: inherit;
  outline: none;
}

select option { color: #111; }
.lead-card small { display: block; color: var(--muted); margin-top: 18px; text-align: center; }

.benefits {
  max-width: 1440px;
  width: 88%;
  margin: 0 auto;
  transform: translateY(-8px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.035));
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
}

.benefits article { padding: 30px; border-right: 1px solid var(--line); }
.benefits article:last-child { border-right: 0; }
.benefits h3 { font-size: 22px; margin-bottom: 12px; }
.benefits p { color: var(--muted); line-height: 1.65; }

.solutions {
  max-width: 1440px;
  width: 88%;
  margin: 68px auto 0;
}

.section-title { text-align: center; margin-bottom: 44px; }
.section-title h2 { font-size: clamp(34px, 4vw, 48px); letter-spacing: -1.4px; margin-bottom: 14px; }
.section-title p { color: var(--muted); }

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.solution-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #070707;
}

.solution-card img {
  width: 100%;
  height: 245px;
  object-fit: contain;
  padding: 22px;
  background: radial-gradient(circle, rgba(0,216,63,.18), transparent 58%);
}

.solution-card .card-image { object-fit: contain; padding: 0; background: #050505; }
.solution-card > div:not(.support-visual) { padding: 24px; }
.solution-card h3 { font-size: 24px; margin-bottom: 12px; }
.solution-card p { color: var(--muted); line-height: 1.65; margin-bottom: 20px; }

.solution-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.solution-card li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 10px;
}

.support-visual {
  height: 245px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 48px;
  font-weight: 900;
  background:
    radial-gradient(circle, rgba(0,216,63,.22), transparent 55%),
    linear-gradient(135deg, #111, #060606);
}

.cta {
  max-width: 1440px;
  width: 88%;
  margin: 48px auto 72px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.035));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta h2 { font-size: clamp(28px, 3vw, 42px); margin-bottom: 10px; }
.cta p { color: var(--muted); line-height: 1.6; }

.footer {
  max-width: 1440px;
  width: 88%;
  margin: 0 auto;
  padding: 30px 0 44px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}

.footer img { width: 150px; height: auto; }

@media (max-width: 1180px) {
  .hero-grid, .solution-grid { grid-template-columns: 1fr 1fr; }
  .lead-card { grid-column: 1 / -1; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .benefits article { border-bottom: 1px solid var(--line); }
}

@media (max-width: 780px) {
  .brand img { width: 170px; }
  .nav-links, .navbar > .btn { display: none; }
  .hero-grid, .solution-grid, .mini-features, .benefits { grid-template-columns: 1fr; }
  h1 { letter-spacing: -1.5px; }
  .lead-card { padding: 24px; }
  .lead-card h2 { font-size: 28px; }
  .benefits article { border-right: 0; }
  .cta, .footer { flex-direction: column; align-items: flex-start; }
}
