* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f6fbf7;
  color: #111;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #dceee1;
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  min-height: 74px;
  padding: 0 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111;
  text-decoration: none;
  font-size: 24px;
  font-weight: 900;
}

.brand-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.green,
.eyebrow {
  color: #168b35;
}

.nav-btn,
.primary-btn,
.secondary-btn {
  text-decoration: none;
  border-radius: 14px;
  padding: 12px 17px;
  font-weight: 900;
  display: inline-block;
}

.nav-btn,
.primary-btn {
  background: #168b35;
  color: white;
}

.secondary-btn {
  background: white;
  color: #168b35;
  border: 1px solid #cdebd5;
}

.hero {
  max-width: 1120px;
  margin: 0 auto;
  min-height: 620px;
  padding: 78px 22px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 46px;
  align-items: center;
  position: relative;
}

.transparent-logo {
  position: absolute;
  right: 40px;
  top: 48px;
  width: 270px;
  opacity: 0.07;
  pointer-events: none;
  z-index: -1;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.8px;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.96;
  letter-spacing: -2px;
  margin: 0 0 18px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0 0 16px;
}

.hero-text,
.section p {
  font-size: 17px;
  line-height: 1.6;
  color: #555;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.quote-preview {
  background: white;
  border: 1px solid #dceee1;
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 24px 60px rgba(10,61,25,0.13);
  animation: slideInRight 0.7s ease both;
}

.preview-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.small-label {
  color: #168b35;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.preview-top h3 {
  margin: 5px 0 4px;
  font-size: 25px;
}

.preview-top p {
  margin: 0;
  color: #666;
  font-size: 13px;
}

.open-pill {
  background: #e7f7ec;
  color: #168b35;
  border-radius: 999px;
  padding: 8px 11px;
  height: fit-content;
  font-size: 12px;
  font-weight: 900;
}

.quote-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  background: #f7fbf8;
  border: 1px solid #e1eee5;
  border-radius: 17px;
  padding: 14px;
  margin-top: 10px;
}

.quote-row span {
  display: block;
  color: #666;
  font-size: 12px;
  margin-top: 4px;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 78px 22px;
}

.steps,
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card,
.service-grid div,
.trust-list div {
  background: white;
  border: 1px solid #e1eee5;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

.number {
  color: #168b35;
  font-size: 13px;
  font-weight: 900;
}

.card h3 {
  margin: 12px 0 8px;
}

.soft-section {
  background: #eaf8ee;
  border-radius: 36px;
}

.service-grid div {
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.trust-list {
  display: grid;
  gap: 12px;
  font-weight: 900;
}

.worker-section,
.download-section {
  text-align: center;
  background: white;
  border: 1px solid #e1eee5;
  border-radius: 36px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  margin-bottom: 44px;
}

.download-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  opacity: 0.55;
  margin-bottom: 12px;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.store-buttons button {
  border: none;
  background: #111;
  color: white;
  border-radius: 14px;
  padding: 14px 24px;
  font-weight: 900;
}

.footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px 22px 52px;
  text-align: center;
  color: #666;
}

.footer-brand {
  justify-content: center;
  margin-bottom: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.45s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(26px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 820px) {
  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .steps,
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .transparent-logo {
    width: 210px;
    right: 0;
    top: 75px;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 0 18px;
  }

  .brand {
    font-size: 21px;
  }

  .brand-logo {
    width: 32px;
    height: 32px;
  }

  .nav-btn {
    padding: 10px 12px;
    font-size: 12px;
  }

  h1 {
    font-size: 43px;
  }

  .hero {
    padding: 42px 18px 54px;
  }

  .hero-actions {
    display: grid;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    text-align: center;
  }

  .steps,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 18px;
  }
}
