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

:root {
  --page-bg: #fdfcf9;
  --green-mid: #607641;
  --green-light: #96b071;
  --green-dark: #28311b;
  --orange: #ae582d;
  --text-dark: #1a1a1a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text-dark);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

h1, h2, h3, .brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  margin: 0;
}

a { color: var(--orange); }

.topbar {
  background: var(--green-mid);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  font-size: 2.2rem;
  color: var(--text-dark);
  text-decoration: none;
  line-height: 1.1;
}

.cta-btn {
  background: var(--orange);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 10px;
  display: inline-block;
}

.navpill-wrap {
  display: flex;
  justify-content: center;
  margin-top: -20px;
  position: relative;
  z-index: 2;
}

.navpill {
  background: var(--green-dark);
  border-radius: 10px;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 6px 10px;
  gap: 4px;
  flex-wrap: wrap;
}

.navpill a {
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 8px 16px;
  display: inline-block;
}

.navpill a.active,
.navpill a:hover {
  color: var(--orange);
}

.hero {
  position: relative;
  min-height: 55vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(40,49,27,0.05) 0%, rgba(40,49,27,0.85) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 40px 24px;
  max-width: 900px;
}

.hero-inner h1 {
  font-size: 2.6rem;
  margin: 0 0 8px;
  color: #fff;
}

.hero-inner p {
  color: #fff;
  font-size: 1.1rem;
}

.price-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 10px;
  margin-top: 8px;
}

main { max-width: 1000px; margin: 0 auto; padding: 40px 24px; }

section { margin-bottom: 56px; }

.section-badge {
  background: var(--green-dark);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
  padding: 18px 24px;
  border-radius: 10px;
  margin-bottom: 24px;
}

.callout {
  background: var(--green-light);
  color: var(--text-dark);
  border-radius: 10px;
  padding: 22px 26px;
  font-size: 1.15rem;
  font-style: italic;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  margin-bottom: 40px;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px 24px;
  font-family: 'Raleway', sans-serif;
}

.features li {
  padding-left: 22px;
  position: relative;
}

.features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

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

.gallery figure {
  margin: 0;
  background: var(--green-light);
  border-radius: 10px;
  overflow: hidden;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.gallery figcaption {
  padding: 10px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

.extras {
  background: var(--green-light);
  padding: 24px;
  border-radius: 10px;
}

.extras h3 { color: var(--green-dark); margin-top: 0; font-family: 'Raleway', sans-serif; font-weight: 700; }

.extras p { margin: 0 0 12px; }

.contact-strip {
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 28px 20px;
  font-family: 'Raleway', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.contact-strip a { color: #fff; text-decoration: underline; }

.social-row {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

footer {
  text-align: center;
  padding: 24px;
  background: var(--green-dark);
  color: #cddabb;
  font-size: 0.85rem;
}

.demo-banner {
  background: #3a2a12;
  color: #f2d9a8;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.85rem;
}
