/* ============================================================
   Pestofix Redesign — Modern Clean & Minimal
   Single stylesheet, no dependencies
   Brand: #086faa (teal) + #d81e27 (red)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --brand-teal: #086faa;
  --brand-teal-dark: #065a8a;
  --brand-red: #d81e27;
  --brand-red-dark: #b61622;
  --ink-900: #0f172a;
  --ink-700: #334155;
  --ink-500: #64748b;
  --ink-300: #cbd5e1;
  --ink-100: #f1f5f9;
  --ink-50:  #f8fafc;
  --white:   #ffffff;
  --border:  #e2e8f0;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.04), 0 1px 3px rgba(15,23,42,.06);
  --shadow-md: 0 4px 6px -1px rgba(15,23,42,.06), 0 2px 4px -1px rgba(15,23,42,.04);
  --shadow-lg: 0 10px 25px -5px rgba(15,23,42,.08), 0 8px 10px -6px rgba(15,23,42,.04);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --container: 1200px;
  --transition: 200ms ease;
  --font: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: var(--brand-teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-teal-dark); }
h1,h2,h3,h4,h5,h6 { margin: 0 0 .5em; color: var(--ink-900); font-weight: 700; line-height: 1.25; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 70px 0; }
.section-tight { padding: 50px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.section-title .accent-line {
  display: block;
  width: 60px;
  height: 4px;
  margin: 0 auto;
  background: var(--brand-red);
  border-radius: 2px;
}
.section-title p { color: var(--ink-500); max-width: 600px; margin: 16px auto 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--brand-red); color: var(--white); }
.btn-primary:hover { background: var(--brand-red-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--brand-teal); color: var(--white); }
.btn-secondary:hover { background: var(--brand-teal-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--brand-teal); border-color: var(--brand-teal); }
.btn-outline:hover { background: var(--brand-teal); color: var(--white); }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ===============================================================
   HEADER
   =============================================================== */
.site-header { background: var(--white); position: relative; z-index: 100; }

.header-top {
  background: var(--brand-teal);
  color: rgba(255,255,255,.92);
  font-size: 13px;
  padding: 8px 0;
}
.header-top .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.header-top .tagline { display: flex; align-items: center; gap: 8px; }
.header-top .top-right { display: flex; align-items: center; gap: 18px; }
.header-top .top-right a { color: rgba(255,255,255,.92); font-weight: 500; }
.header-top .top-right a:hover { color: var(--white); }
.header-top .social-nav { display: flex; gap: 10px; }
.header-top .social-nav a {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  font-size: 12px;
}
.header-top .social-nav a:hover { background: var(--brand-red); }

.header-main {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand-logo img { height: 56px; width: auto; }
.header-contacts { display: flex; align-items: center; gap: 18px; }
.contact-card {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: var(--ink-50);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.contact-card:hover { background: var(--ink-100); transform: translateY(-1px); }
.contact-card .icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-teal);
  color: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
}
.contact-card.whatsapp .icon { background: #25D366; }
.contact-card .meta { line-height: 1.3; }
.contact-card .meta .label { font-size: 11px; color: var(--ink-500); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
.contact-card .meta .value { font-size: 14px; color: var(--ink-900); font-weight: 600; }
.contact-card .meta .value a { color: var(--ink-900); }

/* Navigation */
.site-nav { background: var(--ink-900); }
.site-nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-list {
  display: flex;
  flex-wrap: wrap;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block;
  padding: 16px 18px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .03em;
  transition: all var(--transition);
}
.nav-list > li > a:hover,
.nav-list > li.has-dropdown:hover > a { background: var(--brand-teal); color: var(--white); }
.nav-list > li.has-dropdown > a::after {
  content: "▾";
  font-size: 10px;
  margin-left: 6px;
  opacity: .7;
}
.nav-list .dropdown {
  position: absolute;
  top: 100%; left: 0;
  min-width: 260px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 50;
}
.nav-list > li.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-list .dropdown a {
  display: block;
  padding: 12px 18px;
  color: var(--ink-700);
  font-size: 14px;
  border-bottom: 1px solid var(--ink-100);
}
.nav-list .dropdown a:hover { background: var(--ink-50); color: var(--brand-teal); padding-left: 24px; }
.nav-list .dropdown li:last-child a { border-bottom: 0; }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta a { color: var(--white); font-size: 14px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--white);
  padding: 10px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 4px 0;
  transition: all var(--transition);
}

/* ===============================================================
   HERO CAROUSEL
   =============================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink-900);
}
.hero-slides { position: relative; height: clamp(420px, 60vh, 600px); }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 800ms ease;
  display: flex;
  align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(255,255,255,.92) 0%,
    rgba(255,255,255,.7) 40%,
    rgba(255,255,255,0) 80%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 0 20px;
  margin-left: max(20px, calc((100vw - var(--container)) / 2));
}
.hero-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--brand-teal);
  color: var(--white);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink-900);
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.hero-title span { color: var(--brand-red); }
.hero-tag {
  font-size: 18px;
  color: var(--ink-700);
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.hero-dot {
  width: 10px; height: 10px;
  border: 2px solid var(--white);
  background: transparent;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  transition: all var(--transition);
}
.hero-dot.active { background: var(--brand-red); border-color: var(--brand-red); transform: scale(1.3); }

/* ===============================================================
   TRUST BANNER (#1 in Customer Satisfaction)
   =============================================================== */
.trust-banner {
  padding: 0 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--ink-50) 0%, var(--white) 100%);
}
.trust-banner .badge-number {
  font-size: 150px;
  font-weight: 900;
  color: var(--brand-red);
  line-height: 1;
  letter-spacing: -.04em;
}
.trust-banner .badge-number .hash { font-size: 90px; margin-right: 4px; }
.trust-banner h2 { font-size: clamp(22px, 3vw, 30px); margin-top: 12px; }
.trust-banner p { color: var(--ink-500); margin-top: 8px; font-size: 17px; }

/* ===============================================================
   ABOUT — 3 columns
   =============================================================== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  text-align: left;
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand-teal); }
.about-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--brand-teal);
  position: relative;
  padding-bottom: 12px;
}
.about-card h3::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 40px; height: 3px;
  background: var(--brand-red);
  border-radius: 2px;
}
.about-card p { color: var(--ink-500); font-size: 15px; line-height: 1.6; }
.about-card .feature-list { margin-top: 18px; }
.about-card .feature-item {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ink-100);
}
.about-card .feature-item:last-child { border-bottom: 0; }
.about-card .feature-item img { width: 40px; height: 40px; object-fit: contain; }
.about-card .feature-item span { font-size: 14px; color: var(--ink-700); font-weight: 500; }

/* ===============================================================
   SERVICES GRID
   =============================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-900);
  aspect-ratio: 4/3;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.service-card:hover img { transform: scale(1.06); }
.service-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.85) 0%, rgba(15,23,42,.2) 50%, rgba(15,23,42,0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
}
.service-card .overlay h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 6px;
}
.service-card .overlay .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand-red);
  font-weight: 600;
  margin-bottom: 6px;
}
.service-card .arrow {
  position: absolute;
  top: 18px; right: 18px;
  width: 38px; height: 38px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-teal);
  font-weight: 700;
  font-size: 18px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition);
}
.service-card:hover .arrow { opacity: 1; transform: translateX(0); }

/* ===============================================================
   CALL CTA BLOCK
   =============================================================== */
.call-cta {
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-teal-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.call-cta h2 { color: var(--white); font-size: clamp(22px, 3vw, 30px); margin: 0; }
.call-cta h2 a { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
.call-cta .phone-big {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--white);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.call-cta .phone-big::before {
  content: '';
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--brand-red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' width='24' height='24'%3E%3Cpath d='M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.01.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.27-.26.35-.65.24-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z'/%3E%3C/svg%3E") center/24px no-repeat;
}

/* ===============================================================
   PROJECTS
   =============================================================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand-teal); }
.project-card .image-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.project-card .image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.project-card:hover .image-wrap img { transform: scale(1.05); }
.project-card .post-date {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--brand-red);
  color: var(--white);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: .04em;
}
.project-card .content { padding: 24px; }
.project-card .meta {
  display: flex; gap: 16px;
  font-size: 12px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 600;
  margin-bottom: 12px;
}
.project-card .meta span { color: var(--brand-teal); }
.project-card h4 { font-size: 18px; line-height: 1.35; margin-bottom: 10px; }
.project-card h4 a { color: var(--ink-900); }
.project-card h4 a:hover { color: var(--brand-teal); }
.project-card .text { color: var(--ink-500); font-size: 14px; margin-bottom: 18px; }
.project-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-red);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.project-card .read-more::after { content: '→'; transition: transform var(--transition); }
.project-card .read-more:hover::after { transform: translateX(4px); }

/* ===============================================================
   TESTIMONIALS
   =============================================================== */
.testimonials {
  background: var(--ink-50);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 8px; right: 24px;
  font-size: 70px;
  font-family: Georgia, serif;
  color: var(--brand-teal);
  opacity: .15;
  line-height: 1;
}
.testimonial-card .rating { display: flex; gap: 2px; margin-bottom: 14px; }
.testimonial-card .rating span { color: #f59e0b; font-size: 16px; }
.testimonial-card .quote {
  font-size: 15px;
  color: var(--ink-700);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 18px;
}
.testimonial-card .author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--ink-100);
}
.testimonial-card .author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-card .author h6 { font-size: 15px; margin: 0; color: var(--ink-900); }
.testimonial-card .author .role { font-size: 12px; color: var(--ink-500); }

/* ===============================================================
   FAQ + FORM
   =============================================================== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.faq-col h2 { font-size: clamp(26px, 3.5vw, 34px); margin-bottom: 28px; }
.accordion .acc-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}
.accordion .acc-item.open { border-color: var(--brand-teal); box-shadow: var(--shadow-md); }
.accordion .acc-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  background: transparent;
  border: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-900);
  text-align: left;
  transition: all var(--transition);
}
.accordion .acc-btn:hover { color: var(--brand-teal); }
.accordion .acc-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink-50);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brand-teal);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-left: 12px;
  transition: all var(--transition);
}
.accordion .acc-item.open .acc-icon {
  background: var(--brand-teal);
  color: var(--white);
  transform: rotate(45deg);
}
.accordion .acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}
.accordion .acc-item.open .acc-content { max-height: 400px; }
.accordion .acc-content-inner {
  padding: 0 22px 22px;
  color: var(--ink-500);
  font-size: 14.5px;
  line-height: 1.65;
}

/* Quote form column */
.quote-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.quote-form-card .title-block { margin-bottom: 24px; }
.quote-form-card .title-block h2 {
  font-size: 26px;
  margin-bottom: 6px;
  color: var(--ink-900);
}
.quote-form-card .title-block p { color: var(--ink-500); font-size: 14px; margin: 0; }

/* Override sidebar-form styles to fit redesign */
.quote-form-card .formlist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  list-style: none;
  padding: 0;
}
.quote-form-card .formlist > div { width: auto; max-width: none; border-radius: 0; padding: 0; }
.quote-form-card .formlist li { list-style: none; }
.quote-form-card input[type="text"],
.quote-form-card input[type="email"],
.quote-form-card input[type="tel"],
.quote-form-card select,
.quote-form-card textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink-900);
  transition: all var(--transition);
}
.quote-form-card input:focus,
.quote-form-card select:focus,
.quote-form-card textarea:focus {
  outline: none;
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 3px rgba(8,111,170,.12);
}
.quote-form-card label[for="captcha"] {
  display: block;
  font-size: 13px;
  color: var(--ink-700);
  margin-bottom: 6px;
}
.quote-form-card .btn1 {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: var(--brand-red);
  color: var(--white);
  border: 0;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all var(--transition);
}
.quote-form-card .btn1:hover { background: var(--brand-red-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); color: var(--white); }
.quote-form-card .btn small { display: block; text-align: center; color: var(--ink-500); margin-top: 8px; font-size: 12px; }
.quote-form-card .error { color: var(--brand-red); font-size: 12px; }

/* ===============================================================
   CLIENTELE LOGO MARQUEE
   =============================================================== */
.clientele { background: var(--white); }
.logo-marquee {
  overflow: hidden;
  padding: 30px 0;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: scrollLogos 30s linear infinite;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-track img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .65;
  transition: all var(--transition);
}
.logo-track img:hover { filter: grayscale(0%); opacity: 1; }
@keyframes scrollLogos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===============================================================
   FOOTER
   =============================================================== */
.footer-cta {
  background: linear-gradient(135deg, var(--ink-900) 0%, #1e293b 100%);
  color: var(--white);
  padding: 60px 30px;
  border-radius: var(--radius-xl);
  text-align: center;
  margin-bottom: -100px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}
.footer-cta h3 { color: var(--white); font-size: clamp(22px, 3vw, 30px); margin-bottom: 24px; max-width: 700px; margin-left: auto; margin-right: auto; }
.footer-cta ul {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-cta ul li {
  display: flex; align-items: center; gap: 12px;
  font-size: 17px;
  font-weight: 600;
}
.footer-cta ul li .icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--brand-red);
  display: inline-flex; align-items: center; justify-content: center;
}

.site-footer {
  background: var(--ink-900);
  color: rgba(255,255,255,.7);
  padding: 160px 0 0;
}
.footer-widgets {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-widget h4 {
  color: var(--white);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-widget h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 30px; height: 3px;
  background: var(--brand-red);
}
.footer-widget p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.6); }
.footer-widget a { color: rgba(255,255,255,.7); font-size: 14px; }
.footer-widget a:hover { color: var(--white); }
.footer-widget .footer-list li { padding: 6px 0; }
.footer-widget .footer-list a::before { content: '›'; margin-right: 8px; color: var(--brand-red); }
.footer-widget .contact-list li {
  display: flex; gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  line-height: 1.55;
}
.footer-widget .contact-list .icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brand-teal);
}
.footer-widget .contact-list strong { color: var(--white); display: block; font-size: 13px; }
.footer-widget .social-nav { display: flex; gap: 10px; margin-top: 18px; }
.footer-widget .social-nav a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.footer-widget .social-nav a:hover { background: var(--brand-red); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
}
.footer-bottom .container {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}
.footer-bottom .footer-nav { display: flex; gap: 18px; }
.footer-bottom .footer-nav a { color: rgba(255,255,255,.6); }
.footer-bottom .footer-nav a:hover { color: var(--white); }

/* ===============================================================
   FLOATING WHATSAPP + SCROLL-TO-TOP
   =============================================================== */
.float-whatsapp {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  z-index: 60;
  animation: pulseRing 2s infinite;
}
.float-whatsapp img { width: 30px; height: 30px; }
@keyframes pulseRing {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 16px rgba(37,211,102,.4), 0 0 0 10px rgba(37,211,102,.15); }
}

.scroll-top {
  position: fixed;
  bottom: 92px; right: 24px;
  width: 44px; height: 44px;
  background: var(--brand-teal);
  color: var(--white);
  border-radius: 50%;
  border: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 60;
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--brand-teal-dark); }

/* ===============================================================
   FADE-IN ON SCROLL
   =============================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-up.in { opacity: 1; transform: translateY(0); }

/* ===============================================================
   RESPONSIVE
   =============================================================== */
@media (max-width: 1024px) {
  .about-grid, .services-grid, .projects-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-widgets { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 50px 0; }
  .header-top { font-size: 12px; }
  .header-top .container { justify-content: center; text-align: center; }
  .header-top .tagline { width: 100%; justify-content: center; }
  .header-main .container { flex-wrap: wrap; }
  .header-contacts { width: 100%; justify-content: center; flex-wrap: wrap; gap: 10px; }
  .contact-card { padding: 6px 10px; }
  .contact-card .icon { width: 32px; height: 32px; }

  .nav-toggle { display: block; }
  .site-nav .container { flex-wrap: wrap; }
  .nav-list {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--ink-900);
  }
  .nav-list.open { display: flex; }
  .nav-list > li > a { padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,.05); }
  .nav-list .dropdown {
    position: static;
    background: rgba(255,255,255,.04);
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease;
  }
  .nav-list > li.has-dropdown.open .dropdown { max-height: 400px; }
  .nav-list > li.has-dropdown > a::after { float: right; }
  .nav-list .dropdown a { color: rgba(255,255,255,.8); padding-left: 36px; border-bottom-color: rgba(255,255,255,.05); }
  .nav-list .dropdown a:hover { background: transparent; color: var(--white); padding-left: 40px; }

  .hero-content { margin-left: 20px; }

  .about-grid, .services-grid, .projects-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .call-cta { flex-direction: column; padding: 36px 24px; text-align: center; }

  .footer-widgets { grid-template-columns: 1fr; gap: 30px; }
  .footer-cta ul { flex-direction: column; gap: 16px; align-items: center; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .quote-form-card { padding: 22px; }
  .quote-form-card .formlist { grid-template-columns: 1fr; }
}

/* ===============================================================
   CONTACT PAGE
   =============================================================== */
.page-hero {
  position: relative;
  padding: 70px 0 80px;
  background:
    radial-gradient(circle at 90% 10%, rgba(216,30,39,.06) 0%, transparent 40%),
    radial-gradient(circle at 5% 90%, rgba(8,111,170,.06) 0%, transparent 40%),
    linear-gradient(180deg, var(--ink-50) 0%, var(--white) 100%);
  overflow: hidden;
}
.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fef0f1;
  color: var(--brand-red);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.page-hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.page-hero h1 span {
  color: var(--brand-red);
  position: relative;
  white-space: nowrap;
}
.page-hero h1 span::after {
  content: '';
  position: absolute;
  left: 0; bottom: 4px;
  width: 100%; height: 10px;
  background: rgba(216,30,39,.12);
  border-radius: 4px;
  z-index: -1;
}
.page-hero p.lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-500);
  max-width: 620px;
  margin: 0 0 32px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 32px 0 0;
}
.trust-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.trust-chip:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(216,30,39,.2);
}
.trust-chip .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8,111,170,.08);
  color: var(--brand-teal);
}
.trust-chip:nth-child(odd) .icon { background: rgba(216,30,39,.08); color: var(--brand-red); }
.trust-chip h4 { font-size: 13px; font-weight: 700; color: var(--ink-900); margin: 0; line-height: 1.3; }

.action-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.action-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 18px 10px 12px;
  border-radius: 999px;
  color: var(--ink-700);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.action-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--brand-teal);
  border-color: var(--brand-teal);
}
.action-pill .pill-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--brand-teal);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.action-pill.whatsapp .pill-icon { background: #25D366; }
.action-pill.red .pill-icon { background: var(--brand-red); }

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: -40px auto 0;
  position: relative;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  max-width: 1100px;
}
.stat-cell { text-align: center; padding: 6px; }
.stat-cell .stat-icon {
  width: 48px; height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--ink-50);
  color: var(--brand-teal);
  display: flex; align-items: center; justify-content: center;
}
.stat-cell:nth-child(2n) .stat-icon { color: var(--brand-red); }
.stat-cell .stat-number {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -.02em;
}
.stat-cell .stat-label {
  font-size: 13px;
  color: var(--ink-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Heading kicker */
.heading-kicker { margin-bottom: 30px; }
.heading-kicker small {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 8px;
}
.heading-kicker h2 {
  font-size: clamp(26px, 3.5vw, 34px);
  margin: 0;
  letter-spacing: -.02em;
}

/* Why-choose grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-teal);
}
.why-card .icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-teal-dark) 100%);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.why-card:nth-child(2n) .icon-wrap {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
}
.why-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--ink-900);
}
.why-card p {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.6;
  margin: 0;
}

/* Branch cards */
.branch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.branch-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  border-left: 4px solid var(--brand-red);
  transition: all var(--transition);
}
.branch-card:hover {
  box-shadow: var(--shadow-md);
  border-left-color: var(--brand-teal);
}
.branch-card .branch-city {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.branch-card .branch-addr {
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.6;
  margin-bottom: 8px;
}
.branch-card .branch-areas {
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.55;
  padding-top: 8px;
  border-top: 1px dashed var(--border);
}

/* Contact two-column main */
.contact-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 20px;
}
.contact-form-card .title-block { margin-bottom: 22px; }
.contact-form-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
  color: var(--ink-900);
}
.contact-form-card .title-block p {
  color: var(--ink-500);
  font-size: 14px;
  margin: 0;
}
/* Reuse quote-form-card styling for inner form */
.contact-form-card .formlist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  list-style: none;
  padding: 0;
}
.contact-form-card .formlist > div { width: auto; max-width: none; border-radius: 0; padding: 0; }
.contact-form-card .formlist li { list-style: none; }
.contact-form-card input[type="text"],
.contact-form-card input[type="email"],
.contact-form-card input[type="tel"],
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink-900);
  transition: all var(--transition);
}
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  outline: none;
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 3px rgba(8,111,170,.12);
}
.contact-form-card label[for="captcha"] {
  display: block;
  font-size: 13px;
  color: var(--ink-700);
  margin-bottom: 6px;
}
.contact-form-card .btn1 {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: var(--brand-red);
  color: var(--white);
  border: 0;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all var(--transition);
}
.contact-form-card .btn1:hover {
  background: var(--brand-red-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}
.contact-form-card .btn small {
  display: block;
  text-align: center;
  color: var(--ink-500);
  margin-top: 8px;
  font-size: 12px;
}
.contact-form-card .error { color: var(--brand-red); font-size: 12px; }

.quick-contact {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.quick-contact h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand-teal);
  margin-bottom: 14px;
}
.quick-contact .qc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--ink-700);
}
.quick-contact .qc-item .ico {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--ink-50);
  color: var(--brand-teal);
  display: flex; align-items: center; justify-content: center;
}
.quick-contact .qc-item a { color: var(--ink-700); }
.quick-contact .qc-item a:hover { color: var(--brand-teal); }

/* Responsive — contact page */
@media (max-width: 1024px) {
  .contact-main { grid-template-columns: 1fr; }
  .contact-form-card { position: static; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .page-hero { padding: 50px 0 60px; }
  .why-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); padding: 20px; gap: 14px; }
  .action-pill { font-size: 13px; padding: 8px 14px 8px 8px; }
  .contact-form-card .formlist { grid-template-columns: 1fr; }
}

/* ===============================================================
   PEST-CONTROL PAGE
   =============================================================== */
.pc-hero {
  position: relative;
  padding: 90px 0;
  background: url('../../images/pestcontrol-Hero-Image.jpg') no-repeat center / cover;
  border-radius: 0;
  overflow: hidden;
  color: var(--white);
}
.pc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15,23,42,.85) 0%, rgba(15,23,42,.55) 60%, rgba(15,23,42,.25) 100%);
}
.pc-hero .container { position: relative; z-index: 2; }
.pc-hero .eyebrow {
  display: inline-block;
  background: var(--brand-red);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.pc-hero h1 {
  color: var(--white);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -.02em;
  max-width: 800px;
  margin-bottom: 18px;
  line-height: 1.1;
}
.pc-hero h1 .accent { color: #ffd166; }
.pc-hero p.lead {
  color: rgba(255,255,255,.92);
  font-size: 18px;
  max-width: 640px;
  margin-bottom: 30px;
  line-height: 1.6;
}
.pc-hero .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.pc-hero .hero-cta .phone-strong {
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
}
.pc-hero .hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.pc-hero .hero-strip .strip-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.95);
  font-size: 14px;
  font-weight: 600;
}
.pc-hero .hero-strip .strip-item .dot {
  width: 8px; height: 8px;
  background: #ffd166;
  border-radius: 50%;
}

/* Service split */
.service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.service-split-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  color: var(--white);
  background-size: cover;
  background-position: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.service-split-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-split-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,111,170,.15) 0%, rgba(15,23,42,.85) 100%);
}
.service-split-card.is-business::before {
  background: linear-gradient(180deg, rgba(216,30,39,.15) 0%, rgba(15,23,42,.85) 100%);
}
.service-split-card .inner { position: relative; z-index: 2; max-width: 100%; }
.service-split-card .label-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ffd166;
  margin-bottom: 8px;
}
.service-split-card h3 {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 8px;
}
.service-split-card p { color: rgba(255,255,255,.86); margin-bottom: 18px; font-size: 15px; }
.service-split-card .ss-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--white);
  color: var(--brand-teal);
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.service-split-card.is-business .ss-cta { color: var(--brand-red); }
.service-split-card .ss-cta::after { content: '→'; transition: transform var(--transition); }
.service-split-card:hover .ss-cta::after { transform: translateX(4px); }

/* Pests-we-handle grid */
.pests-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.pest-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 12px;
  text-align: center;
  transition: all var(--transition);
}
.pest-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand-teal); }
.pest-tile .pt-emoji {
  font-size: 30px;
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}
.pest-tile h4 {
  font-size: 13px;
  margin: 0;
  color: var(--ink-900);
  font-weight: 600;
  line-height: 1.3;
}

/* Process steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px 26px;
  text-align: left;
  transition: all var(--transition);
  counter-increment: step;
}
.step-card::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -18px;
  left: 24px;
  background: var(--brand-teal);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 15px;
  box-shadow: var(--shadow-md);
}
.step-card:nth-child(2)::before { background: var(--brand-red); }
.step-card:nth-child(3)::before { background: var(--ink-900); }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand-teal); }
.step-card h3 { font-size: 19px; margin-bottom: 8px; color: var(--ink-900); }
.step-card p { font-size: 14.5px; color: var(--ink-500); margin: 0; line-height: 1.6; }
.step-card .step-bullets { margin-top: 14px; padding-left: 0; }
.step-card .step-bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  color: var(--ink-700);
  margin-bottom: 6px;
}
.step-card .step-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--brand-teal);
  font-weight: 800;
}

/* Treatment compare */
.treatment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.treatment-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.treatment-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-red));
}
.treatment-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.treatment-card .tc-img {
  margin: -8px -8px 18px;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.treatment-card .tc-img img { width: 100%; height: 100%; object-fit: cover; }
.treatment-card .tc-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(8,111,170,.1);
  color: var(--brand-teal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.treatment-card:nth-child(2n) .tc-icon { background: rgba(216,30,39,.1); color: var(--brand-red); }
.treatment-card h3 { font-size: 20px; margin-bottom: 10px; color: var(--ink-900); }
.treatment-card p { font-size: 15px; color: var(--ink-500); margin-bottom: 16px; line-height: 1.65; }
.treatment-card ul.feat-list { padding-left: 0; }
.treatment-card ul.feat-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--ink-700);
  margin-bottom: 8px;
  line-height: 1.5;
}
.treatment-card ul.feat-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--brand-teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/10px no-repeat;
}
.treatment-card:nth-child(2n) ul.feat-list li::before { background-color: var(--brand-red); }

/* Benefits split */
.benefits-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.benefits-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
}
.benefits-card.home { border-top: 4px solid var(--brand-teal); }
.benefits-card.office { border-top: 4px solid var(--brand-red); }
.benefits-card h3 {
  font-size: 22px;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.benefits-card.home h3 { color: var(--brand-teal); }
.benefits-card.office h3 { color: var(--brand-red); }
.benefits-card ul { padding: 0; margin: 0; }
.benefits-card li {
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14.5px;
  color: var(--ink-700);
  line-height: 1.55;
}
.benefits-card li:last-child { border-bottom: 0; }
.benefits-card li strong { color: var(--ink-900); display: block; margin-bottom: 2px; font-size: 14px; }

/* Sticky form */
.sticky-form-wrap {
  position: sticky;
  top: 20px;
}

/* Pricing teaser */
.price-teaser {
  background: linear-gradient(135deg, var(--ink-50) 0%, var(--white) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}
.price-teaser .pt-text h3 {
  margin: 0 0 6px;
  font-size: 22px;
  color: var(--ink-900);
}
.price-teaser .pt-text p { margin: 0; color: var(--ink-500); font-size: 15px; }
.price-teaser .pt-actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 1024px) {
  .pests-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: 1fr; gap: 28px; }
  .service-split, .treatment-grid, .benefits-split { grid-template-columns: 1fr; }
  .sticky-form-wrap { position: static; }
}
@media (max-width: 768px) {
  .pc-hero { padding: 60px 0; }
  .pc-hero .hero-strip { gap: 14px; }
  .pests-grid { grid-template-columns: repeat(2, 1fr); }
  .price-teaser { padding: 24px; flex-direction: column; text-align: center; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .logo-track { animation: none; }
  .fade-up { opacity: 1; transform: none; }
}
