html, body {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --green: #1f8c4c;
  --green-dark: #155f34;
  --green-soft: #eff8f2;
  --gold-soft: #f4c76a;
  --text: #18211b;
  --muted: #5c695f;
  --line: #dde8df;
  --shadow: 0 18px 40px rgba(19, 49, 29, 0.08);
  --radius: 22px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}

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

.page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(31, 140, 76, 0.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(244, 199, 106, 0.14), transparent 25%),
    #ffffff;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.95);
}

.topbar-inner {
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.topbar-tag {
  font-weight: 700;
  color: var(--green-dark);
}

.topbar-mail {
  color: var(--muted);
  font-weight: 600;
}

.hero {
  padding: 72px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.pill {
  display: inline-block;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 700;
}

.pill-soft {
  background: var(--green-soft);
  color: var(--green-dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.02;
  margin: 18px 0 14px;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.1;
  margin: 14px 0 10px;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.intro,
.section-head p,
.info-box p,
.contact-card p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0;
}

.btn {
  border-radius: 14px;
  padding: 14px 22px;
  font-weight: 700;
  display: inline-block;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: #fff;
  border: 1px solid var(--line);
}

.hero-panel,
.stat-card,
.card,
.line-card,
.info-box,
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 28px;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 11px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  padding: 18px;
}

.stat-title {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}

.section {
  padding: 68px 0;
}

.section-soft {
  background: #f8fbf9;
}

.section-head {
  margin-bottom: 24px;
}

.grid {
  display: grid;
  gap: 18px;
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three-cols {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.line-card,
.info-box,
.contact-card {
  padding: 22px;
}

.card {
  text-align: center;
  font-weight: 700;
}

.stack {
  display: grid;
  gap: 16px;
}

.line-card {
  position: relative;
  padding-left: 48px;
  font-weight: 700;
}

.line-card::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-soft);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
  background: linear-gradient(135deg, #f9fcfa, #ffffff);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-label {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.contact-mail {
  display: inline-block;
  font-size: clamp(1.2rem, 2.1vw, 1.7rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 10px;
  word-break: break-word;
}

.footer {
  border-top: 1px solid var(--line);
  background: #fbfdfb;
}

.footer-inner {
  padding: 22px 0 34px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .hero-grid,
  .contact-wrap,
  .three-cols,
  .two-cols {
    grid-template-columns: 1fr;
  }

  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .topbar-inner,
  .footer-inner,
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cards-4,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .section {
    padding: 54px 0;
  }

  .contact-wrap {
    padding: 24px;
  }
}
