/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
  --blue: #1a5ca1;
  --blue-dark: #144a82;
  --blue-light: #e6eef7;
  --green: #3a7d44;
  --green-dark: #2c5e33;
  --green-light: #e9f2ea;
  --warm: #faf6f1;
  --brown: #5c4a3a;
  --dark: #2d2926;
  --gray: #6e6259;
  --white: #ffffff;
  --cream: #fdfaf6;
  --gold: #d4a528;
  --red: #c0392b;
  --radius: 10px;
  --shadow: 0 2px 16px rgba(45, 41, 38, 0.06);
  --font-h: 'Merriweather', Georgia, serif;
  --font-b: 'Open Sans', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-b); color: var(--dark); line-height: 1.65; background: var(--cream); }
h1, h2, h3 { font-family: var(--font-h); }
a { color: var(--green-dark); text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Button */
.btn {
  display: inline-block; padding: 16px 36px;
  background: var(--blue); color: var(--white);
  border: 2px solid var(--blue);
  border-radius: 50px; font-size: 1.05rem; font-weight: 700;
  font-family: var(--font-b); cursor: pointer;
  transition: all 0.2s; text-align: center;
}
.btn:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26, 92, 161, 0.3); }
.btn-lg { padding: 18px 44px; font-size: 1.1rem; }
.btn-submit {
  width: 100%; padding: 15px; font-size: 1.05rem;
  background: var(--blue); color: var(--white); border: none;
  border-radius: 50px; font-weight: 700; cursor: pointer;
  font-family: var(--font-b); transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(26, 92, 161, 0.3);
  margin-top: 2px;
}
.btn-submit:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(26, 92, 161, 0.4); }
.btn-outline-dark { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: var(--white); border-color: var(--dark); box-shadow: none; }

/* Top Bar */
.topbar {
  background: var(--white);
  border-bottom: 3px solid var(--blue);
  padding: 12px 0;
  position: sticky; top: 0; z-index: 100;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; }
.logo-img { height: 44px; width: auto; display: block; }
.topbar-phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--white); font-size: 0.95rem;
  background: var(--blue); padding: 8px 18px;
  border-radius: 50px; transition: background 0.2s;
}
.topbar-phone:hover { background: var(--blue-dark); }
.topbar-phone strong { color: var(--white); }
.phone-icon { font-size: 1.1rem; }

/* Hero */
.hero {
  padding: 0;
  background: #244f29;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('hero-dog.avif') 85% 40%/cover no-repeat;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    95deg,
    rgba(30, 55, 32, 0.95) 0%,
    rgba(30, 55, 32, 0.9) 38%,
    rgba(30, 55, 32, 0.6) 55%,
    rgba(30, 55, 32, 0.15) 70%,
    rgba(30, 55, 32, 0.0) 80%
  );
  pointer-events: none;
}
.hero-accent { display: none; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 640px;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 60px 0 70px;
}
.hero-copy { align-self: center; }
.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: 2.4rem;
  line-height: 1.18;
  margin-bottom: 14px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 20px;
  line-height: 1.65;
  max-width: 480px;
}
.hero-checks {
  list-style: none;
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}
.hero-checks li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.93);
  font-weight: 600;
  display: flex; align-items: baseline; gap: 6px;
}
.check { color: #7ec8ff; font-weight: 700; flex-shrink: 0; font-size: 1rem; }
.hero-proof {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 6px;
}
.hero .stars { color: #ffd54f; font-size: 1rem; }

.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 1px; }

/* Lead Form */
.hero-form-wrap { position: sticky; top: 72px; max-height: 880px; overflow: hidden; border-radius: 14px; background: var(--white); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25); align-self: center; }
.hero-form-wrap iframe { margin-top: 0; }
.form-loading { padding: 40px 22px; text-align: center; }
.form-loading h3 { font-size: 1.3rem; margin-bottom: 6px; }
.form-loading p { color: var(--gray); font-size: 0.95rem; }
.lead-form {
  background: var(--white);
  border-radius: 14px;
  padding: 26px 22px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  border: none;
}
.form-header { text-align: center; margin-bottom: 18px; }
.form-header h3 { font-size: 1.2rem; margin-bottom: 3px; color: var(--dark); }
.form-header p { font-size: 0.82rem; color: var(--gray); }
.lead-form input,
.lead-form select {
  width: 100%; padding: 13px 14px; margin-bottom: 9px;
  border: 1.5px solid #e0dbd5; border-radius: 8px;
  font-size: 0.93rem; font-family: var(--font-b);
  background: #f8f6f3; color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lead-form input:focus,
.lead-form select:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 92, 161, 0.1);
  background: var(--white);
}
.lead-form input::placeholder { color: #a09688; }
.form-trust {
  display: flex; justify-content: center; gap: 8px;
  font-size: 0.75rem; color: #a09688; margin-top: 12px;
}

/* Mini testimonial under form */
.form-social-proof {
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
}
.mini-testimonial p, .mini-testimonial strong { color: rgba(255,255,255,0.85); }
.mini-testimonial .stars-sm { color: #ffd54f; }
.mini-testimonial .stars-sm { color: var(--gold); font-size: 0.85rem; margin-bottom: 6px; }
.mini-testimonial p { font-size: 0.82rem; color: var(--gray); font-style: italic; margin-bottom: 4px; line-height: 1.5; }
.mini-testimonial strong { font-size: 0.78rem; color: var(--brown); }

/* Form Success */
.form-success { text-align: center; padding: 24px 8px; }
.success-check {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: var(--green); color: var(--white);
  border-radius: 50%; font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
}
.form-success h3 { font-size: 1.3rem; margin-bottom: 8px; }
.form-success p { color: var(--gray); font-size: 0.95rem; }

/* Proof Bar */
.proof-bar {
  background: var(--dark); color: var(--white);
  padding: 24px 0;
}
.proof-inner {
  display: flex; justify-content: center; align-items: center;
  gap: 40px; flex-wrap: wrap;
}
.proof-item { text-align: center; }
.proof-item strong { display: block; font-size: 1.4rem; font-family: var(--font-h); }
.proof-item span { font-size: 0.78rem; opacity: 0.65; text-transform: uppercase; letter-spacing: 0.05em; }
.proof-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.15); }

/* Sections */
.section { padding: 64px 0; }
.section-warm { background: var(--warm); }
.section-title {
  text-align: center; font-size: 1.7rem;
  margin-bottom: 36px; color: var(--dark);
}

/* Comparison Table */
.compare-table {
  max-width: 700px;
  margin: 0 auto 32px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
}
.compare-header, .compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
}
.compare-header {
  background: var(--dark); color: var(--white);
  font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.compare-header > div { padding: 14px 18px; }
.compare-row {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.9rem;
}
.compare-row:last-child { border-bottom: none; }
.compare-row > div { padding: 14px 18px; }
.compare-label { font-weight: 600; color: var(--dark); }
.compare-col { color: var(--gray); }
.compare-col-if { color: var(--dark); }
.compare-header .compare-col-if,
.compare-header .compare-col-trad { color: var(--white); }
.compare-win { color: var(--blue); font-weight: 700; }
.compare-cta { text-align: center; }

/* Steps */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-bottom: 36px;
}
.step { text-align: center; }
.step-num {
  width: 48px; height: 48px; margin: 0 auto 14px;
  background: var(--blue); color: var(--white);
  border-radius: 50%; font-size: 1.2rem; font-weight: 700;
  font-family: var(--font-h);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(26, 92, 161, 0.2);
}
.step h3 { margin-bottom: 6px; font-size: 1rem; }
.step p { color: var(--gray); font-size: 0.88rem; line-height: 1.6; }
.steps-cta { text-align: center; }

/* Image Break */
.image-break {
  padding: 64px 0;
  background: var(--green-light);
}
.image-break-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: center;
}
.image-break-photo img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(45, 41, 38, 0.12);
}
.image-break-copy h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--dark);
  line-height: 1.3;
}
.image-break-copy p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Testimonials */
.testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  background: var(--white);
  border-radius: 14px; padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
}
.testimonial .stars { margin-bottom: 10px; }
.testimonial p {
  color: var(--gray); font-style: italic;
  margin-bottom: 12px; font-size: 0.9rem; line-height: 1.7;
}
.testimonial strong { font-size: 0.82rem; color: var(--brown); }

/* FAQ Grid */
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.faq-card {
  background: var(--white);
  border-radius: 14px; padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
}
.faq-card h3 { font-size: 1rem; margin-bottom: 6px; color: var(--dark); }
.faq-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

/* Guarantee Banner */
.guarantee-banner {
  background: var(--dark);
  color: var(--white);
  padding: 36px 0;
}
.guarantee-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.guarantee-icon {
  font-size: 2.8rem;
  flex-shrink: 0;
}
.guarantee-copy h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--white);
}
.guarantee-copy p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* Product Strip */
.product-strip {
  background: var(--warm);
  text-align: center;
  padding: 40px 0;
}
.product-strip img {
  max-width: 800px;
  width: 88%;
  border-radius: 12px;
}

/* Final CTA */
.section-cta {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 56px 0;
}
.cta-inner h2 { font-size: 1.9rem; margin-bottom: 12px; color: var(--white); }
.cta-inner p { font-size: 1.05rem; opacity: 0.9; max-width: 500px; margin: 0 auto 24px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.section-cta .btn { background: var(--white); color: var(--blue); border-color: var(--white); }
.section-cta .btn:hover { background: var(--cream); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.section-cta .btn-outline-dark { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.section-cta .btn-outline-dark:hover { background: rgba(255,255,255,0.15); border-color: var(--white); color: var(--white); box-shadow: none; }

/* Footer */
.footer {
  background: var(--dark); color: rgba(255,255,255,0.45);
  padding: 28px 0; text-align: center; font-size: 0.8rem;
}
.footer-inner { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.footer strong { color: rgba(255,255,255,0.7); }
.footer-address { font-size: 0.82rem; }
.footer-address a { color: rgba(255,255,255,0.55); text-decoration: underline; }
.footer-address a:hover { color: rgba(255,255,255,0.8); }
.footer-nav {
  display: flex; gap: 18px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 6px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; max-width: 680px;
}
.footer-nav a {
  color: rgba(255,255,255,0.7); font-size: 0.85rem; font-weight: 600;
  text-decoration: none; transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }

/* Page Hero (for sub-pages without form) */
.page-hero { background: #244f29; min-height: 280px; }
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('hero-dog.avif') 85% 40%/cover no-repeat;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    95deg,
    rgba(30, 55, 32, 0.95) 0%,
    rgba(30, 55, 32, 0.88) 45%,
    rgba(30, 55, 32, 0.55) 70%,
    rgba(30, 55, 32, 0.1) 90%
  );
  pointer-events: none;
}
.hero-grid.single-col {
  grid-template-columns: 1fr;
  max-width: 720px;
  padding: 50px 0 60px;
}
.page-hero .hero-copy { max-width: 720px; }

/* Pricing inclusions list */
.inclusions-list {
  max-width: 560px; margin: 0 auto; list-style: none;
  background: var(--white); border-radius: 14px; padding: 24px 28px;
  box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.04);
}
.inclusions-list li {
  font-size: 1rem; padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex; align-items: center; gap: 12px;
  color: var(--dark);
}
.inclusions-list li:last-child { border-bottom: none; }
.check-lg {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; flex-shrink: 0;
  background: var(--green); color: var(--white);
  border-radius: 50%; font-size: 0.85rem; font-weight: 700;
}

/* Sticky Mobile CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 99;
  text-align: center;
}
.mobile-sticky-cta.visible { display: block; }
.btn-mobile-cta {
  display: block; width: 100%; padding: 16px;
  background: var(--blue); color: var(--white);
  border: none; border-radius: 50px;
  font-size: 1.05rem; font-weight: 700;
  font-family: var(--font-b); cursor: pointer;
  text-align: center;
}

/* Mobile */
@media (max-width: 860px) {
  .hero { min-height: auto; }
  .hero::after { background: rgba(30, 60, 32, 0.72); }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; padding: 36px 16px; }
  .hero h1 { font-size: 1.7rem; }
  .hero-form-wrap { position: static; }
  .hero-checks { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 20px; }
  .testimonials { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .proof-inner { gap: 20px; }
  .proof-divider { display: none; }
  .phone-text { font-size: 0.85rem; }
  .topbar-phone { padding: 8px 14px; gap: 6px; }
  .image-break-inner { grid-template-columns: 1fr; gap: 24px; }
  .compare-header, .compare-row { grid-template-columns: 1fr 1fr; }
  .compare-label { grid-column: 1 / -1; padding-bottom: 0; }
  .footer { padding-bottom: 80px; }
}

@media (min-width: 861px) {
  .mobile-sticky-cta { display: none !important; }
}
