* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #0c0a09;
  color: white;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  min-height: 100vh;
  padding: 28px 7%;
  background:
    radial-gradient(circle at top left, rgba(101, 163, 13, 0.28), transparent 35%),
    radial-gradient(circle at bottom right, rgba(180, 83, 9, 0.22), transparent 35%),
    #0c0a09;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 28px;
  background: #4d7c0f;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.brand h1 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0.5px;
}

.brand p {
  margin: 4px 0 0;
  font-size: 12px;
  color: #d9f99d;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.call-btn {
  background: white;
  color: #0c0a09;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 110px 0 60px;
}

.tag {
  display: inline-block;
  padding: 11px 16px;
  border-radius: 999px;
  color: #ecfccb;
  background: rgba(190,242,100,0.11);
  border: 1px solid rgba(190,242,100,0.25);
  font-weight: 700;
}

.hero-text h2 {
  margin: 22px 0 0;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.95;
  letter-spacing: -2px;
}

.hero-text p {
  max-width: 660px;
  color: #e7e5e4;
  font-size: 20px;
  line-height: 1.7;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.primary, .secondary {
  padding: 16px 22px;
  border-radius: 18px;
  font-weight: 900;
}

.primary {
  background: #65a30d;
  color: white;
}

.secondary {
  border: 1px solid rgba(255,255,255,0.22);
}

.logo-card {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 34px;
  padding: 22px;
  box-shadow: 0 35px 80px rgba(0,0,0,0.35);
}

.logo-card > div, .logo-card ul {
  background: #1c1917;
  border-radius: 26px;
}

.fake-logo {
  text-align: center;
  padding: 34px 20px;
  border: 1px solid rgba(190,242,100,0.25);
  background: rgba(190,242,100,0.08) !important;
}

.fake-logo h3 {
  margin: 0;
  font-size: 44px;
  letter-spacing: 1px;
}

.fake-logo h4 {
  margin: 8px 0 0;
  color: #d9f99d;
  font-size: 20px;
  letter-spacing: 8px;
}

.fake-logo p {
  margin: 20px 0 0;
  color: #d6d3d1;
  letter-spacing: 4px;
}

.logo-card ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 24px;
}

.logo-card li {
  color: #e7e5e4;
  margin-bottom: 14px;
  line-height: 1.5;
}

.logo-card li::before {
  content: "✓";
  color: #a3e635;
  font-weight: 900;
  margin-right: 10px;
}

.section {
  padding: 90px 7%;
}

.section-label {
  color: #bef264;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 14px;
}

.section h2, .about h2, .quote h2 {
  margin: 12px 0 0;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
}

.section-intro {
  max-width: 760px;
  color: #d6d3d1;
  line-height: 1.7;
  font-size: 19px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.22);
}

.card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #65a30d;
  border-radius: 18px;
  font-size: 28px;
}

.card h3 {
  font-size: 25px;
  margin-bottom: 10px;
}

.card p {
  color: #d6d3d1;
  line-height: 1.7;
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  padding: 80px 7%;
  background: rgba(28,25,23,0.85);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.about p:last-child {
  color: #d6d3d1;
  font-size: 19px;
  line-height: 1.8;
}

.quote {
  margin: 90px 7%;
  padding: 46px;
  border-radius: 34px;
  background: #65a30d;
  color: #1c1917;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  box-shadow: 0 35px 75px rgba(0,0,0,0.35);
}

.quote p {
  font-size: 18px;
  font-weight: 600;
}

.contact-box {
  background: rgba(255,255,255,0.78);
  border-radius: 26px;
  padding: 24px;
  display: grid;
  gap: 14px;
  font-weight: 900;
}

footer {
  text-align: center;
  color: #a8a29e;
  padding: 32px 7%;
  border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 850px) {
  .nav {
    align-items: flex-start;
  }

  .call-btn {
    display: none;
  }

  .hero-content,
  .cards,
  .about,
  .quote {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 70px;
  }

  .fake-logo h3 {
    font-size: 34px;
  }

  .fake-logo h4 {
    letter-spacing: 4px;
  }
}
