:root {
  --orange: #f58217;
  --orange-dark: #c95f08;
  --ember: #ffad57;
  --charcoal: #292d31;
  --ink: #141619;
  --night: #090b0b;
  --muted: #66717a;
  --line: #e1e4df;
  --paper: #f7f8f4;
  --white: #ffffff;
  --sage: #2d6b5f;
  --teal: #167a7e;
  --mint: #8bd6c4;
  --warning: #f0ad38;
  --shadow: 0 20px 56px rgba(16, 18, 20, 0.13);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7f8f4 0, #fffaf3 38%, #f2f5f1 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body.quote-is-open,
body.call-is-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding-top: 16px;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: transparent;
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 18px;
  border: 1px solid rgba(20, 22, 25, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 54px rgba(9, 11, 11, 0.13);
  backdrop-filter: blur(20px);
}

.brand {
  width: 224px;
  min-width: 188px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--charcoal);
  font-size: 0.96rem;
  font-weight: 700;
}

.site-header.is-scrolled .nav-links {
  color: var(--charcoal);
}

.nav-links a {
  padding: 12px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 130, 23, 0.22);
  border-radius: 8px;
  background: #111412;
  color: var(--white);
  padding: 0 14px;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(9, 11, 11, 0.14);
}

.site-header.is-scrolled .header-phone {
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border 160ms ease,
    background 160ms ease,
    color 160ms ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange);
  color: #11100d;
  box-shadow: 0 16px 34px rgba(245, 130, 23, 0.26);
}

.btn-primary:hover {
  background: #ff9829;
}

.btn-secondary {
  background: var(--ink);
  color: var(--white);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn-small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.site-header.is-scrolled .menu-toggle {
  border-color: var(--line);
  background: var(--white);
}

.site-header.is-scrolled .menu-toggle span {
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 18%, rgba(245, 130, 23, 0.3), transparent 27%),
    radial-gradient(circle at 82% 72%, rgba(22, 122, 126, 0.18), transparent 31%),
    linear-gradient(115deg, #080a0a 0 50%, #111716 70%, #1b160f 100%);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.72), transparent 96%);
}

.hero::after {
  content: "TECNIPRAGAS";
  position: absolute;
  right: -26px;
  bottom: 36px;
  z-index: -1;
  color: rgba(255, 250, 244, 0.045);
  font-size: 8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  pointer-events: none;
}

.hero-system,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-system {
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 10, 10, 0.78), rgba(8, 10, 10, 0.32) 56%, rgba(8, 10, 10, 0.68)),
    linear-gradient(180deg, rgba(8, 10, 10, 0.18), rgba(8, 10, 10, 0.72));
}

.system-grid {
  position: absolute;
  inset: 92px -12vw 40px 38vw;
  border: 1px solid rgba(245, 130, 23, 0.12);
  transform: skewX(-10deg);
  background:
    linear-gradient(rgba(139, 214, 196, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 130, 23, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, rgba(245, 130, 23, 0.15), transparent 46%);
  background-size: 32px 32px, 32px 32px, auto;
}

.system-map {
  position: absolute;
  width: min(760px, 58vw);
  right: max(22px, calc((100vw - var(--container)) / 2 - 10px));
  top: 116px;
  opacity: 0.66;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.32));
}

.map-floor {
  fill: rgba(255, 250, 244, 0.04);
  stroke: rgba(255, 250, 244, 0.14);
  stroke-width: 2;
}

.map-wall {
  fill: none;
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 8;
  stroke-linecap: square;
  stroke-linejoin: round;
}

.map-link {
  fill: none;
  stroke: var(--orange);
  stroke-width: 4;
  stroke-dasharray: 12 14;
  stroke-linecap: round;
  animation: routeFlow 6s linear infinite;
}

.map-link.alt {
  stroke: var(--mint);
  opacity: 0.58;
  animation-duration: 8s;
}

.map-node {
  fill: var(--teal);
  stroke: rgba(255, 255, 255, 0.96);
  stroke-width: 5;
}

.map-node.hot {
  fill: var(--orange);
}

.map-node.ok {
  fill: var(--sage);
}

.scan-beam {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 52%;
  width: 20%;
  background: linear-gradient(90deg, transparent, rgba(139, 214, 196, 0.12), transparent);
  transform: skewX(-16deg);
  animation: scanBeam 7s ease-in-out infinite;
}

.system-readout {
  position: absolute;
  min-width: 142px;
  min-height: 72px;
  padding: 14px 16px;
  border: 1px solid rgba(245, 130, 23, 0.16);
  border-radius: 8px;
  background: rgba(9, 11, 11, 0.72);
  color: var(--white);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.system-readout span {
  display: block;
  color: var(--ember);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-readout strong {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  line-height: 1.1;
}

.readout-a {
  right: max(430px, calc((100vw - var(--container)) / 2 + 360px));
  top: 182px;
}

.readout-b {
  right: max(96px, calc((100vw - var(--container)) / 2 + 80px));
  top: 390px;
}

.readout-c {
  right: max(380px, calc((100vw - var(--container)) / 2 + 320px));
  bottom: 118px;
}

.signal-stack {
  position: absolute;
  right: max(40px, calc((100vw - var(--container)) / 2));
  bottom: 86px;
  width: 210px;
  display: grid;
  gap: 10px;
}

.signal-stack span {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--mint));
  transform-origin: left;
  animation: signalLoad 3.8s ease-in-out infinite;
  opacity: 0.88;
}

.signal-stack span:nth-child(2) {
  width: 74%;
  animation-delay: 0.2s;
}

.signal-stack span:nth-child(3) {
  width: 48%;
  animation-delay: 0.4s;
}

.signal-stack span:nth-child(4) {
  width: 88%;
  animation-delay: 0.6s;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 54px;
  align-items: center;
  color: var(--white);
  padding-top: 126px;
  padding-bottom: 46px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 5.7rem;
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.hero-lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.22rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(245, 130, 23, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: 46px;
  overflow: hidden;
  border: 1px solid rgba(245, 130, 23, 0.22);
  border-radius: 8px;
  background: rgba(9, 11, 11, 0.28);
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.24);
}

.hero-proof div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.hero-proof strong {
  display: block;
  font-size: 1.4rem;
  line-height: 1.1;
}

.hero-proof span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.hero-command {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 130, 23, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.045)),
    rgba(9, 11, 11, 0.78);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(20px);
}

.hero-command::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(245, 130, 23, 0.2), transparent 38%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
}

.command-header,
.command-grid,
.command-status,
.command-route,
.command-cta {
  position: relative;
  z-index: 1;
}

.command-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 22px 18px;
  border-bottom: 1px solid rgba(245, 130, 23, 0.14);
}

.command-header span,
.command-status span {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.command-header strong {
  display: block;
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.15;
  text-align: right;
}

.command-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 22px;
}

.command-pest {
  display: grid;
  min-height: 122px;
  place-items: center;
  gap: 10px;
  padding: 16px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.052);
  color: rgba(255, 255, 255, 0.74);
  text-align: center;
}

.command-pest.active {
  border-color: rgba(245, 130, 23, 0.66);
  background: rgba(245, 130, 23, 0.14);
  color: var(--white);
}

.command-pest svg {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.26));
}

.command-pest span {
  font-size: 0.86rem;
  font-weight: 900;
}

.command-status {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1px;
  margin: 0 22px 18px;
  overflow: hidden;
  border: 1px solid rgba(245, 130, 23, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.command-status div {
  padding: 16px;
  background: rgba(0, 0, 0, 0.16);
}

.command-status strong {
  display: block;
  margin-top: 5px;
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.2;
}

.command-route {
  display: grid;
  gap: 8px;
  margin: 0 22px 22px;
}

.command-route span {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(139, 214, 196, 0.52), transparent);
  transform-origin: left;
  animation: signalLoad 4.8s ease-in-out infinite;
}

.command-route span:nth-child(2) {
  width: 78%;
  animation-delay: 0.18s;
}

.command-route span:nth-child(3) {
  width: 55%;
  animation-delay: 0.36s;
}

.command-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin: 0 22px 22px;
  border-radius: 8px;
  background: var(--orange);
  color: #11100d;
  font-size: 0.95rem;
  font-weight: 950;
  box-shadow: 0 18px 38px rgba(245, 130, 23, 0.26);
}

.credibility-strip {
  overflow: hidden;
  border-block: 1px solid rgba(201, 95, 8, 0.5);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 18%, rgba(255, 255, 255, 0.12) 70%, transparent),
    linear-gradient(90deg, #ec7610, var(--orange), #ff9829);
  color: #12100c;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.strip-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: max-content;
  white-space: nowrap;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  animation: stripMarquee 26s linear infinite;
}

.strip-track:hover {
  animation-play-state: paused;
}

.strip-set {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 58px;
  padding-inline: 24px;
}

.strip-track span {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.strip-track i {
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 999px;
  background: #12100c;
  opacity: 0.46;
}

.trust-band {
  background: #fffdf8;
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.trust-grid article {
  min-height: 182px;
  padding: 34px 30px;
  background:
    linear-gradient(180deg, rgba(244, 138, 24, 0.04), transparent 56%),
    var(--white);
}

.metric,
.result-kicker,
.plan-tag {
  display: inline-flex;
  align-items: center;
  color: var(--sage);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.trust-grid h2,
.service-card h3,
.timeline-item h3,
.plan-card h3,
.pest-result h3,
.sector-detail h3 {
  margin: 10px 0 8px;
  line-height: 1.18;
}

.trust-grid p,
.service-card p,
.timeline-item p,
.plan-card p,
.pest-result p,
.sector-detail p,
.section-heading p,
.contact-copy p {
  color: var(--muted);
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
  text-align: center;
}

.section-heading.align-left {
  text-align: left;
  margin: 0;
}

.section-heading h2,
.contact-copy h2,
.checklist-layout h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.7rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p,
.contact-copy p,
.checklist-layout p {
  margin: 18px 0 0;
  font-size: 1.05rem;
}

.services-section {
  background:
    linear-gradient(180deg, var(--paper), #ffffff 46%, #f4f7f5);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.plan-card,
.simulator,
.pest-result,
.sector-detail,
.dashboard-preview,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(22, 24, 26, 0.06);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  padding: 28px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--mint));
  opacity: 0.9;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 138, 24, 0.34);
  box-shadow: 0 24px 54px rgba(22, 24, 26, 0.12);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.85), transparent 34%),
    linear-gradient(135deg, #fff3e5, #eaf6f2);
  border: 1px solid rgba(244, 138, 24, 0.22);
  box-shadow: 0 14px 30px rgba(47, 48, 52, 0.08);
  font-weight: 900;
}

.service-icon img,
.service-icon svg {
  width: 38px;
  height: 38px;
}

.service-card ul,
.plan-card ul,
.sector-detail ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.plan-card li,
.sector-detail li {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.95rem;
}

.service-card li::before,
.plan-card li::before,
.sector-detail li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--orange);
}

.pest-lab {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    radial-gradient(circle at 12% 0%, rgba(245, 130, 23, 0.13), transparent 32%),
    linear-gradient(135deg, #101312, #121817 58%, #1b140c);
  background-size: 34px 34px, 34px 34px, auto, auto;
  color: var(--white);
}

.pest-lab .section-heading h2,
.pest-lab .section-heading p {
  color: var(--white);
}

.pest-lab .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.triage-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: center;
}

.triage-copy h2 {
  max-width: 620px;
  margin: 0;
  color: var(--white);
  font-size: 3.25rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.triage-copy p {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.triage-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 620px;
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.triage-proof span {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.85rem;
}

.triage-proof strong {
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1;
}

.triage-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.triage-steps span {
  padding: 8px 10px;
  border: 1px solid rgba(244, 138, 24, 0.36);
  border-radius: 8px;
  background: rgba(244, 138, 24, 0.1);
  color: #ffbe72;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split-layout,
.selector-layout,
.proof-layout,
.contact-layout,
.checklist-layout,
.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.simulator {
  padding: 28px;
  background: #f9fbf8;
}

.triage-console {
  display: grid;
  gap: 20px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(244, 138, 24, 0.045), transparent 34%),
    #fffdf9;
}

.triage-console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #101211, #151a18 68%, #241406);
  color: var(--white);
}

.triage-console-head span {
  display: block;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.triage-console-head strong {
  display: block;
  margin-top: 4px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.triage-console-head b {
  display: grid;
  place-items: center;
  width: 72px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffbe72;
  font-size: 1rem;
}

.triage-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.triage-console .field-row {
  margin-bottom: 0;
}

.range-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.range-title strong {
  color: var(--orange-dark);
  font-size: 0.9rem;
}

.area-row {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.critical-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.critical-row label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 76px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: #33363a;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
}

.critical-row input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 1px;
  accent-color: var(--orange);
}

.field-row {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.field-row label,
.contact-form label {
  color: var(--ink);
  font-weight: 800;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid #d8d3cb;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

select:focus,
input:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(244, 138, 24, 0.18);
}

input[type="range"] {
  accent-color: var(--orange);
  padding-inline: 0;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.84rem;
}

.risk-output {
  display: grid;
  gap: 16px;
  margin-top: 0;
  padding: 20px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 130, 23, 0.1), transparent 52%),
    #101312;
  border: 1px solid rgba(245, 130, 23, 0.18);
  color: var(--white);
}

.risk-meter {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.risk-meter span {
  display: block;
  width: 34%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--orange));
  transition: width 180ms ease;
}

.risk-output.risk-low .risk-meter span {
  background: linear-gradient(90deg, var(--mint), #9ddfca);
}

.risk-output.risk-high .risk-meter span {
  background: linear-gradient(90deg, var(--orange), #ff6b2f);
}

.risk-output.risk-critical {
  border-color: rgba(255, 107, 47, 0.42);
}

.risk-output.risk-critical .risk-meter span {
  background: linear-gradient(90deg, #ff4f36, var(--orange));
}

.risk-main {
  display: grid;
  gap: 4px;
}

.risk-main > span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.risk-output strong {
  color: var(--white);
  font-size: 1.2rem;
}

.risk-output p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.risk-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10px;
}

.risk-grid span {
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
}

.risk-grid small {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.risk-grid strong {
  display: block;
  margin-top: 6px;
  line-height: 1.2;
}

.risk-actions {
  padding-top: 2px;
}

.risk-actions > strong {
  display: block;
  margin-bottom: 8px;
  color: var(--mint);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.risk-actions ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.risk-actions li {
  display: flex;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.risk-actions li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.risk-output .btn {
  width: 100%;
  margin-top: 2px;
}

.selector-section {
  background: var(--white);
}

.selector-panel h2 {
  margin: 0 0 24px;
  font-size: 2.4rem;
  line-height: 1.1;
}

.pest-buttons,
.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pest-button,
.tab {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--charcoal);
  padding: 0 14px;
  font-weight: 800;
  cursor: pointer;
}

.pest-button.active,
.tab.active {
  border-color: var(--orange);
  background: #fff0dc;
  color: #6f3600;
}

.pest-result {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(244, 138, 24, 0.08), rgba(47, 111, 99, 0.1)),
    var(--white);
}

.pest-result h3 {
  font-size: 2rem;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.result-grid span,
.feature-list span,
.contact-highlights span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--charcoal);
  padding: 8px 12px;
  font-weight: 800;
  font-size: 0.88rem;
}

.sectors-section {
  background: #f4f7f5;
}

.sector-tabs {
  display: grid;
  gap: 18px;
}

.tab-list {
  justify-content: center;
}

.sector-detail {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  padding: 34px;
}

.method-section {
  background: var(--ink);
  color: var(--white);
}

.method-section .section-heading h2,
.method-section .section-heading p {
  color: var(--white);
}

.method-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.timeline-item {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.timeline-item span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 900;
}

.timeline-item p {
  color: rgba(255, 255, 255, 0.7);
}

.proof-section {
  background: #ffffff;
}

.dashboard-preview {
  min-height: 430px;
  overflow: hidden;
  background: #f8faf8;
  box-shadow: var(--shadow);
}

.preview-header {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  background: var(--ink);
}

.preview-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.preview-header span:nth-child(2) {
  background: var(--warning);
}

.preview-header span:nth-child(3) {
  background: var(--teal);
}

.preview-body {
  display: grid;
  grid-template-columns: 0.76fr 1fr;
  gap: 20px;
  padding: 26px;
}

.preview-score {
  min-height: 150px;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.preview-score strong {
  color: var(--sage);
  font-size: 3rem;
  line-height: 1;
}

.preview-score span {
  color: var(--muted);
  font-weight: 800;
}

.preview-bars {
  display: grid;
  gap: 14px;
  align-content: center;
}

.preview-bars span {
  position: relative;
  height: 18px;
  border-radius: 8px;
  background: #e9ece8;
  overflow: hidden;
}

.preview-bars span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  background: linear-gradient(90deg, var(--orange), var(--teal));
}

.preview-map {
  grid-column: 1 / -1;
  position: relative;
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(23, 25, 28, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(23, 25, 28, 0.08) 1px, transparent 1px),
    #fffdf8;
  background-size: 34px 34px;
}

.pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 8px 20px rgba(23, 25, 28, 0.18);
}

.pin-a {
  left: 18%;
  top: 36%;
}

.pin-b {
  left: 54%;
  top: 24%;
  background: var(--teal);
}

.pin-c {
  left: 78%;
  top: 58%;
  background: var(--sage);
}

.pin-d {
  left: 36%;
  top: 72%;
  background: var(--warning);
}

.feature-list,
.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-direct {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  max-width: 560px;
}

.contact-direct a {
  display: grid;
  gap: 4px;
  min-height: 86px;
  align-content: center;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.contact-direct span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-direct strong {
  font-size: 1.1rem;
  line-height: 1.2;
}

.plans-section {
  background:
    radial-gradient(circle at 82% 10%, rgba(244, 138, 24, 0.12), transparent 30%),
    linear-gradient(180deg, #fffaf4 0, #f4eadf 100%);
}

.plans-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.plans-header .section-heading {
  max-width: 790px;
  margin-bottom: 0;
}

.plan-suite,
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 560px;
  padding: 30px;
}

.plan-advanced {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 244, 0.98)),
    var(--white);
}

.plan-advanced::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
}

.plan-tag {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  background: rgba(47, 111, 99, 0.1);
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-card h3 {
  margin-top: 0;
  font-size: 1.7rem;
}

.plan-meta {
  display: grid;
  gap: 10px;
  margin: 4px 0 2px;
}

.plan-meta span {
  display: grid;
  gap: 4px;
  min-height: 72px;
  align-content: center;
  padding: 14px 16px;
  border: 1px solid rgba(47, 48, 52, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.plan-meta small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.plan-meta strong {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.28;
}

.plan-card ul {
  margin-bottom: auto;
}

.plan-card.featured {
  border-color: rgba(244, 138, 24, 0.62);
  background:
    linear-gradient(180deg, rgba(244, 138, 24, 0.15), rgba(255, 255, 255, 0.98)),
    var(--white);
  box-shadow: var(--shadow);
}

.plan-card.featured .plan-tag {
  background: rgba(244, 138, 24, 0.14);
  color: var(--orange-dark);
}

.checklist-section {
  background: var(--white);
}

.checklist-layout {
  grid-template-columns: 0.85fr 1.15fr;
}

.checklist {
  display: grid;
  gap: 12px;
}

.checklist label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  font-weight: 800;
}

.checklist input {
  width: 20px;
  height: 20px;
  accent-color: var(--orange);
}

.faq-section {
  background: #f4f7f5;
}

.faq-list {
  display: grid;
  gap: 28px;
  max-width: 980px;
}

.faq-group {
  display: grid;
  gap: 10px;
}

.faq-group h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 0 22px;
  box-shadow: 0 12px 28px rgba(22, 24, 26, 0.045);
}

summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 8px;
  background: #fff1e4;
  color: var(--orange-dark);
  font-size: 1.1rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
  background: var(--orange);
  color: #17130f;
}

details p {
  margin: 0 0 22px;
  color: var(--muted);
}

.faq-lead-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 4px;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(244, 138, 24, 0.16), rgba(15, 127, 134, 0.16)),
    var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.faq-lead-card span {
  display: block;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.faq-lead-card h3 {
  margin: 8px 0 8px;
  font-size: 1.55rem;
  line-height: 1.15;
}

.faq-lead-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-section {
  padding: 96px 0;
  background:
    linear-gradient(135deg, rgba(244, 138, 24, 0.12), rgba(15, 127, 134, 0.12)),
    var(--ink);
  color: var(--white);
}

.contact-copy h2,
.contact-copy p {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.quote-modal.is-open {
  display: flex;
}

.quote-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 22%, rgba(244, 138, 24, 0.18), transparent 28%),
    rgba(10, 11, 12, 0.78);
  backdrop-filter: blur(12px);
}

.quote-dialog {
  position: relative;
  width: min(760px, calc(100vw - 28px));
  height: min(92dvh, 940px);
  max-height: min(92vh, 940px);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  overflow: hidden;
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
}

.quote-hero {
  position: relative;
  min-height: 172px;
  padding: 32px 40px 30px;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #101211, #0a0b0b 72%, #1d1207);
  background-size: 28px 28px, 28px 28px, auto;
}

.quote-close {
  position: absolute;
  right: 28px;
  top: 24px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.quote-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-kicker span {
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.quote-hero h2 {
  max-width: 460px;
  margin: 0;
  font-size: 2.35rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.quote-hero p:last-child {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.quote-steps {
  display: grid;
  grid-template-columns: 1fr 42px 1fr 42px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 40px;
  border-bottom: 1px solid #ddd8d0;
  background: var(--white);
}

.quote-step {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: #8a8781;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
  text-align: left;
}

.quote-step span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 2px solid #ddd8d0;
  border-radius: 50%;
  background: var(--white);
  color: #8a8781;
}

.quote-step.is-active,
.quote-step.is-complete {
  color: #141414;
}

.quote-step.is-active span {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.quote-step.is-complete span {
  border-color: #111312;
  background: #111312;
  color: var(--white);
}

.quote-steps i {
  height: 1px;
  background: #d9d4cc;
}

.quote-form {
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.quote-scroll {
  min-height: 0;
  overflow-y: auto;
  padding: 34px 40px 28px;
  scrollbar-color: var(--orange) #eee8df;
}

.quote-panel {
  display: none;
}

.quote-panel.is-active {
  display: block;
}

.quote-section-head {
  margin-bottom: 22px;
}

.quote-section-head span {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.quote-section-head h3 {
  margin: 6px 0 8px;
  color: #17191c;
  font-size: 1.04rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-section-head p {
  margin: 0;
  color: var(--muted);
}

.quote-section-head.compact {
  margin: 26px 0 14px;
}

.quote-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.quote-choice,
.quote-radio {
  position: relative;
  display: block;
  cursor: pointer;
}

.quote-choice input,
.quote-radio input {
  position: absolute;
  inset: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.quote-choice-body {
  min-height: 142px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 16px 12px;
  border: 1px solid #ddd8d0;
  border-radius: 8px;
  background: var(--white);
  text-align: center;
  transition:
    border 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.quote-pest-icon {
  width: 58px;
  height: 58px;
  padding: 7px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.9), transparent 36%),
    linear-gradient(135deg, #fff2e4, #eef8f5);
  border: 1px solid rgba(244, 138, 24, 0.14);
  box-shadow: 0 10px 22px rgba(47, 48, 52, 0.08);
  overflow: visible;
}

.quote-choice-body strong {
  color: #17191c;
  line-height: 1.1;
}

.quote-choice-body small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.quote-choice input:checked + .quote-choice-body,
.quote-radio input:checked + span {
  border-color: var(--orange);
  background: #fff5ea;
  box-shadow: 0 14px 34px rgba(244, 138, 24, 0.14);
}

.quote-choice input:focus-visible + .quote-choice-body,
.quote-radio input:focus-visible + span {
  outline: 3px solid rgba(244, 138, 24, 0.22);
}

.quote-choice:hover .quote-choice-body {
  transform: translateY(-2px);
}

.quote-divider {
  height: 1px;
  margin: 28px 0;
  background: #ddd8d0;
}

.quote-grid {
  display: grid;
  gap: 14px;
}

.quote-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-grid.three {
  grid-template-columns: 1fr 1fr 0.9fr;
}

.quote-grid label,
.quote-full {
  display: grid;
  gap: 8px;
  color: #66615b;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-grid label span,
.quote-full span {
  color: var(--orange);
}

.quote-grid input,
.quote-grid select,
.quote-full input,
.quote-full textarea {
  min-height: 46px;
  letter-spacing: 0;
  text-transform: none;
}

.quote-file input {
  padding: 10px;
  border: 1px dashed rgba(47, 48, 52, 0.28);
  border-radius: 8px;
  background: #fffaf4;
}

.quote-file small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.quote-radio-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.quote-radio-row.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quote-radio-row.intervention-row {
  margin-bottom: 4px;
}

.intervention-row .quote-radio span {
  min-height: 92px;
}

.quote-radio span {
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px 16px 14px 40px;
  border: 1px solid #ddd8d0;
  border-radius: 8px;
  background: var(--white);
  color: #17191c;
  position: relative;
}

.quote-radio span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid #d7d1c9;
  border-radius: 50%;
  transform: translateY(-50%);
}

.quote-radio input:checked + span::before {
  border-color: var(--orange);
  background: radial-gradient(circle, var(--orange) 48%, transparent 52%);
}

.quote-radio small {
  color: var(--muted);
  font-size: 0.76rem;
}

.quote-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.quote-tags label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid #ddd8d0;
  border-radius: 8px;
  background: var(--white);
  color: #3f4246;
  font-weight: 800;
  cursor: pointer;
}

.quote-tags input,
.quote-consent input {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}

.quote-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid #ddd8d0;
  border-radius: 8px;
  background: #fff8ef;
  color: #494d52;
  font-weight: 700;
}

.quote-summary {
  display: grid;
  gap: 22px;
}

.summary-block {
  border-top: 1px solid #ddd8d0;
  padding-top: 16px;
}

.summary-block h4 {
  margin: 0 0 12px;
  color: #918b84;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.summary-row {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #eee8df;
}

.summary-row span {
  color: var(--muted);
}

.summary-row strong {
  text-align: right;
}

.quote-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.quote-assurance div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid #ddd8d0;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(244, 138, 24, 0.08), transparent),
    var(--white);
}

.quote-assurance strong {
  display: block;
  margin-bottom: 8px;
}

.quote-assurance span {
  color: var(--muted);
  font-size: 0.9rem;
}

.quote-footer {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 40px;
  border-top: 1px solid #ddd8d0;
  background: rgba(255, 255, 255, 0.94);
}

.quote-footer p {
  margin: 0;
  color: #8a8781;
  font-size: 0.9rem;
}

.quote-footer div {
  display: flex;
  gap: 12px;
}

.quote-back {
  border-color: #ddd8d0;
  background: var(--white);
  color: #3f4246;
}

.quote-submit {
  display: none;
}

.quote-form.is-final .quote-next {
  display: none;
}

.quote-form.is-final .quote-submit {
  display: inline-flex;
}

.quote-toast {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(47, 111, 99, 0.24);
  border-radius: 8px;
  background: #eef8f4;
  color: #244f47;
  font-weight: 800;
}

.call-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.call-modal.is-open {
  display: flex;
}

.call-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 62% 18%, rgba(244, 138, 24, 0.22), transparent 30%),
    rgba(10, 11, 12, 0.78);
  backdrop-filter: blur(12px);
}

.call-dialog {
  position: relative;
  width: min(620px, calc(100vw - 28px));
  max-height: calc(100dvh - 28px);
  overflow-y: auto;
  padding: 34px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(244, 138, 24, 0.07), transparent 34%),
    #fffdf9;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
}

.call-close {
  position: absolute;
  right: 22px;
  top: 20px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(47, 48, 52, 0.14);
  border-radius: 50%;
  background: var(--white);
  color: var(--charcoal);
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
}

.call-dialog .quote-kicker {
  margin-right: 56px;
}

.call-dialog h2 {
  max-width: 440px;
  margin: 0;
  color: var(--ink);
  font-size: 2.45rem;
  line-height: 1;
  letter-spacing: 0;
}

.call-intro {
  max-width: 510px;
  margin: 14px 0 0;
  color: var(--muted);
}

.call-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.call-actions a {
  display: grid;
  gap: 6px;
  min-height: 104px;
  align-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(22, 24, 26, 0.07);
}

.call-actions span,
.callback-form h3 {
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.call-actions strong {
  font-size: 1.12rem;
  line-height: 1.2;
}

.callback-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.callback-form h3 {
  margin: 0;
}

.callback-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.callback-form .btn {
  width: 100%;
}

.callback-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 250, 244, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 244, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 88% 0%, rgba(244, 138, 24, 0.18), transparent 32%),
    #0f1111;
  background-size: 38px 38px, 38px 38px, auto, auto;
  color: rgba(255, 255, 255, 0.72);
  padding: 78px 0 30px;
}

.footer-shell {
  display: grid;
  gap: 34px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 22px;
  align-items: stretch;
}

.footer-brand,
.footer-contact-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.footer-brand {
  display: grid;
  gap: 22px;
  padding: 30px;
}

.footer-brand img {
  width: 214px;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
}

.footer-brand p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.02rem;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.footer-contact-card {
  display: grid;
  gap: 14px;
  align-content: center;
  padding: 30px;
}

.footer-contact-card span,
.footer-grid h3 {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1.12;
}

.footer-contact-card a {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 900;
}

.footer-contact-card button {
  width: fit-content;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(244, 138, 24, 0.36);
  border-radius: 8px;
  background: rgba(244, 138, 24, 0.12);
  color: var(--ember);
  font-weight: 900;
  cursor: pointer;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-grid > * {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  background: rgba(15, 17, 17, 0.82);
}

.footer-grid h3 {
  margin: 0 0 8px;
}

.footer-grid a,
.footer-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
  line-height: 1.35;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.88rem;
}

.footer-bottom a {
  color: var(--orange);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes routeFlow {
  to {
    stroke-dashoffset: -96;
  }
}

@keyframes stripMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes scanBeam {
  0%,
  100% {
    transform: translateX(-20%) skewX(-16deg);
    opacity: 0.1;
  }

  45% {
    transform: translateX(24%) skewX(-16deg);
    opacity: 0.72;
  }
}

@keyframes signalLoad {
  0%,
  100% {
    transform: scaleX(0.46);
  }

  50% {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 14px;
  }

  .service-grid,
  .plan-suite,
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plans-header,
  .footer-main,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .plans-header {
    align-items: start;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero h1 {
    font-size: 4.65rem;
  }

  .hero-command {
    max-width: 620px;
  }

  .triage-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .triage-copy h2 {
    max-width: 760px;
    font-size: 2.8rem;
  }

  .split-layout,
  .selector-layout,
  .proof-layout,
  .contact-layout,
  .checklist-layout,
  .method-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    width: 196px;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions .btn {
    display: none;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 94px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 14px;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    padding-top: 112px;
  }

  .system-grid {
    inset: 86px -34vw 24px 18vw;
  }

  .system-map {
    width: min(760px, 78vw);
    right: -120px;
    top: 110px;
    opacity: 0.72;
  }

  .system-readout {
    display: none;
  }

  .signal-stack {
    right: 18px;
    bottom: 40px;
    width: 160px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-chips span {
    min-height: 34px;
    font-size: 0.82rem;
  }

  .hero-command {
    display: none;
  }

  .strip-set {
    gap: 18px;
    min-height: 54px;
    padding-inline: 18px;
  }

  .strip-track span {
    font-size: 0.74rem;
  }

  .hero-proof,
  .trust-grid,
  .result-grid,
  .triage-form-grid,
  .critical-row,
  .risk-grid,
  .timeline,
  .preview-body,
  .sector-detail,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .triage-copy h2 {
    font-size: 2.25rem;
  }

  .triage-proof {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading h2,
  .contact-copy h2,
  .checklist-layout h2 {
    font-size: 2.15rem;
  }

  .service-grid,
  .plan-suite,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .plans-header,
  .footer-main,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .faq-lead-card {
    grid-template-columns: 1fr;
  }

  .faq-lead-card .btn {
    width: 100%;
  }

  .service-card,
  .plan-card {
    min-height: auto;
  }

  .contact-direct {
    grid-template-columns: 1fr;
  }

  .call-actions {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-brand,
  .footer-contact-card,
  .footer-grid > * {
    padding: 22px;
  }

  .footer-actions {
    display: grid;
  }

  .quote-modal {
    align-items: stretch;
    padding: 10px;
  }

  .call-modal {
    align-items: stretch;
    padding: 10px;
  }

  .call-dialog {
    width: 100%;
    max-height: calc(100dvh - 20px);
    padding: 26px 22px;
  }

  .call-dialog h2 {
    font-size: 2rem;
  }

  .quote-dialog {
    width: 100%;
    height: calc(100dvh - 20px);
    max-height: calc(100dvh - 20px);
  }

  .quote-hero {
    min-height: 150px;
    padding: 26px 22px 24px;
  }

  .quote-hero h2 {
    max-width: 310px;
    font-size: 1.9rem;
  }

  .quote-close {
    right: 18px;
    top: 18px;
  }

  .quote-steps {
    grid-template-columns: 1fr 22px 1fr 22px 1fr;
    gap: 8px;
    padding: 14px 18px;
  }

  .quote-step {
    gap: 8px;
    font-size: 0.72rem;
  }

  .quote-step span {
    width: 28px;
    height: 28px;
  }

  .quote-scroll {
    max-height: none;
    padding: 24px 18px;
  }

  .quote-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-grid.two,
  .quote-grid.three,
  .quote-radio-row {
    grid-template-columns: 1fr;
  }

  .quote-radio-row.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-assurance {
    grid-template-columns: 1fr;
  }

  .quote-footer {
    align-items: stretch;
    flex-direction: column;
    padding: 14px 18px;
  }

  .quote-footer div {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .quote-form.is-final .quote-footer div {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .brand {
    width: 166px;
    min-width: 150px;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-content {
    padding-top: 118px;
    padding-bottom: 30px;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .header-actions {
    gap: 8px;
  }

  .header-phone {
    min-height: 40px;
    padding-inline: 11px;
    font-size: 0.84rem;
  }

  .hero-proof div,
  .service-card,
  .timeline-item,
  .plan-card,
  .pest-result,
  .sector-detail,
  .contact-form,
  .simulator {
    padding: 22px;
  }

  .tab-list,
  .pest-buttons {
    display: grid;
  }

  .quote-choice-grid,
  .quote-radio-row.four {
    grid-template-columns: 1fr;
  }

  .quote-steps strong {
    display: none;
  }

  .triage-console,
  .risk-output,
  .area-row {
    padding: 18px;
  }

  .triage-console-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .triage-console-head b {
    width: 100%;
  }

  .triage-copy h2 {
    font-size: 1.9rem;
  }

  .quote-steps {
    grid-template-columns: 32px 1fr 32px 1fr 32px;
  }

  .summary-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .summary-row strong {
    text-align: left;
  }
}
