:root{
  --najuna-blue:#0b69b3;
  --najuna-blue-2:#083a66;
  --najuna-accent:#e53935;
  --najuna-gray:#f3f7fb;
  --najuna-text:#0b1220;
}

html{scroll-behavior:smooth;}

body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,Arial,sans-serif;
  color:var(--najuna-text);
  background:#fff;
}

a{text-decoration:none;}

.najuna-navbar{
  background:rgba(8,58,102,.92);
  backdrop-filter:saturate(160%) blur(12px);
}

.najuna-navbar.navbar-scrolled{
  background:rgba(8,58,102,.98);
  box-shadow:0 12px 40px rgba(0,0,0,.22);
}

.navbar .nav-link{opacity:.92;}
.navbar .nav-link:hover{opacity:1;}

@media (min-width: 992px){
  .najuna-navbar .dropdown:hover > .dropdown-menu,
  .najuna-navbar .dropdown:focus-within > .dropdown-menu{
    display:block;
  }

  .najuna-navbar .dropdown-menu{margin-top:0;}
}

.najuna-navbar .dropdown-menu{
  background:rgba(8,58,102,.98);
  border:1px solid rgba(255,255,255,.14);
  border-radius:14px;
  box-shadow:0 20px 60px rgba(0,0,0,.25);
  padding:10px;
}

.najuna-navbar .dropdown-item{
  color:rgba(255,255,255,.90);
  border-radius:10px;
  padding:.55rem .75rem;
  font-weight:600;
}

.najuna-navbar .dropdown-item:hover,
.najuna-navbar .dropdown-item:focus{
  background:rgba(255,255,255,.12);
  color:#fff;
}

.najuna-navbar .dropdown-divider{border-color:rgba(255,255,255,.14);}

h1[id],
h2[id],
h3[id]{scroll-margin-top:96px;}

.btn-najuna{
  background:var(--najuna-accent);
  border-color:var(--najuna-accent);
  color:#fff;
  font-weight:700;
}

.btn-najuna:hover{filter:brightness(.95);}

.btn-outline-najuna{
  border-color:rgba(255,255,255,.55);
  color:#fff;
}

.btn-outline-najuna:hover{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.75);
  color:#fff;
}

.hero{
  position:relative;
  overflow:hidden;
  min-height:86vh;
  display:flex;
  align-items:center;
  color:#fff;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(112deg, rgba(8,58,102,.94), rgba(11,105,179,.78));
  z-index:1;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(600px 280px at 20% 18%, rgba(11,105,179,.22), transparent 60%),
    radial-gradient(680px 320px at 80% 28%, rgba(255,255,255,.12), transparent 65%),
    radial-gradient(900px 480px at 50% 90%, rgba(229,57,53,.10), transparent 60%);
  z-index:2;
}

.hero .hero-bg{
  position:absolute;
  inset:0;
  background:url("../assets/NEY_5766.jpg") center/cover no-repeat;
  opacity:1;
  z-index:0;
  transform:scale(1.02);
  will-change:transform;
  animation:heroBgZoom 22s ease-in-out infinite alternate;
}

.hero .hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.22));
}

.hero::before{
  background:linear-gradient(112deg, rgba(8,58,102,.52), rgba(11,105,179,.40));
}

.hero-copy{
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.16);
  border-radius:22px;
  padding:22px 22px;
  box-shadow:0 22px 70px rgba(0,0,0,.28);
  backdrop-filter:saturate(150%) blur(10px);
  animation:heroEnter .9s ease both;
}

.hero-copy .kicker{color:rgba(255,255,255,.92);}
.hero-copy .lead{color:rgba(255,255,255,.94);}

.hero .col-lg-5 .stat-card{
  animation:heroEnter .9s ease both;
  animation-delay:.12s;
}

.hero .col-lg-5 .col-12:nth-child(2) .stat-card{animation-delay:.22s;}
.hero .col-lg-5 .col-12:nth-child(3) .stat-card{animation-delay:.32s;}

.hero-motto-bar{animation:heroEnter .9s ease both; animation-delay:.42s;}

.hero-motto{
  max-width:720px;
}

.hero-motto-bar{
  display:flex;
  justify-content:center;
}

.motto-marquee{
  position:relative;
  overflow:hidden;
  border-radius:999px;
  padding:10px 14px;
  background:rgba(0,0,0,.30);
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 18px 54px rgba(0,0,0,.18);
  width:100%;
}

.motto-track{
  display:inline-flex;
  align-items:center;
  gap:48px;
  white-space:nowrap;
  will-change:transform;
  animation:mottoMarquee 12s linear infinite;
}

.motto-track span{
  display:inline-block;
  font-size:.9rem;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:rgba(255,255,255,.92);
  text-shadow:0 2px 10px rgba(0,0,0,.35);
}

@keyframes mottoMarquee{
  0%{transform:translate3d(0,0,0);}
  100%{transform:translate3d(-50%,0,0);}
}

@keyframes heroBgZoom{
  0%{transform:scale(1.02);}
  100%{transform:scale(1.10);}
}

@keyframes heroEnter{
  0%{opacity:0; transform:translateY(14px);}
  100%{opacity:1; transform:none;}
}

@media (prefers-reduced-motion: reduce){
  .hero .hero-bg{animation:none; transform:none;}
  .motto-track{animation:none;}
  .hero-copy,
  .hero .col-lg-5 .stat-card,
  .hero-motto-bar{animation:none;}
}

.najuna-logo{
  background:#fff;
  padding:4px;
  border-radius:10px;
  object-fit:contain;
  box-shadow:0 8px 24px rgba(0,0,0,.18);
}

.hero .container{position:relative; z-index:3;}

.section{padding:72px 0;}
.section-muted{background:var(--najuna-gray);}

.section-title{
  font-weight:800;
  letter-spacing:-.02em;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  font-size:.9rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:rgba(255,255,255,.82);
}

.kicker .dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--najuna-accent);
  display:inline-block;
}

.hero h1{font-weight:900; letter-spacing:-.03em;}
.hero p{color:rgba(255,255,255,.9);}

.hero h1,
.hero .lead{ text-shadow:0 10px 24px rgba(0,0,0,.28); }

.stat-card{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
  border-radius:16px;
  padding:18px;
}

.hero .stat-card{
  background:rgba(8,58,102,.46);
  border-color:rgba(255,255,255,.30);
  box-shadow:0 26px 80px rgba(0,0,0,.28);
  backdrop-filter:saturate(160%) blur(14px);
}

.hero .stat-card .fw-bold{
  color:#fff;
  text-shadow:0 8px 18px rgba(0,0,0,.28);
}

.hero .stat-card .small,
.hero .stat-card .text-white-50{
  color:rgba(255,255,255,.96) !important;
  text-shadow:0 10px 24px rgba(0,0,0,.32);
  font-size:.98rem;
  line-height:1.45;
}

.hero .stat-card .service-icon{
  background:rgba(255,255,255,.18);
  color:#fff;
  box-shadow:0 16px 34px rgba(0,0,0,.22);
}

.service-card,
.value-card,
.client-card{
  border:1px solid rgba(8,58,102,.10);
  background:#fff;
  border-radius:18px;
  padding:22px;
  height:100%;
  box-shadow:0 14px 40px rgba(8,58,102,.08);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card:hover,
.value-card:hover,
.client-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 52px rgba(8,58,102,.16);
  border-color:rgba(8,58,102,.22);
}

.client-logo{
  width:100%;
  max-width:170px;
  max-height:70px;
  height:auto;
  object-fit:contain;
  display:block;
}

.service-icon{
  width:54px;
  height:54px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(11,105,179,.14);
  color:var(--najuna-blue);
  font-size:1.35rem;
}

.badge-najuna{
  background:rgba(11,105,179,.14);
  color:var(--najuna-blue);
  border:1px solid rgba(11,105,179,.28);
  font-weight:700;
}

.team-photo-wrap{
  border:1px solid rgba(8,58,102,.12);
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 54px rgba(8,58,102,.12);
  height:520px;
}

.team-photo{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
}

@media (max-width: 991.98px){
  .team-photo-wrap{height:340px;}
}

.hr-divider{border-top:1px solid rgba(8,58,102,.12);}

.animate-on-scroll{
  opacity:1;
  transform:none;
}

.js-scroll .animate-on-scroll{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .7s ease, transform .7s ease;
}

.js-scroll .animate-on-scroll.in-view{opacity:1; transform:none;}

footer{background:var(--najuna-blue); color:rgba(255,255,255,.9);}
.footer-link{color:rgba(255,255,255,.88);}
.footer-link:hover{color:#fff;}
.social a{color:rgba(255,255,255,.9);}
.social a:hover{color:var(--najuna-accent);}

.footer-bottom{max-width:980px; margin:0 auto;}
.footer-motto{
  color:rgba(255,255,255,.96);
  letter-spacing:.02em;
  text-shadow:0 2px 12px rgba(0,0,0,.35);
  font-weight:800;
  text-transform:uppercase;
  text-align: center;
}
.footer-copyright{color:rgba(255,255,255,.88);}

.whatsapp-fab{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:1030;
  width:54px;
  height:54px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#25D366;
  color:#fff;
  box-shadow:0 16px 44px rgba(0,0,0,.22);
  transition:transform .18s ease, filter .18s ease;
}

.whatsapp-fab:hover{transform:translateY(-3px); filter:brightness(.98); color:#fff;}

.about-welcome{
  position:relative;
  overflow:hidden;
  padding-top:92px;
  padding-bottom:120px;
  background:linear-gradient(110deg, rgba(229,57,53,.86), rgba(11,105,179,.86));
  color:#fff;
}

.about-welcome-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(110deg, rgba(229,57,53,.78), rgba(11,105,179,.78)),
    radial-gradient(900px 520px at 18% 26%, rgba(255,255,255,.16), transparent 60%),
    radial-gradient(900px 520px at 86% 18%, rgba(255,255,255,.10), transparent 60%),
    url("../assets/NEY_5713.jpg") center/cover no-repeat;
  z-index:0;
}

.about-welcome .container{position:relative; z-index:2;}

.about-wave{
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  line-height:0;
  z-index:1;
  pointer-events:none;
}

.about-wave svg{width:100%; height:160px; display:block;}

.about-goal{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(120deg, rgba(8,58,102,.90), rgba(11,105,179,.80)),
    url("../assets/NEY_5725.jpg") center/cover no-repeat;
}

.about-goal .container{position:relative; z-index:2;}

.about-goal-card{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  border-radius:18px;
  padding:18px;
  box-shadow:0 18px 54px rgba(0,0,0,.18);
}

.about-goal .about-wave{position:static;}

.about-info{
  border:1px solid rgba(8,58,102,.10);
  background:#fff;
  border-radius:18px;
  padding:22px;
  height:100%;
  box-shadow:0 14px 40px rgba(8,58,102,.08);
}

.about-underline{
  width:72px;
  height:4px;
  border-radius:99px;
  background:var(--najuna-accent);
}

.about-list{
  margin:0;
  padding-left:1.1rem;
}

.md-portrait{
  border:1px solid rgba(8,58,102,.10);
  background:#fff;
  border-radius:18px;
  padding:14px;
  box-shadow:0 18px 54px rgba(8,58,102,.12);
}

.md-portrait img{
  width:100%;
  display:block;
  border-radius:14px;
  object-fit:cover;
  aspect-ratio:4/5;
}

.md-missing{
  border:1px dashed rgba(8,58,102,.24);
  border-radius:14px;
  padding:14px;
  color:rgba(11,18,32,.70);
  background:rgba(243,247,251,.72);
}

.md-meta .md-name{font-weight:900; color:rgba(8,58,102,.96);}

.md-bio{
  color:rgba(11,18,32,.90);
  font-size:1.14rem;
  line-height:2.02;
  font-weight:500;
  text-align:justify;
  text-justify:inter-word;
  hyphens:none;
  word-break:normal;
  overflow-wrap:normal;
}

.md-bio p{margin-bottom:16px;}
.md-bio p:last-child{margin-bottom:0;}

.md-gallery-item{
  margin:0;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(8,58,102,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(243,247,251,.88));
  box-shadow:0 18px 54px rgba(8,58,102,.10);
}

.md-gallery-item img{
  width:100%;
  display:block;
  object-fit:cover;
  aspect-ratio:16/10;
}

.md-gallery-fallback{padding:14px;}

.md-gallery-caption{
  padding:12px 14px 14px;
  font-weight:800;
  color:rgba(8,58,102,.92);
  text-align:center;
}

.md-highlights{margin:0; padding-left:1.1rem;}
.md-highlights li{margin-bottom:.35rem;}
.md-highlights li:last-child{margin-bottom:0;}

.about-people{
  position:relative;
  overflow:hidden;
  color:#fff;
  padding-top:92px;
  padding-bottom:120px;
}

.about-people-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(120deg, rgba(8,58,102,.84), rgba(11,105,179,.62)),
    url("../assets/NEY_5766.jpg") center/cover no-repeat;
  z-index:0;
}

.about-people .container{position:relative; z-index:2;}

@media (max-width: 767.98px){
  .about-welcome{padding-bottom:96px;}
  .about-people{padding-bottom:96px;}
  .about-wave svg{height:120px;}
}

.whatwedo-section{padding-top:0;}

.whatwedo-card{
  border:1px solid rgba(8,58,102,.10);
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 18px 54px rgba(8,58,102,.10);
}

.whatwedo-media{
  position:relative;
  min-height:280px;
  background:center/cover no-repeat;
}

.whatwedo-media::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, rgba(0,0,0,.30), rgba(0,0,0,.08));
}

.whatwedo-media::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-34px;
  height:92px;
  background:#fff;
  border-top-left-radius:60% 100%;
  border-top-right-radius:60% 100%;
}

.whatwedo-media-title{
  position:absolute;
  top:18px;
  left:18px;
  z-index:2;
  font-weight:800;
  font-size:1.85rem;
  letter-spacing:.2px;
  color:#fff;
  text-shadow:0 10px 24px rgba(0,0,0,.36);
}

.whatwedo-body{
  position:relative;
  padding:30px 28px 26px;
  background:
   radial-gradient(900px 420px at 0% 0%, rgba(229,57,53,.92) 0%, rgba(229,57,53,.92) 22%, rgba(229,57,53,0) 23%),
   radial-gradient(1100px 520px at 100% 0%, rgba(11,105,179,.92) 0%, rgba(11,105,179,.92) 34%, rgba(11,105,179,0) 35%),
   radial-gradient(1100px 620px at 72% 16%, rgba(8,58,102,.22) 0%, rgba(8,58,102,0) 56%),
   linear-gradient(#fff,#fff);
}

.whatwedo-body > .row{position:relative; z-index:2;}

.whatwedo-list{
  margin:0;
  padding-left:1.1rem;
}

.whatwedo-list li{margin-bottom:.45rem;}
.whatwedo-list li:last-child{margin-bottom:0;}

@media (max-width: 767.98px){
  .whatwedo-media{min-height:220px;}
  .whatwedo-body{padding:22px 18px 18px;}
}

 .svc-pdf{
  position:relative;
  overflow:hidden;
  background:#fff;
 }

 .svc-pdf-bg{
  position:absolute;
  inset:0;
  background:
   radial-gradient(900px 520px at 10% 10%, rgba(229,57,53,.08), transparent 60%),
   radial-gradient(900px 520px at 92% 10%, rgba(11,105,179,.10), transparent 60%),
   radial-gradient(1200px 720px at 70% 65%, rgba(8,58,102,.08), transparent 56%),
   linear-gradient(180deg, rgba(243,247,251,.72), rgba(255,255,255,1));
  z-index:0;
 }

 .svc-pdf .container{position:relative; z-index:2;}

 .svc-cleaning .kicker{
  color:rgba(8,58,102,.94);
  background:rgba(255,255,255,.86);
  border:1px solid rgba(8,58,102,.12);
  padding:10px 14px;
  border-radius:999px;
  box-shadow:0 14px 40px rgba(8,58,102,.10);
 }

 .svc-cleaning .kicker .dot{
  box-shadow:0 0 0 4px rgba(229,57,53,.14);
 }

 .svc-cleaning .svc-desc{
  font-size:1.02rem;
  line-height:1.7;
  color:rgba(11,18,32,.78);
  text-align:justify;
  text-justify:inter-word;
  hyphens:auto;
 }

 .svc-cleaning::before{
  content:"";
  position:absolute;
  left:-140px;
  top:120px;
  width:520px;
  height:520px;
  background:rgba(229,57,53,.12);
  border-radius:50%;
  filter:blur(0px);
  z-index:1;
 }

 .svc-cleaning::after{
  content:"";
  position:absolute;
  right:-220px;
  top:80px;
  width:680px;
  height:680px;
  background:rgba(11,105,179,.12);
  border-radius:50%;
  z-index:1;
 }

 .svc-panel{
  border:1px solid rgba(8,58,102,.10);
  background:rgba(255,255,255,.78);
  border-radius:18px;
  padding:16px 18px;
  box-shadow:0 14px 40px rgba(8,58,102,.08);
 }

 .svc-cleaning .svc-panel,
 .svc-cleaning .svc-list-card,
 .svc-cleaning .small-muted{
  text-align:justify;
  text-justify:inter-word;
  hyphens:auto;
 }

 .svc-list-card{
  border:1px solid rgba(8,58,102,.10);
  background:rgba(255,255,255,.82);
  border-radius:18px;
  padding:18px;
  box-shadow:0 14px 40px rgba(8,58,102,.08);
  position:relative;
  overflow:hidden;
 }

 .svc-list-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  background:linear-gradient(180deg, var(--najuna-accent), var(--najuna-blue));
 }

.svc-bullets{
  margin:0;
  padding-left:1.1rem;
 }

.svc-bullets li{margin-bottom:.45rem;}
.svc-bullets li:last-child{margin-bottom:0;}

.svc-collage{
  position:relative;
  min-height:640px;
 }

 .svc-hero,
 .svc-circle{
  position:absolute;
  overflow:hidden;
  background:linear-gradient(135deg, rgba(11,105,179,.16), rgba(229,57,53,.12));
  border:6px solid rgba(255,255,255,.92);
  box-shadow:0 18px 54px rgba(8,58,102,.18);
 }

 .svc-hero{
  left:0;
  right:140px;
  top:150px;
  height:360px;
  border-radius:26px;
 }

 .svc-circle{border-radius:50%;}
 .svc-circle--top{right:0; top:0; width:220px; height:220px;}
 .svc-circle--mid{right:0; top:240px; width:190px; height:190px;}
 .svc-circle--bottom{right:0; bottom:0; width:250px; height:250px;}

 .svc-hero img,
 .svc-circle img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
 }

 .svc-missing{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px;
  text-align:center;
  font-size:.86rem;
  color:rgba(8,58,102,.72);
 }

 .svc-hero .svc-missing{font-size:.9rem;}

 @media (max-width: 991.98px){
  .svc-collage{min-height:460px; margin-top:8px;}
 }

 @media (max-width: 767.98px){
  .svc-collage{
   position:relative;
   min-height:auto;
   height:auto;
  }

  .svc-hero,
  .svc-circle{
   position:relative;
   left:auto;
   right:auto;
   top:auto;
   bottom:auto;
  }

  .svc-hero{height:220px; margin-top:10px; margin-bottom:12px;}
  .svc-circle{width:160px; height:160px; margin:0 auto 12px;}
  .svc-circle--top,
  .svc-circle--mid,
  .svc-circle--bottom{width:160px; height:160px;}
 }

 .fum-hero{
  position:relative;
  overflow:hidden;
  padding-top:92px;
  padding-bottom:46px;
  background:linear-gradient(112deg, rgba(8,58,102,.92), rgba(11,105,179,.72));
  color:#fff;
 }

 .fum-hero-bg{
  position:absolute;
  inset:0;
  background:
   linear-gradient(112deg, rgba(8,58,102,.88), rgba(11,105,179,.72)),
   radial-gradient(820px 480px at 16% 22%, rgba(255,255,255,.14), transparent 60%),
   radial-gradient(820px 480px at 86% 18%, rgba(229,57,53,.12), transparent 65%),
   url("../assets/NEY_5693.jpg") center/cover no-repeat;
  z-index:0;
 }

 .fum-hero .container{position:relative; z-index:2;}

 .fum-hero-card{
  background:rgba(255,255,255,.95);
  border:1px solid rgba(255,255,255,.42);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 22px 64px rgba(0,0,0,.25);
 }

 .fum-hero-media{
  height:clamp(250px, 30vw, 340px);
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2px;
  background:rgba(255,255,255,.92);
 }

 .fum-hero-shot{
  min-height:0;
  background:center/cover no-repeat;
 }

 .fum-hero-shot--one{
  background-image:
   linear-gradient(0deg, rgba(8,58,102,.22), rgba(8,58,102,.08)),
   url("../assets/fumigation1.jpg");
  background-position:50% 40%;
 }

 .fum-hero-shot--two{
  background-image:
   linear-gradient(0deg, rgba(8,58,102,.18), rgba(8,58,102,.06)),
   url("../assets/fumigation2.jpg");
  background-position:50% 40%;
 }

 @media (max-width: 575.98px){
  .fum-hero-media{
   height:clamp(320px, 88vw, 440px);
   grid-template-columns:1fr;
   grid-template-rows:1fr 1fr;
   gap:2px;
  }
 }

 .fum-pest-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
  padding:14px;
 }

 .pest-icon{
  height:54px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border:2px solid rgba(229,57,53,.72);
  color:rgba(8,58,102,.92);
  box-shadow:0 10px 26px rgba(8,58,102,.12);
 }

 .pest-icon img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  display:block;
 }

 .fum-hero-icons{
  padding:14px;
  background:#fff;
 }

 .fum-hero-icons img{
  width:100%;
  height:auto;
  display:block;
 }

 .fum-photo-circles{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
 }

 .fum-photo-circle{
  width:170px;
  height:170px;
  border-radius:50%;
  overflow:hidden;
  background:#fff;
  border:6px solid rgba(229,57,53,.82);
  box-shadow:0 18px 54px rgba(8,58,102,.14);
 }

 .fum-photo-circle img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
 }

 .fum-bubbles-row{
  display:flex;
  gap:18px;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:wrap;
 }

 .fum-bubble{
  width:220px;
  height:220px;
  border-radius:50%;
  padding:22px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align:center;
  box-shadow:0 18px 54px rgba(8,58,102,.12);
  border:6px solid rgba(255,255,255,.92);
 }

 .fum-bubble-title{font-weight:800; margin-bottom:8px;}
 .fum-bubble-text{font-size:.92rem; line-height:1.45; opacity:.92;}
 .bubble-blue{background:rgba(11,105,179,.14); color:rgba(8,58,102,.96); border-color:rgba(11,105,179,.22);}
 .bubble-gray{background:rgba(8,58,102,.06); color:rgba(8,58,102,.92); border-color:rgba(8,58,102,.12);}
 .bubble-red{background:rgba(229,57,53,.12); color:rgba(8,58,102,.96); border-color:rgba(229,57,53,.22);}

 .fum-infographic{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  align-items:stretch;
 }

 .fum-node{
  position:relative;
  width:100%;
  height:auto;
  border-radius:22px;
  aspect-ratio:auto;
  min-height:240px;
  padding:22px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  box-shadow:0 18px 54px rgba(8,58,102,.16);
  border:6px solid rgba(255,255,255,.92);
 }

 .fum-node-top{display:flex; align-items:center; gap:10px; margin-bottom:10px;}
 .fum-node-icon{
  width:78px;
  height:78px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.22);
  border:2px solid rgba(255,255,255,.36);
  box-shadow:0 10px 26px rgba(8,58,102,.12);
 }

 .fum-node-icon img{
  width:86%;
  height:86%;
  object-fit:contain;
  display:block;
 }

 .fum-node-head{font-weight:900; line-height:1.15; font-size:1.05rem;}
 .fum-node-text{font-size:.95rem; line-height:1.5; opacity:.92;}

 .node-blue{background:linear-gradient(135deg, rgba(11,105,179,.82), rgba(8,58,102,.92)); color:#fff;}
 .node-red{background:linear-gradient(135deg, rgba(229,57,53,.86), rgba(183,28,28,.92)); color:#fff;}
 .node-gray{background:rgba(8,58,102,.08); color:rgba(8,58,102,.92); border-color:rgba(8,58,102,.14);}
 .node-white{background:#fff; color:rgba(8,58,102,.92); border-color:rgba(8,58,102,.12);}

 .fum-chem-list{
  margin:0;
  padding-left:18px;
  font-size:.95rem;
  line-height:1.5;
 }

 .fum-chem-list li{margin-bottom:6px;}
 .fum-chem-list li:last-child{margin-bottom:0;}

 .node-chemicals,
 .node-corrective,
 .node-preventive{min-height:320px;}

 @media (max-width: 1199.98px){
  .fum-infographic{grid-template-columns:repeat(2, minmax(0, 1fr));}
 }

 @media (max-width: 991.98px){
  .fum-infographic{grid-template-columns:1fr;}
 }

 @media (max-width: 575.98px){
  .fum-hero-media{height:210px;}
  .fum-bubble{width:190px; height:190px;}

  .fum-infographic{
   grid-template-columns:1fr;
   gap:14px;
  }

  .fum-node{
   width:100%;
   height:auto;
   border-radius:22px;
  }
 }

 .ff-hero{
  position:relative;
  overflow:hidden;
  padding-top:92px;
  padding-bottom:44px;
  background:#fff;
 }

 .sec-hero{
  position:relative;
  overflow:hidden;
  padding-top:92px;
  padding-bottom:44px;
  background:#fff;
 }

 .ff-hero-bg{
  position:absolute;
  inset:0;
  background:
   radial-gradient(900px 520px at 86% 30%, rgba(229,57,53,.14), transparent 62%),
   radial-gradient(820px 480px at 14% 22%, rgba(11,105,179,.10), transparent 60%),
   linear-gradient(180deg, rgba(243,247,251,.86), #fff);
  z-index:0;
 }

 .ff-hero-bg::before,
 .ff-hero-bg::after{
  content:"";
  position:absolute;
  inset:-12%;
  pointer-events:none;
  opacity:.85;
  transform:translate3d(0,0,0);
 }

 .ff-hero-bg::before{
  background:
   radial-gradient(520px 320px at 20% 40%, rgba(229,57,53,.16), transparent 62%),
   radial-gradient(540px 340px at 78% 35%, rgba(11,105,179,.14), transparent 62%),
   radial-gradient(420px 260px at 50% 110%, rgba(255,152,0,.12), transparent 70%);
  filter:blur(0px);
  animation:ffHeroDrift 12s ease-in-out infinite;
 }

 .ff-hero-bg::after{
  background:
   radial-gradient(10px 10px at 18% 62%, rgba(229,57,53,.50), transparent 64%),
   radial-gradient(12px 12px at 42% 18%, rgba(11,105,179,.46), transparent 64%),
   radial-gradient(8px 8px at 74% 52%, rgba(255,152,0,.44), transparent 66%),
   radial-gradient(10px 10px at 86% 22%, rgba(0,150,136,.40), transparent 64%);
  opacity:.55;
  filter:blur(.2px);
  animation:ffHeroSparks 9.5s ease-in-out infinite;
 }

 @keyframes ffHeroDrift{
  0%{transform:translate3d(-2.4%, -2.1%, 0) scale(1.03); opacity:.72;}
  50%{transform:translate3d(2.0%, 1.6%, 0) scale(1.09); opacity:1;}
  100%{transform:translate3d(-2.4%, -2.1%, 0) scale(1.03); opacity:.72;}
 }

 @keyframes ffHeroSparks{
  0%{transform:translate3d(0, 0, 0); opacity:.42;}
  50%{transform:translate3d(-2.0%, 1.8%, 0); opacity:.82;}
  100%{transform:translate3d(0, 0, 0); opacity:.42;}
 }

 @media (prefers-reduced-motion: reduce){
  .ff-hero-bg::before,
  .ff-hero-bg::after,
  .ff-hero-media::before,
  .ff-ext-cap{
   animation:none !important;
  }

  .ff-ticker-track,
  .ff-ticker-item{
   animation:none !important;
  }

  .ff-ext-card,
  .ff-gallery .ff-gallery-card{
   animation:none !important;
  }

  .ff-ext-card,
  .ff-gallery-card,
  .ff-ext-media{
   transition:none !important;
  }

  .ff-ext-card:hover,
  .ff-gallery-card:hover{
   transform:none !important;
  }

  .ff-ext-card:hover .ff-ext-media,
  .ff-ext-card:hover .ff-ext-media img,
  .ff-gallery-card:hover img{
   animation:none !important;
   transform:none !important;
  }
 }

 .sec-hero-bg{
  position:absolute;
  inset:0;
  background:
   radial-gradient(900px 520px at 86% 30%, rgba(11,105,179,.14), transparent 62%),
   radial-gradient(820px 480px at 14% 22%, rgba(0,150,136,.10), transparent 60%),
   linear-gradient(180deg, rgba(243,247,251,.86), #fff);
  z-index:0;
 }

 .ff-hero .container{position:relative; z-index:2;}

 .sec-hero .container{position:relative; z-index:2;}

 .cln-hero .sec-hero-bg{
  background:
   radial-gradient(920px 520px at 18% 18%, rgba(11,105,179,.16), transparent 62%),
   radial-gradient(780px 520px at 82% 22%, rgba(229,57,53,.14), transparent 62%),
   radial-gradient(900px 620px at 72% 78%, rgba(0,150,136,.14), transparent 60%),
   linear-gradient(180deg, rgba(243,247,251,.92), #fff);
 }

 .cln-hero .sec-hero-title{letter-spacing:-.3px;}

 .cln-hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
 }

 .cln-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(8,58,102,.12);
  background:rgba(255,255,255,.92);
  box-shadow:0 12px 30px rgba(8,58,102,.08);
  color:rgba(8,58,102,.92);
  font-weight:800;
  font-size:.95rem;
 }

 .cln-badge i{color:rgba(229,57,53,.92);}

 .cln-hero-media{
  background:rgba(255,255,255,.90);
  border:1px solid rgba(255,255,255,.42);
  border-radius:24px;
  padding:12px;
  box-shadow:0 22px 64px rgba(8,58,102,.18);
 }

 .cln-hero .cln-hero-media{position:relative; overflow:hidden;}

 .cln-hero .cln-hero-media::before{
  content:"";
  position:absolute;
  top:-30%;
  left:-60%;
  width:55%;
  height:160%;
  background:linear-gradient(115deg, transparent, rgba(255,255,255,.55), transparent);
  transform:skewX(-18deg);
  opacity:.0;
  pointer-events:none;
  animation:cln-shine 5.8s ease-in-out infinite;
 }

 .cln-hero .cln-badge{
  will-change:transform;
  animation:cln-badge-float 4.6s ease-in-out infinite;
 }

 .cln-hero .cln-badge:nth-child(2){animation-delay:.35s;}
 .cln-hero .cln-badge:nth-child(3){animation-delay:.7s;}
 .cln-hero .cln-badge:nth-child(4){animation-delay:1.05s;}

 .cln-hero .cln-badge:hover{animation-play-state:paused;}
 .cln-hero .cln-hero-media:hover::before{animation-play-state:paused;}

 @keyframes cln-badge-float{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-6px);}
 }

 @keyframes cln-shine{
  0%{left:-60%; opacity:0;}
  10%{opacity:.26;}
  38%{left:130%; opacity:0;}
  100%{left:130%; opacity:0;}
 }

 .cln-hero .svc-collage{min-height:520px; max-width:460px; margin-left:auto;}
 .cln-hero .svc-hero{right:120px; top:130px; height:320px;}
 .cln-hero .svc-circle--top{width:190px; height:190px;}
 .cln-hero .svc-circle--mid{top:210px; width:170px; height:170px;}
 .cln-hero .svc-circle--bottom{width:220px; height:220px;}

 .cln-aside{display:grid; gap:14px;}

 .cln-card{
  border:1px solid rgba(8,58,102,.10);
  background:rgba(255,255,255,.82);
  border-radius:18px;
  padding:16px 16px;
  box-shadow:0 14px 40px rgba(8,58,102,.08);
 }

 .cln-card-top{display:flex; gap:12px; align-items:flex-start;}

 .cln-card-icon{
  width:44px;
  height:44px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(229,57,53,.10);
  border:1px solid rgba(229,57,53,.18);
  color:rgba(8,58,102,.94);
  flex:0 0 auto;
 }

 .cln-card-title{font-weight:900; margin-bottom:2px; color:rgba(8,58,102,.94);}

 .cln-cta{
  border:1px solid rgba(11,105,179,.18);
  background:linear-gradient(135deg, rgba(11,105,179,.10), rgba(255,255,255,.92));
  border-radius:18px;
  padding:18px;
  box-shadow:0 18px 54px rgba(8,58,102,.10);
 }

 @media (max-width: 991.98px){
  .cln-hero .svc-collage{max-width:520px; margin-right:auto; margin-left:auto;}
 }

 @media (max-width: 767.98px){
  .cln-badge{font-size:.92rem;}
  .cln-hero-media{padding:10px;}
 }

 @media (prefers-reduced-motion: reduce){
  .cln-hero .cln-badge{animation:none !important;}
  .cln-hero .cln-hero-media::before{animation:none !important;}
 }

 .ff-hero-title{
  font-weight:900;
  letter-spacing:-.02em;
  color:rgba(229,57,53,.96);
  line-height:1.05;
  font-size:clamp(2rem, 3.2vw, 3rem);
 }

 .sec-hero-title{
  font-weight:900;
  letter-spacing:-.02em;
  color:rgba(11,105,179,.96);
  line-height:1.05;
  font-size:clamp(2rem, 3.2vw, 3rem);
 }

 .ff-hero .kicker{
  font-size:1.02rem;
  color:rgba(8,58,102,.96);
  background:rgba(255,255,255,.92);
  border:1px solid rgba(8,58,102,.12);
  padding:8px 12px;
  border-radius:999px;
  box-shadow:0 12px 30px rgba(8,58,102,.08);
 }

 .ff-ticker{
  border-radius:999px;
  border:1px solid rgba(8,58,102,.14);
  background:rgba(255,255,255,.90);
  box-shadow:0 14px 38px rgba(8,58,102,.10);
  overflow:hidden;
  position:relative;
 }

 .ff-ticker::before,
 .ff-ticker::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:46px;
  pointer-events:none;
  z-index:2;
 }

 .ff-ticker::before{left:0; background:linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,0));}
 .ff-ticker::after{right:0; background:linear-gradient(270deg, rgba(255,255,255,.98), rgba(255,255,255,0));}

 .ff-ticker-track{
  display:flex;
  align-items:center;
  gap:14px;
  padding:10px 14px;
  width:max-content;
  will-change:transform;
  animation:ffTicker 18s linear infinite;
 }

 .ff-ticker:hover .ff-ticker-track{animation-play-state:paused;}

 .ff-ticker-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(229,57,53,.18);
  background:linear-gradient(90deg, rgba(229,57,53,.10), rgba(11,105,179,.10), rgba(255,152,0,.10));
  background-size:220% 100%;
  color:rgba(8,58,102,.96);
  font-weight:800;
  white-space:nowrap;
  animation:ffTickerColor 4.8s ease-in-out infinite;
 }

 .ff-ticker-item i{color:rgba(229,57,53,.96);}

 @keyframes ffTicker{
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
 }

 @keyframes ffTickerColor{
  0%{background-position:0% 50%; filter:saturate(1) brightness(1);}
  50%{background-position:100% 50%; filter:saturate(1.18) brightness(1.05);}
  100%{background-position:0% 50%; filter:saturate(1) brightness(1);}
 }

 .ff-hero .kicker .dot{
  width:11px;
  height:11px;
  box-shadow:0 0 0 4px rgba(229,57,53,.16);
 }

 .sec-page .sec-hero .kicker{
  font-size:1.06rem;
  color:rgba(8,58,102,.96);
  background:rgba(255,255,255,.94);
  border:1px solid rgba(8,58,102,.14);
  padding:9px 14px;
  border-radius:999px;
  box-shadow:0 14px 34px rgba(8,58,102,.10);
 }

 .sec-page .sec-hero .kicker .dot{
  width:11px;
  height:11px;
  background:rgba(0,150,136,.96);
  box-shadow:0 0 0 4px rgba(0,150,136,.16);
 }

 .sec-page .sec-hero-title{
  font-size:clamp(2.25rem, 3.6vw, 3.25rem);
 }

 .sec-page .lead{
  font-size:1.18rem;
  line-height:1.7;
 }

 .sec-page .section-title{
  font-size:clamp(1.55rem, 2.1vw, 2.05rem);
 }

 .sec-page p{font-size:1.08rem; line-height:1.8;}
 .sec-page .small-muted{font-size:1rem;}

 .sec-page .service-card{
  border-top:4px solid rgba(11,105,179,.32);
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(243,247,251,.88));
  box-shadow:0 16px 44px rgba(8,58,102,.12);
 }

 .sec-page .service-card:hover{
  transform:translateY(-3px);
  box-shadow:0 22px 64px rgba(8,58,102,.16);
 }

 .sec-page .service-icon{
  background:rgba(0,150,136,.14);
  color:rgba(0,150,136,.96);
  border:1px solid rgba(0,150,136,.22);
 }

 .sec-page .service-card h3{
  font-size:1.22rem;
 }

 .sec-page .service-card ul{
  font-size:1.05rem;
  line-height:1.75;
 }

 .sec-page .service-card ul li{margin-bottom:.35rem;}
 .sec-page .service-card ul li:last-child{margin-bottom:0;}

 .sec-page .ff-gallery-caption{
  font-size:1.02rem;
 }

 .sec-page .ff-gallery-card{
  border:1px solid rgba(11,105,179,.16);
 }

 .sec-page .ff-gallery-card:hover{
  border-color:rgba(0,150,136,.28);
  box-shadow:0 22px 64px rgba(0,150,136,.12);
 }

 .sec-page .sec-overview-card,
 .sec-page .sec-aside-card{
  border:1px solid rgba(8,58,102,.10);
  background:rgba(255,255,255,.92);
  border-radius:18px;
  padding:18px;
  box-shadow:0 14px 40px rgba(8,58,102,.08);
  position:relative;
  overflow:hidden;
 }

 .sec-page .sec-overview-card::before,
 .sec-page .sec-aside-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  background:linear-gradient(180deg, rgba(0,150,136,.96), rgba(11,105,179,.92));
 }

 .sec-page .sec-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:800;
  font-size:.92rem;
  letter-spacing:.02em;
  text-transform:uppercase;
  color:rgba(8,58,102,.86);
  background:rgba(8,58,102,.06);
  border:1px solid rgba(8,58,102,.10);
  padding:6px 10px;
  border-radius:999px;
 }

 .sec-page .sec-subtitle{
  margin-top:14px;
  font-weight:900;
  color:rgba(8,58,102,.92);
  font-size:1.05rem;
 }

 .sec-page .sec-checklist{
  margin:12px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
 }

 .sec-page .sec-checklist li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:rgba(8,58,102,.92);
  font-size:1.05rem;
  line-height:1.7;
 }

 .sec-page .sec-checklist i{
  margin-top:2px;
  color:rgba(0,150,136,.96);
  flex:0 0 auto;
 }

 .sec-page .sec-aside-title{
  margin-top:12px;
  font-weight:900;
  color:rgba(8,58,102,.96);
  font-size:1.2rem;
  letter-spacing:-.01em;
 }

 .sec-page .sec-bullets{
  margin-top:12px;
  display:grid;
  gap:10px;
 }

 .sec-page .sec-bullet{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:rgba(8,58,102,.92);
  font-size:1.05rem;
  line-height:1.7;
 }

 .sec-page .sec-bullet i{
  margin-top:2px;
  color:rgba(11,105,179,.96);
  flex:0 0 auto;
 }

 .sec-page .sec-cta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
 }

 .ac-page .ac-hero{
  position:relative;
  overflow:hidden;
  padding-top:92px;
  padding-bottom:44px;
  background:#fff;
 }

 .ac-page .ac-hero-bg{
  position:absolute;
  inset:0;
  background:
   radial-gradient(900px 520px at 14% 22%, rgba(11,105,179,.18), transparent 60%),
   radial-gradient(900px 540px at 86% 28%, rgba(0,150,136,.14), transparent 62%),
   radial-gradient(1100px 620px at 50% 115%, rgba(229,57,53,.14), transparent 62%),
   linear-gradient(180deg, rgba(243,247,251,.92), #fff);
  z-index:0;
 }

 .ac-page .ac-hero .container{position:relative; z-index:2;}

 .ac-page .ac-hero .kicker{
  font-size:1.06rem;
  color:rgba(8,58,102,.96);
  background:rgba(255,255,255,.94);
  border:1px solid rgba(8,58,102,.14);
  padding:9px 14px;
  border-radius:999px;
  box-shadow:0 14px 34px rgba(8,58,102,.10);
 }

 .ac-page .ac-hero .kicker .dot{
  width:11px;
  height:11px;
  background:rgba(11,105,179,.96);
  box-shadow:0 0 0 4px rgba(11,105,179,.16);
 }

 .ac-page .ac-hero-title{
  font-weight:900;
  letter-spacing:-.02em;
  color:rgba(8,58,102,.96);
  font-size:clamp(2.1rem, 3.3vw, 3.05rem);
 }

 .ac-page .lead{font-size:1.18rem; line-height:1.7;}
 .ac-page p{font-size:1.08rem; line-height:1.8;}
 .ac-page .small-muted{font-size:1rem;}

 .ac-page .ac-hero-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
 }

 .ac-page .ac-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(11,105,179,.14);
  padding:8px 12px;
  border-radius:999px;
  box-shadow:0 12px 30px rgba(8,58,102,.08);
  font-weight:800;
  color:rgba(8,58,102,.92);
 }

 .ac-page .ac-pill i{color:rgba(229,57,53,.96);}

 .ac-page .ff-hero-media-circle img{
  object-fit:cover;
  padding:0;
 }

 .ac-page .service-card{
  border-top:4px solid rgba(11,105,179,.32);
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(243,247,251,.88));
  box-shadow:0 16px 44px rgba(8,58,102,.12);
 }

 .ac-page .service-card:hover{
  transform:translateY(-3px);
  box-shadow:0 22px 64px rgba(8,58,102,.16);
 }

 .ac-page .service-icon{
  background:rgba(11,105,179,.14);
  color:rgba(11,105,179,.96);
  border:1px solid rgba(11,105,179,.22);
 }

 .ac-page .service-card h3{font-size:1.22rem;}
 .ac-page .service-card ul{font-size:1.05rem; line-height:1.75;}
 .ac-page .service-card ul li{margin-bottom:.35rem;}
 .ac-page .service-card ul li:last-child{margin-bottom:0;}

 .ac-page .ac-mini-note{
  border:1px solid rgba(8,58,102,.10);
  background:rgba(255,255,255,.86);
  border-radius:18px;
  padding:16px 18px;
  box-shadow:0 14px 40px rgba(8,58,102,.08);
 }

 .ac-page .ac-mini-title{font-weight:900; color:rgba(8,58,102,.96); margin-bottom:10px;}

 .ac-page .ac-mini-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
 }

 .ac-page .ac-mini-item{
  display:flex;
  gap:10px;
  align-items:center;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(8,58,102,.10);
  background:rgba(243,247,251,.88);
  font-weight:800;
  color:rgba(8,58,102,.92);
 }

 .ac-page .ac-mini-item i{color:rgba(0,150,136,.96);}

 .ac-page .ac-benefits-card{
  border:1px solid rgba(8,58,102,.10);
  background:rgba(255,255,255,.92);
  border-radius:18px;
  padding:18px;
  box-shadow:0 14px 40px rgba(8,58,102,.08);
 }

 .ac-page .ac-benefits-title{
  font-weight:900;
  color:rgba(229,57,53,.96);
  font-size:1.35rem;
  letter-spacing:-.01em;
 }

 .ac-page .ac-benefits-list{
  margin:14px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
 }

 .ac-page .ac-benefits-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:rgba(8,58,102,.92);
  font-size:1.05rem;
  line-height:1.7;
 }

 .ac-page .ac-benefits-list i{margin-top:2px; color:rgba(0,150,136,.96); flex:0 0 auto;}

 .ac-page .ac-image-stack{position:relative; min-height:420px;}

 .ac-page .ac-image-card{
  background:rgba(255,255,255,.86);
  border:6px solid rgba(255,255,255,.92);
  border-radius:22px;
  box-shadow:0 18px 54px rgba(8,58,102,.14);
  overflow:hidden;
  height:360px;
 }

 .ac-page .ac-image-card img{width:100%; height:100%; object-fit:cover; display:block;}

 .ac-page .ac-image-card--small{
  position:absolute;
  right:0;
  bottom:-10px;
  width:min(240px, 56%);
  height:220px;
 }

 @media (max-width: 991.98px){
  .ac-page .ac-image-stack{min-height:auto;}
  .ac-page .ac-image-card{height:320px;}
  .ac-page .ac-image-card--small{position:relative; right:auto; bottom:auto; width:100%; height:240px; margin-top:14px;}
 }

 @media (max-width: 575.98px){
  .ac-page .lead{font-size:1.12rem;}
  .ac-page p{font-size:1.02rem;}
  .ac-page .service-card ul{font-size:1.02rem;}
 }

 @media (max-width: 575.98px){
  .sec-page .lead{font-size:1.12rem;}
  .sec-page p{font-size:1.02rem;}
  .sec-page .service-card ul{font-size:1.02rem;}
 }

 .oe-page .oe-hero{
  position:relative;
  overflow:hidden;
  padding-top:92px;
  padding-bottom:44px;
  background:#fff;
 }

 .oe-page .oe-hero-bg{
  position:absolute;
  inset:0;
  background:
   radial-gradient(900px 520px at 18% 18%, rgba(11,105,179,.16), transparent 60%),
   radial-gradient(920px 560px at 86% 28%, rgba(229,57,53,.14), transparent 62%),
   radial-gradient(1100px 620px at 50% 115%, rgba(0,150,136,.12), transparent 62%),
   linear-gradient(180deg, rgba(243,247,251,.90), #fff);
  z-index:0;
 }

 .oe-page .oe-hero .container{position:relative; z-index:2;}

 .oe-page .oe-hero .kicker{
  font-size:1.06rem;
  color:rgba(8,58,102,.96);
  background:rgba(255,255,255,.94);
  border:1px solid rgba(8,58,102,.14);
  padding:9px 14px;
  border-radius:999px;
  box-shadow:0 14px 34px rgba(8,58,102,.10);
 }

 .oe-page .oe-hero .kicker .dot{
  width:11px;
  height:11px;
  background:rgba(229,57,53,.96);
  box-shadow:0 0 0 4px rgba(229,57,53,.16);
 }

 .oe-page .oe-hero-title{
  font-weight:900;
  letter-spacing:-.02em;
  color:rgba(8,58,102,.96);
  font-size:clamp(2.15rem, 3.4vw, 3.15rem);
 }

 .oe-page .lead{font-size:1.18rem; line-height:1.7;}
 .oe-page p{font-size:1.08rem; line-height:1.85;}
 .oe-page .small-muted{font-size:1rem;}

 .oe-page .oe-hero-badges{display:flex; flex-wrap:wrap; gap:10px;}

 .oe-page .oe-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(8,58,102,.12);
  background:rgba(255,255,255,.92);
  box-shadow:0 12px 30px rgba(8,58,102,.08);
  color:rgba(8,58,102,.92);
  font-weight:800;
  font-size:.95rem;
  will-change:transform;
  animation:oe-badge-float 4.8s ease-in-out infinite;
 }

 .oe-page .oe-badge i{color:rgba(11,105,179,.92);}
 .oe-page .oe-badge:nth-child(2){animation-delay:.35s;}
 .oe-page .oe-badge:nth-child(3){animation-delay:.7s;}
 .oe-page .oe-badge:nth-child(4){animation-delay:1.05s;}
 .oe-page .oe-badge:hover{animation-play-state:paused;}

 .oe-page .oe-hero-media{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(8,58,102,.12);
  background:rgba(255,255,255,.92);
  box-shadow:0 18px 54px rgba(8,58,102,.12);
  min-height:320px;
  display:flex;
  align-items:center;
  justify-content:center;
 }

 .oe-page .oe-hero-media img{width:100%; height:100%; object-fit:cover; display:block;}
 .oe-page .oe-hero-missing{padding:18px;}

 .oe-page .oe-hero-media::before{
  content:"";
  position:absolute;
  top:-30%;
  left:-60%;
  width:55%;
  height:160%;
  background:linear-gradient(115deg, transparent, rgba(255,255,255,.50), transparent);
  transform:skewX(-18deg);
  opacity:0;
  pointer-events:none;
  animation:oe-shine 6.2s ease-in-out infinite;
 }

 .oe-page .oe-hero-media:hover::before{animation-play-state:paused;}

 .oe-page .oe-overview-card,
 .oe-page .oe-aside-card{
  border:1px solid rgba(8,58,102,.10);
  background:rgba(255,255,255,.92);
  border-radius:18px;
  padding:18px;
  box-shadow:0 14px 40px rgba(8,58,102,.08);
  position:relative;
  overflow:hidden;
 }

 .oe-page .oe-overview-card::before,
 .oe-page .oe-aside-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  background:linear-gradient(180deg, rgba(11,105,179,.92), rgba(229,57,53,.86));
 }

 .oe-page .oe-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:800;
  font-size:.92rem;
  letter-spacing:.02em;
  text-transform:uppercase;
  color:rgba(8,58,102,.86);
  background:rgba(8,58,102,.06);
  border:1px solid rgba(8,58,102,.10);
  padding:6px 10px;
  border-radius:999px;
 }

 .oe-page .oe-subtitle{
  margin-top:14px;
  font-weight:900;
  color:rgba(8,58,102,.92);
  font-size:1.05rem;
 }

 .oe-page .oe-checklist{
  margin:12px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
 }

 .oe-page .oe-checklist li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:rgba(8,58,102,.92);
  font-size:1.05rem;
  line-height:1.7;
 }

 .oe-page .oe-checklist i{margin-top:2px; color:rgba(0,150,136,.96); flex:0 0 auto;}

 .oe-page .oe-aside-title{
  margin-top:12px;
  font-weight:900;
  color:rgba(8,58,102,.96);
  font-size:1.2rem;
  letter-spacing:-.01em;
 }

 .oe-page .oe-bullets{margin-top:12px; display:grid; gap:10px;}

 .oe-page .oe-bullet{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:rgba(8,58,102,.92);
  font-size:1.05rem;
  line-height:1.7;
 }

 .oe-page .oe-bullet i{margin-top:2px; color:rgba(11,105,179,.96); flex:0 0 auto;}

 .oe-page .oe-cta{display:flex; flex-wrap:wrap; gap:10px;}

 .oe-page .oe-category-card{
  padding:24px;
  background:#fff;
  border:1px solid #e9ecef;
  border-radius:12px;
  transition:all 0.3s ease;
}
.oe-page .oe-category-card:hover{
  border-color:#0b69b3;
  box-shadow:0 4px 12px rgba(11,105,179,0.08);
  transform:translateY(-2px);
}
.oe-page .oe-category-icon{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, #0b69b3, #0a5a9c);
  color:#fff;
  border-radius:10px;
  font-size:20px;
  flex-shrink:0;
}
.oe-page .oe-category-card h3{
  color:#0b69b3;
  font-weight:600;
}
.oe-page .oe-category-card ul{
  padding-left:20px;
  margin:0;
}
.oe-page .oe-category-card ul li{
  margin-bottom:4px;
  color:#495057;
  font-size:0.95rem;
}

 @keyframes oe-badge-float{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-6px);}
 }

 @keyframes oe-shine{
  0%{left:-60%; opacity:0;}
  10%{opacity:.22;}
  38%{left:130%; opacity:0;}
  100%{left:130%; opacity:0;}
 }

 @media (max-width: 575.98px){
  .oe-page .lead{font-size:1.12rem;}
  .oe-page p{font-size:1.02rem;}
 }

 @media (prefers-reduced-motion: reduce){
  .oe-page .oe-badge{animation:none !important;}
  .oe-page .oe-hero-media::before{animation:none !important;}
 }

 .bm-page .bm-hero{
  position:relative;
  overflow:hidden;
  padding-top:92px;
  padding-bottom:44px;
  background:#fff;
 }

 .bm-page .bm-hero-bg{
  position:absolute;
  inset:0;
  background:
   radial-gradient(900px 520px at 16% 22%, rgba(229,57,53,.14), transparent 60%),
   radial-gradient(980px 560px at 86% 28%, rgba(11,105,179,.16), transparent 62%),
   radial-gradient(1100px 620px at 50% 115%, rgba(0,150,136,.12), transparent 62%),
   linear-gradient(180deg, rgba(243,247,251,.90), #fff);
  z-index:0;
 }

 .bm-page .bm-hero .container{position:relative; z-index:2;}

 .bm-page .bm-hero .kicker{
  font-size:1.06rem;
  color:rgba(8,58,102,.96);
  background:rgba(255,255,255,.94);
  border:1px solid rgba(8,58,102,.14);
  padding:9px 14px;
  border-radius:999px;
  box-shadow:0 14px 34px rgba(8,58,102,.10);
 }

 .bm-page .bm-hero .kicker .dot{
  width:11px;
  height:11px;
  background:rgba(229,57,53,.96);
  box-shadow:0 0 0 4px rgba(229,57,53,.16);
 }

 .bm-page .bm-hero-title{
  font-weight:900;
  letter-spacing:-.02em;
  color:rgba(8,58,102,.96);
  font-size:clamp(2.15rem, 3.4vw, 3.15rem);
 }

 .bm-page .lead{font-size:1.18rem; line-height:1.7;}
 .bm-page p{font-size:1.08rem; line-height:1.85;}
 .bm-page .small-muted{font-size:1rem;}

 .bm-page .bm-hero-media{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(8,58,102,.12);
  background:rgba(255,255,255,.92);
  box-shadow:0 18px 54px rgba(8,58,102,.12);
  min-height:320px;
  display:flex;
  align-items:center;
  justify-content:center;
 }

 .bm-page .bm-hero-media img{width:100%; height:100%; object-fit:cover; display:block;}
 .bm-page .bm-hero-missing{padding:18px;}

 .bm-page .bm-overview-card,
 .bm-page .bm-aside-card{
  border:1px solid rgba(8,58,102,.10);
  background:rgba(255,255,255,.92);
  border-radius:18px;
  padding:18px;
  box-shadow:0 14px 40px rgba(8,58,102,.08);
  position:relative;
  overflow:hidden;
 }

 .bm-page .bm-overview-card::before,
 .bm-page .bm-aside-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  background:linear-gradient(180deg, rgba(229,57,53,.96), rgba(11,105,179,.92));
 }

 .bm-page .bm-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:800;
  font-size:.92rem;
  letter-spacing:.02em;
  text-transform:uppercase;
  color:rgba(8,58,102,.86);
  background:rgba(8,58,102,.06);
  border:1px solid rgba(8,58,102,.10);
  padding:6px 10px;
  border-radius:999px;
 }

 .bm-page .bm-subtitle{
  margin-top:14px;
  font-weight:900;
  color:rgba(8,58,102,.92);
  font-size:1.05rem;
 }

 .bm-page .bm-checklist{
  margin:12px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
 }

 .bm-page .bm-checklist li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:rgba(8,58,102,.92);
  font-size:1.05rem;
  line-height:1.7;
 }

 .bm-page .bm-checklist i{margin-top:2px; color:rgba(0,150,136,.96); flex:0 0 auto;}

 .bm-page .bm-aside-title{
  margin-top:12px;
  font-weight:900;
  color:rgba(8,58,102,.96);
  font-size:1.2rem;
  letter-spacing:-.01em;
 }

 .bm-page .bm-bullets{margin-top:12px; display:grid; gap:10px;}

 .bm-page .bm-bullet{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:rgba(8,58,102,.92);
  font-size:1.05rem;
  line-height:1.7;
 }

 .bm-page .bm-bullet i{margin-top:2px; color:rgba(11,105,179,.96); flex:0 0 auto;}

 .bm-page .bm-cta{display:flex; flex-wrap:wrap; gap:10px;}

 @media (max-width: 575.98px){
  .bm-page .lead{font-size:1.12rem;}
  .bm-page p{font-size:1.02rem;}
 }

 .uni-page .uni-hero{
  position:relative;
  overflow:hidden;
  padding-top:92px;
  padding-bottom:44px;
  background:#fff;
 }

 .uni-page .uni-hero-bg{
  position:absolute;
  inset:0;
  background:
   radial-gradient(900px 520px at 86% 30%, rgba(229,57,53,.16), transparent 62%),
   radial-gradient(820px 480px at 14% 22%, rgba(11,105,179,.14), transparent 60%),
   linear-gradient(180deg, rgba(243,247,251,.88), #fff);
  z-index:0;
 }

 .uni-page .uni-hero .container{position:relative; z-index:2;}

 .uni-page .uni-hero .kicker{
  font-size:1.06rem;
  color:rgba(8,58,102,.96);
  background:rgba(255,255,255,.94);
  border:1px solid rgba(8,58,102,.14);
  padding:9px 14px;
  border-radius:999px;
  box-shadow:0 14px 34px rgba(8,58,102,.10);
 }

 .uni-page .uni-hero .kicker .dot{
  width:11px;
  height:11px;
  background:rgba(229,57,53,.96);
  box-shadow:0 0 0 4px rgba(229,57,53,.16);
 }

 .uni-page .uni-hero-title{
  font-weight:900;
  letter-spacing:-.02em;
  color:rgba(229,57,53,.96);
  line-height:1.05;
  font-size:clamp(2.25rem, 3.6vw, 3.25rem);
 }

 .uni-page .lead{font-size:1.18rem; line-height:1.7;}
 .uni-page p{font-size:1.08rem; line-height:1.8;}
 .uni-page .small-muted{font-size:1rem;}

 .uni-page .service-card{
  border-top:4px solid rgba(229,57,53,.28);
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(243,247,251,.88));
  box-shadow:0 16px 44px rgba(8,58,102,.12);
 }

 .uni-page .service-card:hover{
  transform:translateY(-3px);
  box-shadow:0 22px 64px rgba(8,58,102,.16);
 }

 .uni-page .service-icon{
  background:rgba(229,57,53,.12);
  color:rgba(229,57,53,.96);
  border:1px solid rgba(229,57,53,.20);
 }

 .uni-mini-card{
  height:100%;
  border-radius:18px;
  border:1px solid rgba(8,58,102,.12);
  background:rgba(255,255,255,.92);
  box-shadow:0 14px 40px rgba(8,58,102,.08);
  padding:16px;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
 }

 .uni-mini-card:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 52px rgba(8,58,102,.14);
  border-color:rgba(229,57,53,.22);
 }

 .uni-mini-icon{
  width:52px;
  height:52px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(11,105,179,.10);
  border:1px solid rgba(11,105,179,.16);
  color:rgba(11,105,179,.96);
  box-shadow:0 10px 26px rgba(8,58,102,.10);
 }

 .uni-mini-title{margin-top:10px; font-weight:900; color:rgba(8,58,102,.96);}

 .uni-page .uni-ppe-card{
  display:flex;
  gap:12px;
  align-items:center;
  border-radius:16px;
  border:1px solid rgba(8,58,102,.12);
  background:rgba(255,255,255,.92);
  padding:14px;
  box-shadow:0 14px 40px rgba(8,58,102,.08);
  height:100%;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
 }

 .uni-page .uni-ppe-card:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 52px rgba(8,58,102,.14);
  border-color:rgba(229,57,53,.22);
 }

 .uni-page .uni-ppe-icon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(229,57,53,.12);
  border:1px solid rgba(229,57,53,.18);
  color:rgba(229,57,53,.96);
  flex:0 0 auto;
 }

 .uni-page .uni-ppe-title{
  font-weight:900;
  color:rgba(8,58,102,.96);
 }

 .uni-page .uni-ppe-text{flex:1; min-width:0;}
 .uni-page .uni-ppe-desc{margin-top:2px; line-height:1.35;}

 .uni-page .uni-ppe-stack{
  position:relative;
  display:grid;
  gap:14px;
 }

 .uni-page .uni-ppe-image{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(8,58,102,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(243,247,251,.88));
  box-shadow:0 18px 54px rgba(8,58,102,.12);
  min-height:240px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
 }

 .uni-page .uni-ppe-image img{
  width:100%;
  height:100%;
  object-fit:cover;
 }

 .uni-page .uni-ppe-image--small{
  min-height:200px;
 }

 .uni-page .uni-ppe-fallback{
  padding:18px;
  text-align:center;
 }

 @media (max-width: 575.98px){
  .uni-page .lead{font-size:1.12rem;}
  .uni-page p{font-size:1.02rem;}
  .uni-page .uni-ppe-card{align-items:flex-start;}
 }

 .ff-hero-media{position:relative; display:flex; justify-content:center; align-items:center;}

 .ff-hero-media::before{
  content:"";
  position:absolute;
  width:min(520px, 88%);
  height:min(520px, 88%);
  border-radius:999px;
  background:rgba(8,58,102,.06);
  top:50%;
  left:50%;
  transform:translate(-40%, -50%);
  animation:ffPulseHalo 7.5s ease-in-out infinite;
 }

 @keyframes ffPulseHalo{
  0%{transform:translate(-40%, -50%) scale(.985); opacity:.65;}
  50%{transform:translate(-40%, -50%) scale(1.03); opacity:1;}
  100%{transform:translate(-40%, -50%) scale(.985); opacity:.65;}
 }

 .ff-hero-media-circle{
  width:min(520px, 92%);
  aspect-ratio:1 / 1;
  border-radius:999px;
  overflow:hidden;
  background:#fff;
  border:10px solid rgba(255,255,255,.95);
  box-shadow:0 22px 64px rgba(8,58,102,.18);
  position:relative;
 }

 .ff-hero-media-circle img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
 }

 .ff-ext-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
 }

 .ff-ext-card{
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 16px 44px rgba(8,58,102,.14);
  border:1px solid rgba(8,58,102,.10);
  min-height:170px;
  display:flex;
  flex-direction:column;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position:relative;
  isolation:isolate;
  will-change:transform;
  animation:ffCardFloat 6.2s ease-in-out infinite;
 }

 .ff-ext-card:nth-child(2){animation-duration:7.1s; animation-delay:-1.2s;}
 .ff-ext-card:nth-child(3){animation-duration:6.7s; animation-delay:-2.3s;}
 .ff-ext-card:nth-child(4){animation-duration:7.8s; animation-delay:-1.8s;}

 .ff-ext-card::after{
  content:"";
  position:absolute;
  inset:-2px;
  background:linear-gradient(120deg, rgba(229,57,53,.0), rgba(229,57,53,.55), rgba(11,105,179,.50), rgba(255,152,0,.55), rgba(229,57,53,.0));
  background-size:260% 260%;
  opacity:.14;
  filter:blur(12px);
  pointer-events:none;
  z-index:0;
  animation:ffGlowSweep 5.8s ease-in-out infinite;
 }

 .ff-ext-card > *{position:relative; z-index:1;}

 .ff-ext-card:hover{
  transform:translateY(-5px);
  box-shadow:0 26px 74px rgba(8,58,102,.18);
  border-color:rgba(229,57,53,.22);
  animation-play-state:paused;
 }

 .ff-ext-card:hover::after{opacity:.32;}

 .ff-ext-cap{
  background:rgba(8,58,102,.92);
  color:#fff;
  font-weight:800;
  padding:8px 12px;
  font-size:1rem;
  background-size:200% 200%;
  animation:ffCapGlow 10s ease-in-out infinite;
  position:relative;
  overflow:hidden;
 }

 .ff-ext-cap::after{
  content:"";
  position:absolute;
  inset:-2px;
  background:linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.22) 18%, rgba(255,152,0,.28) 40%, rgba(229,57,53,.30) 62%, rgba(11,105,179,.26) 82%, rgba(255,255,255,0) 100%);
  background-size:220% 100%;
  transform:translateX(-30%);
  opacity:.16;
  animation:ffCapSweep 3.9s ease-in-out infinite;
  pointer-events:none;
 }

 .ff-ext-card:hover .ff-ext-cap::after{opacity:1;}

 @keyframes ffCapSweep{
  0%{background-position:0% 50%; opacity:.0;}
  35%{opacity:.0;}
  55%{opacity:.9;}
  100%{background-position:120% 50%; opacity:.0;}
 }

 @keyframes ffGlowSweep{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
 }

 @keyframes ffCardFloat{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-9px);}
 }

 @keyframes ffCapGlow{
  0%{filter:saturate(1) brightness(1);}
  50%{filter:saturate(1.12) brightness(1.05);}
  100%{filter:saturate(1) brightness(1);}
 }

 .ff-ext-body{
  padding:12px 12px 14px;
  font-size:.98rem;
  line-height:1.6;
  color:#fff;
  flex:1;
 }

 .ff-ext-media{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px;
  border-radius:14px;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(8,58,102,.16);
  transition:transform .18s ease;
 }

 .ff-ext-card:hover .ff-ext-media{transform:translateY(-2px);}

 .ff-ext-card:hover .ff-ext-media img{
  animation:ffWiggle .55s ease-in-out;
 }

 @keyframes ffWiggle{
  0%{transform:translateX(0) rotate(0deg);}
  18%{transform:translateX(-4px) rotate(-3.2deg);}
  36%{transform:translateX(4px) rotate(2.8deg);}
  54%{transform:translateX(-3px) rotate(-2.0deg);}
  72%{transform:translateX(3px) rotate(1.5deg);}
  100%{transform:translateX(0) rotate(0deg);}
 }

 .ff-ext-media img{
  width:100%;
  height:160px;
  object-fit:contain;
  display:block;
  filter:drop-shadow(0 16px 22px rgba(0,0,0,.22));
 }

 .ff-ext-text{margin-top:10px; font-size:1.06rem; line-height:1.7;}

 .ff-ext-card--co2 .ff-ext-body{background:linear-gradient(180deg, rgba(11,105,179,.94), rgba(8,58,102,.96));}
 .ff-ext-card--foam .ff-ext-body{background:linear-gradient(180deg, rgba(0,150,136,.92), rgba(0,105,92,.96));}
 .ff-ext-card--drychem .ff-ext-body{background:linear-gradient(180deg, rgba(255,152,0,.92), rgba(229,57,53,.92));}
 .ff-ext-card--drypowder .ff-ext-body{background:linear-gradient(180deg, rgba(229,57,53,.92), rgba(183,28,28,.96));}

 .ff-gallery-card{
  height:100%;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(8,58,102,.10);
  background:rgba(255,255,255,.92);
  box-shadow:0 14px 40px rgba(8,58,102,.08);
  padding:14px 14px 12px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
 }

 .ff-gallery-card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 52px rgba(8,58,102,.14);
  border-color:rgba(8,58,102,.18);
 }

 .ff-gallery-card:hover img{animation:ffWiggle .55s ease-in-out;}

 .ff-gallery .ff-gallery-card{
  will-change:transform;
  animation:ffCardFloat 7.4s ease-in-out infinite;
 }

 .ff-gallery .ff-gallery-card:hover{animation-play-state:paused;}

 .ff-gallery .ff-gallery-card:nth-child(2n){animation-duration:8.2s; animation-delay:-1.4s;}
 .ff-gallery .ff-gallery-card:nth-child(3n){animation-duration:7.9s; animation-delay:-2.6s;}

 .ff-gallery-card img{
  width:100%;
  height:150px;
  object-fit:contain;
  display:block;
  filter:drop-shadow(0 18px 26px rgba(8,58,102,.18));
 }

 .ff-gallery-caption{
  width:100%;
  text-align:center;
  font-weight:800;
  letter-spacing:-.01em;
  color:rgba(8,58,102,.92);
  font-size:.92rem;
 }

 .ff-equipment-media{position:relative; min-height:420px;}

 .ff-equipment-photo{
  background:rgba(255,255,255,.86);
  border:6px solid rgba(255,255,255,.92);
  border-radius:22px;
  box-shadow:0 18px 54px rgba(8,58,102,.14);
  overflow:hidden;
 }

 .ff-equipment-photo img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  background:#fff;
 }

 .ff-equipment-photo{height:360px; display:flex; align-items:center; justify-content:center; padding:10px;}
 .ff-equipment-photo--small{position:absolute; right:0; bottom:-10px; width:min(240px, 56%); height:220px;}

 .ff-list-card{
  border:1px solid rgba(8,58,102,.10);
  background:rgba(255,255,255,.86);
  border-radius:18px;
  padding:18px;
  box-shadow:0 14px 40px rgba(8,58,102,.08);
  position:relative;
  overflow:hidden;
 }

 .ff-list-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  background:linear-gradient(180deg, var(--najuna-accent), var(--najuna-blue));
 }

 .ff-list-title{font-weight:800; color:rgba(229,57,53,.96); margin-bottom:10px; font-size:18px !important;}
 .ff-list{padding-left:1.1rem; font-size:17px !important; line-height:1.9 !important;}
 .ff-list li{margin-bottom:.45rem;}
 .ff-list li:last-child{margin-bottom:0;}

 .ff-clean-agent{
  background:rgba(8,58,102,.06);
  border:1px solid rgba(8,58,102,.10);
  border-radius:18px;
  padding:18px;
 }

 .ff-clean-title{font-weight:900; color:rgba(229,57,53,.96); margin-bottom:8px;}
 .ff-clean-text{color:rgba(8,58,102,.92); font-size:18px !important; line-height:1.95 !important;}

 .ff-cert{
  border-radius:18px;
  padding:16px 18px;
  border:1px dashed rgba(8,58,102,.18);
  background:rgba(255,255,255,.72);
 }

 .ff-cert-text{font-size:17px !important; color:rgba(8,58,102,.84); line-height:1.95 !important;}
.ff-cert-text p{margin-bottom:1rem !important;}
.ff-cert-list{margin:0; padding-left:20px;}
.ff-cert-list li{margin-bottom:12px; line-height:1.6;}
.ff-cert-list li:last-child{margin-bottom:0;}
.ff-cert-list li strong{color:rgba(8,58,102,.92);}

 .ff-systems .ff-equipment-photo{
  position:relative;
  transition:transform .28s ease, box-shadow .28s ease;
 }

 .ff-systems .ff-equipment-photo::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  pointer-events:none;
  opacity:.0;
  background:radial-gradient(420px 220px at 18% 18%, rgba(229,57,53,.22), transparent 62%), radial-gradient(520px 280px at 86% 22%, rgba(11,105,179,.20), transparent 60%);
  transition:opacity .28s ease;
 }

 .ff-systems .ff-equipment-photo:hover{
  transform:translateY(-6px) rotate(-.25deg);
  box-shadow:0 26px 74px rgba(8,58,102,.18);
 }

 .ff-systems .ff-equipment-photo:hover::after{opacity:1;}

 .ff-float{animation:ffFloat 6.4s ease-in-out infinite; will-change:transform;}
 .ff-float--slow{animation-duration:8.6s; animation-direction:alternate;}

 @keyframes ffFloat{
  0%,100%{transform:translateY(0) translateX(0);}
  50%{transform:translateY(-10px) translateX(2px);}
 }

 .ff-shine{position:relative; overflow:hidden;}

 .ff-shine::after{
  content:"";
  position:absolute;
  inset:-60% -40%;
  background:linear-gradient(120deg, transparent 44%, rgba(255,255,255,.55) 50%, transparent 56%);
  transform:translateX(-55%) rotate(12deg);
  opacity:.0;
  animation:ffSheen 7.5s ease-in-out infinite;
  pointer-events:none;
 }

 @keyframes ffSheen{
  0%{opacity:0; transform:translateX(-60%) rotate(12deg);}
  12%{opacity:.35;}
  26%{opacity:0; transform:translateX(70%) rotate(12deg);}
  100%{opacity:0; transform:translateX(70%) rotate(12deg);}
 }

 .ff-systems .ff-list-card,
 .ff-systems .ff-clean-agent,
 .ff-systems .ff-cert{
  transition:transform .26s ease, box-shadow .26s ease, border-color .26s ease;
 }

 .ff-systems .ff-list-card:hover,
 .ff-systems .ff-clean-agent:hover,
 .ff-systems .ff-cert:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 64px rgba(8,58,102,.14);
  border-color:rgba(11,105,179,.22);
 }

 @media (prefers-reduced-motion: reduce){
  .ff-float{animation:none !important;}
  .ff-shine::after{animation:none !important; opacity:0 !important;}
  .ff-systems .ff-equipment-photo,
  .ff-systems .ff-list-card,
  .ff-systems .ff-clean-agent,
  .ff-systems .ff-cert{transition:none !important;}
 }

 @media (max-width: 1199.98px){
  .ff-ext-grid{grid-template-columns:repeat(2, minmax(0, 1fr));}
 }

 @media (max-width: 991.98px){
  .ff-equipment-media{min-height:auto;}
  .ff-equipment-photo{height:320px;}
  .ff-equipment-photo--small{position:relative; right:auto; bottom:auto; width:100%; height:240px; margin-top:14px;}
 }

 @media (max-width: 575.98px){
  .ff-ext-grid{grid-template-columns:1fr;}
 }
