/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
:root {
  --sage:         #7a9e7e;
  --sage-light:   #c8dbc9;
  --sage-dark:    #4f7153;
  --cream:        #f8f5ef;
  --warm-white:   #fdfaf5;
  --stone:        #d4c9b2;
  --text-dark:    #2c2c2c;
  --text-mid:     #6b6b6b;
  --accent:       #b07d5a;
  --font-display: 'Lato', sans-serif;
  --font-body:    'Roboto', sans-serif;
}

/* ═══════════════════════════════════════════
   BASE
═══════════════════════════════════════════ */
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--warm-white);
  font-size: 20px;
  line-height: 1.75;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.15; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); line-height: 1.2; }
h3 { font-size: 1.25rem; line-height: 1.4; }

p {
  color: var(--text-mid);
  font-size: 20px;
}

a {
  color: var(--sage-dark);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  background: var(--warm-white);
  border-bottom: 1px solid var(--stone);
  padding: 1rem 0;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--sage-dark);
  font-weight: 600;
}

/* Toggler — hide default icon, show custom icons */
.navbar-toggler {
  border: none;
  background: none;
  padding: .25rem .5rem;
  font-size: 1.6rem;
  color: var(--text-dark);
  box-shadow: none !important;
  outline: none !important;
}

/* Default state: show hamburger, hide X */
.nav-icon-open  { display: inline; }
.nav-icon-close { display: none; }

/* Open state: show X, hide hamburger */
.navbar-toggler.is-open .nav-icon-open  { display: none; }
.navbar-toggler.is-open .nav-icon-close { display: inline; }

.nav-link {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-dark) !important;
  letter-spacing: .02em;
  padding: .45rem 1rem !important;
  border-radius: 22px;
  transition: background .2s, color .2s;
}

.nav-link:hover {
  background: var(--sage-light);
  color: var(--sage-dark) !important;
}

/* Active nav link — desktop: sage background pill */
.nav-link.active {
  background: var(--sage-light);
  color: var(--sage-dark) !important;
}

/* Contact nav link — desktop: no background, just text */
.nav-link-contact {
  background: none !important;
  color: var(--sage-dark) !important;
  border: 1.5px solid var(--sage);
}

.nav-link-contact:hover {
  background: var(--sage-light) !important;
}

/* Mobile menu overrides */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--warm-white);
    border-top: 1px solid var(--stone);
    padding: 1rem 0 .5rem;
    margin-top: .5rem;
  }

  .nav-link {
    border-radius: 10px;
    padding: .6rem 1rem !important;
    margin-bottom: .2rem;
  }

  /* Active item: sage-light background on mobile */
  .nav-link.active {
    background: var(--sage-light);
    color: var(--sage-dark) !important;
  }

  /* Contact: plain text on mobile (no button appearance) */
  .nav-link-contact {
    border: none !important;
    background: none !important;
    color: var(--text-dark) !important;
  }

  .nav-link-contact:hover {
    background: var(--sage-light) !important;
    color: var(--sage-dark) !important;
  }
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--cream) 60%, var(--sage-light) 100%);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sage-light) 0%, transparent 70%);
  opacity: .45;
}

.hero-badge {
  display: inline-block;
  background: var(--sage-light);
  color: var(--sage-dark);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: 30px;
  padding: .38rem 1rem;
  margin-bottom: 1.2rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--sage-dark);
}

.hero-price {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--accent);
  font-weight: 600;
  margin: 1.2rem 0;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 1.8rem;
}

.hero-contact-line {
  margin-top: 1rem;
  font-size: .9rem;
  color: var(--text-mid);
}

.hero-img {
  border-radius: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-sage {
  background: var(--sage);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: .8rem 1.9rem;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: background .2s, transform .15s;
}

.btn-sage:hover {
  background: var(--sage-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-sage {
  background: transparent;
  color: var(--sage-dark);
  border: 1.5px solid var(--sage);
  border-radius: 30px;
  padding: .8rem 1.9rem;
  font-size: .95rem;
  font-weight: 600;
  transition: background .2s, color .2s;
}

.btn-outline-sage:hover {
  background: var(--sage);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--sage-dark);
  border-radius: 30px;
  padding: .8rem 2rem;
  font-weight: 700;
  border: none;
  transition: transform .15s, box-shadow .15s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}

.btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 30px;
  padding: .8rem 1.8rem;
  font-size: .95rem;
  font-weight: 600;
  transition: background .2s;
}

.btn-ghost-white:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}

/* ═══════════════════════════════════════════
   SECTION HELPERS
═══════════════════════════════════════════ */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--cream);
}

.section-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: .5rem;
}

.section-label--light {
  color: rgba(255,255,255,.65);
}

.section-intro {
  max-width: 560px;
  margin: 0 auto;
}

.option-note {
  font-size: .9rem;
  color: var(--text-mid);
}

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */
.stats-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--stone);
  padding: 1.5rem 0;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .75rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--sage-dark);
  font-weight: 600;
  line-height: 1;
  display: block;
}

.stat-icon {
  font-size: 1.9rem;
  color: var(--sage-dark);
  display: block;
  margin-bottom: .15rem;
}

.stat-label {
  font-size: .82rem;
  color: var(--text-mid);
  margin-top: .25rem;
}

/* ═══════════════════════════════════════════
   ABOUT IMAGE
═══════════════════════════════════════════ */
.about-img {
  border-radius: 1.5rem;
  width: 100%;
  object-fit: cover;
  max-height: 460px;
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
}

/* ═══════════════════════════════════════════
   SEARCH EXAMPLES
═══════════════════════════════════════════ */
.search-example {
  background: var(--cream);
  border-radius: .75rem;
  padding: .85rem 1.2rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--sage-dark);
}

/* ═══════════════════════════════════════════
   ICON PILLS
═══════════════════════════════════════════ */
.icon-pill {
  background: var(--cream);
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
}

.icon-pill i {
  font-size: 1.5rem;
  color: var(--sage);
  display: block;
  margin-bottom: .4rem;
}

.icon-pill-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-mid);
}

/* ═══════════════════════════════════════════
   FEATURE CARDS
═══════════════════════════════════════════ */
.feature-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--stone);
  transition: box-shadow .2s, transform .2s;
}

.feature-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transform: translateY(-3px);
}

.feature-card--highlight {
  border-color: var(--sage-light);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--sage-dark);
  margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════
   STEP CARDS
═══════════════════════════════════════════ */
.step-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem;
  height: 100%;
  border-left: 3px solid var(--sage);
}

.step-card--result {
  background: var(--sage-dark);
  border-color: transparent;
}

.step-card--result h3 {
  color: #fff;
}

.step-card--result p {
  color: rgba(255,255,255,.8);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--sage-light);
  font-weight: 600;
  line-height: 1;
  margin-bottom: .25rem;
}

.step-number--faded {
  color: rgba(255,255,255,.25);
}

/* ═══════════════════════════════════════════
   PRICING CARD
═══════════════════════════════════════════ */
.pricing-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 2px solid var(--sage);
  box-shadow: 0 12px 40px rgba(122,158,126,.15);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--sage), var(--sage-dark));
}

.pricing-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pricing-card__price {
  text-align: right;
}

.price-main {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--sage-dark);
  line-height: 1;
}

.price-ht {
  font-size: 1rem;
  font-weight: 400;
}

.price-alt {
  font-size: .9rem;
  color: var(--text-mid);
}

.price-monthly {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--sage-dark);
  font-weight: 600;
}

.price-monthly__unit {
  font-size: 1rem;
  font-weight: 400;
}

/* ═══════════════════════════════════════════
   CHECK LIST (pricing)
═══════════════════════════════════════════ */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  padding: .5rem 0;
  display: flex;
  gap: .65rem;
  font-size: .97rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--cream);
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list li i {
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ═══════════════════════════════════════════
   CHECK ITEMS (about section)
═══════════════════════════════════════════ */
.check-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .95rem;
}

.check-item i {
  color: var(--sage);
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   CERT BADGES
═══════════════════════════════════════════ */
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--cream);
  border-radius: 30px;
  padding: .4rem 1rem;
  font-size: .83rem;
  color: var(--text-mid);
  border: 1px solid var(--stone);
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonial-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid var(--stone);
  height: 100%;
}

.stars {
  color: #f4b942;
  letter-spacing: 2px;
  font-size: 1.1rem;
  margin-bottom: .6rem;
}

.avatar-initials {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--sage-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: .95rem;
}

.testimonial-role {
  font-size: .8rem;
  color: var(--text-mid);
}

/* ═══════════════════════════════════════════
   CTA BOX
═══════════════════════════════════════════ */
.cta-box {
  background: linear-gradient(135deg, var(--sage-dark) 0%, #3d5e40 100%);
  border-radius: 2rem;
  padding: 4rem 3rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}

.cta-box h2 {
  color: #fff;
}

.cta-lead {
  color: rgba(255,255,255,.82);
  max-width: 500px;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: #1e2a1f;
  color: rgba(255,255,255,.7);
  padding: 3.5rem 0 2rem;
  font-size: .9rem;
}

footer h5 {
  color: #fff;
  font-family: var(--font-display);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

footer p {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
}

.footer-links {
  font-size: .9rem;
}

.footer-links li {
  margin-bottom: .45rem;
}

.footer-links a {
  color: rgba(255,255,255,.6);
  transition: color .2s;
}

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

.footer-links i {
  margin-right: .4rem;
  color: var(--sage);
}

.footer-social-icon {
  font-size: 1.2rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}

.footer-social-icon:hover {
  color: var(--sage-light);
}

.footer-divider {
  border-color: rgba(255,255,255,.1);
}

.footer-bottom {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}

.footer-bottom a {
  color: rgba(255,255,255,.45);
}

.footer-bottom a:hover {
  color: var(--sage-light);
}
