* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1B5E20;
  --primary-light: #2E7D32;
  --primary-dark: #0D3B14;
  --accent: #FF6F00;
  --accent-light: #FF8F00;
  --bg: #FAFAF7;
  --surface: #FFFFFF;
  --surface-elevated: #FFFFFF;
  --text: #14201A;
  --text-secondary: #4A554F;
  --text-tertiary: #8A9489;
  --border: #E5E7E1;
  --divider: #EFF1ED;
  --shadow-sm: 0 1px 2px rgba(20, 32, 26, 0.05);
  --shadow-md: 0 4px 12px rgba(20, 32, 26, 0.08);
  --shadow-lg: 0 12px 32px rgba(20, 32, 26, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Header / nav
   ============================================ */
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: transparent;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.15s;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.nav-links a:hover {
  color: #fff;
}

/* Pages other than the home page get a solid header (no full-bleed hero) */
body.page header {
  position: relative;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
body.page .logo,
body.page .nav-links a {
  color: var(--text);
  text-shadow: none;
}
body.page .nav-links a {
  color: var(--text-secondary);
}
body.page .nav-links a:hover {
  color: var(--primary);
}

/* ============================================
   Full-bleed hero
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  background-image:
    linear-gradient(180deg, rgba(13, 20, 16, 0.25) 0%, rgba(13, 20, 16, 0.15) 35%, rgba(13, 20, 16, 0.78) 100%),
    url('/banner.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 120px 24px 80px;
  color: #fff;
}

.hero-content {
  max-width: 880px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hero .subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.92);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.5;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--primary-dark);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s, box-shadow 0.15s;
}

.cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.15s;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   Sections
   ============================================ */
section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px;
}

.section-eyebrow {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

section h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-lede {
  text-align: center;
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto 56px;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  box-shadow: var(--shadow-sm);
}

.feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 125, 50, 0.25);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(46, 125, 50, 0.1);
  font-size: 24px;
  margin-bottom: 16px;
}

.feature h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* Pricing strip — full-bleed, overrides default section max-width */
.pricing-strip {
  max-width: none;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 80px 24px;
  text-align: center;
}

.pricing-strip-inner {
  max-width: 720px;
  margin: 0 auto;
}

.pricing-strip h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 12px;
}

.pricing-strip p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  margin-bottom: 28px;
}

.pricing-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.price .amount {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.price .period {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price.featured {
  position: relative;
}

.price.featured::after {
  content: 'Best Value';
  position: absolute;
  top: -10px;
  right: -16px;
  background: var(--accent);
  color: #fff;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Footer
   ============================================ */
footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  margin-top: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text);
}

.footer-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--primary);
}

.copyright {
  color: var(--text-tertiary);
  font-size: 13px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 720px) {
  nav { padding: 16px 20px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 13px; }

  .hero { padding: 100px 20px 60px; min-height: 80vh; }

  section { padding: 64px 20px; }

  .features-grid { gap: 14px; }
  .feature { padding: 22px; }

  .pricing-row { gap: 20px; }
  .price .amount { font-size: 28px; }
}
