:root{
  --orange:#D9A31E;
  --orange-dark:#b77a0f;
  --gold-light:#f4cf69;
  --black:#050505;
  --charcoal:#111214;
  --ink:#171717;
  --muted:#656565;
  --line:rgba(217,163,30,.22);
  --paper:#ffffff;
  --soft:#f7f4ec;
  --warm:#efe5d2;
  --shadow:0 14px 36px rgba(0,0,0,.16);
  --max:1180px;
}

*{ box-sizing:border-box; }
html{
  scroll-behavior:smooth;
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}
body{
  margin:0;
  font-family:"Roboto", Arial, Helvetica, sans-serif;
  color:var(--ink);
  background:var(--soft);
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}
body.lock-scroll{ overflow:hidden; }
a{ color:inherit; text-decoration:none; }
button,input,select,textarea{ font:inherit; }
img{
  max-width:100%;
  height:auto;
}
.wa-mark{
  width:1em;
  height:1em;
  display:inline-block;
  background:currentColor;
  -webkit-mask:url("../images/whatsapp-reference.png") center / contain no-repeat;
  mask:url("../images/whatsapp-reference.png") center / contain no-repeat;
}
.wa-gold{
  color:#d9a31e;
}
.wrap{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(5,5,5,.96);
  border-bottom:1px solid rgba(217,163,30,.35);
  box-shadow:0 12px 30px rgba(0,0,0,.22);
  backdrop-filter:blur(10px);
}
.header-row{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  min-width:0;
}
.brand{
  display:flex;
  align-items:center;
  flex:0 0 auto;
}
.brand img{
  height:70px;
  width:auto;
  display:block;
  object-fit:contain;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:36px;
  color:rgba(255,255,255,.88);
  font-size:16px;
  font-weight:500;
  flex:1 1 auto;
  letter-spacing:0;
  min-width:0;
  flex-wrap:wrap;
  row-gap:8px;
}
.nav a,
.nav summary{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  cursor:pointer;
  outline:none;
}
.nav a:hover,
.nav summary:hover{
  color:var(--gold-light);
}
.nav-details{
  position:relative;
}
.nav-details summary{
  list-style:none;
}
.nav-details summary::-webkit-details-marker{
  display:none;
}
.nav-details summary::after{
  content:"";
  width:7px;
  height:7px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg);
  margin-left:8px;
  margin-top:-4px;
}
.submenu{
  position:absolute;
  top:calc(100% + 8px);
  left:50%;
  transform:translateX(-50%);
  min-width:270px;
  padding:8px;
  background:#fff;
  border:1px solid rgba(217,163,30,.34);
  box-shadow:0 18px 34px rgba(0,0,0,.24);
  border-radius:8px;
}
.submenu a{
  display:flex;
  min-height:auto;
  padding:12px;
  border-radius:6px;
  color:#343b45;
  font-size:13px;
  text-transform:none;
}
.submenu a:hover{
  background:rgba(217,163,30,.12);
  color:var(--black);
}
.header-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  flex:0 0 auto;
}
.menu-toggle{
  display:none;
}
.mini-btn, .phone-pill, .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.redirect-page{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:32px 20px;
  background:var(--soft);
}
.redirect-card{
  width:min(540px, 100%);
  padding:42px 34px;
  border:1px solid rgba(217,163,30,.32);
  border-radius:10px;
  background:#fff;
  text-align:center;
}
.redirect-logo{
  width:96px;
  height:auto;
  display:block;
  margin:0 auto 22px;
}
.redirect-card span{
  display:block;
  color:var(--orange-dark);
  font-size:13px;
  font-weight:700;
  margin-bottom:10px;
}
.redirect-card h1{
  margin:0 0 14px;
  font-size:clamp(28px, 5vw, 40px);
  line-height:1.1;
}
.redirect-card p{
  margin:0 auto 24px;
  color:#4d5560;
  line-height:1.7;
}
.redirect-card strong{
  color:var(--orange-dark);
}
.redirect-back{
  display:block;
  width:max-content;
  margin:18px auto 0;
  color:#4d5560;
  font-weight:600;
}
.redirect-back:hover{
  color:var(--orange-dark);
}
.mini-btn{
  background:#fff;
  border-color:rgba(217,163,30,.45);
  color:var(--black);
}
.mini-btn.primary{
  background:var(--orange);
  color:#111;
  box-shadow:0 10px 22px rgba(217,163,30,.28);
}
.btn.accent{
  background:var(--orange);
  color:#111;
  box-shadow:0 10px 22px rgba(217,163,30,.28);
  padding:12px 28px;
}
.phone-pill{
  background:#fff;
  color:var(--black);
  border-color:rgba(217,163,30,.35);
}
.btn.light{
  background:rgba(255,255,255,.95);
  color:#111;
}
.btn.outline{
  background:#fff;
  border-color:rgba(217,163,30,.45);
  color:var(--black);
}
.btn:hover,
.mini-btn:hover,
.phone-pill:hover{
  transform:translateY(-1px);
}
.button-row,
.form-actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.section-cta{
  display:flex;
  justify-content:center;
  margin:60px 0 -10px;
}

.hero{
  position:relative;
  min-height:572px;
  overflow:hidden;
  background:var(--black);
}
.hero-picture,
.hero-photo{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
.hero-picture{
  display:block;
}
.hero-photo{
  object-fit:cover;
  object-position:center center;
}
.hero-shade{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.46) 54%, rgba(0,0,0,.18));
}
.hero-content{
  position:relative;
  z-index:1;
  min-height:572px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  color:#fff;
  padding:52px 0;
}
.kicker{
  display:inline-flex;
  padding:8px 12px;
  border:1px solid rgba(244,207,105,.42);
  border-radius:999px;
  background:rgba(217,163,30,.16);
  font-size:12px;
  font-weight:600;
}
.hero h1{
  max-width:720px;
  margin:16px 0 12px;
  font-size:54px;
  line-height:1.04;
}
.hero p{
  max-width:680px;
  margin:0 0 22px;
  font-size:17px;
  line-height:1.65;
  color:rgba(255,255,255,.92);
}

.section{
  padding:70px 0;
  background:#fff;
}
.section-muted{
  background:var(--soft);
}
.section-title{
  max-width:820px;
  margin:0 auto 34px;
  text-align:center;
}
.section-title.align-left{
  text-align:left;
  margin-left:0;
  margin-right:0;
}
.section-title span,
.contact-info-panel span{
  display:inline-flex;
  color:var(--orange-dark);
  font-size:13px;
  font-weight:600;
  margin-bottom:10px;
}
.section-title h2,
.contact-info-panel h2{
  margin:0 0 12px;
  font-size:38px;
  line-height:1.12;
}
.section-title p{
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
}

.steps,
.product-grid,
.reviews-grid,
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:22px;
  padding:40px 0;
}
.product-grid{
  align-items:stretch;
  grid-auto-rows:1fr;
}
.step-card,
.product-card,
.review-card,
.contact-form-panel,
.contact-info-panel,
.gallery-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:8px;
}
.step-card{
  grid-column:span 4;
  padding:46px 28px;
}
.step-card strong{
  display:block;
  color:var(--orange-dark);
  font-size:13px;
  margin-bottom:10px;
}
.step-card h3{
  margin:0 0 10px;
  font-size:20px;
}
.step-card p,
.product-card p,
.review-card p,
.contact-info-panel p,
.product-copy p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.product-card{
  grid-column:span 6;
  overflow:hidden;
  display:grid;
  grid-template-columns:44% 1fr;
  min-height:294px;
  height:100%;
  transition:background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.product-media{
  margin:0;
  min-height:294px;
  height:100%;
  overflow:hidden;
}
.product-media img{
  width:100%;
  height:100%;
  min-height:0;
  display:block;
  object-fit:cover;
  transition:transform .35s ease;
}
.product-card-body{
  padding:24px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.product-card:hover,
.product-card:focus-within{
  background:#D9A31E;
  border-color:#D9A31E;
}
.product-card:hover .product-media img,
.product-card:focus-within .product-media img{
  transform:scale(1.1);
}
.product-card:hover p,
.product-card:focus-within p{
  color:rgba(17,17,17,.78);
}
.product-card:hover .text-link,
.product-card:focus-within .text-link{
  background:#b77a0f;
  color:#fff;
}
.product-card h3{
  margin:0 0 10px;
  font-size:24px;
}
.text-link{
  display:inline-flex;
  align-items:center;
  align-self:flex-start;
  margin-top:18px;
  padding:11px 16px;
  border-radius:18px;
  background:var(--orange);
  color:#111;
  font-weight:500;
  transition:background .2s ease, color .2s ease, transform .15s ease;
}

.cleaning-feature-section{
  padding:0 0 70px;
}
.cleaning-feature{
  display:grid;
  grid-template-columns:45% 1fr;
  align-items:stretch;
  overflow:hidden;
  background:#fff;
  border:1px solid var(--line);
  border-radius:8px;
}
.cleaning-feature-media{
  min-height:340px;
  margin:0;
  overflow:hidden;
  background:#f1f1f1;
}
.cleaning-feature-media img{
  width:100%;
  height:100%;
  min-height:340px;
  display:block;
  object-fit:cover;
}
.cleaning-feature-media img.placeholder-photo,
.gallery-card img.placeholder-photo{
  object-fit:contain;
  background:#000;
}
.cleaning-feature-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  padding:46px;
}
.cleaning-feature-copy span{
  display:inline-flex;
  color:var(--orange-dark);
  font-size:13px;
  font-weight:600;
  margin-bottom:10px;
}
.cleaning-feature-copy h2{
  margin:0 0 14px;
  font-size:34px;
  line-height:1.12;
}
.cleaning-feature-copy p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}
.cleaning-feature-copy p + p{
  margin-top:12px;
}
.cleaning-feature-actions{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:24px;
}
.cleaning-feature-actions .btn.accent{
  min-width:210px;
  padding:0 34px;
}
.cleaning-feature-actions .text-link{
  margin-top:0;
  background:#fff;
  border:1px solid rgba(217,163,30,.45);
  color:var(--black);
}
.cleaning-feature-actions .text-link:hover,
.cleaning-feature-actions .text-link:focus-visible{
  background:#b77a0f;
  color:#fff;
  outline:none;
}

.reviews-section{
  background:#fff;
}
.review-card{
  grid-column:span 4;
  padding:24px;
  min-height:190px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.stars{
  color:var(--orange);
  font-size:20px;
  margin-bottom:14px;
}
.review-card strong{
  display:block;
  margin-top:18px;
  color:var(--black);
}
.review-dots{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  margin:24px 0 0;
}
.review-dot{
  width:10px;
  height:10px;
  padding:0;
  border:0;
  border-radius:999px;
  background:rgba(217,163,30,.35);
  cursor:pointer;
  transition:width .2s ease, background .2s ease, transform .2s ease;
}
.review-dot.is-active{
  width:26px;
  background:#D9A31E;
}
.review-dot:hover,
.review-dot:focus-visible{
  background:#b77a0f;
  transform:scale(1.08);
  outline:none;
}

.contact-section{
  background:var(--warm);
}
.contact-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.25fr) minmax(300px, .75fr);
  gap:24px;
  align-items:stretch;
}
.contact-form-panel,
.contact-info-panel{
  padding:28px;
}
.contact-info-panel{
  background:var(--black);
  color:#fff;
  border-color:rgba(217,163,30,.36);
}
.contact-logo{
  width:min(182px, 100%);
  height:auto;
  display:block;
  margin:8px 0 24px;
  border-radius:6px;
}
.contact-info-panel p{
  color:rgba(255,255,255,.78);
  margin:0 0 22px;
}
.contact-info-panel a{
  color:#fff;
  text-decoration:underline;
  text-underline-offset:4px;
}
.contact-methods{
  display:flex;
  align-items:flex-start;
  gap:24px;
  flex-wrap:wrap;
}
.contact-methods p{
  min-width:145px;
}
.contact-methods a{
  text-decoration:none;
}
.contact-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#fff;
}
.contact-label img{
  width:18px;
  height:18px;
  display:block;
  object-fit:contain;
}
.contact-label .wa-mark{
  width:18px;
  height:18px;
  flex:0 0 auto;
}
.contact-benefits{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  margin-top:34px;
}
.benefit-box{
  min-height:132px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:16px 12px;
  border:1px solid rgba(217,163,30,.42);
  border-radius:8px;
  background:rgba(255,255,255,.04);
  text-align:center;
}
.benefit-box img{
  width:34px;
  height:34px;
  display:block;
}
.benefit-box strong{
  max-width:150px;
  color:#fff;
  font-size:14px;
  line-height:1.35;
  font-weight:600;
}
.contact-form{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
}
.contact-form > label{
  display:flex;
  flex-direction:column;
  gap:7px;
  color:#2d2d2d;
  font-size:13px;
  font-weight:600;
}
.contact-form > label.field-full{
  grid-column:1 / -1;
}
.form-honeypot{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}
.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  border:1px solid rgba(20,24,30,.16);
  border-radius:8px;
  padding:13px 12px;
  background:#fff;
  color:var(--ink);
  outline:none;
}
.contact-form textarea{
  min-height:126px;
  resize:vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  border-color:rgba(217,163,30,.62);
  box-shadow:0 0 0 3px rgba(217,163,30,.18);
}
.send-choice{
  grid-column:1 / -1;
  border:0;
  padding:0;
  margin:0;
}
.send-choice legend{
  margin:0 0 10px;
  color:#111827;
  font-size:16px;
  font-weight:600;
}
.send-options{
  display:flex;
  flex-wrap:wrap;
  gap:14px 20px;
  padding:0 0 4px;
  margin:0;
  border:0;
}
.contact-form .send-option{
  display:inline-flex;
  flex-direction:row;
  align-items:center;
  gap:10px;
  width:fit-content;
  min-height:46px;
  padding:10px 14px;
  border:1px solid #cfd8dd;
  border-radius:8px;
  background:#fbfcfc;
  color:#111827;
  cursor:pointer;
  font-size:16px;
  font-weight:600;
}
.send-option input[type="radio"]{
  width:16px;
  height:16px;
  margin:0;
  padding:0;
  flex:0 0 auto;
  background:transparent;
  border:0;
  accent-color:#D9A31E;
}
.send-option-icon{
  width:26px;
  height:26px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
}
.wa-badge{
  width:22px;
  height:22px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:#fff;
  color:#D9A31E;
  border:1px solid rgba(217,163,30,.35);
}
.wa-badge .wa-mark{
  width:14px;
  height:14px;
}
.send-option-icon img,
.send-option-icon svg{
  width:22px;
  height:22px;
  display:block;
}
.send-option-icon svg{
  fill:none;
  stroke:#D9A31E;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.send-option:has(input:checked){
  border-color:#D9A31E;
  background:#fff7f3;
  box-shadow:0 0 0 2px rgba(215,79,47,.08);
}
.form-actions{
  grid-column:1 / -1;
  justify-content:flex-end;
  margin-top:4px;
}
.form-status{
  display:none;
  grid-column:1 / -1;
  margin:0;
  padding:12px 14px;
  border-radius:10px;
  font-size:14px;
  font-weight:600;
  line-height:1.45;
}
.form-status.is-visible{
  display:block;
}
.form-status.is-success{
  background:#e9f7ef;
  color:#166534;
  border:1px solid rgba(22,101,52,.2);
}
.form-status.is-error{
  background:#fff1f2;
  color:#9f1239;
  border:1px solid rgba(159,18,57,.2);
}

.product-hero{
  background:var(--black);
  color:#fff;
  padding:40px 0;
  display:flex;
  align-items:center;
}
.product-hero-grid{
  width:min(100% - 48px, var(--max));
}
.product-hero h1{
  margin:0 0 16px;
  font-size:46px;
  line-height:1.08;
}
.product-hero p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.7;
}
.product-copy{
  width:min(1180px, calc(100% - 40px));
  max-width:1180px;
  margin:0 auto;
}
.product-copy h2{
  margin:0 0 20px;
  font-size:30px;
  line-height:1.2;
}
.product-copy p + p{
  margin-top:16px;
}
.product-copy h3{
  margin:30px 0 20px;
  font-size:24px;
  line-height:1.2;
}
.product-copy h4{
  margin:20px 0 8px;
  font-size:18px;
  line-height:1.25;
}
.product-copy ul{
  margin:0;
  padding-left:20px;
  color:var(--muted);
  line-height:1.65;
}
.product-copy li + li{
  margin-top:6px;
}
.cleaning-whatsapp-cta{
  display:flex;
  margin:22px 0 18px;
}
.cleaning-whatsapp-cta .btn.accent{
  padding:0 48px;
}
.service-area{
  display:inline-flex;
  align-items:center;
  gap:12px;
  margin:0 0 10px;
  padding:13px 18px;
  border:1px solid rgba(217,163,30,.36);
  border-left:4px solid var(--orange);
  border-radius:10px;
  background:rgba(217,163,30,.12);
  color:var(--text);
  font-weight:600;
}
.service-area::before{
  content:"";
  width:10px;
  height:10px;
  flex:0 0 auto;
  border-radius:999px;
  background:var(--orange);
  box-shadow:0 0 0 5px rgba(217,163,30,.16);
}
.screen-levels{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
  margin:12px 0 4px;
}
.screen-levels article{
  background:#f1f1f1;
  padding:15px 20px;
  border-radius:10px;
}
.screen-levels h4{
  margin-top:0;
}
.screen-levels p{
  margin:0;
}
.gallery-cta{
  display:flex;
  justify-content:center;
  margin:34px 0 0;
}
.gallery-card{
  grid-column:span 4;
  overflow:hidden;
}
.gallery-trigger{
  display:block;
  width:100%;
  overflow:hidden;
  cursor:zoom-in;
}
.gallery-card img{
  width:100%;
  aspect-ratio:4 / 3;
  object-fit:cover;
  display:block;
  transition:transform .25s ease;
}
.gallery-trigger:hover img,
.gallery-trigger:focus-visible img{
  transform:scale(1.04);
}
.gallery-trigger:focus-visible{
  outline:3px solid rgba(217,163,30,.62);
  outline-offset:4px;
}
.lightbox-modal{
  position:fixed;
  inset:0;
  z-index:120;
  display:none;
  align-items:center;
  justify-content:center;
  padding:32px;
  background:rgba(0,0,0,.84);
}
.lightbox-modal.is-open{
  display:flex;
}
.lightbox-content{
  position:relative;
  max-width:min(1120px, 100%);
  max-height:calc(100vh - 64px);
}
.lightbox-content img{
  width:auto;
  max-width:100%;
  max-height:calc(100vh - 64px);
  display:block;
  object-fit:contain;
  border-radius:8px;
  background:#111;
  box-shadow:0 24px 60px rgba(0,0,0,.42);
}
.lightbox-close{
  position:absolute;
  top:14px;
  right:14px;
  width:44px;
  height:44px;
  border:0;
  border-radius:999px;
  background:rgba(217,163,30,.84);
  color:#111;
  box-shadow:0 12px 26px rgba(0,0,0,.32);
  cursor:pointer;
  font-size:24px;
  font-weight:600;
  line-height:1;
  z-index:2;
  transition:transform .15s ease, background .15s ease, color .15s ease;
}
.lightbox-close:hover,
.lightbox-close:focus-visible{
  background:rgba(183,122,15,.94);
  color:#fff;
  outline:none;
  transform:translateY(-1px);
}

.clients-section{
  background:#fff;
}
.clients-section .section-title{
  margin-bottom:30px;
}
.clients-carousel{
  display:grid;
  grid-template-columns:44px minmax(0, 1fr) 44px;
  gap:14px;
  align-items:center;
}
.clients-viewport{
  overflow:hidden;
}
.clients-track{
  --clients-visible:6;
  display:flex;
  gap:16px;
  transition:transform .35s ease;
  will-change:transform;
}
.client-logo-card{
  flex:0 0 calc((100% - (16px * (var(--clients-visible) - 1))) / var(--clients-visible));
  height:122px;
  display:grid;
  place-items:center;
  padding:10px 18px;
  margin:0;
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
  transition:transform .2s ease;
}
.client-logo-card:hover{
  transform:translateY(-2px);
}
.client-logo-card img{
  width:100%;
  height:70px;
  object-fit:contain;
  display:block;
}
.client-logo-visible-on-white{
  filter:brightness(0);
  opacity:.9;
}
.client-arrow{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border:0;
  border-radius:0;
  background:transparent;
  color:#111;
  cursor:pointer;
  font-size:38px;
  font-weight:500;
  line-height:1;
  transition:color .2s ease, transform .15s ease;
}
.client-arrow:hover,
.client-arrow:focus-visible{
  background:transparent;
  color:#D9A31E;
  transform:translateY(-1px);
  outline:none;
}
.client-arrow.is-hidden,
.client-dots.is-hidden{
  display:none;
}
.client-dots{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  margin:22px 0 0;
}
.client-dot{
  width:10px;
  height:10px;
  padding:0;
  border:0;
  border-radius:999px;
  background:rgba(217,163,30,.35);
  cursor:pointer;
  transition:width .2s ease, background .2s ease, transform .2s ease;
}
.client-dot.is-active{
  width:26px;
  background:#D9A31E;
}
.client-dot:hover,
.client-dot:focus-visible{
  background:#b77a0f;
  transform:scale(1.08);
  outline:none;
}

.footer{
  padding:26px 0;
  background:var(--black);
  color:rgba(255,255,255,.72);
  font-size:14px;
}
.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer-copy{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.footer-copy a{
  color:#fff;
  font-weight:500;
  text-decoration:none;
  transition:color .15s ease;
}
.footer-copy a:hover,
.footer-copy a:focus-visible{
  color:var(--orange);
  outline:none;
}
.footer-agency{
  display:flex;
  align-items:center;
  justify-content:flex-end;
}
.footer-g2-logo{
  width:auto;
  height:38px;
  display:block;
}
.whats-float{
  position:fixed;
  right:20px;
  bottom:20px;
  width:70px;
  height:70px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#25D366;
  color:#fff;
  border:0;
  box-shadow:0 12px 28px rgba(0,0,0,.24);
  z-index:60;
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.whats-float .wa-mark{
  width:36px;
  height:36px;
  color:#fff;
  display:block;
}
.whats-float:hover{
  transform:translateY(-4px) scale(1.07);
  background:#1EBE5D;
  filter:saturate(1.08);
  box-shadow:0 18px 36px rgba(0,0,0,.30), 0 0 0 8px rgba(37,211,102,.14);
}
.whats-float:active{
  transform:translateY(-1px) scale(1.01);
}

@media (max-width:1080px){
  .header-row{
    min-height:auto;
    padding:12px 0;
    flex-wrap:wrap;
  }
  .brand img{ height:64px; }
  .nav{
    order:3;
    flex-basis:100%;
    justify-content:flex-start;
    gap:16px;
    overflow-x:auto;
    padding-bottom:4px;
  }
  .submenu{
    left:0;
    transform:none;
  }
  .product-card{
    grid-template-columns:1fr;
  }
  .cleaning-feature-copy{
    padding:38px;
  }
  .product-media,
  .product-media img{
    height:240px;
    min-height:240px;
  }
  .contact-grid,
  .product-hero-grid{
    grid-template-columns:1fr;
  }
  .clients-track{
    --clients-visible:3;
  }
  .contact-logo{
    width:min(230px, 100%);
  }
}

@media (max-width:760px){
  .wrap{ width:min(100% - 28px, var(--max)); }
  .site-header{
    position:sticky;
  }
  .header-row{
    position:relative;
    display:grid;
    grid-template-columns:44px minmax(0, 1fr) 44px;
    justify-items:center;
    align-items:center;
    gap:0;
    min-height:96px;
    padding:12px 0;
    flex-wrap:nowrap;
  }
  .brand{
    grid-column:2;
    grid-row:1;
    justify-content:center;
  }
  .brand img{
    height:78px;
  }
  .menu-toggle{
    grid-column:3;
    grid-row:1;
    width:44px;
    height:44px;
    display:inline-flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    padding:0;
    border:1px solid rgba(217,163,30,.46);
    border-radius:8px;
    background:rgba(255,255,255,.08);
    color:#fff;
    cursor:pointer;
  }
  .menu-toggle span{
    width:20px;
    height:2px;
    display:block;
    border-radius:999px;
    background:currentColor;
    transition:transform .18s ease, opacity .18s ease;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2){
    opacity:0;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
  }
  .mobile-menu-ready .nav,
  .mobile-menu-ready .header-actions{
    display:none;
  }
  .mobile-menu-ready.menu-open .nav,
  .mobile-menu-ready.menu-open .header-actions{
    display:flex;
  }
  .header-actions{
    grid-column:1 / -1;
    grid-row:3;
    order:0;
    width:100%;
    flex-direction:column;
    justify-content:center;
    align-items:stretch;
    gap:10px;
    padding:10px 0 0;
  }
  .mini-btn,
  .phone-pill{
    width:100%;
    min-height:44px;
    padding:11px 14px;
    font-size:14px;
  }
  .nav{
    grid-column:1 / -1;
    grid-row:2;
    order:0;
    width:100%;
    flex-basis:auto;
    flex-direction:column;
    align-items:stretch;
    justify-content:flex-start;
    gap:0;
    margin-top:10px;
    padding:10px 0 0;
    border-top:1px solid rgba(217,163,30,.24);
    overflow:visible;
    font-size:15px;
  }
  .nav a,
  .nav summary{
    width:100%;
    min-height:46px;
    justify-content:space-between;
    padding:0 4px;
  }
  .nav-details{
    width:100%;
  }
  .submenu{
    position:static;
    width:100%;
    margin:0 0 8px;
    padding:4px 0 4px 12px;
    border:0;
    border-left:2px solid rgba(217,163,30,.46);
    border-radius:0;
    background:transparent;
    box-shadow:none;
    transform:none;
    min-width:0;
  }
  .submenu a{
    min-height:42px;
    padding:0 12px;
    color:rgba(255,255,255,.76);
    font-size:14px;
  }
  .submenu a:hover,
  .submenu a:focus-visible{
    background:rgba(217,163,30,.12);
    color:var(--gold-light);
    outline:none;
  }
  .hero,
  .hero-content{
    min-height:517px;
  }
  .hero h1,
  .product-hero h1{
    font-size:36px;
  }
  .hero p{
    font-size:16px;
  }
  .section{
    padding:54px 0;
  }
  .section-title h2,
  .contact-info-panel h2{
    font-size:30px;
  }
  .step-card,
  .product-card,
  .review-card,
  .gallery-card{
    grid-column:span 12;
  }
  .product-grid{
    grid-auto-rows:auto;
  }
  .product-card{
    min-height:0;
    height:auto;
  }
  .cleaning-feature{
    grid-template-columns:1fr;
  }
  .cleaning-feature-media,
  .cleaning-feature-media img{
    min-height:240px;
  }
  .cleaning-feature-copy{
    padding:28px;
  }
  .cleaning-feature-actions{
    width:100%;
  }
  .cleaning-feature-actions .btn.accent,
  .cleaning-feature-actions .text-link{
    width:100%;
  }
  .cleaning-whatsapp-cta .btn.accent{
    width:100%;
    padding:0 18px;
  }
  .service-area{
    width:100%;
  }
  .contact-form{
    grid-template-columns:1fr;
  }
  .contact-benefits{
    grid-template-columns:1fr 1fr;
  }
  .clients-carousel{
    grid-template-columns:38px minmax(0, 1fr) 38px;
    gap:8px;
  }
  .clients-track{
    --clients-visible:2;
    gap:12px;
  }
  .screen-levels{
    grid-template-columns:1fr;
  }
  .client-logo-card{
    flex-basis:calc((100% - (12px * (var(--clients-visible) - 1))) / var(--clients-visible));
    height:104px;
    padding:8px 12px;
  }
  .client-logo-card img{
    height:58px;
  }
  .client-arrow{
    width:38px;
    height:38px;
    font-size:32px;
  }
  .benefit-box{
    min-height:118px;
  }
  .button-row .btn,
  .form-actions .btn{
    width:100%;
  }
  .lightbox-modal{
    padding:18px;
  }
  .lightbox-content{
    max-height:calc(100vh - 36px);
  }
  .lightbox-content img{
    max-height:calc(100vh - 36px);
  }
  .lightbox-close{
    top:10px;
    right:10px;
  }
  .whats-float{
    width:64px;
    height:64px;
    right:15px;
    bottom:15px;
  }
}
