/* ══════════════════════════════════════════
   RESET & TOKENS
══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --dark: #1C4A2E;
  --mid: #3A7D44;
  --accent: #7BAF7E;
  --cream: #F5F0E8;
  --white: #fff;
  --text: #1A2E1A;
  --muted: #5E6E5E;
  --light-muted: #8A9E8A;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, .08);
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

/* ══ UTILITIES ══ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem
}

.section {
  padding: 5rem 0
}

.tag {
  display: inline-block;
  background: rgba(123, 175, 126, .15);
  border: 1px solid var(--accent);
  color: var(--mid);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 2rem;
  margin-bottom: .9rem
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .4rem;
  line-height: 1.2
}

.section-sub {
  color: var(--muted);
  font-size: .97rem;
  margin-bottom: 2.8rem;
  max-width: 560px
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all .2s;
  border: none
}

.btn-primary {
  background: var(--dark);
  color: #fff
}

.btn-primary:hover {
  background: var(--mid)
}

.btn-white {
  background: #fff;
  color: var(--dark)
}

.btn-white:hover {
  background: var(--cream)
}

.btn-outline-hero {
  background: transparent;
  color: rgba(255, 255, 255, .85);
  border: 2px solid rgba(255, 255, 255, .4);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all .2s
}

.btn-outline-hero:hover {
  background: var(--mid);
  color: #fff;
  border-color: var(--mid)
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem
}

/* ══ NAVBAR ══ */
#navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--dark);
  padding: .75rem 0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .2)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.nav-logo-btn {
  cursor: pointer
}

.nav-logo {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -.02em;
  user-select: none
}

.nav-logo span {
  color: var(--accent)
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  list-style: none
}

.nav-links label {
  cursor: pointer;
  color: rgba(255, 255, 255, .75);
  font-size: .83rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color .2s
}

.nav-links label:hover {
  color: var(--accent)
}

.privacy-nav-btn {
  display: inline-block
}

.nav-cta-wrap {
  display: inline-block
}

.nav-cta {
  background: var(--accent);
  color: var(--dark) !important;
  padding: .4rem 1rem;
  border-radius: 2rem;
  font-weight: 700 !important;
  display: inline-block
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: .25rem
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s
}

/* ══ MOBILE DRAWER SYSTEM (PURE CSS) ══ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem
}

.mobile-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer
}

.mobile-link {
  cursor: pointer;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700
}

#mobile-menu-toggle:checked~.mobile-menu {
  display: flex
}

/* ══ SINGLE-PAGE ROUTER (PURE CSS) ══ */
.page {
  display: none
}

#route-home:checked~#page-home {
  display: block
}

#route-privacy:checked~#page-privacy {
  display: block
}

/* ══════════════════════════════════════════
   HOME PAGE CONTENT SIZING
══════════════════════════════════════════ */

/* HERO */
#hero {
  background: var(--dark);
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  background: #1E5C35;
  opacity: .5
}

.hero-blob.b1 {
  width: 500px;
  height: 500px;
  top: -120px;
  right: -100px
}

.hero-blob.b2 {
  width: 280px;
  height: 280px;
  bottom: -60px;
  left: -60px
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 6rem 0
}

.hero-badge {
  display: inline-block;
  background: rgba(123, 175, 126, .18);
  border: 1px solid rgba(123, 175, 126, .5);
  color: var(--accent);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 2rem;
  margin-bottom: 1.2rem
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1.2rem
}

.hero-title em {
  color: var(--accent);
  font-style: normal
}

.hero-sub {
  color: rgba(255, 255, 255, .72);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

.hero-img-wrap {
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  padding: .1rem;
  box-shadow: 0 16px 64px rgba(0, 0, 0, .25)
}

.hero-img-wrap img {
  border-radius: 12px
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem
}

.h-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent)
}

.h-stat span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  letter-spacing: .06em
}

/* TRUST BAR */
.trust-bar {
  background: var(--cream);
  border-top: 1px solid rgba(58, 125, 68, .12);
  padding: 1.4rem 0
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: var(--muted);
  font-size: .83rem;
  font-weight: 600
}

.trust-icon {
  font-size: 1.1rem
}

/* ABOUT */
#about {
  background: #fff
}

.about-visual {
  position: relative
}

.about-img-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.about-badge-float {
  position: absolute;
  bottom: -1.2rem;
  left: -1.2rem;
  background: var(--dark);
  color: #fff;
  padding: 1.1rem 1.3rem;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  font-size: .83rem;
  line-height: 1.5
}

.about-badge-float strong {
  font-size: 1.5rem;
  display: block;
  color: var(--accent)
}

.about-content {
  padding-left: 1rem
}

.about-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: .97rem
}

.about-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin: 1.5rem 0
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .93rem;
  color: var(--text);
  font-weight: 600
}

.about-checklist li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mid);
  color: #fff;
  font-size: .7rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

/* FEATURES */
#features {
  background: var(--cream)
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .25s
}

.feature-card:hover {
  transform: translateY(-6px)
}

.feature-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #D6EDD6;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .6rem
}

.feature-card p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.7
}

/* TESTIMONIALS */
#testimonials {
  background: var(--dark);
  position: relative;
  overflow: hidden
}

#testimonials::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: #1E5C35;
  opacity: .4
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1
}

.testi-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 1.8rem
}

.testi-stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: .8rem;
  letter-spacing: .1em
}

.testi-body {
  color: rgba(255, 255, 255, .82);
  font-size: .92rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
  font-style: italic
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .75rem
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .88rem;
  color: #fff;
  flex-shrink: 0
}

.testi-name {
  color: #fff;
  font-weight: 700;
  font-size: .9rem
}

.testi-role {
  color: rgba(255, 255, 255, .45);
  font-size: .78rem
}

#testimonials .section-title {
  color: #fff
}

#testimonials .section-sub {
  color: var(--accent)
}

/* CONTACT */
#contact {
  background: #fff
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start
}

.contact-info h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .6rem
}

.contact-info p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.8rem;
  font-size: .95rem
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  margin-bottom: 1.2rem
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #EBF5EB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0
}

.contact-detail-text strong {
  display: block;
  color: var(--dark);
  font-size: .9rem;
  margin-bottom: .1rem
}

.contact-detail-text span {
  color: var(--muted);
  font-size: .87rem
}

.contact-form {
  background: var(--cream);
  border-radius: 20px;
  padding: 2.2rem
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem
}

.form-group label {
  font-size: .83rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: .04em
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: .75rem 1rem;
  border: 1.5px solid rgba(58, 125, 68, .2);
  border-radius: var(--radius);
  font-size: .93rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color .2s;
  outline: none
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--mid)
}

.form-group textarea {
  resize: vertical;
  min-height: 110px
}

.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem
}

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .55);
  padding: 3.5rem 0 1.5rem
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem
}

.footer-brand p {
  font-size: .87rem;
  line-height: 1.7;
  max-width: 260px;
  margin-top: 0.5rem
}

.footer-col h4 {
  color: #fff;
  font-size: .87rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem
}

.footer-col ul li label,
.footer-link-btn {
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
  transition: color .2s;
  cursor: pointer
}

.footer-col ul li label a {
  transition: color .2s
}

.footer-col ul li label:hover,
.footer-col ul li label a:hover,
.footer-link-btn:hover {
  color: var(--accent)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem
}

/* ══════════════════════════════════════════
   PRIVACY POLICY PAGE
══════════════════════════════════════════ */
.privacy-hero {
  background: var(--dark);
  padding: 4rem 0;
  text-align: center
}

.privacy-hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: .5rem
}

.privacy-hero p {
  color: var(--accent);
  font-size: .93rem
}

.privacy-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 1.5rem
}

.privacy-body h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin: 2.5rem 0 .8rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid var(--cream)
}

.privacy-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--mid);
  margin: 1.5rem 0 .5rem
}

.privacy-body p,
.privacy-body li {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: .7rem
}

.privacy-body ul {
  padding-left: 1.5rem
}

.privacy-body ul li {
  margin-bottom: .4rem
}

.privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #EBF5EB;
  border: 1px solid var(--accent);
  color: var(--mid);
  font-size: .82rem;
  font-weight: 600;
  padding: .5rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 2rem
}

/* ══ RESPONSIVE BREAKPOINTS ══ */
@media(max-width:900px) {

  .grid-2,
  .grid-3,
  .hero-inner,
  .about-visual+*,
  .contact-grid,
  .testi-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .testi-grid {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .hero-inner {
    padding: 4rem 0
  }

  .about-visual {
    order: -1
  }

  .about-badge-float {
    bottom: .5rem;
    left: .5rem
  }
}

@media(max-width:640px) {
  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem
  }

  .trust-inner {
    gap: 1.5rem
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-bottom {
    flex-direction: column;
    gap: .8rem;
    text-align: center
  }

  .hero-btns {
    flex-direction: column
  }
}