:root {
  --ink: #111318;
  --muted: #616975;
  --line: rgba(17, 19, 24, .12);
  --paper: #f6f8fb;
  --white: #fff;
  --red: #d8262d;
  --red-dark: #8e1117;
  --amber: #f28c22;
  --lime: #baff2a;
  --cyan: #00f0ff;
  --night: #080b10;
  --shadow: 0 24px 70px rgba(8, 11, 16, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(17,19,24,.035) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(0deg, rgba(17,19,24,.03) 1px, transparent 1px) 0 0 / 42px 42px,
    var(--paper);
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.page-glow {
  position: fixed;
  inset: auto -15vw -25vw auto;
  width: 46vw;
  height: 46vw;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle, rgba(216,38,45,.16), transparent 68%);
  filter: blur(8px);
  animation: breathe 7s ease-in-out infinite;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  z-index: 30;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 248, 251, .82);
  border-bottom: 1px solid rgba(255,255,255,.55);
  backdrop-filter: blur(18px);
}
.topbar {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 6px 24px;
  color: #fff;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--amber));
  font-size: 13px;
  font-weight: 700;
}
.nav {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
}
.brand img { width: 178px; height: auto; }
.nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.nav-links a {
  position: relative;
  padding: 10px 12px;
  color: #222832;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--amber), var(--lime));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta, .btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.nav-cta::before, .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.44), transparent);
  transform: translateX(-130%);
  transition: transform .55s ease;
}
.nav-cta:hover, .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(216,38,45,.34), 0 0 24px rgba(186,255,42,.16);
}
.nav-cta:hover::before, .btn:hover::before { transform: translateX(130%); }
.nav-cta, .btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--amber));
  box-shadow: 0 0 0 1px rgba(255,255,255,.2) inset, 0 14px 32px rgba(216,38,45,.28);
}
.btn.ghost {
  color: #fff;
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.08);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 118px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--night);
}
.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/images/main-slider/image-2.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: saturate(1.12) contrast(1.08);
  animation: heroZoom 14s ease-in-out infinite alternate;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .2;
  background:
    linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px) 0 0 / 76px 76px,
    linear-gradient(0deg, rgba(255,255,255,.12) 1px, transparent 1px) 0 0 / 76px 76px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
  animation: scanMove 16s linear infinite;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 32%, rgba(0, 240, 255, .22), transparent 25%),
    linear-gradient(90deg, rgba(8,11,16,.94), rgba(8,11,16,.68) 48%, rgba(8,11,16,.22)),
    linear-gradient(0deg, rgba(8,11,16,.92), transparent 42%);
}
.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0 54px;
  color: #fff;
  animation: heroIn .9s ease both;
}
.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
}
.eyebrow::before, .kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 20px var(--lime);
  animation: pulseDot 1.8s ease-in-out infinite;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 850px;
  margin: 18px 0 20px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero p {
  max-width: 650px;
  color: rgba(255,255,255,.84);
  font-size: 18px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.proof-strip {
  width: min(820px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 54px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.12);
  box-shadow: 0 0 36px rgba(0,240,255,.12);
}
.proof-strip div { padding: 18px; background: rgba(8,11,16,.72); }
.proof-strip strong { display: block; font-size: 30px; color: #fff; }
.proof-strip span { color: rgba(255,255,255,.68); font-size: 13px; }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 24px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px;
  transform: translateX(-50%);
}
.scroll-cue span {
  display: block;
  width: 4px;
  height: 8px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: var(--lime);
  animation: cue 1.5s ease-in-out infinite;
}

.section {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}
.section-heading { max-width: 680px; margin-bottom: 34px; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading.centered .kicker { justify-content: center; }
h2 {
  margin: 12px 0 14px;
  font-size: clamp(32px, 4.3vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}
.section-heading p { color: var(--muted); font-size: 17px; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 56px;
  align-items: center;
}
.intro-copy > p { color: var(--muted); font-size: 18px; }
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.feature-list div, .contact-card, details {
  background: #fff;
  border: 1px solid rgba(17,19,24,.08);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(17,19,24,.06);
}
.feature-list div,
.band-cards article,
.service-card,
.blog-card,
.pest-row div,
.process-track article,
details {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}
.feature-list div:hover,
.service-card:hover,
.blog-card:hover,
.process-track article:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(17,19,24,.14);
}
.feature-list div { padding: 24px; }
.feature-list h3 { margin-bottom: 8px; }
.feature-list p { color: var(--muted); margin: 0; }
.image-stack {
  position: relative;
  min-height: 520px;
}
.image-main {
  width: 82%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  animation: floatSoft 5.5s ease-in-out infinite;
}
.image-float {
  position: absolute;
  right: 0;
  bottom: 34px;
  width: 45%;
  min-width: 210px;
  border: 10px solid var(--paper);
  border-radius: 8px;
  box-shadow: var(--shadow), 0 0 42px rgba(216,38,45,.3);
  animation: floatSoft 4.5s ease-in-out infinite reverse;
}

.dark-band {
  width: 100%;
  max-width: none;
  padding: 82px max(24px, calc((100vw - 1200px) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 18% 22%, rgba(216,38,45,.32), transparent 25%),
    radial-gradient(circle at 82% 80%, rgba(0,240,255,.16), transparent 24%),
    #070a0f;
}
.band-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 42px;
  align-items: start;
}
.band-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.band-cards article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}
.band-cards article::before,
.service-card::before,
.blog-card::before,
.process-track article::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(0,240,255,.55), rgba(186,255,42,.2), rgba(216,38,45,.45)) border-box;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.band-cards article:hover,
.pest-row div:hover {
  transform: translateY(-8px);
  border-color: rgba(0,240,255,.42);
  box-shadow: 0 26px 70px rgba(0,240,255,.12);
}
.band-cards article:hover::before,
.service-card:hover::before,
.blog-card:hover::before,
.process-track article:hover::before { opacity: 1; }
.band-cards span { color: var(--cyan); font-weight: 900; }
.band-cards p { color: rgba(255,255,255,.68); margin: 0; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card, .blog-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(17,19,24,.08);
  box-shadow: 0 18px 48px rgba(17,19,24,.08);
}
.service-card img, .blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform .55s ease, filter .55s ease;
}
.service-card:hover img, .blog-card:hover img {
  transform: scale(1.07);
  filter: saturate(1.2) contrast(1.08);
}
.service-card div, .blog-card div { padding: 24px; }
.service-card h3, .blog-card h3 { margin-bottom: 10px; font-size: 21px; line-height: 1.15; }
.service-card p, .blog-card p { color: var(--muted); margin: 0; }

.pest-section {
  padding-top: 20px;
}
.pest-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.pest-row div {
  min-height: 138px;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 20px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #10151d, #05070a);
  border: 1px solid rgba(0,240,255,.18);
  box-shadow: 0 0 28px rgba(0,240,255,.08);
  font-weight: 900;
  cursor: default;
}
.pest-row div:hover img {
  animation: wiggle .55s ease;
}
.pest-row img { height: 46px; width: auto; }

.blog-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process {
  width: 100%;
  color: #fff;
  background:
    linear-gradient(rgba(7,10,15,.9), rgba(7,10,15,.92)),
    url("assets/images/main-slider/image-1.jpg") center / cover fixed;
}
.process-inner { width: min(1200px, calc(100% - 48px)); }
.process .section-heading p { color: rgba(255,255,255,.7); }
.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.process-track::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--amber), var(--lime), var(--cyan));
  box-shadow: 0 0 24px rgba(0,240,255,.25);
}
.process-track article {
  position: relative;
  min-height: 235px;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(14px);
}
.process-track span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  border-radius: 50%;
  color: #071008;
  background: var(--lime);
  box-shadow: 0 0 28px rgba(186,255,42,.38);
  font-weight: 900;
}
.process-track p { margin: 0; color: rgba(255,255,255,.7); }

.testimonials {
  width: 100%;
  overflow: hidden;
  background: #fff;
}
.testimonials-inner { width: min(1200px, calc(100% - 48px)); }
.ticker {
  overflow: hidden;
  padding: 10px 0 22px;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.ticker-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: ticker 26s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker article {
  width: 340px;
  min-height: 150px;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #10151d, #05070a);
  box-shadow: 0 18px 44px rgba(17,19,24,.12);
}
.ticker strong { color: var(--lime); }
.ticker p { margin: 10px 0 0; color: rgba(255,255,255,.72); }

.faq-contact {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: start;
}
details {
  padding: 18px 20px;
  margin-top: 12px;
}
summary {
  cursor: pointer;
  font-weight: 900;
}
details p { color: var(--muted); margin: 12px 0 0; }
.contact-card {
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(rgba(8,11,16,.84), rgba(8,11,16,.84)),
    url("assets/images/resource/call-to-action.jpg") center / cover;
  border-color: rgba(255,255,255,.16);
}
.contact-card p { color: rgba(255,255,255,.76); }
form { display: grid; gap: 14px; }
label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  color: #fff;
  padding: 14px;
  font: inherit;
  outline: none;
}
select option { color: #111; }
textarea { resize: vertical; }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.55); }
input:focus, select:focus, textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,240,255,.16); }

.footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding: 46px max(24px, calc((100vw - 1200px) / 2));
  color: rgba(255,255,255,.72);
  background: #070a0f;
}
.footer img { width: 180px; margin-bottom: 14px; }
.footer h3 { color: #fff; margin-bottom: 12px; }
.footer a, .footer span { display: block; margin: 8px 0; }
.footer a:hover { color: var(--lime); }
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 64px;
  padding: 0 18px;
  border-radius: 999px;
  color: #071008;
  background: linear-gradient(135deg, #25d366, var(--lime));
  box-shadow: 0 18px 44px rgba(37,211,102,.42), 0 0 0 8px rgba(37,211,102,.12);
  font-weight: 900;
  animation: whatsappPulse 2.4s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}
@keyframes scanMove {
  from { background-position: 0 0, 0 0; }
  to { background-position: 152px 76px, 76px 152px; }
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.45); opacity: .62; }
}
@keyframes cue {
  0% { transform: translateY(0); opacity: .35; }
  55% { transform: translateY(13px); opacity: 1; }
  100% { transform: translateY(0); opacity: .35; }
}
@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-9deg) scale(1.08); }
  70% { transform: rotate(8deg) scale(1.08); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes whatsappPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.04); }
}
@keyframes breathe {
  0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: .75; }
  50% { transform: translate3d(-4vw,-3vw,0) scale(1.15); opacity: 1; }
}

@media (max-width: 920px) {
  .topbar { justify-content: flex-start; overflow-x: auto; }
  .nav { grid-template-columns: auto auto; justify-content: space-between; }
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 118px;
    display: none;
    flex-direction: column;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .intro-grid, .band-grid, .faq-contact, .footer { grid-template-columns: 1fr; }
  .band-cards, .service-grid, .blog-grid, .process-track { grid-template-columns: repeat(2, 1fr); }
  .pest-row { grid-template-columns: repeat(3, 1fr); }
  .hero { min-height: 720px; }
  .process-track::before { display: none; }
}

@media (max-width: 640px) {
  .topbar { font-size: 12px; gap: 16px; padding-inline: 16px; }
  .nav { min-height: 74px; padding-inline: 16px; }
  .brand img { width: 150px; }
  .nav-links { top: 110px; }
  .hero-content, .section { width: min(100% - 32px, 1200px); }
  .hero-content { padding-bottom: 34px; }
  h1 { font-size: 43px; }
  .proof-strip, .feature-list, .band-cards, .service-grid, .blog-grid, .pest-row { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; }
  .image-stack { min-height: auto; }
  .image-main { width: 100%; height: 380px; }
  .image-float { position: relative; width: 74%; right: auto; bottom: auto; margin: -70px 0 0 auto; }
  .section { padding: 66px 0; }
  .service-card img, .blog-card img { height: 205px; }
  .footer { padding-bottom: 110px; }
  .whatsapp-float { right: 16px; bottom: 16px; height: 58px; }
  .ticker article { width: 290px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Presentation-style upgrade */
body.intro-active {
  overflow: hidden;
}
.intro-video {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #05070a;
  opacity: 1;
  visibility: visible;
  transition: opacity .8s ease, visibility .8s ease;
}
.intro-video.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.intro-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.03);
  transition: transform 1.8s ease, opacity 1s ease;
}
.intro-video.is-ready video {
  transform: scale(1);
}
.intro-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5,7,10,.62), transparent 38%, rgba(5,7,10,.22)),
    radial-gradient(circle at 18% 78%, rgba(216,38,45,.34), transparent 26%);
}
.intro-brand {
  position: absolute;
  left: clamp(18px, 4vw, 58px);
  top: clamp(18px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 18px 55px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
}
.intro-brand img {
  width: min(220px, 48vw);
  height: auto;
}
.intro-brand span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.intro-enter {
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  bottom: clamp(22px, 5vw, 58px);
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--amber));
  box-shadow: 0 18px 44px rgba(216,38,45,.34);
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  opacity: .72;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease, box-shadow .35s ease;
}
.intro-enter.is-visible,
.intro-enter:hover {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 22px 58px rgba(216,38,45,.46);
}
.intro-sound {
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  bottom: calc(clamp(22px, 5vw, 58px) + 72px);
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 8px;
  color: #fff;
  background: rgba(5,7,10,.48);
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.intro-sound:hover,
.intro-sound[aria-pressed="true"] {
  transform: translateY(-3px);
  background: rgba(216,38,45,.86);
  border-color: rgba(255,255,255,.72);
}
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(17,19,24,.08);
}
.hero {
  min-height: 100vh;
  align-items: center;
  padding-top: 118px;
  background: #fff;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255,255,255,.97), rgba(255,255,255,.82) 37%, rgba(255,255,255,.18) 72%),
    linear-gradient(0deg, rgba(255,255,255,.82), transparent 38%);
}
.hero-grid { opacity: .08; }
.hero-content {
  width: min(1260px, calc(100% - 56px));
  color: var(--ink);
  padding: 88px 0 96px;
}
.hero-content h1 {
  max-width: 760px;
  font-size: clamp(46px, 6vw, 94px);
  color: #05070a;
}
.hero-content h1::after {
  content: "";
  display: block;
  width: 92px;
  height: 3px;
  margin-top: 24px;
  background: linear-gradient(90deg, var(--red), transparent);
}
.hero-content p {
  max-width: 620px;
  color: #171b22;
  font-size: 20px;
  font-weight: 500;
}
.btn.ghost {
  color: var(--ink);
  border-color: rgba(17,19,24,.42);
  background: rgba(255,255,255,.72);
}
.proof-strip {
  width: min(1040px, 100%);
  margin-top: 62px;
  border: 1px solid rgba(17,19,24,.12);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.74);
  box-shadow: 0 30px 80px rgba(17,19,24,.13);
  backdrop-filter: blur(16px);
}
.proof-strip div { padding: 20px 24px; background: rgba(255,255,255,.82); }
.proof-strip strong { color: var(--red); }
.proof-strip span {
  color: #2a3038;
  font-weight: 800;
  text-transform: uppercase;
}
.scroll-cue { border-color: rgba(17,19,24,.28); }

.operations {
  position: relative;
  z-index: 3;
  margin-top: -58px;
  padding: 0 24px 86px;
}
.ops-shell {
  width: min(1480px, 100%);
  margin: 0 auto;
  padding: 28px 32px 0;
  border: 1px solid rgba(17,19,24,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 32px 90px rgba(17,19,24,.18);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
.ops-title {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 30px;
  padding: 10px 8px 22px;
  border-bottom: 1px solid rgba(17,19,24,.10);
}
.ops-title h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 48px);
  text-transform: uppercase;
}
.ops-title h2 span { color: var(--red); }
.ops-title p { margin: 0; color: #242a32; font-size: 18px; }
.ops-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  padding: 24px 0 18px;
}
.ops-steps article,
.ops-panels article {
  border: 1px solid rgba(17,19,24,.10);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(17,19,24,.07);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.ops-steps article {
  min-height: 168px;
  padding: 22px 14px;
  text-align: center;
}
.ops-steps article:hover,
.ops-panels article:hover {
  transform: translateY(-8px);
  border-color: rgba(216,38,45,.26);
  box-shadow: 0 24px 62px rgba(216,38,45,.13);
}
.ops-steps span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  color: var(--red);
  border: 2px solid rgba(216,38,45,.25);
  border-radius: 12px;
  font-size: 30px;
}
.ops-steps h3,
.ops-panels h3 {
  margin-bottom: 8px;
  font-size: 16px;
  text-transform: uppercase;
}
.ops-steps p,
.ops-panels p {
  margin: 0;
  color: #4d5662;
  font-size: 14px;
}
.ops-panels {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 16px;
  padding-bottom: 24px;
}
.ops-panels article { min-height: 220px; padding: 24px; }
.map-visual {
  position: relative;
  height: 128px;
  margin: 14px 0;
  border-radius: 8px;
  background: radial-gradient(circle at 48% 40%, rgba(216,38,45,.14), transparent 32%), linear-gradient(135deg, #f2f4f7, #fff);
}
.map-visual span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(216,38,45,.12);
  animation: pulseDot 1.8s ease-in-out infinite;
}
.map-visual strong { position: absolute; left: 43%; top: 44%; text-transform: uppercase; }
.map-visual em { position: absolute; right: 11%; bottom: 15%; font-style: normal; text-transform: uppercase; font-weight: 900; }
.chart-panel { position: relative; }
.chart-line {
  height: 126px;
  margin: 18px 0;
  border-left: 1px solid rgba(17,19,24,.14);
  border-bottom: 1px solid rgba(17,19,24,.14);
  background: linear-gradient(rgba(216,38,45,.08) 1px, transparent 1px) 0 0 / 100% 25%, linear-gradient(90deg, rgba(17,19,24,.06) 1px, transparent 1px) 0 0 / 16.6% 100%;
}
.chart-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(168deg, transparent 48%, var(--red) 49%, var(--red) 51%, rgba(216,38,45,.12) 52%);
  clip-path: polygon(0 12%, 20% 28%, 40% 46%, 60% 58%, 80% 72%, 100% 84%, 100% 100%, 0 100%);
}
.chart-panel strong {
  position: absolute;
  right: 24px;
  top: 74px;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--red);
  background: #fff;
  border: 1px solid rgba(17,19,24,.10);
  box-shadow: 0 12px 30px rgba(17,19,24,.09);
  font-size: 28px;
}
.device-card {
  height: 114px;
  margin: 16px 0;
  border: 10px solid #10151d;
  border-bottom-width: 18px;
  border-radius: 12px;
  background: #f8fafc;
}
.device-card span {
  display: block;
  height: 10px;
  margin: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red) 0 10px, #d9dee6 10px);
}
.portal-panel a {
  display: inline-flex;
  margin-top: 16px;
  padding: 10px 14px;
  border: 1px solid var(--red);
  border-radius: 8px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}
.ops-commitment {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-top: 1px solid rgba(17,19,24,.10);
  background: rgba(17,19,24,.12);
}
.ops-commitment span {
  padding: 18px;
  background: #fff;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}
.ops-bottom {
  margin: 0 -32px;
  padding: 18px 24px;
  color: #fff;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  text-align: center;
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 900;
  text-transform: uppercase;
}

.brand-commitment {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 48px;
  align-items: center;
}
.commitment-copy h2 {
  max-width: 640px;
  font-size: clamp(38px, 5vw, 74px);
  text-transform: uppercase;
}
.commitment-copy h2::first-line {
  color: #05070a;
}
.commitment-copy p {
  max-width: 560px;
  color: #313741;
  font-size: 18px;
  margin-bottom: 28px;
}
.commitment-media {
  position: relative;
  min-height: 560px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(17,19,24,.18);
}
.commitment-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.82), transparent 40%),
    linear-gradient(0deg, rgba(5,7,10,.18), transparent 45%);
}
.commitment-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.04);
  transition: transform .75s ease;
}
.commitment-media:hover img {
  transform: scale(1.04);
}
.tech-card {
  position: absolute;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  min-width: 210px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 10px;
  color: #fff;
  background: rgba(5,7,10,.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 55px rgba(0,0,0,.28);
}
.tech-card strong {
  display: block;
  color: var(--lime);
  font-size: 42px;
  line-height: 1;
}
.tech-card span {
  display: block;
  margin-top: 8px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

.protection-story {
  background: #fff;
  border-top: 1px solid rgba(17,19,24,.08);
  border-bottom: 1px solid rgba(17,19,24,.08);
}
.story-heading {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 34px;
}
.story-heading h2 {
  max-width: 620px;
  font-size: clamp(38px, 5.2vw, 78px);
  text-transform: uppercase;
}
.story-heading p {
  max-width: 520px;
  color: #333a44;
  font-size: 18px;
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  width: min(1480px, 100%);
  margin: 0 auto;
  border-top: 1px solid rgba(17,19,24,.10);
}
.story-grid article {
  min-height: 250px;
  border-right: 1px solid rgba(17,19,24,.10);
  border-bottom: 1px solid rgba(17,19,24,.10);
}
.story-text {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 58px);
  background: #fff;
}
.story-text span {
  width: 52px;
  height: 3px;
  margin-bottom: 22px;
  background: var(--red);
}
.story-text h3 {
  margin: 0;
  max-width: 450px;
  color: #10151d;
  font-size: clamp(24px, 2.2vw, 38px);
  line-height: 1.04;
  text-transform: uppercase;
}
.story-text strong {
  display: block;
  color: var(--red);
}
.story-text.dark {
  grid-column: span 5;
  min-height: 420px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5,7,10,.92), rgba(5,7,10,.66)),
    url("assets/fuminex-brand/silo-operator.jpg") center / cover;
}
.story-text.dark h3 {
  color: #fff;
  margin-bottom: 28px;
}
.story-image {
  grid-column: span 4;
  overflow: hidden;
}
.story-image.wide {
  grid-column: span 8;
}
.story-image.hero-wide {
  grid-column: span 7;
  min-height: 420px;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
  transition: transform .85s ease;
}
.story-image:hover img {
  transform: scale(1.045);
}

.seo-coverage {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5,7,10,.94), rgba(5,7,10,.76)),
    url("assets/fuminex-brand/fog-machine.jpg") center / cover;
}
.seo-coverage-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 48px;
  align-items: start;
}
.seo-coverage h2 {
  font-size: clamp(34px, 4.4vw, 62px);
  text-transform: uppercase;
}
.seo-coverage p {
  max-width: 590px;
  color: rgba(255,255,255,.74);
  font-size: 18px;
}
.seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.seo-tags span {
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 12px 32px rgba(0,0,0,.14);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 1040px) {
  .ops-title,
  .ops-panels { grid-template-columns: 1fr; }
  .ops-steps { grid-template-columns: repeat(3, 1fr); }
  .brand-commitment {
    grid-template-columns: 1fr;
  }
  .story-text,
  .story-image,
  .story-image.wide,
  .story-text.dark,
  .story-image.hero-wide {
    grid-column: span 12;
  }
}

@media (max-width: 640px) {
  .intro-brand {
    left: 14px;
    right: 14px;
    justify-content: center;
  }
  .intro-brand span {
    display: none;
  }
  .intro-enter {
    left: 18px;
    right: 18px;
    width: calc(100% - 36px);
  }
  .intro-sound {
    left: 18px;
    right: 18px;
    bottom: 92px;
    width: calc(100% - 36px);
  }
  .hero { min-height: 860px; padding-top: 110px; }
  .hero-video { object-position: 62% center; }
  .hero-overlay {
    background: linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.86)), linear-gradient(0deg, rgba(255,255,255,.9), transparent);
  }
  .hero-content { width: min(100% - 32px, 1200px); padding: 62px 0 86px; }
  .hero-content h1 { font-size: 42px; }
  .hero-content p { font-size: 17px; }
  .operations { margin-top: -38px; padding-inline: 14px; }
  .ops-shell { padding: 18px 16px 0; border-radius: 14px; }
  .ops-steps,
  .ops-commitment { grid-template-columns: 1fr; }
  .ops-bottom { margin-inline: -16px; }
  .brand-commitment {
    width: min(100% - 32px, 1320px);
    padding: 64px 0;
  }
  .commitment-media,
  .commitment-media img {
    min-height: 420px;
  }
  .tech-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .story-heading {
    width: min(100% - 32px, 1200px);
    padding-top: 64px;
  }
  .story-grid article {
    min-height: 230px;
  }
  .story-text.dark,
  .story-image.hero-wide {
    min-height: 360px;
  }
  .seo-coverage-inner {
    width: min(100% - 32px, 1200px);
    grid-template-columns: 1fr;
    padding: 64px 0;
  }
}

.archive-page {
  background: #f4f6f9;
}
.archive-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 20;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(24px, calc((100vw - 1320px) / 2));
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(17,19,24,.10);
  backdrop-filter: blur(16px);
}
.archive-logo img {
  width: 190px;
}
.archive-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--amber));
  box-shadow: 0 16px 36px rgba(216,38,45,.26);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}
.archive-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding-top: 92px;
  overflow: hidden;
  background: #070a0f;
}
.archive-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.06);
}
.archive-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,7,10,.92), rgba(5,7,10,.55) 48%, rgba(5,7,10,.14)),
    linear-gradient(0deg, rgba(5,7,10,.78), transparent 48%);
}
.archive-hero-content {
  position: relative;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 72px;
  color: #fff;
}
.archive-hero-content span,
.archive-country-heading span {
  display: inline-flex;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.archive-hero-content h1 {
  max-width: 850px;
  margin: 16px 0 18px;
  font-size: clamp(48px, 7vw, 104px);
  line-height: .9;
  text-transform: uppercase;
}
.archive-hero-content p {
  max-width: 650px;
  color: rgba(255,255,255,.78);
  font-size: 19px;
}
.archive-shell {
  width: min(1320px, calc(100% - 48px));
  margin: -46px auto 96px;
  position: relative;
  z-index: 3;
  padding: 28px;
  border: 1px solid rgba(17,19,24,.10);
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 30px 90px rgba(17,19,24,.14);
}
.archive-tabs {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  padding: 6px;
  border-radius: 10px;
  background: #eef1f5;
}
.archive-tab {
  min-width: 150px;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  color: #1b2028;
  background: transparent;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.archive-tab.active {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--amber));
  box-shadow: 0 14px 30px rgba(216,38,45,.22);
}
.country-panel {
  display: none;
}
.country-panel.active {
  display: block;
}
.archive-country-heading {
  margin: 36px 0 24px;
}
.archive-country-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 56px);
  text-transform: uppercase;
}
.archive-country-heading p {
  color: var(--muted);
  font-size: 17px;
}
.doc-group {
  margin: 14px 0;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(17,19,24,.10);
  background: #fff;
  box-shadow: 0 14px 36px rgba(17,19,24,.06);
}
.doc-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
}
.doc-group summary::-webkit-details-marker {
  display: none;
}
.doc-group summary span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.doc-group summary strong {
  color: #111318;
  font-size: 22px;
  text-transform: uppercase;
}
.doc-group summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--red);
  border: 1px solid rgba(216,38,45,.25);
  font-weight: 900;
}
.doc-group[open] summary::after {
  content: "-";
}
.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 18px 18px;
}
.doc-card {
  position: relative;
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(17,19,24,.10);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(216,38,45,.05), transparent 48%),
    #f9fafc;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.doc-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216,38,45,.30);
  box-shadow: 0 20px 46px rgba(216,38,45,.11);
}
.doc-card span {
  align-self: flex-start;
  padding: 6px 8px;
  border-radius: 6px;
  color: #fff;
  background: var(--red);
  font-size: 11px;
  font-weight: 900;
}
.doc-card strong {
  color: #151a22;
  font-size: 17px;
  line-height: 1.18;
}
.doc-card em {
  color: var(--red);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
@media (max-width: 920px) {
  .doc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .archive-header {
    min-height: 78px;
    padding: 12px 16px;
  }
  .archive-logo img {
    width: 150px;
  }
  .archive-whatsapp {
    display: none;
  }
  .archive-hero {
    min-height: 480px;
    padding-top: 78px;
  }
  .archive-hero-content,
  .archive-shell {
    width: min(100% - 32px, 1320px);
  }
  .archive-hero-content h1 {
    font-size: 46px;
  }
  .archive-shell {
    margin-bottom: 120px;
    padding: 18px;
  }
  .archive-tabs {
    display: grid;
    width: 100%;
  }
  .archive-tab {
    min-width: 0;
  }
  .doc-group summary {
    align-items: flex-start;
    padding: 18px;
  }
  .doc-group summary strong {
    font-size: 18px;
  }
  .doc-grid {
    grid-template-columns: 1fr;
  }
}

/* Latest operations polish */
.topbar {
  display: none !important;
}
.site-header .nav {
  min-height: 96px;
  max-width: 1320px;
}
.hero {
  padding-top: 96px;
}
.nav-links {
  gap: 18px;
}
.ops-panels {
  grid-template-columns: 1.08fr 1.42fr;
  align-items: stretch;
}
.ops-panels .portal-panel {
  grid-column: 1 / -1;
}
.map-panel,
.control-panel {
  padding: 30px;
  min-height: 520px;
  overflow: hidden;
}
.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.panel-heading h3 {
  margin: 0 0 8px;
  color: #071019;
  font-size: clamp(26px, 2.5vw, 42px);
  line-height: .96;
}
.panel-heading p {
  margin: 0;
  color: #4b5563;
  font-size: 16px;
}
.panel-heading > span {
  flex: 0 0 auto;
  padding: 9px 11px;
  border-radius: 999px;
  color: var(--red);
  background: rgba(216,38,45,.08);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.coverage-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 22px;
  align-items: center;
  min-height: 405px;
}
.coverage-copy {
  display: grid;
  gap: 22px;
}
.coverage-country {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 4px;
  align-items: center;
}
.coverage-country .flag {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(17,19,24,.10);
  box-shadow: 0 12px 28px rgba(17,19,24,.08);
  font-size: 26px;
}
.coverage-country strong {
  color: #071019;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}
.coverage-country em {
  color: #596272;
  font-style: normal;
  font-size: 16px;
}
.coverage-badge {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(17,19,24,.10);
  border-radius: 12px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 16px 38px rgba(17,19,24,.08);
}
.coverage-badge span {
  width: 42px;
  height: 42px;
  border-radius: 50% 50% 50% 8px;
  background: linear-gradient(135deg, var(--red), #ff5252);
  transform: rotate(-45deg);
  box-shadow: 0 14px 28px rgba(216,38,45,.25);
}
.coverage-badge span::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  margin: 14px;
  border-radius: 50%;
  background: #fff;
}
.coverage-badge p {
  margin: 0;
  color: #596272;
  line-height: 1.25;
}
.coverage-badge strong {
  display: block;
  color: #071019;
}
.coverage-map {
  position: relative;
  min-height: 390px;
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 34% 48%, rgba(0,132,255,.09), transparent 24%),
    linear-gradient(135deg, #fbfcfe, #eef3f8);
}
.coverage-map::before {
  content: "";
  position: absolute;
  inset: 20px;
  opacity: .65;
  background:
    linear-gradient(135deg, transparent 18%, rgba(17,19,24,.06) 18% 19%, transparent 19% 42%, rgba(17,19,24,.05) 42% 43%, transparent 43%),
    radial-gradient(circle at 48% 34%, rgba(216,38,45,.08), transparent 16%),
    radial-gradient(circle at 44% 69%, rgba(216,38,45,.08), transparent 22%);
  clip-path: polygon(43% 4%, 59% 14%, 67% 30%, 60% 48%, 55% 62%, 46% 72%, 51% 96%, 38% 86%, 32% 66%, 28% 52%, 34% 36%, 31% 21%);
  border: 2px solid rgba(17,19,24,.10);
  filter: drop-shadow(0 20px 36px rgba(17,19,24,.10));
}
.map-shape {
  position: absolute;
  background: rgba(255,255,255,.52);
  border: 2px solid rgba(17,19,24,.10);
}
.ecuador-shape {
  left: 32%;
  top: 22%;
  width: 34%;
  height: 34%;
  clip-path: polygon(24% 13%, 78% 3%, 96% 36%, 74% 82%, 31% 96%, 3% 63%);
}
.peru-shape {
  left: 32%;
  top: 47%;
  width: 34%;
  height: 47%;
  clip-path: polygon(38% 0, 76% 8%, 92% 34%, 80% 74%, 55% 100%, 36% 72%, 16% 48%, 2% 14%);
}
.coverage-map i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 10px rgba(216,38,45,.14), 0 0 26px rgba(216,38,45,.35);
  animation: mapPulse 2.2s ease-in-out infinite;
  animation-delay: var(--d);
}
.coverage-map strong,
.coverage-map em {
  position: absolute;
  color: #071019;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}
.coverage-map strong {
  left: 42%;
  top: 38%;
  font-size: 23px;
}
.coverage-map em {
  left: 54%;
  top: 75%;
  font-size: 22px;
}
.control-panel {
  position: relative;
}
.control-score {
  min-width: 170px;
  padding: 14px 16px;
  border: 1px solid rgba(17,19,24,.10);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(17,19,24,.08);
  text-align: center;
}
.control-score span {
  display: block;
  color: #5f6876;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.control-score strong {
  position: static;
  display: block;
  padding: 0;
  border: 0;
  box-shadow: none;
  color: var(--red);
  font-size: 48px;
  line-height: .95;
}
.control-chart {
  position: relative;
  padding: 28px 18px 26px 18px;
  border: 1px solid rgba(17,19,24,.08);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}
.axis-label {
  position: absolute;
  left: 18px;
  top: 12px;
  color: #6b7280;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.chart-grid {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 42px;
  bottom: 46px;
  background:
    linear-gradient(rgba(17,19,24,.08) 1px, transparent 1px) 0 0 / 100% 25%,
    linear-gradient(90deg, rgba(17,19,24,.05) 1px, transparent 1px) 0 0 / 16.66% 100%;
}
.control-chart svg {
  position: relative;
  display: block;
  width: 100%;
  height: 310px;
  overflow: visible;
}
.area-fill {
  fill: rgba(216,38,45,.10);
}
.pest-line {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1100;
  stroke-dashoffset: 1100;
  animation: drawLine 1.8s ease forwards;
}
.pest-line.red { stroke: #e32730; animation-delay: .05s; }
.pest-line.green { stroke: #42b833; animation-delay: .16s; }
.pest-line.yellow { stroke: #f5b719; animation-delay: .27s; }
.pest-line.purple { stroke: #a64de0; animation-delay: .38s; }
.pest-line.blue { stroke: #2d73d9; animation-delay: .49s; }
.pest-line.teal { stroke: #25b7a5; animation-delay: .60s; }
.pest-line.gray { stroke: #9aa3af; animation-delay: .71s; }
.chart-months {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  color: #111827;
  font-size: 11px;
  font-weight: 900;
}
.control-legend {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.control-legend span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f6f8fb;
  color: #111827;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.control-legend span::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
}
.control-legend .red { color: #e32730; }
.control-legend .green { color: #42b833; }
.control-legend .yellow { color: #d89a00; }
.control-legend .purple { color: #a64de0; }
.control-legend .blue { color: #2d73d9; }
.control-legend .teal { color: #25a99a; }
.control-legend .gray { color: #7b8491; }
.control-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 14px;
  border: 1px solid rgba(17,19,24,.08);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(17,19,24,.08);
}
.control-benefits span {
  padding: 14px 10px;
  background: #fff;
  color: #111827;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}
@keyframes mapPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0 8px rgba(216,38,45,.12), 0 0 22px rgba(216,38,45,.28); }
  50% { transform: translate(-50%, -50%) scale(1.22); box-shadow: 0 0 0 18px rgba(216,38,45,.05), 0 0 36px rgba(216,38,45,.36); }
}
@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}
@media (max-width: 1040px) {
  .ops-panels {
    grid-template-columns: 1fr;
  }
  .coverage-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .site-header .nav {
    min-height: 78px;
  }
  .nav-links {
    top: 88px;
  }
  .hero {
    padding-top: 78px;
  }
  .map-panel,
  .control-panel {
    padding: 20px;
    min-height: auto;
  }
  .panel-heading,
  .doc-group summary {
    flex-direction: column;
  }
  .coverage-map {
    min-height: 320px;
  }
  .control-score {
    width: 100%;
    text-align: left;
  }
  .control-chart {
    padding-inline: 8px;
  }
  .control-chart svg {
    height: 230px;
  }
  .control-legend {
    grid-template-columns: 1fr;
  }
  .control-benefits {
    grid-template-columns: 1fr;
  }
  .chart-months {
    font-size: 9px;
  }
}

/* Operations section v2: full-width map and executive chart */
.ops-panels {
  grid-template-columns: 1fr !important;
  gap: 22px;
}
.map-panel,
.control-panel {
  width: 100%;
  min-height: auto;
  padding: clamp(24px, 3.5vw, 44px);
  border-radius: 16px;
}
.coverage-layout {
  grid-template-columns: 330px 1fr;
  min-height: 620px;
  gap: clamp(24px, 4vw, 54px);
}
.coverage-map.image-map {
  min-height: 620px;
  background:
    linear-gradient(rgba(255,255,255,.05), rgba(255,255,255,.05)),
    url("assets/fuminex-brand/coverage-map.png") center / cover no-repeat;
  border: 1px solid rgba(17,19,24,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55), 0 22px 55px rgba(17,19,24,.09);
}
.coverage-map.image-map::before,
.coverage-map.image-map .map-shape {
  display: none;
}
.coverage-map.image-map i {
  display: none !important;
  width: 16px;
  height: 16px;
}
.coverage-map.image-map strong,
.coverage-map.image-map em {
  display: none;
}
.coverage-copy {
  align-self: center;
}
.coverage-country {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(17,19,24,.08);
}
.coverage-country strong {
  font-size: 34px;
}
.coverage-country em {
  font-size: 18px;
}
.coverage-badge {
  margin-top: 24px;
  padding: 20px;
}
.control-panel .panel-heading {
  align-items: center;
  margin-bottom: 28px;
}
.control-panel {
  background: linear-gradient(180deg, #fff, #fbfcfe);
}
.control-chart {
  padding: 46px 28px 32px;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.7);
}
.control-chart svg {
  height: 430px;
}
.pest-line {
  stroke-width: 2.6;
  filter: drop-shadow(0 2px 2px rgba(17,19,24,.08));
}
.area-fill {
  fill: rgba(216,38,45,.045);
}
.control-score {
  min-width: 210px;
  padding: 18px 20px;
}
.control-score strong {
  font-size: 58px;
}
.control-legend {
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.control-legend span {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(17,19,24,.08);
}
.control-legend b {
  margin-left: auto;
}
.control-benefits {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
}
@media (max-width: 1100px) {
  .coverage-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .coverage-map.image-map {
    min-height: 520px;
  }
  .control-legend {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .coverage-map.image-map {
    min-height: 360px;
    background-size: cover;
  }
  .coverage-country strong {
    font-size: 28px;
  }
  .control-panel .panel-heading {
    align-items: stretch;
  }
  .control-chart {
    padding: 36px 10px 24px;
  }
  .control-chart svg {
    height: 250px;
  }
  .pest-line {
    stroke-width: 3;
  }
}

.portal-showcase {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(520px, 1.32fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: 520px;
  padding: clamp(34px, 5vw, 68px);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 16%, rgba(216,38,45,.09), transparent 28%),
    radial-gradient(circle at 74% 78%, rgba(17,19,24,.06), transparent 24%),
    linear-gradient(135deg, #fff 0%, #f8fafc 100%);
}
.portal-copy .section-kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.portal-copy h3 {
  max-width: 420px;
  margin: 0 0 18px;
  color: #07101d;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: .98;
}
.portal-copy p {
  max-width: 470px;
  color: #4a5565;
  font-size: 17px;
  line-height: 1.55;
}
.portal-features {
  display: grid;
  gap: 14px;
  margin: 28px 0 30px;
}
.portal-features div {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 14px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(17,19,24,.08);
}
.portal-features span {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: var(--red);
  background: rgba(216,38,45,.08);
  font-size: 13px;
  font-weight: 950;
}
.portal-features strong {
  color: #111827;
  font-size: 16px;
  font-weight: 950;
}
.portal-features em {
  color: #667085;
  font-size: 14px;
  font-style: normal;
}
.portal-showcase a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #c8101a, #e63a37);
  box-shadow: 0 16px 34px rgba(216,38,45,.28);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease;
}
.portal-showcase a:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(216,38,45,.34);
}
.portal-devices {
  position: relative;
  min-height: 420px;
}
.portal-laptop {
  position: absolute;
  inset: 28px 0 0 0;
  padding: 14px 14px 26px;
  border-radius: 20px 20px 12px 12px;
  background: #0b111b;
  box-shadow: 0 32px 80px rgba(17,19,24,.22);
}
.portal-laptop::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 7px;
  height: 7px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
}
.portal-screen {
  display: grid;
  grid-template-columns: 150px 1fr;
  height: 100%;
  min-height: 330px;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
}
.portal-screen aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 18px;
  color: #dce3ee;
  background: #101824;
}
.portal-screen aside b {
  margin-bottom: 8px;
  color: #fff;
  font-size: 14px;
}
.portal-screen aside span {
  padding: 10px 11px;
  border-radius: 7px;
  font-size: 12px;
}
.portal-screen aside span:first-of-type {
  color: #fff;
  background: var(--red);
}
.portal-screen main {
  padding: 28px;
  background: linear-gradient(180deg, #fff, #f8fafc);
}
.portal-screen small {
  color: #111827;
  font-weight: 950;
}
.portal-screen h4 {
  margin: 6px 0 22px;
  color: #667085;
  font-size: 14px;
  font-weight: 700;
}
.portal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.portal-stats span {
  min-height: 112px;
  padding: 16px;
  border: 1px solid rgba(17,19,24,.08);
  border-radius: 12px;
  color: #475467;
  background: #fff;
  box-shadow: 0 12px 26px rgba(17,19,24,.06);
  font-size: 12px;
  font-weight: 800;
}
.portal-stats b {
  display: block;
  margin: 8px 0 4px;
  color: var(--red);
  font-size: 30px;
}
.portal-activity {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.portal-activity i {
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red) 0 9px, #d8dee8 9px 100%);
}
.portal-phone {
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 168px;
  padding: 18px 14px;
  border: 9px solid #0b111b;
  border-radius: 28px;
  color: #101828;
  background: #fff;
  box-shadow: 0 24px 56px rgba(17,19,24,.24);
}
.portal-phone b {
  display: block;
  margin-bottom: 18px;
  color: #111827;
  font-size: 13px;
}
.portal-phone span {
  display: block;
  margin-top: 10px;
  padding: 11px;
  border-radius: 10px;
  background: #f8fafc;
  color: #667085;
  font-size: 11px;
  font-weight: 850;
}
.portal-phone strong {
  display: block;
  color: var(--red);
  font-size: 20px;
}
@media (max-width: 980px) {
  .portal-showcase {
    grid-template-columns: 1fr;
  }
  .portal-devices {
    min-height: 430px;
  }
}
@media (max-width: 640px) {
  .portal-showcase {
    padding: 28px 18px;
  }
  .portal-features div {
    grid-template-columns: 42px 1fr;
  }
  .portal-features span {
    width: 42px;
    height: 42px;
  }
  .portal-devices {
    min-height: 350px;
  }
  .portal-laptop {
    inset: 10px 0 0;
    padding: 10px 10px 20px;
  }
  .portal-screen {
    grid-template-columns: 95px 1fr;
    min-height: 280px;
  }
  .portal-screen aside {
    padding: 16px 10px;
  }
  .portal-screen aside span {
    padding: 8px;
    font-size: 10px;
  }
  .portal-screen main {
    padding: 18px 12px;
  }
  .portal-stats {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .portal-stats span {
    min-height: 54px;
    padding: 10px;
  }
  .portal-stats b {
    display: inline;
    margin-right: 8px;
    font-size: 20px;
  }
  .portal-phone {
    width: 132px;
    right: -4px;
    bottom: -12px;
    border-width: 7px;
  }
}

.rp-widget {
  padding: 22px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15,23,42,.05);
}
.rp-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 8px;
}
.rp-mesLbl {
  color: #64748b;
  font-size: 14px;
  font-weight: 900;
}
.rp-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 16px;
  color: #64748b;
  font-size: 12.5px;
  font-weight: 850;
}
.rp-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.rp-legend i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}
.control-chart .rp-chart {
  display: block;
  width: 100%;
  height: 360px;
}
.rp-axis {
  stroke: #e2e8f0;
  stroke-width: 1;
}
.rp-axis-text,
.rp-xlabel {
  fill: #94a3b8;
  font-size: 10px;
  font-weight: 800;
}
.rp-xlabel.active {
  fill: #0891b2;
}
.rp-m6 {
  stroke: #0891b2;
  stroke-width: 1.2;
  stroke-dasharray: 4 3;
  opacity: 0;
  transition: opacity .25s ease;
}
.rp-lines polyline {
  filter: drop-shadow(0 5px 10px rgba(15,23,42,.09));
}
.rp-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.rp-play {
  min-width: 112px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 9px 14px;
  color: #0f172a;
  background: #f8fafc;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease;
}
.rp-play:hover {
  border-color: var(--red);
  transform: translateY(-1px);
}
.rp-mes {
  flex: 1;
  accent-color: var(--red);
}
.rp-mesNum {
  min-width: 62px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 900;
  text-align: right;
}
.rp-note {
  margin: 12px 0 0;
  color: #64748b;
  font-size: 12.5px;
  line-height: 1.45;
}
.control-score .rp-pct {
  color: #0891b2;
}
@media (max-width: 640px) {
  .rp-widget {
    padding: 16px 12px;
  }
  .rp-topline,
  .rp-controls {
    align-items: stretch;
    flex-direction: column;
  }
  .rp-legend {
    justify-content: flex-start;
  }
  .control-chart .rp-chart {
    height: 290px;
  }
  .rp-mesNum {
    text-align: left;
  }
}
