:root {
  --primary: #2e8b57;
  --accent: #5d9cec;
  --accent2: #f5a623;
  --text: #34495e;
  --muted: #9fa4b0;
  --bg: #f8f1e5;
  --card: #ffffff;
  --border: rgba(52, 73, 94, 0.14);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1100px, 100% - 32px);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--card);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 1000;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 241, 229, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(52, 73, 94, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand-icon {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(46, 139, 87, 0.25);
}

.brand-name {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
}

.nav a:hover {
  background: rgba(93, 156, 236, 0.12);
}

.header-cta {
  display: flex;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 12px;
  padding: 12px 16px;
  border: 1px solid transparent;
  transition: transform 0.05s ease-in-out, background 0.15s ease-in-out, border-color 0.15s ease-in-out;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--primary);
  border-color: rgba(46, 139, 87, 0.35);
  color: #fff;
}

.btn-primary:hover {
  background: #257a4b;
}

.btn-secondary {
  background: rgba(93, 156, 236, 0.12);
  border-color: rgba(93, 156, 236, 0.25);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(93, 156, 236, 0.18);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(0, 0, 0, 0.03);
}

.hero {
  padding: 46px 0 16px;
}

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

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(46, 139, 87, 0.95);
}

.hero h1 {
  margin: 12px 0 12px;
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-copy p {
  margin: 0;
  color: rgba(52, 73, 94, 0.85);
  font-size: 16px;
  line-height: 1.6;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-badges {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.badge {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(52, 73, 94, 0.1);
  border-radius: 14px;
  padding: 12px;
}

.badge-title {
  display: block;
  font-weight: 900;
  color: var(--text);
}

.badge-subtitle {
  display: block;
  margin-top: 4px;
  font-weight: 700;
  font-size: 13px;
  color: rgba(52, 73, 94, 0.72);
}

.media-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(52, 73, 94, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.media-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.section {
  padding: 56px 0;
}

.section-alt {
  background: rgba(93, 156, 236, 0.06);
  border-top: 1px solid rgba(52, 73, 94, 0.08);
  border-bottom: 1px solid rgba(52, 73, 94, 0.08);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(24px, 2.3vw, 34px);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: rgba(52, 73, 94, 0.85);
  line-height: 1.6;
  max-width: 65ch;
}

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

.feature {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(52, 73, 94, 0.1);
  border-radius: var(--radius);
  padding: 18px;
  min-height: 168px;
}

.feature-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
}

.feature h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.feature p {
  margin: 0;
  color: rgba(52, 73, 94, 0.85);
  line-height: 1.6;
  font-size: 14px;
}

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

.step {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(52, 73, 94, 0.1);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(46, 139, 87, 0.16);
  color: var(--primary);
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.step p {
  margin: 0;
  color: rgba(52, 73, 94, 0.85);
  line-height: 1.6;
  font-size: 14px;
}

.faq {
  display: grid;
  gap: 12px;
  max-width: 820px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(52, 73, 94, 0.1);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-item p {
  margin: 10px 0 0;
  color: rgba(52, 73, 94, 0.85);
  line-height: 1.6;
}

.cta-band {
  padding: 26px 0 60px;
}

.cta-inner {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(52, 73, 94, 0.1);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cta-inner h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.cta-inner p {
  margin: 10px 0 0;
  color: rgba(52, 73, 94, 0.85);
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer {
  padding: 20px 0 34px;
  border-top: 1px solid rgba(52, 73, 94, 0.1);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.footer-icon {
  border-radius: 12px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: rgba(52, 73, 94, 0.9);
  font-weight: 700;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  color: rgba(52, 73, 94, 0.75);
  font-weight: 600;
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }

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

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

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .nav {
    display: none;
  }
}

