:root {
  --red: #D91A1A;
  --green: #1E8C3A;
  --green-dark: #166B2C;
  --yellow: #FFD600;
  --orange: #F26522;
  --dark: #111827;
  --dark2: #1F2937;
  --gray: #4B5563;
  --light: #F3F4F6;
  --white: #FFFFFF;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 960px; margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 720px; }

#site-header {
  position: sticky; top: 0; z-index: 100; background: var(--dark);
  border-bottom: 3px solid var(--red); display: flex; align-items: center;
  justify-content: space-between; gap: 12px; padding: 10px 20px;
}
.header-logo { display: flex; align-items: center; gap: 8px; }
.header-logo .bug-icon { font-size: 26px; }
.header-logo span { font-family: var(--font-head); font-size: 19px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1px; }
.header-logo span em { color: var(--orange); font-style: normal; }
.header-call { display: flex; flex-direction: column; align-items: flex-end; }
.header-call .availability { font-size: 11px; color: #4ADE80; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.header-call .header-number { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--yellow); letter-spacing: 1px; }
.header-call:hover .header-number { color: var(--orange); }

@media (max-width: 480px) {
  .header-logo span { font-size: 14px; }
  .header-call .header-number { font-size: 17px; }
}

.btn-call {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--green); color: var(--white); font-family: var(--font-head);
  font-size: 20px; font-weight: 700; padding: 16px 36px; border-radius: 8px;
  text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 4px 16px rgba(30, 140, 58, 0.4);
  transition: background 0.2s, transform 0.15s;
}
.btn-call:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-call.big { font-size: 22px; padding: 20px 48px; }
.hero-btn { font-size: 24px; padding: 20px 44px; }

@media (max-width: 480px) {
  .btn-call { width: 100%; font-size: 18px; padding: 16px 20px; }
  .hero-btn { font-size: 19px; }
}

#hero { background: linear-gradient(160deg, #0D1117 0%, #1a2234 70%, #0D1117 100%); text-align: center; padding: 56px 0 60px; }
.hero-badge { display: inline-block; background: var(--orange); color: var(--white); font-family: var(--font-head); font-size: 13px; font-weight: 700; padding: 5px 16px; border-radius: 4px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
#hero h1 { font-family: var(--font-head); font-size: clamp(34px, 7vw, 58px); font-weight: 700; color: var(--white); text-transform: uppercase; line-height: 1.1; letter-spacing: 1px; margin-bottom: 16px; }
#hero h1 span { color: var(--yellow); }
.hero-sub { font-size: clamp(16px, 3vw, 20px); color: #CBD5E1; max-width: 580px; margin: 0 auto 28px; }
.hero-note { color: #94A3B8; font-size: 14px; margin-top: 12px; }
.hero-ticks { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; margin-top: 24px; }
.hero-ticks li { color: #E2E8F0; font-size: 14px; font-weight: 600; }

.section { padding: 60px 0; }
.section.dark { background: var(--dark); color: var(--white); }
.section-title { font-family: var(--font-head); font-size: clamp(26px, 5vw, 38px); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; text-align: center; margin-bottom: 10px; }
.section-intro { text-align: center; color: var(--gray); font-size: 17px; max-width: 620px; margin: 0 auto 32px; }
.section.dark .section-intro { color: #94A3B8; }
.section-cta { text-align: center; margin-top: 36px; }

.signs-list { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.signs-list li { display: flex; align-items: flex-start; gap: 14px; background: var(--light); border-left: 4px solid var(--orange); border-radius: 8px; padding: 16px 18px; font-size: 16px; font-weight: 600; }
.sign-emoji { font-size: 24px; flex-shrink: 0; line-height: 1.2; }

.pest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
.pest-card { background: var(--light); border-radius: 10px; padding: 18px 10px; text-align: center; font-weight: 600; font-size: 14px; }
.pest-emoji { font-size: 32px; display: block; margin-bottom: 6px; }
.pest-card.linked { display: block; border: 2px solid transparent; transition: border-color 0.2s, transform 0.2s; }
.pest-card.linked:hover { border-color: var(--orange); transform: translateY(-3px); }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; margin-top: 36px; }
.step { background: var(--dark2); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; padding: 30px 22px; text-align: center; }
.step-icon { font-size: 38px; margin-bottom: 12px; }
.step h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; text-transform: uppercase; color: var(--yellow); margin-bottom: 8px; }
.step p { color: #CBD5E1; font-size: 15px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.faq-item { background: var(--white); border: 1px solid #E5E7EB; border-radius: 8px; overflow: hidden; }
.faq-q { padding: 16px 20px; font-family: var(--font-head); font-size: 16px; font-weight: 600; text-transform: uppercase; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; user-select: none; }
.faq-q .arrow { color: var(--orange); font-size: 18px; transition: transform 0.25s; }
.faq-a { display: none; padding: 0 20px 16px; font-size: 15px; color: var(--gray); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .arrow { transform: rotate(180deg); }
.call-link { color: var(--green); font-weight: 700; text-decoration: underline; }

#final-cta { background: linear-gradient(160deg, #0D1117 0%, #1a0505 100%); text-align: center; color: var(--white); padding: 60px 0; }
#final-cta h2 { font-family: var(--font-head); font-size: clamp(26px, 5vw, 40px); font-weight: 700; text-transform: uppercase; color: var(--yellow); margin-bottom: 6px; }
#final-cta p { color: #94A3B8; margin-bottom: 22px; }
.final-number { display: block; font-family: var(--font-head); font-size: clamp(30px, 7vw, 48px); font-weight: 700; color: var(--yellow); letter-spacing: 2px; margin-bottom: 20px; }
.final-number:hover { color: var(--orange); }

#footer { background: #0D1117; color: #9CA3AF; padding: 44px 0 26px; }
.footer-top { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-bottom: 32px; }
.footer-top h4 { font-family: var(--font-head); font-size: 15px; font-weight: 700; text-transform: uppercase; color: var(--white); letter-spacing: 1px; margin-bottom: 12px; }
.footer-top p { font-size: 14px; line-height: 1.8; }
.footer-phone { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: var(--yellow); display: block; margin-bottom: 4px; }
.footer-links { display: flex; flex-direction: column; gap: 6px; }
.footer-links a { font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 18px; text-align: center; font-size: 13px; }
.footer-disclaimer { margin-top: 10px; font-size: 12px; color: #6B7280; max-width: 680px; margin-left: auto; margin-right: auto; line-height: 1.7; }

#sticky-call { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--green); color: var(--white); font-family: var(--font-head); font-size: 18px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-align: center; padding: 16px; box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.25); }
#sticky-call:active { background: var(--green-dark); }

.legal-page { padding: 56px 0; }
.legal-page h1 { font-family: var(--font-head); font-size: 36px; margin-bottom: 16px; }
.legal-page h2 { font-family: var(--font-head); font-size: 24px; margin-top: 24px; margin-bottom: 8px; }
.legal-page p, .legal-page li { margin-bottom: 10px; color: var(--gray); }
.legal-page ul { list-style: disc; padding-left: 24px; }

@media (max-width: 768px) {
  #sticky-call { display: block; }
  body { padding-bottom: 64px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
