@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --sage: #6A8F7A;
  --sage-light: #AFCAB4;
  --bg: #E7E7E4;
  --ink: #1F2A2B;
  --tan: #D1C7A7;
  --radius: 14px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Poppins', 'Assistant', sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: #fff;
}

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

h1, h2, h3 { line-height: 1.3; margin: 0 0 16px; font-weight: 700; }
h1 { font-size: clamp(26px, 4.5vw, 38px); }
h2 { font-size: clamp(22px, 4vw, 28px); text-align: center; }
h3 { font-size: 18px; margin-bottom: 8px; font-weight: 700; }
p { margin: 0 0 12px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--sage-light);
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo { font-weight: 800; font-size: 20px; color: var(--ink); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: filter 0.15s ease;
}
.btn-primary { background: var(--sage); color: #fff; }
.btn-primary:hover { filter: brightness(0.9); }
.btn-small { padding: 8px 16px; font-size: 14px; }

/* Hero */
.hero {
  text-align: center;
  padding: 72px 0 56px;
  background: var(--bg);
}
.hero h1 { display: flex; flex-direction: column; gap: 8px; }
.hero h1 .line { display: block; }
.hero h1 .line-highlight { color: var(--sage); }
.hero-sub {
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 18px;
  color: var(--ink);
}

/* Sections */
.section { padding: 56px 0; }
.section-alt { background: var(--bg); }
.section-intro {
  max-width: 700px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 17px;
}

/* Feature grid (used in "why us" and "our strength" sections) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--sage-light);
  border-radius: var(--radius);
  padding: 24px;
}
.feature-card h3 { color: var(--sage); }
.feature-card p { margin-bottom: 0; }
.section-alt .feature-card { background: #fff; }

/* Callout (bottom line) */
.callout {
  max-width: 700px;
  margin: 0 auto;
  background: var(--tan);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  font-weight: 600;
}
.callout p { margin-bottom: 0; }

/* Requirements list */
.requirements-list {
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.requirements-list li {
  padding: 14px 20px;
  margin-bottom: 10px;
  background: #fff;
  border: 1px solid var(--sage-light);
  border-radius: var(--radius);
  position: relative;
  padding-right: 44px;
}
.requirements-list li::before {
  content: "✅";
  position: absolute;
  right: 14px;
}

/* CTA blocks */
.cta-center { text-align: center; margin-top: 8px; }

/* Closing section */
.section-closing {
  background: var(--sage);
  color: #fff;
  text-align: center;
}
.section-closing h2 { color: #fff; }
.section-closing p { max-width: 640px; margin: 0 auto 24px; }
.section-closing .btn-primary { background: var(--ink); }
.section-closing .btn-primary:hover { filter: brightness(1.2); }

/* Footer */
.site-footer {
  padding: 28px 0;
  text-align: center;
  border-top: 1px solid var(--sage-light);
  color: var(--ink);
  font-size: 14px;
}
.site-footer a { color: var(--ink); }
.site-footer p { margin: 0 0 6px; }

@media (max-width: 480px) {
  .hero { padding: 48px 0 40px; }
}
