:root {
  --green-dark: #1f5c46;
  --green: #4c8c3c;
  --green-light: #d7e8a8;
  --green-bg: #f4f8ee;
  --red: #b83b2e;
  --ink: #24302b;
  --ink-soft: #55645c;
  --paper: #ffffff;
  --border: #dfe6da;
  --radius: 10px;
  --shadow: 0 4px 16px rgba(31, 92, 70, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  line-height: 1.15;
  margin: 0 0 0.5em;
}

a {
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75em 1.4em;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 12px rgba(184, 59, 46, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 16px rgba(184, 59, 46, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--paper);
  border: 2px solid rgba(255, 255, 255, 0.75);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-large {
  font-size: 1.15rem;
  padding: 0.9em 1.8em;
}

.btn-call {
  background: var(--green-dark);
  color: #fff;
  font-size: 0.95rem;
  padding: 0.55em 1.1em;
}

/* Header */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--green-dark);
}

.brand-mark {
  font-size: 1.4rem;
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--green-dark), var(--green) 130%);
  color: #fff;
  padding: 64px 0 56px;
}

.hero-inner {
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 8px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--green-light);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
}

.hero-banner {
  background: var(--green-light);
  color: var(--green-dark);
  display: inline-block;
  font-weight: 700;
  padding: 0.5em 1.2em;
  border-radius: 999px;
  margin: 8px 0 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-badges {
  display: flex;
  gap: 10px 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
  opacity: 0.95;
}

.hero-badges li::before {
  content: "✓ ";
  color: var(--green-light);
  font-weight: 800;
}

/* Services */
.services {
  padding: 56px 0;
}

.services h2,
.offers h2,
.why-us h2,
.quote h2 {
  text-align: center;
  color: var(--green-dark);
  font-size: 1.9rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px 28px;
  max-width: 760px;
  margin: 32px auto 0;
}

.services-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.02rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* Offers */
.offers {
  background: var(--green-bg);
  padding: 56px 0;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.offer-card {
  background: var(--paper);
  border: 2px solid var(--red);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.offer-amount {
  color: var(--red);
  font-size: 2.4rem;
  font-weight: 900;
  margin: 0 0 6px;
}

.offer-amount-sm {
  font-size: 1.4rem;
}

.offer-headline {
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 10px;
}

.offer-detail {
  font-weight: 600;
  margin: 0 0 12px;
}

.offer-fine {
  color: var(--ink-soft);
  font-size: 0.82rem;
  margin: 0;
}

/* Why us */
.why-us {
  padding: 56px 0;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.why-us-grid li {
  background: var(--green-bg);
  border-radius: var(--radius);
  padding: 22px 20px;
  border: 1px solid var(--border);
}

.why-us-grid h3 {
  color: var(--green-dark);
  font-size: 1.05rem;
}

.why-us-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Quote CTA */
.quote {
  background: var(--green-dark);
  color: #fff;
  padding: 56px 0;
}

.quote-inner {
  text-align: center;
}

.quote h2 {
  color: #fff;
}

.quote p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

/* Footer */
.site-footer {
  background: #16281f;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  padding: 24px 0;
  font-size: 0.9rem;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 560px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .header-call {
    align-self: stretch;
    text-align: center;
  }
}
