.hero {
  background: #1a1a1a;
  padding: 148px 28px 100px;
  position: relative;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  top: -100px;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(91, 135, 44, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.hero-glow-2 {
  position: absolute;
  bottom: -60px;
  left: 5%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(160, 211, 108, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(160, 211, 108, 0.12);
  border: 1px solid rgba(160, 211, 108, 0.25);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  margin-bottom: 28px;
}
.hero-badge span {
  font-size: 12px;
  font-weight: 700;
  color: var(--g200);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--g300);
  box-shadow: 0 0 0 3px rgba(160, 211, 108, 0.25);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(160, 211, 108, 0.25);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(160, 211, 108, 0.1);
  }
}
.hero-left h1 {
  font-size: 62px;
  font-weight: 900;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 24px;
  margin-top: 32px;
}
.hero-left h1 em {
  font-style: normal;
  color: #A0D36C;
}
.hero-left p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 22px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 36px;
}

.hcard-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.hcard-product {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.hcard-rate {
  font-size: 76px;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--g300);
  line-height: 1;
}

.hcard-rate-lbl {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 28px;
  margin-top: 4px;
}

.hcard-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.hcard-tx-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 12px;
}

.hcard-tx {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hcard-tx-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hcard-tx-name {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
}

.hcard-tx-amount {
  font-size: 14px;
  font-weight: 700;
  color: var(--g300);
}

.hcard-tx-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
}

.stats-bar {
  background: var(--gray50);
  border-top: 1px solid var(--gray200);
  border-bottom: 1px solid var(--gray200);
  padding: 40px 28px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--g600);
  line-height: 1;
}

.stat-lbl {
  font-size: 14px;
  color: var(--gray500);
  margin-top: 6px;
  line-height: 1.4;
}

.about-section {
  background: linear-gradient(140deg, #4A7A22 0%, #5B8A32 50%, #6B9A3A 100%);
  padding: 100px 28px;
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(160, 211, 108, 0.1) 1px, transparent 1px);
  background-size: 26px 26px;
}

.about-prose {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.about-prose h2 {
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}
.about-prose > p:not(.about-sub) {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  text-align: left;
  margin-bottom: 20px;
}

.about-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0;
}

.about-divider {
  position: relative;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin: 36px auto;
  max-width: 280px;
}
.about-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.benefits-left h2 {
  font-size: 34px;
  font-weight: 900;
  color: var(--gray900);
  margin-bottom: 20px;
}
.benefits-left p {
  font-size: 16px;
  color: var(--gray700);
  line-height: 1.8;
  margin-bottom: 20px;
}

.benefits-accent {
  color: var(--g600) !important;
  font-weight: 600;
}

.benefits-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  padding-bottom: 32px;
}
.benefit-item:last-child {
  padding-bottom: 0;
}
.benefit-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 52px;
  width: 2px;
  height: 32px;
  background: repeating-linear-gradient(to bottom, var(--g300) 0, var(--g300) 3px, transparent 3px, transparent 7px);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: var(--g600);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray500);
  margin-bottom: 6px;
}

.benefit-desc {
  font-size: 15px;
  color: var(--gray700);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-left h1 {
    font-size: 50px;
  }
  .hero-card {
    max-width: 420px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 120px 20px 72px;
  }
  .hero-left h1 {
    font-size: 36px;
  }
  .hero-left p {
    font-size: 16px;
    margin-bottom: 28px;
  }
  .hero-btns {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .hero-btns .btn-lg {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .hero-trust {
    display: none;
  }
  .hero-card {
    max-width: 100%;
  }
  .hcard-rate {
    font-size: 60px;
  }
  .stats-bar {
    padding: 32px 20px;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }
  .stat-num {
    font-size: 32px;
  }
  .stat-lbl {
    font-size: 13px;
  }
  .about-section {
    padding: 72px 20px;
  }
  .about-prose h2 {
    font-size: 32px;
  }
  .about-prose > p:not(.about-sub) {
    font-size: 16px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .benefits-left h2 {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 108px 16px 60px;
  }
  .hero-left h1 {
    font-size: 30px;
  }
  .stats-bar {
    padding: 28px 16px;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
  }
  .stat-num {
    font-size: 28px;
  }
  .about-section {
    padding: 56px 16px;
  }
}
