/* ============================================================
   SOS Nuisibles 45 — Shared Stylesheet
   ============================================================ */

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

/* ── Tokens ── */
:root {
  --bg:           oklch(99% 0.003 90);
  --surface:      oklch(100% 0 0);
  --fg:           oklch(14% 0.018 60);
  --muted:        oklch(52% 0.015 60);
  --border:       oklch(88% 0.008 85);
  --accent:       oklch(78% 0.19 82);
  --accent-dark:  oklch(58% 0.18 70);
  --accent-light: oklch(95% 0.06 85);
  --danger:       oklch(54% 0.20 25);
  --danger-dark:  oklch(40% 0.20 25);
  --success:      oklch(56% 0.18 148);

  --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-body:    -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 4px oklch(0% 0 0 / 0.06), 0 2px 8px oklch(0% 0 0 / 0.05);
  --shadow:      0 4px 12px oklch(0% 0 0 / 0.08), 0 8px 24px oklch(0% 0 0 / 0.06);
  --shadow-lg:   0 8px 24px oklch(0% 0 0 / 0.10), 0 16px 48px oklch(0% 0 0 / 0.08);

  --max-w: 1200px;
  --section-py: clamp(64px, 8vw, 112px);
  --section-px: clamp(20px, 5vw, 48px);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Emergency Bar ── */
.emergency-bar {
  background: var(--danger);
  color: #fff;
  text-align: center;
  padding: 10px var(--section-px);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(12px, 1.5vw, 14px);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.emergency-bar a {
  color: #fff;
  text-decoration: underline;
  font-weight: 800;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-px);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  overflow: hidden;
  height: 68px;
}
.site-logo img {
  height: 96px;
  width: auto;
  margin-top: -14px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--fg);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.site-nav a:hover,
.site-nav a.active { color: var(--accent-dark); background: var(--accent-light); }
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--danger);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-phone:hover { background: var(--danger-dark); transform: translateY(-1px); }
.btn-phone svg { width: 16px; height: 16px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--accent);
  color: var(--fg);
  box-shadow: 0 4px 14px oklch(78% 0.19 82 / 0.35);
}
.btn-primary:hover { background: var(--accent-dark); color: #fff; box-shadow: 0 6px 20px oklch(58% 0.18 70 / 0.4); }
.btn-secondary {
  background: transparent;
  color: var(--fg);
  border: 2px solid var(--border);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent-dark); }
.btn-danger {
  background: var(--danger);
  color: #fff;
  box-shadow: 0 4px 14px oklch(54% 0.20 25 / 0.35);
}
.btn-danger:hover { background: var(--danger-dark); box-shadow: 0 6px 20px oklch(40% 0.20 25 / 0.4); }
.btn-lg { font-size: 17px; padding: 17px 34px; }
.btn-sm { font-size: 13px; padding: 9px 18px; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Section titles ── */
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 16px;
}
.section-lead {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-header { margin-bottom: clamp(32px, 5vw, 56px); }
.section-header.center { text-align: center; }
.section-header.center .section-lead { margin: 0 auto; }

/* ── Service card ── */
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.service-card-icon svg { width: 32px; height: 32px; color: var(--accent-dark); }
.service-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 10px;
}
.service-card-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}
.service-card-img {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-img-split {
  display: flex;
  position: absolute;
  inset: 0;
}
.service-card-img-split img {
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img-split img { transform: scale(1.04); }

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 100px;
}
.badge-accent { background: var(--accent-light); color: var(--accent-dark); }
.badge-danger { background: oklch(97% 0.015 25); color: var(--danger); }
.badge-success { background: oklch(97% 0.015 148); color: var(--success); }

/* ── Grid layouts ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Section container ── */
.section { padding: var(--section-py) var(--section-px); }
.container { max-width: var(--max-w); margin: 0 auto; }

/* ── Checklist ── */
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--fg);
  line-height: 1.5;
}
.check-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-icon svg { width: 12px; height: 12px; color: var(--accent-dark); }

/* ── Testimonial ── */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: var(--accent); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--accent-dark);
  flex-shrink: 0;
}
.testimonial-name { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--fg); }
.testimonial-location { font-size: 12px; color: var(--muted); }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--fg);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3.5vw, 32px);
  margin-bottom: 10px;
  line-height: 1.2;
}
.cta-banner-title span { color: var(--accent); }
.cta-banner-sub { font-size: 16px; opacity: 0.7; }
.cta-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; flex-shrink: 0; }

/* ── Process steps ── */
.process-step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content h4 { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--fg); margin-bottom: 6px; }
.step-content p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Info box ── */
.info-box {
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.info-box-accent { background: var(--accent-light); border-left: 3px solid var(--accent-dark); }
.info-box-danger { background: oklch(97% 0.015 25); border-left: 3px solid var(--danger); }
.info-box-icon { flex-shrink: 0; margin-top: 2px; }
.info-box-icon svg { width: 20px; height: 20px; }
.info-box-accent .info-box-icon svg { color: var(--accent-dark); }
.info-box-danger .info-box-icon svg { color: var(--danger); }
.info-box-title { font-family: var(--font-display); font-weight: 700; font-size: 14px; margin-bottom: 4px; color: var(--fg); }
.info-box-text { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Footer ── */
.site-footer {
  background: var(--fg);
  color: rgba(255,255,255,0.8);
  padding: clamp(48px, 7vw, 80px) var(--section-px) 32px;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand-logo { height: 80px; width: auto; margin-bottom: 8px; margin-top: -12px; }
.footer-brand-tagline { font-size: 14px; line-height: 1.7; opacity: 0.7; margin-bottom: 24px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 14px; margin-bottom: 10px; }
.footer-contact-item svg { width: 16px; height: 16px; opacity: 0.6; flex-shrink: 0; }
.footer-phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.footer-col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-col li a:hover { color: var(--accent); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  opacity: 0.5;
}

/* ── Page Hero ── */
.page-hero {
  background: linear-gradient(135deg, oklch(14% 0.018 60) 0%, oklch(20% 0.025 65) 60%, oklch(16% 0.020 62) 100%);
  color: #fff;
  padding: clamp(56px, 8vw, 100px) var(--section-px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 50%, oklch(78% 0.19 82 / 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, oklch(54% 0.20 25 / 0.07) 0%, transparent 45%);
  pointer-events: none;
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: oklch(78% 0.19 82 / 0.15);
  border: 1px solid oklch(78% 0.19 82 / 0.40);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 5.5vw, 56px);
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: oklch(85% 0.01 80);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.page-hero-actions .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.page-hero-actions .btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255,255,255,0.05);
}

/* ── Nuisible grid ── */
.nuisible-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.nuisible-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.nuisible-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.nuisible-emoji { font-size: 40px; margin-bottom: 12px; }
.nuisible-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--fg); margin-bottom: 6px; }
.nuisible-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── Content split ── */
.content-split { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; }

/* ── Sticky CTA ── */
.sticky-cta {
  position: sticky;
  top: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.sticky-cta-title { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--fg); margin-bottom: 8px; }
.sticky-cta-sub { font-size: 14px; color: var(--muted); margin-bottom: 24px; line-height: 1.6; }
.sticky-cta-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--danger);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  justify-content: center;
  margin-bottom: 12px;
  transition: background 0.2s;
}
.sticky-cta-phone:hover { background: var(--danger-dark); }
.sticky-cta-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
  margin: 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sticky-cta-divider::before, .sticky-cta-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: oklch(97% 0.012 148);
  border: 1px solid oklch(85% 0.035 148);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-top: 16px;
}
.guarantee-badge svg { width: 24px; height: 24px; color: var(--success); flex-shrink: 0; }
.guarantee-badge-text { font-size: 13px; color: var(--fg); line-height: 1.4; }
.guarantee-badge-label { font-weight: 700; font-family: var(--font-display); }

/* ── FAQ (details/summary) ── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--surface);
}
.faq-question {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--fg);
  list-style: none;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--accent-dark); }
.faq-arrow {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--muted);
}
details[open] .faq-arrow { transform: rotate(180deg); }
.faq-answer { padding: 0 24px 18px; font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── Forms ── */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.form-card-title { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--fg); margin-bottom: 6px; }
.form-card-sub { font-size: 14px; color: var(--muted); margin-bottom: 32px; line-height: 1.6; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--fg);
  margin-bottom: 7px;
}
.form-label .required { color: var(--danger); margin-left: 3px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px oklch(78% 0.19 82 / 0.15);
}
.form-input.invalid, .form-select.invalid, .form-textarea.invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px oklch(54% 0.20 25 / 0.12);
}
.form-input.valid, .form-select.valid, .form-textarea.valid {
  border-color: var(--success);
}
.field-error {
  display: none;
  font-size: 12px;
  color: var(--danger);
  margin-top: 5px;
  font-weight: 500;
}
.field-error.visible { display: block; }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.urgency-check-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: oklch(54% 0.20 25 / 0.06);
  border: 1.5px solid oklch(54% 0.20 25 / 0.25);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 24px;
  cursor: pointer;
}
.urgency-check-wrap input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--danger); margin-top: 1px; flex-shrink: 0; }
.urgency-check-label { font-size: 14px; color: var(--fg); line-height: 1.5; }
.urgency-check-label strong { color: var(--danger); }
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 28px;
  background: var(--accent);
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 4px 16px oklch(78% 0.19 82 / 0.35);
}
.btn-submit:hover:not(:disabled) { background: var(--accent-dark); color: #fff; box-shadow: 0 6px 20px oklch(58% 0.18 70 / 0.40); }
.btn-submit:active:not(:disabled) { transform: scale(0.98); }
.btn-submit:disabled { background: var(--border); color: var(--muted); box-shadow: none; cursor: not-allowed; }
.form-privacy { text-align: center; font-size: 12px; color: var(--muted); margin-top: 14px; line-height: 1.5; }
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 32px;
}
.form-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: oklch(56% 0.18 148 / 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--success);
}
.form-success-icon svg { width: 32px; height: 32px; }
.form-success-title { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--fg); margin-bottom: 10px; }
.form-success-msg { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ── Contact page ── */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.sidebar-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.sidebar-block-title { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--fg); margin-bottom: 16px; }
.contact-phone-big {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--danger);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  transition: background 0.2s;
  margin-bottom: 8px;
}
.contact-phone-big:hover { background: var(--danger-dark); }
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-dark);
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 3px; }
.contact-info-value { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--fg); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .content-split { grid-template-columns: 1fr; gap: 36px; }
  .sticky-cta { position: static; }
  .nuisible-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .grid-3 { grid-template-columns: 1fr; gap: 20px; }
  .grid-2 { grid-template-columns: 1fr; gap: 20px; }
  .grid-4 { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .site-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 16px var(--section-px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 4px;
    z-index: 99;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 15px; }
  .nav-toggle { display: flex; }
  .header-inner { position: relative; }
}
@media (max-width: 480px) {
  .btn-lg { font-size: 15px; padding: 14px 24px; }
  .emergency-bar { font-size: 12px; gap: 8px; }
  .nuisible-grid { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 28px 20px; }
}
