/* ===================== VARIABLES ===================== */
:root {
  --forest: #3f4d34;
  --forest-dark: #333f2a;
  --sage: #7c9a6a;
  --sage-light: #9db98d;
  --accent: #5f8d46;
  --accent-dark: #4a7236;
  --cream: #faf9f6;
  --cream-dark: #f0ede4;
  --text-dark: #2b2b26;
  --text-muted: #5c5c54;
  --text-light: #f5f5f0;
  --border: #e2ded2;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(63, 77, 52, 0.1);
  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul { list-style: none; }

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--forest);
  line-height: 1.2;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 48px;
}

section { padding: 88px 0; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--forest);
}

.btn-lg { padding: 18px 40px; font-size: 0.9rem; }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

.logo img { height: 42px; width: auto; }

.main-nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
}
.nav-link:hover { color: var(--accent); }

.header-cta { white-space: nowrap; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* ===================== HERO ===================== */
.hero {
  background:
    radial-gradient(circle at 15% 20%, rgba(95,141,70,0.16), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(124,154,106,0.18), transparent 50%),
    var(--cream);
  padding: 120px 0 100px;
  text-align: center;
}

.eyebrow {
  font-family: var(--font-head);
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  max-width: 780px;
  margin: 0 auto 18px;
}

.hero-tagline {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

/* ===================== CHAT BAR ===================== */
.chat-bar {
  background: var(--forest-dark);
  color: var(--text-light);
}
.chat-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 24px;
  flex-wrap: wrap;
  text-align: center;
  font-size: 0.9rem;
}
.chat-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #7ed957;
  box-shadow: 0 0 0 0 rgba(126,217,87,0.6);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(126,217,87,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(126,217,87,0); }
  100% { box-shadow: 0 0 0 0 rgba(126,217,87,0); }
}
.chat-link {
  font-weight: 600;
  color: #a9d98a;
  white-space: nowrap;
}
.chat-link:hover { color: #fff; }

/* ===================== ABOUT ===================== */
.about {
  background: var(--forest);
  color: var(--text-light);
}
.about h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 32px;
}
.about-grid { display: flex; justify-content: center; }
.about-copy {
  max-width: 720px;
  color: rgba(245,245,240,0.9);
}
.about-copy p { margin-bottom: 18px; }
.pain-points {
  margin: 8px 0 18px 0;
  border-left: 3px solid var(--sage);
  padding-left: 20px;
}
.pain-points li { margin-bottom: 10px; }
.about-copy .btn { margin-top: 12px; }

/* ===================== SERVICES ===================== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.card-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  font-weight: 600;
  margin-top: 14px;
  margin-bottom: 6px;
}

.card p { color: var(--text-muted); font-size: 0.95rem; }

.card ul { margin: 4px 0 0; }
.card ul li {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding-left: 18px;
  position: relative;
  margin-bottom: 4px;
}
.card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.card .btn { margin-top: 26px; align-self: flex-start; }

.card-featured {
  border: 2px solid var(--accent);
  transform: translateY(-8px);
}

.card-badge {
  position: absolute;
  top: -14px;
  left: 30px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

/* ===================== EXTRAS ===================== */
.extras {
  background: linear-gradient(120deg, var(--sage), var(--accent));
  padding: 48px 0;
}
.extras-inner { text-align: center; color: #fff; }
.extras-lead {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.extras-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
}
.extras-list li {
  font-size: 0.95rem;
  padding-left: 22px;
  position: relative;
}
.extras-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.85);
}

/* ===================== CHECKLIST ===================== */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.checklist-col {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.checklist-col h3 {
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.check-list li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.check-yes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.check-add li::before {
  content: '+';
  position: absolute;
  left: 2px;
  color: var(--sage);
  font-weight: 700;
}

/* ===================== BEFORE / AFTER ===================== */
.work { background: var(--cream-dark); }

.ba-slider {
  max-width: 640px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.ba-slider-images {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  user-select: none;
}

.ba-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #fff;
  cursor: ew-resize;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-handle-arrows {
  background: #fff;
  color: var(--forest);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  letter-spacing: 2px;
}

.ba-labels {
  display: flex;
  justify-content: space-between;
  padding: 14px 20px;
  background: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ba-thumbs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.ba-thumb {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-muted);
  cursor: pointer;
}
.ba-thumb.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.work-cta {
  text-align: center;
  margin-top: 48px;
}
.guarantee {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 20px;
}

/* ===================== PRICING ===================== */
.pricing-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 48px;
  max-width: 720px;
  margin: 0 auto;
}
.pricing-header { text-align: center; margin-bottom: 36px; }
.pricing-header h2 { margin-bottom: 10px; }
.pricing-header p { color: var(--text-muted); }

.calculator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
}

.calc-field { text-align: center; }
.calc-field label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.stepper {
  display: flex;
  align-items: center;
  gap: 14px;
}
.step-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: #fff;
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
}
.step-btn:hover { background: var(--accent); color: #fff; }
.step-value {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest);
  min-width: 24px;
  text-align: center;
}

.calc-result { text-align: center; }
.calc-result-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.calc-result-price {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin: 28px 0;
}

.pricing-card .btn { display: block; width: fit-content; margin: 0 auto; }

/* ===================== REVIEWS ===================== */
.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.review-stars {
  color: #e0b84a;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-body {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
  min-height: 60px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-author img { width: 40px; height: 40px; border-radius: 50%; }
.review-name { font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; }
.review-source { font-size: 0.78rem; color: var(--text-muted); }

/* ===================== CTA BAND / CONTACT ===================== */
.cta-band {
  background: var(--forest);
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-lead { color: rgba(245,245,240,0.85); margin-bottom: 48px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  text-align: left;
  max-width: 980px;
  margin: 0 auto;
}

.lead-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--cream);
  transition: border-color 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-field textarea { resize: vertical; }

.lead-form .btn { width: 100%; border: none; }
.lead-form .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.2em;
}
.form-status.success { color: var(--accent-dark); }
.form-status.error { color: #b0453a; }

.form-privacy {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.contact-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.contact-side .btn { width: 100%; text-align: center; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(245,245,240,0.75);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  width: 100%;
}
.placeholder-text {
  color: #a9d98a;
  font-style: italic;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--forest-dark);
  color: rgba(245,245,240,0.7);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo { height: 36px; filter: brightness(0) invert(1); }
.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.85rem; }
.footer-nav a:hover { color: #fff; }
.footer-copy { font-size: 0.8rem; width: 100%; text-align: center; margin-top: 12px; }

/* ===================== REVEAL ANIMATION ===================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; }
  .card-featured { transform: none; }
  .checklist-grid { grid-template-columns: 1fr; }
  .review-cards { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
  }

  section { padding: 60px 0; }
  .pricing-card { padding: 32px 20px; }
  .calculator { flex-direction: column; }
  .footer-inner { flex-direction: column; text-align: center; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .lead-form { padding: 24px; }
}
