/* ============================================================
   VERMIN CO. — Main Stylesheet
   ============================================================ */

/* ── Custom Properties ── */
:root {
  --bg:             #0A0A0A;
  --bg-soft:        #0f0f0f;
  --bg-card:        #111111;
  --bg-card-hover:  #141414;
  --accent:         #84CC16;
  --accent-hover:   #74B812;
  --accent-dim:     rgba(132, 204, 22, 0.07);
  --accent-border:  rgba(132, 204, 22, 0.2);
  --text:           #FFFFFF;
  --text-secondary: #777777;
  --text-muted:     #333333;
  --border:         rgba(255, 255, 255, 0.07);
  --white:          #ffffff;

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 12px;

  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s var(--ease);

  --nav-h: 96px; /* floating: 20px top + 58px height + 18px buffer */
}


/* ── Custom Cursor ── */
@media (pointer: fine) {
  *, *::before, *::after { cursor: none !important; }

  .cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    pointer-events: none;
    z-index: 99999;
    opacity: 0;
    will-change: transform;
    transition: opacity 0.2s, background 0.15s;
  }

  .cursor-dot.on-nav { background: #0A0A0A; }
}


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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img    { max-width: 100%; display: block; }
a      { text-decoration: none; color: inherit; }
button { font-family: inherit; }
ul     { list-style: none; }


/* ── Layout ── */
.container {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 32px;
}

.container--narrow {
  width: min(100%, 780px);
  margin: 0 auto;
  padding: 0 32px;
}


/* ── Typography Helpers ── */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.split-line          { display: block; overflow: hidden; }
.split-line__inner   { display: block; }


/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition),
              color var(--transition), border-color var(--transition);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--accent);
  color: #0A0A0A;
  padding: 14px 28px;
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
  padding: 13px 27px;
  border: 1px solid var(--accent-border);
}
.btn--ghost:hover {
  background: var(--accent);
  color: #0A0A0A;
  border-color: var(--accent);
  transform: translateY(-1px);
}

.btn--dark {
  background: #0A0A0A;
  color: var(--accent);
  padding: 14px 28px;
  border: 1px solid rgba(10,10,10,0.15);
}
.btn--dark:hover {
  background: #111;
  transform: translateY(-1px);
}

.btn--lg {
  font-size: 15px;
  padding: 17px 38px;
}
.btn--lg.btn--ghost { padding: 16px 37px; }

.btn--full { width: 100%; }


/* ── Page Loader ── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-bar-wrap {
  width: 140px;
  height: 1px;
  background: rgba(132, 204, 22, 0.15);
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}


/* ── Navigation ── */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 1080px;
  height: 58px;
  background: var(--accent);
  border-radius: 15px;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.25);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.4);
}

.nav__inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 28px;
  gap: 12px;
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-right: auto;
}

.nav__logo img {
  height: 22px;
  width: auto;
  filter: brightness(0);
}

.nav__logo-text {
  font-size: 18px;
  font-weight: 800;
  color: #0A0A0A;
  letter-spacing: -0.03em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(10, 10, 10, 0.55);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

.nav__links a:hover,
.nav__links a.active { color: #0A0A0A; }

/* CTA button inside lime nav */
.nav .btn--primary {
  background: #0A0A0A;
  color: var(--accent);
}
.nav .btn--primary:hover {
  background: #1c1c1c;
  transform: translateY(-1px);
}

.nav__cta { margin-left: 8px; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #0A0A0A;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.nav__mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: var(--bg);
  z-index: 999;
  padding: 48px 32px;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.nav__mobile-menu.open { display: flex; }

.nav__mobile-menu a {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
  letter-spacing: -0.02em;
}

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

.nav__mobile-menu .btn {
  margin-top: 40px;
  align-self: flex-start;
  font-size: 16px;
  padding: 18px 36px;
}


/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 120px;
}

.hero__h1 {
  font-size: clamp(60px, 9vw, 128px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 36px;
  max-width: 960px;
  text-transform: uppercase;
}

.hero__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 48px;
  line-height: 1.65;
  font-weight: 400;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 48px;
  left: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(1); }
  50%       { opacity: 1;    transform: scaleY(1.08); }
}


/* ── Stats Strip ── */
.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 48px 36px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }

.stat__num {
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}

.stat__unit {
  font-size: 0.5em;
  font-weight: 700;
  vertical-align: baseline;
  margin-left: 2px;
}

.stat__label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.4;
}


/* ── Sections ── */
.section { padding: 128px 0; }

.section--soft { background: var(--bg-soft); }

.section__header { margin-bottom: 80px; }

.section__h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section__body {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 500px;
  line-height: 1.7;
}


/* ── Pests Grid ── */
.pests-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
}

.pest-item {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background var(--transition), border-color var(--transition);
  overflow: hidden;
}

.pest-item:nth-child(4n)       { border-right: none; }
.pest-item:nth-last-child(-n+4){ border-bottom: none; }

.pest-item:hover {
  background: var(--bg-card);
  border-color: var(--accent-border);
}

.pest-item__num {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}

.pest-item__name {
  display: block;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.pests-footer {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.pests-footer__note {
  font-size: 13px;
  color: var(--text-secondary);
}


/* ── Steps / Process ── */
.steps-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.steps { display: flex; flex-direction: column; }

.step {
  display: flex;
  gap: 36px;
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
}
.step:first-child { padding-top: 0; }
.step:last-child  { border-bottom: none; }

.step__num {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  min-width: 24px;
  padding-top: 5px;
  font-variant-numeric: tabular-nums;
}

.step__content { flex: 1; }

.step__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.2;
}

.step__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.steps-visual {
  position: sticky;
  top: calc(var(--nav-h) + 48px);
}

.steps-stat-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 56px;
  margin-bottom: 1px;
}

.steps-stat-block + .steps-stat-block {
  border-top: none;
}

.steps-stat-block__num {
  font-size: clamp(64px, 6vw, 88px);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}

.steps-stat-block__label {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 220px;
}

.steps-stat-block__rule {
  width: 36px;
  height: 2px;
  background: var(--accent);
  margin: 20px 0;
}


/* ── Trust Cards ── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.trust-card {
  background: var(--bg);
  padding: 52px;
  transition: background var(--transition);
}
.trust-card:hover { background: var(--bg-card); }

.trust-card__icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--accent);
  flex-shrink: 0;
}

.trust-card__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.2;
}

.trust-card__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}


/* ── Testimonials Ticker ── */
.ticker-section {
  padding: 96px 0;
  overflow: hidden;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ticker-section__header {
  text-align: center;
  margin-bottom: 56px;
}

.ticker-wrap {
  overflow: hidden;
  user-select: none;
  cursor: grab;
}
.ticker-wrap.dragging { cursor: grabbing; }

.ticker-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

.testimonial-card {
  width: 380px;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 36px;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.testimonial-card__stars span {
  color: var(--accent);
  font-size: 13px;
}

.testimonial-card__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.testimonial-card__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.testimonial-card__role {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 1px;
}


/* ── CTA Section ── */
.cta-section {
  background: var(--accent);
  padding: 128px 0;
}

.cta-inner { text-align: center; }

.cta__h2 {
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 900;
  color: #0A0A0A;
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.cta__sub {
  font-size: 18px;
  color: rgba(10, 10, 10, 0.6);
  margin-bottom: 48px;
  line-height: 1.6;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.cta__note {
  font-size: 13px;
  color: rgba(10, 10, 10, 0.45);
  margin-top: 20px;
  letter-spacing: 0.02em;
}


/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-list .faq-item:first-child { border-top: 1px solid var(--border); }

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  letter-spacing: -0.01em;
  transition: color var(--transition);
}

.faq-item__q:hover              { color: var(--accent); }
.faq-item.open .faq-item__q     { color: var(--accent); }

.faq-item__q i {
  flex-shrink: 0;
  color: var(--text-secondary);
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-item__q i { transform: rotate(180deg); }

.faq-item__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-item__a { max-height: 320px; }

.faq-item__a > div { padding-bottom: 28px; }

.faq-item__a p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}


/* ── Contact Form ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 88px;
  align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

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

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.form-input {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}

.form-input::placeholder { color: var(--text-muted); }

.form-input:focus {
  border-color: var(--accent-border);
  background: var(--bg-card-hover);
}

.form-textarea { resize: vertical; min-height: 140px; }

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-submit { margin-top: 8px; }

.form-notice {
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 4px;
}
.form-notice--success { color: var(--accent); }
.form-notice--error   { color: #ef4444; }

/* Contact Sidebar */
.contact-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 48px);
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.contact-info-block {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.contact-info-block + .contact-info-block { border-top: none; }

.contact-info-block__title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.contact-detail:last-of-type { border-bottom: none; padding-bottom: 0; }
.contact-detail:hover         { color: var(--accent); }
.contact-detail i             { color: var(--accent); flex-shrink: 0; }

.guarantee-block {
  padding: 40px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
}

.guarantee-block__title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 12px;
}

.guarantee-block__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}


/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  border-bottom: 1px solid var(--border);
}

.page-hero__h1 {
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.96;
  margin-bottom: 24px;
  text-transform: uppercase;
  max-width: 860px;
}

.page-hero__sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.65;
}


/* ── Services Grid (services page) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--bg);
  padding: 60px 52px;
  transition: background var(--transition);
}
.service-card:hover { background: var(--bg-card); }

.service-card__num {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}

.service-card__title {
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.service-card__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  padding: 5px 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* ── Commercial Section ── */
.commercial-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.commercial-block__visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.commercial-stat__num {
  font-size: clamp(64px, 6vw, 88px);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.commercial-stat__label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 8px;
  letter-spacing: 0.01em;
}

.commercial-stat__divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  margin-left: 4px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
}
.service-list-item:first-child { padding-top: 0; }
.service-list-item:last-child  { border-bottom: none; padding-bottom: 0; }

.service-list-item i { color: var(--accent); flex-shrink: 0; }


/* ── Footer ── */
.footer {
  padding: 64px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.footer__logo img  { height: 22px; width: auto; }
.footer__logo-text {
  font-size: 17px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.footer__tagline {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 10px;
  max-width: 200px;
  line-height: 1.5;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__nav-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.footer__nav a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--text); }

.footer__contact { display: flex; flex-direction: column; gap: 12px; }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.footer__contact-item:hover { color: var(--text); }
.footer__contact-item i { color: var(--accent); flex-shrink: 0; }

.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer__license {
  font-size: 12px;
  color: var(--text-muted);
}


/* ── Responsive ── */
@media (max-width: 1024px) {
  .steps-layout        { grid-template-columns: 1fr; gap: 64px; }
  .steps-visual        { position: static; }
  .commercial-block    { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout      { grid-template-columns: 1fr; gap: 56px; }
  .contact-sidebar     { position: static; }
  .footer__top         { gap: 40px; }
}

@media (max-width: 768px) {
  .nav {
    width: calc(100% - 32px);
    top: 14px;
    height: 52px;
  }
  .nav__inner { padding: 0 20px; }
  .nav__links     { display: none; }
  .nav__cta       { display: none; }
  .nav__hamburger { display: flex; }

  .hero__h1 { font-size: 52px; }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat { padding: 36px 24px; }
  .stat:nth-child(2)  { border-right: none; }
  .stat:nth-child(3)  { border-bottom: none; }
  .stat:nth-child(4)  { border-right: none; border-bottom: none; }

  .pests-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pest-item:nth-child(4n)       { border-right: 1px solid var(--border); }
  .pest-item:nth-child(2n)       { border-right: none; }
  .pest-item:nth-last-child(-n+4){ border-bottom: 1px solid var(--border); }
  .pest-item:nth-last-child(-n+2){ border-bottom: none; }

  .trust-grid    { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .section       { padding: 88px 0; }
  .section__h2   { font-size: 40px; }
  .page-hero__h1 { font-size: 48px; }
  .trust-card    { padding: 40px; }
  .service-card  { padding: 44px 36px; }
  .footer__top   { flex-direction: column; gap: 36px; }
  .footer__bottom{ flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
  .container, .container--narrow { padding: 0 20px; }
  .hero__h1    { font-size: 40px; }
  .hero__ctas  { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { text-align: center; justify-content: center; }
  .stats-grid  { grid-template-columns: 1fr; }
  .stat        { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .pests-grid  { grid-template-columns: 1fr; }
  .pest-item:nth-child(2n)       { border-right: none; }
  .pest-item:nth-last-child(-n+2){ border-bottom: 1px solid var(--border); }
  .pest-item:last-child          { border-bottom: none; }
  .cta__h2     { font-size: 44px; }
  .steps-visual{ display: none; }
}
