*{
  box-sizing:border-box
}

html{
  scroll-behavior:smooth
}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:#101722;
  background:#fff;
  padding-bottom:74px
}

a{
  -webkit-tap-highlight-color:transparent
}

button{
  font:inherit
}

/* =========================
   HEADER
   ========================= */

header{
  height:82px;
  background:#0b1118;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 5%;
  position:sticky;
  top:0;
  z-index:20;
  box-shadow:0 2px 15px rgba(0,0,0,.18)
}

.brand{
  display:flex;
  align-items:center;
  color:#fff;
  text-decoration:none
}

.brandLogo{
  height:58px;
  width:auto;
  display:block;
  object-fit:contain
}

nav{
  display:flex;
  gap:24px
}

nav a{
  color:#fff;
  text-decoration:none;
  font-weight:800;
  font-size:13px
}

/* =========================
   HERO
   ========================= */

.hero{
  background:#05080c;
  width:100%;
  overflow:hidden
}

.heroImage{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
  background:#05080c
}

/* =========================
   AZIONI PRINCIPALI
   ========================= */

.quickActions{
  background:#0b1118;
  padding:18px 5% 22px;
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap
}

.quickActions a,
.quickActions button,
.actions a,
.actions button{
  padding:16px 21px;
  border-radius:12px;
  font-weight:900;
  text-decoration:none;
  transition:.2s;
  border:0;
  cursor:pointer
}

.primary{
  background:#ffc400;
  color:#101722
}

.whatsappBtn{
  background:#25d366;
  color:#07150b;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px
}

.waIcon{
  width:24px;
  height:24px;
  display:inline-block;
  fill:currentColor;
  flex:0 0 auto
}

.waIcon.big{
  width:36px;
  height:36px
}

.mailBtn{
  background:#fff;
  color:#101722
}

.secondary{
  border:2px solid #fff!important;
  color:#fff;
  background:transparent
}

.secondary.dark{
  border-color:#101722!important;
  color:#101722
}

.hoursNotice{
  width:100%;
  text-align:center;
  color:#dbe4ed;
  font-size:13px;
  font-weight:800;
  margin:2px 0 0
}

/* =========================
   SEZIONI
   ========================= */

.services,
.detail,
.areas,
.contactSection{
  padding:60px 5%
}

.services{
  text-align:center
}

.sectionLabel{
  color:#f5b900;
  font-weight:900;
  letter-spacing:.7px
}

.services h2,
.detail h2,
.areas h2,
.contactSection h2,
.quoteModal h2{
  font-size:clamp(30px,4vw,48px);
  margin:8px 0 14px
}

.intro{
  max-width:720px;
  margin:0 auto 30px;
  color:#5a636d
}

/* =========================
   CARD SERVIZI
   ========================= */

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  max-width:1200px;
  margin:auto
}

.card{
  border:0;
  background:#fff;
  border-radius:16px;
  padding:24px 16px;
  box-shadow:0 8px 30px rgba(0,0,0,.09);
  cursor:pointer;
  transition:.2s;
  color:#101722
}

.card:hover,
.card.active{
  transform:translateY(-4px);
  box-shadow:0 10px 35px rgba(0,0,0,.16);
  outline:2px solid #ffc400
}

.card .icon{
  font-size:34px
}

.card h3{
  font-size:16px;
  margin:12px 0 8px
}

.card p{
  font-size:14px;
  line-height:1.4;
  color:#4d5661
}

/* =========================
   DETTAGLIO SERVIZIO
   ========================= */

.detail{
  background:#f3f5f7
}

.serviceGraphicWrap{
  max-width:1400px;
  margin:0 auto 34px;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 15px 45px rgba(0,0,0,.18);
  background:#0b1118
}

.serviceGraphic{
  width:100%;
  height:auto;
  display:block;
  transition:opacity .22s ease
}

.serviceGraphic.fading{
  opacity:.18
}

.detailBody{
  max-width:1000px;
  margin:auto
}

.detailBody p,
.detailBody li{
  font-size:17px;
  line-height:1.65
}

.detailBody ul{
  padding-left:22px
}

.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:28px
}

/* =========================
   PORTFOLIO LAVORI
   ========================= */

.portfolioSection{
  margin-top:28px
}

.portfolioSection[hidden]{
  display:none!important
}

.portfolioOpen{
  width:100%;
  border:0;
  border-radius:12px;
  padding:17px 20px;
  background:#0b1118;
  color:#fff;
  font-weight:900;
  cursor:pointer;
  transition:.2s;
  box-shadow:0 6px 20px rgba(0,0,0,.12)
}

.portfolioOpen:hover{
  background:#18222e;
  transform:translateY(-2px)
}

.portfolioOpen:active{
  transform:translateY(0)
}

/* =========================
   POPUP PORTFOLIO
   ========================= */

.portfolioBackdrop{
  position:fixed;
  inset:0;
  z-index:160;
  background:rgba(0,0,0,.82);
  backdrop-filter:blur(7px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px
}

.portfolioBackdrop[hidden]{
  display:none!important
}

.portfolioModal{
  position:relative;
  width:min(1000px,100%);
  max-height:92vh;
  overflow:auto;
  background:#f3f5f7;
  border-radius:22px;
  box-shadow:0 30px 90px rgba(0,0,0,.5)
}

.portfolioClose{
  position:absolute;
  top:14px;
  right:14px;
  z-index:10;
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:#0b1118;
  color:#fff;
  font-size:28px;
  line-height:1;
  cursor:pointer
}

.portfolioHeader{
  padding:30px 70px 22px 30px
}

.portfolioHeader h2{
  margin:7px 0 0;
  font-size:clamp(28px,4vw,42px)
}

.portfolioWorks{
  display:grid;
  gap:24px;
  padding:0 30px 30px
}

/* =========================
   SINGOLO LAVORO
   ========================= */

.portfolioWork{
  overflow:hidden;
  background:#fff;
  border-radius:18px;
  box-shadow:0 10px 35px rgba(0,0,0,.12)
}

/* =========================
   SLIDER PRIMA / DOPO
   ========================= */

.beforeAfter{
  --pos:50%;
  position:relative;
  width:100%;
  aspect-ratio:4 / 3;
  overflow:hidden;
  background:#0b1118;
  touch-action:none;
  user-select:none
}

.beforeAfter img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  pointer-events:none
}

.beforeAfter .beforeImage{
  z-index:1
}

.beforeAfter .afterImage{
  z-index:2;
  clip-path:inset(0 calc(100% - var(--pos)) 0 0)
}

.beforeAfterDivider{
  position:absolute;
  z-index:4;
  top:0;
  bottom:0;
  left:var(--pos);
  width:3px;
  background:#fff;
  transform:translateX(-50%);
  box-shadow:0 0 8px rgba(0,0,0,.55);
  pointer-events:none
}

.beforeAfterHandle{
  position:absolute;
  z-index:5;
  top:50%;
  left:var(--pos);
  width:52px;
  height:52px;
  border-radius:50%;
  background:#ffc400;
  color:#101722;
  border:3px solid #fff;
  transform:translate(-50%,-50%);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:23px;
  font-weight:900;
  box-shadow:0 5px 18px rgba(0,0,0,.35);
  pointer-events:none
}

.beforeAfterLabel{
  position:absolute;
  z-index:6;
  top:14px;
  padding:8px 11px;
  border-radius:8px;
  background:rgba(11,17,24,.82);
  color:#fff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.5px;
  pointer-events:none
}

.beforeAfterLabel.before{
  left:14px
}

.beforeAfterLabel.after{
  right:14px
}

/* =========================
   INFORMAZIONI LAVORO
   ========================= */

.portfolioWorkInfo{
  position:relative;
  padding:22px 180px 24px 24px;
  min-height:120px
}

.portfolioWorkInfo h3{
  margin:0 0 6px;
  font-size:20px;
  line-height:1.25
}

.portfolioWorkLocation{
  margin:0 0 10px;
  color:#f0b500;
  font-size:13px;
  font-weight:900
}

.portfolioWorkDescription{
  margin:0;
  color:#59636e;
  line-height:1.55;
  font-size:14px
}

.portfolioWorkBrand{
  position:absolute;
  right:24px;
  bottom:24px;
  text-align:right;
  font-weight:900;
  line-height:1
}

.portfolioWorkBrand strong{
  display:block;
  color:#101722;
  font-size:22px;
  letter-spacing:1px
}

.portfolioWorkBrand span{
  display:block;
  margin-top:5px;
  color:#b68700;
  font-size:9px;
  letter-spacing:1.1px
}

/* =========================
   FIDUCIA
   ========================= */

.trust{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:#0b1118;
  color:#fff;
  padding:28px 5%;
  gap:20px
}

.trust div{
  text-align:center
}

.trust b{
  display:block;
  color:#ffc400;
  font-size:14px
}

.trust span{
  display:block;
  margin-top:6px;
  font-size:13px;
  color:#d7dde4
}

/* =========================
   ZONE
   ========================= */

.areas{
  text-align:center
}

.areaList{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  max-width:900px;
  margin:30px auto 18px
}

.areaList span{
  background:#f1f3f5;
  border:1px solid #e2e6ea;
  padding:12px 16px;
  border-radius:999px;
  font-weight:800
}

.areasNote{
  color:#626b75
}

/* =========================
   CONTATTI
   ========================= */

.contactSection{
  background:#f6f7f8;
  text-align:center
}

.contactSection>p{
  max-width:780px;
  margin-left:auto;
  margin-right:auto;
  line-height:1.6
}

.contactCards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  max-width:1000px;
  margin:34px auto 20px
}

.contactCard{
  border:0;
  background:#fff;
  color:#101722;
  text-decoration:none;
  padding:28px 16px;
  border-radius:18px;
  box-shadow:0 8px 28px rgba(0,0,0,.08);
  display:flex;
  flex-direction:column;
  gap:8px;
  align-items:center;
  transition:.2s;
  cursor:pointer
}

.contactCard.whatsapp{
  outline:2px solid rgba(37,211,102,.45)
}

.contactIcon{
  font-size:34px
}

.contactCard small{
  color:#65707b
}

.adminContact{
  margin-top:25px;
  font-size:14px
}

.adminContact a{
  color:#101722
}

/* =========================
   GOOGLE BUSINESS / RECENSIONI
   ========================= */

.googleReviews{
  padding:70px 5%;
  text-align:center;
  background:#f4f6f8
}

.googleReviews[hidden]{display:none!important}

.reviewsIntro{
  max-width:680px;
  margin:0 auto 26px;
  color:#56616d
}

.googleActions{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px
}

.googleProfileBtn,
.googleReviewBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:14px 22px;
  border-radius:10px;
  font-weight:900;
  text-decoration:none
}

.googleProfileBtn{
  color:#101722;
  background:#fff;
  border:2px solid #d8dde3
}

.googleReviewBtn{
  color:#101722;
  background:#ffc400;
  border:2px solid #ffc400
}

.googleProfileBtn:hover,
.googleReviewBtn:hover{transform:translateY(-1px)}

.disabledCall{
  opacity:.45!important;
  pointer-events:auto!important;
  cursor:not-allowed!important;
  filter:grayscale(1)
}

/* =========================
   FOOTER
   ========================= */

footer{
  background:#0b1118;
  color:#fff;
  padding:38px 5%;
  text-align:center
}

.footerBrand{
  font-size:25px;
  font-weight:900;
  letter-spacing:1px
}

.footerBrand span{
  color:#ffc400
}

.legalNote{
  font-size:12px;
  color:#aab3bd
}

.footerLegalLinks{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px 18px;
  margin-top:14px
}

.footerLegalLinks a,
.footerLegalLinks button{
  padding:0;
  border:0;
  background:none;
  color:#dbe4ed;
  font:inherit;
  font-size:13px;
  text-decoration:underline;
  cursor:pointer
}

/* =========================
   BARRA FISSA IN BASSO
   ========================= */

.contactbar{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  height:70px;
  background:#0b1118;
  z-index:50;
  display:flex;
  justify-content:center;
  box-shadow:0 -6px 25px rgba(0,0,0,.22)
}

.contactbar a,
.contactbar button{
  color:#fff;
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:5px;
  width:33.33%;
  max-width:300px;
  font-weight:900;
  border:0;
  border-right:1px solid #34404c;
  background:transparent;
  cursor:pointer
}

.contactbar a:nth-child(2){
  color:#25D366
}

.contactbar a:nth-child(2) .waIcon{
  color:#25D366
}

.whatsappBtn .waIcon{
  color:#07150b
}

/* =========================
   POPUP PREVENTIVO
   ========================= */

.modalBackdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(6px);
  z-index:100;
  display:none;
  align-items:flex-end;
  justify-content:center;
  padding:18px
}

.modalBackdrop.show{
  display:flex
}

.quoteModal{
  position:relative;
  background:#fff;
  width:min(760px,100%);
  max-height:92vh;
  overflow:auto;
  border-radius:22px 22px 14px 14px;
  padding:30px;
  box-shadow:0 30px 80px rgba(0,0,0,.4)
}

.modalClose{
  position:absolute;
  right:14px;
  top:12px;
  border:0;
  background:#0b1118;
  color:#fff;
  border-radius:50%;
  width:40px;
  height:40px;
  font-size:26px;
  cursor:pointer
}

.modalIntro{
  color:#5d6670;
  line-height:1.55;
  margin-bottom:24px
}

/* =========================
   FORM PREVENTIVO
   ========================= */

.formGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px
}

.formGrid label{
  font-weight:800;
  font-size:14px;
  text-align:left
}

.formGrid label.full{
  grid-column:1/-1
}

.formGrid input,
.formGrid select,
.formGrid textarea{
  width:100%;
  margin-top:7px;
  border:1px solid #cfd5dc;
  border-radius:11px;
  padding:14px;
  font:inherit;
  background:#fff;
  color:#101722
}

.formGrid textarea{
  resize:vertical;
  min-height:130px
}

.formGrid input:focus,
.formGrid select:focus,
.formGrid textarea:focus{
  outline:2px solid #ffc400;
  border-color:#ffc400
}

/* INVIA */

.sendQuote{
  width:100%;
  margin-top:20px;
  background:#ffc400;
  color:#101722;
  border:0;
  border-radius:12px;
  padding:17px;
  font-weight:900;
  cursor:pointer
}

.sendQuote:disabled{
  opacity:.6;
  cursor:wait
}

/* ANNULLA */

.cancelQuote{
  width:100%;
  margin-top:10px;
  background:#fff;
  color:#101722;
  border:2px solid #cfd5dc;
  border-radius:12px;
  padding:15px 17px;
  font-weight:900;
  cursor:pointer;
  transition:.18s ease
}

.cancelQuote:hover{
  border-color:#101722;
  background:#f3f5f7
}

.cancelQuote:active{
  transform:scale(.985)
}

.formNote{
  font-size:12px;
  color:#69737d;
  line-height:1.45;
  margin-bottom:0
}

/* =========================
   STATO INVIO
   ========================= */

.formStatus{
  min-height:22px;
  margin:12px 0 0;
  font-size:14px;
  font-weight:800;
  text-align:center
}

.formStatus.success{
  color:#138a45
}

.formStatus.error{
  color:#b42318
}

/* =========================
   BARRA PROGRESSO INVIO
   ========================= */

.sendProgress{
  margin-top:14px;
  padding:13px 14px;
  border-radius:12px;
  background:#f3f5f7;
  border:1px solid #dde2e7
}

.sendProgress[hidden]{
  display:none!important
}

.sendProgressTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:9px;
  font-size:13px;
  font-weight:800;
  color:#26313d
}

.sendProgressTop strong{
  color:#101722;
  font-size:14px
}

.sendProgressTrack{
  width:100%;
  height:9px;
  border-radius:999px;
  background:#dde2e7;
  overflow:hidden
}

.sendProgressBar{
  width:0%;
  height:100%;
  border-radius:999px;
  background:#ffc400;
  transition:width .28s ease
}

.sendQuote.sending{
  position:relative;
  overflow:hidden
}

.sendQuote.sending::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.28),
    transparent
  );
  transform:translateX(-100%);
  animation:sendShimmer 1.15s infinite
}

@keyframes sendShimmer{
  to{
    transform:translateX(100%)
  }
}

/* =========================
   TOAST
   ========================= */

.toast{
  position:fixed;
  left:50%;
  bottom:88px;
  transform:translateX(-50%) translateY(20px);
  background:#101722;
  color:#fff;
  padding:12px 18px;
  border-radius:12px;
  box-shadow:0 8px 30px rgba(0,0,0,.25);
  opacity:0;
  pointer-events:none;
  transition:.25s;
  z-index:120;
  text-align:center;
  max-width:90%
}

.toast.show{
  opacity:1;
  transform:translateX(-50%) translateY(0)
}

/* =========================
   ANTISPAM
   ========================= */

.hpField{
  position:absolute!important;
  left:-10000px!important;
  top:auto!important;
  width:1px!important;
  height:1px!important;
  overflow:hidden!important;
  opacity:0!important;
  pointer-events:none!important
}

/* =========================
   CONSENSO ANALYTICS
   ========================= */

.analyticsConsent{
  position:fixed;
  left:18px;
  right:18px;
  bottom:88px;
  z-index:140;
  max-width:900px;
  margin:0 auto;
  padding:16px;
  border-radius:16px;
  background:#0b1118;
  color:#fff;
  box-shadow:0 18px 55px rgba(0,0,0,.35);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px
}

.analyticsConsent[hidden]{
  display:none!important
}

.analyticsConsentText{
  display:flex;
  flex-direction:column;
  gap:5px
}

.analyticsConsentText b{
  color:#ffc400
}

.analyticsConsentText span{
  font-size:13px;
  line-height:1.45;
  color:#dbe4ed
}

.analyticsConsentText a{
  color:#69a9ff;
  font-weight:800;
  text-underline-offset:2px
}

.formNote a{
  color:#164f9b;
  font-weight:800
}

/* =========================
   PAGINA PRIVACY
   ========================= */

.privacyBody{background:#f4f6f8;color:#101722}
.privacyHeader{
  position:static;
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 5%;
  background:#0b1118
}
.privacyHeader .brand{height:58px}
.privacyBack{
  color:#0b1118;
  background:#ffc400;
  border-radius:10px;
  padding:11px 15px;
  font-weight:900;
  text-decoration:none
}
.privacyMain{
  width:min(920px,90%);
  margin:38px auto 70px;
  padding:42px;
  border-radius:18px;
  background:#fff;
  box-shadow:0 12px 35px rgba(11,17,24,.1)
}
.privacyMain h1{margin:0 0 10px;font-size:clamp(32px,5vw,48px)}
.privacyUpdated{margin:0 0 34px;color:#65707b}
.privacyMain section{padding:8px 0 14px}
.privacyMain h2{margin:22px 0 10px;font-size:23px}
.privacyMain h3{margin:18px 0 8px;font-size:18px}
.privacyMain p,.privacyMain li{line-height:1.65}
.privacyMain a{color:#164f9b}
.privacyMain ul{padding-left:22px}
.privacyContact{
  padding:18px;
  border-left:5px solid #ffc400;
  background:#f4f6f8
}
@media(max-width:650px){
  .privacyHeader{align-items:center;gap:12px}
  .privacyBack{font-size:12px;padding:10px}
  .privacyMain{width:94%;margin:18px auto 40px;padding:24px 18px}
}

.analyticsConsentActions{
  display:flex;
  gap:9px;
  flex:0 0 auto
}

.analyticsConsentActions button{
  border:0;
  border-radius:10px;
  padding:11px 13px;
  font-size:12px;
  font-weight:900;
  cursor:pointer
}

#analyticsReject{
  background:#fff;
  color:#101722
}

#analyticsAccept{
  background:#ffc400;
  color:#101722
}

/* =========================
   RESPONSIVE TABLET
   ========================= */

@media(max-width:900px){

  .grid{
    grid-template-columns:repeat(2,1fr)
  }

  .trust{
    grid-template-columns:repeat(2,1fr)
  }

  .contactCards{
    grid-template-columns:1fr
  }
}

/* =========================
   RESPONSIVE MOBILE
   ========================= */

@media(max-width:700px){

  header{
    height:70px;
    padding:0 4%
  }

  .brandLogo{
    height:48px
  }

  nav{
    display:none
  }

  .quickActions{
    padding:14px 4% 18px
  }

  .quickActions a,
  .quickActions button{
    width:100%;
    text-align:center
  }

  .services,
  .detail,
  .areas,
  .contactSection{
    padding:42px 4%
  }

  .grid{
    grid-template-columns:1fr 1fr;
    gap:10px
  }

  .card{
    padding:18px 10px
  }

  .card h3{
    font-size:13px
  }

  .card p{
    font-size:12px
  }

  .serviceGraphicWrap{
    border-radius:12px;
    margin-bottom:26px
  }

  .trust{
    grid-template-columns:1fr 1fr;
    padding-top:24px;
    padding-bottom:24px
  }

  .contactbar span{
    font-size:11px
  }

  .contactbar a,
  .contactbar button{
    gap:5px
  }

  .quoteModal{
    padding:26px 18px 22px
  }

  .formGrid{
    grid-template-columns:1fr
  }

  .formGrid label.full{
    grid-column:auto
  }

  .analyticsConsent{
    flex-direction:column;
    align-items:stretch;
    bottom:82px
  }

  .analyticsConsentActions{
    display:grid;
    grid-template-columns:1fr 1fr
  }

  .analyticsConsentActions button{
    padding:12px 8px
  }
}

/* =========================
   MOBILE PICCOLO
   ========================= */

@media(max-width:430px){

  .grid{
    grid-template-columns:1fr
  }
    .portfolioBackdrop{
    padding:0;
    align-items:flex-end
  }

  .portfolioModal{
    width:100%;
    max-height:94vh;
    border-radius:22px 22px 0 0
  }

  .portfolioHeader{
    padding:25px 62px 18px 18px
  }

  .portfolioWorks{
    padding:0 14px 24px;
    gap:18px
  }

  .portfolioWork{
    border-radius:14px
  }

  .beforeAfter{
    aspect-ratio:3 / 4
  }

  .beforeAfterHandle{
    width:46px;
    height:46px;
    font-size:20px
  }

  .portfolioWorkInfo{
    padding:18px 18px 82px
  }

  .portfolioWorkInfo h3{
    font-size:17px
  }

  .portfolioWorkBrand{
    right:18px;
    bottom:18px
  }
}

/* ==================================================
   MODALITÀ MANUTENZIONE TEMPORANEA
   Rimuovere questo blocco quando il sito torna attivo
   ================================================== */

.maintenancePage {
  position: fixed;
  inset: 0;
  z-index: 999999;
  width: 100%;
  min-height: 100dvh;
  background:
    radial-gradient(circle at top, #18222d 0%, #0b1118 48%, #070b10 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
  overflow-y: auto;
}

.maintenanceBox {
  width: 100%;
  max-width: 620px;
  text-align: center;
  color: #ffffff;
  margin: auto;
}

.maintenanceLogo {
  width: min(280px, 75vw);
  height: auto;
  display: block;
  margin: 0 auto 30px;
}

.maintenanceLabel {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #f5c518;
}

.maintenanceBox h1 {
  margin: 0;
  font-size: clamp(30px, 7vw, 52px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -1px;
}

.maintenanceText {
  margin: 25px auto 30px;
  max-width: 520px;
  color: #cbd3dc;
  font-size: 16px;
  line-height: 1.6;
}

.maintenanceText strong {
  color: #ffffff;
}

.maintenanceActions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}

.maintenanceActions a {
  min-height: 68px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: transform 0.15s ease;
}

.maintenanceActions a:active {
  transform: scale(0.98);
}

.maintenanceActions span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
}

.maintenanceCall {
  background: #f5c518;
  color: #0b1118;
}

.maintenanceWhatsapp {
  background: #25d366;
  color: #07150c;
}

.maintenanceHours {
  margin: 24px 0 0;
  color: #ffffff;
  font-size: 14px;
}

.maintenanceZone {
  margin: 10px 0 0;
  color: #8693a0;
  font-size: 12px;
  line-height: 1.5;
}

.maintenanceVat{
  margin:8px 0 0;
  font-size:12px;
  font-weight:600;
  letter-spacing:.3px;
  opacity:.65;
}

@media (min-width: 600px) {
  .maintenanceActions {
    grid-template-columns: 1fr 1fr;
    max-width: 560px;
  }
}
