/* MP Automotive Rent - static replica v8 */
:root{
  --header-h:112px;
  --mobile-header-h:90px;
  --orange:#f47a18;
  --green:#2e8b58;
  --dark:#4a4a49;
  --text:#050505;
  --muted:#777;
  --safe:960px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  background:#fff;
  font-family:"Avenir LT W01_35 Light1475496","Avenir LT W01 35 Light","Nunito Sans","Avenir Next","Avenir","Helvetica Neue",Arial,sans-serif;
  font-size:16px;
  font-weight:400;
  line-height:1.35;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{display:block;width:100%;height:auto}
button,input{font:inherit}

/* header */
.site-header{
  position:fixed;
  inset:0 0 auto 0;
  z-index:1000;
  height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 95px;
  background:var(--dark);
  color:#fff;
}
.home .site-header{
  background:rgba(0,0,0,.58);
  overflow:hidden;
  backdrop-filter:none;
}
.home .site-header::before,
.home .site-header::after{display:none}
.logo-link{display:block;width:116px;height:76px;flex:0 0 auto}
.logo-link img{width:100%;height:100%;object-fit:contain}
.desktop-nav{display:flex;align-items:center;gap:48px;font-size:15px;color:#fff}
.desktop-nav a{opacity:.96;white-space:nowrap}
.desktop-nav a.active{color:#b6e2c4}
.nav-btn{border:2px solid #fff;border-radius:28px;padding:14px 24px;font-weight:700;line-height:1;background:transparent;color:#fff}
.menu-btn{display:none;background:none;border:0;color:#fff;width:44px;height:44px;padding:10px;cursor:pointer}
.menu-btn span{display:block;width:24px;height:2px;margin:6px auto;background:#fff;transition:.2s}
.menu-btn[aria-expanded="true"] span:nth-child(1){transform:translateY(8px) rotate(45deg)}
.menu-btn[aria-expanded="true"] span:nth-child(2){opacity:0}
.menu-btn[aria-expanded="true"] span:nth-child(3){transform:translateY(-8px) rotate(-45deg)}
.mobile-panel{display:none}

/* shared */
.nowrap{white-space:nowrap}

/* HOME */
.home-hero{
  min-height:830px;
  height:830px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  padding-top:var(--header-h);
  position:relative;
  overflow:hidden;
  background:#111;
}
.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:50% 14%;
  z-index:0;
}
.home-hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.18);
  z-index:1;
  pointer-events:none;
}
.home-hero-inner{position:relative;z-index:2;width:min(100% - 48px,930px);margin-top:-125px}
.home-title{
  margin:0 0 28px;
  font-size:64px;
  line-height:1.08;
  font-weight:800;
  letter-spacing:-.015em;
  color:#fff;
}
.search-pill{
  height:76px;
  width:100%;
  border-radius:50px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 20px 0 52px;
  box-shadow:none;
}
.search-text{font-size:30px;color:#111;line-height:1;font-weight:400}
.search-button{
  height:56px;
  min-width:210px;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:34px;
  background:var(--green);
  color:#fff;
  font-size:16px;
  font-weight:700;
}
.home-section-title{
  height:165px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  background:#fff;
}
.home-section-title .dot{width:38px;height:38px;border-radius:50%;background:var(--orange);display:block}
.home-section-title h2{margin:0;font-size:36px;line-height:1;font-weight:400;letter-spacing:-.01em}
.home-section-link{display:flex;align-items:center;justify-content:center;gap:14px}
.home-cards{
  width:min(84.7vw,1734px);
  margin:0 auto 76px clamp(42px,2.65vw,54px);
  display:grid;
  grid-template-columns:642fr 614fr 438fr;
  gap:18px;
  align-items:start;
}
.home-card{
  position:relative;
  overflow:hidden;
  background:#777;
  color:#fff;
}
.home-card img{width:100%;height:100%;object-fit:cover;filter:brightness(.62)}
.home-card.road-card img{object-position:42% 50%}
.home-card.van-card img{object-position:53% 50%}
.home-card.dash-card img{object-position:48% 45%}
.home-card .card-title{
  position:absolute;
  left:26px;
  top:56px;
  right:28px;
  color:#fff;
  font-size:39px;
  line-height:1.08;
  font-weight:400;
  letter-spacing:-.02em;
  opacity:0;
  transform:translateY(18px);
  transition:opacity .9s ease, transform .9s ease;
}
.home-card.is-visible .card-title{opacity:1;transform:translateY(0)}
.home-card.tall{height:1020px}
.home-card.small{height:295px}
.home-card.text-card{
  height:707px;
  background:#6d767b;
  display:flex;
  align-items:flex-start;
  padding:66px 28px;
  font-size:39px;
  line-height:1.23;
  font-weight:400;
}
.home-card.text-card .text-card-copy{
  position:relative;
  z-index:2;
  opacity:0;
  transform:translateY(18px);
  transition:opacity .9s ease, transform .9s ease;
}
.home-card.text-card.is-visible .text-card-copy{opacity:1;transform:translateY(0)}
.home-card.text-card::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:0;height:360px;
  background-color:#6d767b;
  background-image:url('../img/van-beach-dark.webp');
  background-repeat:no-repeat;
  background-position:center bottom;
  background-size:auto 100%;
  opacity:1;
  z-index:1;
}
.right-stack{display:grid;gap:20px}
.map-section{height:355px;width:100%;overflow:hidden;background:#dce6e9;border:0}
.map-section iframe{width:100%;height:100%;display:block;border:0}

/* PERCHE */
.perche main{padding-top:var(--header-h)}
.intro-text{
  min-height:365px;
  padding:98px 24px 35px;
  text-align:center;
  background:#fff;
}
.intro-text h1{
  margin:0 auto 27px;
  max-width:980px;
  font-size:47px;
  line-height:1.18;
  font-weight:400;
  letter-spacing:-.02em;
}
.intro-text p{
  margin:0 auto;
  max-width:960px;
  font-size:17px;
  line-height:1.28;
  font-weight:400;
  text-align:left;
}
.info-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:540px;
  border-top:1px solid #1c1c1c;
}
.info-row:last-of-type{border-bottom:1px solid #1c1c1c}
.info-media{min-height:540px;background:#ddd;overflow:hidden}
.info-media img{width:100%;height:100%;object-fit:cover}
.info-media.interior img{object-position:center center}
.info-media.car img{object-position:center center}
.info-media.fleet img{object-position:center center}
.info-media.business img{object-position:center center}
.info-copy{
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:64px 36px;
}
.info-copy-inner{width:100%;max-width:500px}
.info-copy.center .info-copy-inner{max-width:420px;text-align:center}
.info-copy.left .info-copy-inner{max-width:410px;text-align:left}
.info-copy h2{
  margin:0 0 36px;
  font-size:36px;
  line-height:1.2;
  font-weight:400;
  letter-spacing:-.02em;
}
.info-copy.center h2{font-size:38px;margin-bottom:50px}
.info-copy p{
  margin:0;
  font-size:16px;
  line-height:1.66;
  font-weight:400;
}
.info-copy.center p{text-align:center;line-height:1.75}
.info-copy ul{
  margin:0;
  padding-left:22px;
  font-size:16px;
  line-height:1.32;
}
.info-copy li{margin:0 0 10px}
.info-row.privati{min-height:690px}
.info-row.privati .info-media,.info-row.privati .info-copy{min-height:690px}
.info-row.aziende{min-height:650px}
.info-row.aziende .info-media,.info-row.aziende .info-copy{min-height:650px}

/* footer */
.footer{
  background:#fff;
  padding:54px 0 0;
  color:#626262;
  font-size:14px;
}
.footer-inner{
  width:min(960px,calc(100% - 48px));
  margin:0 auto;
  border-bottom:1px solid #565656;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  min-height:122px;
  padding:12px 0 28px;
}
.footer-logo{width:116px;height:75px;flex:0 0 auto}
.footer-logo img{height:100%;object-fit:contain}
.footer-text{line-height:1.4;text-align:left;color:#5b5b5b}
.footer-copy{text-align:center;color:#9a9a9a;font-size:12px;padding:22px 16px 48px}

@media (max-width:900px){
  body{font-size:15px;background:#fff}
  .site-header,.home .site-header{
    height:var(--mobile-header-h);
    padding:0 18px;
    background:#4b4b4b;
  }
  .home .site-header::before,.home .site-header::after{display:none}
  .logo-link{width:77px;height:58px}
  .desktop-nav{display:none}
  .menu-btn{display:block}
  .mobile-panel{
    position:fixed;
    inset:var(--mobile-header-h) 0 0 0;
    z-index:999;
    background:#4b4b4b;
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:24px;
    font-size:22px;
    opacity:0;
    pointer-events:none;
    transition:opacity .18s ease;
  }
  .mobile-panel.is-open{opacity:1;pointer-events:auto}
  body.menu-open{overflow:hidden}
 .home-hero{
    margin-top:var(--mobile-header-h);
    padding-top:0;
    height:407px;
    min-height:407px;
    background-position:center top;
  }
  .home-hero-inner{width:100%;padding:0 16px;margin-top:20px}
  .home-title{
    font-size:26px;
    line-height:1.05;
    margin:0 0 4px;
    letter-spacing:-.02em;
  }
  .home-title::after{
    content:"Viaggia come vuoi";
    display:block;
    font-size:18px;
    line-height:1.15;
    font-weight:800;
    margin-top:2px;
  }
  .search-pill{display:block;height:auto;width:auto;background:transparent;padding:0;border-radius:0}
  .search-text{display:none}
  .search-button{height:40px;min-width:0;width:max-content;margin:18px auto 0;padding:0 18px;border-radius:20px;font-size:14px}
  .home-section-title{height:95px;justify-content:flex-start;padding-left:42px;gap:14px}
  .home-section-title .dot{width:22px;height:22px}
  .home-section-title h2{font-size:26px}
  .home-cards{width:100%;display:block;margin:0}
  .home-card{width:100%;border:0}
  .home-card.tall{height:300px}
  .home-card.small{height:236px}
  .home-card.text-card{height:255px;padding:28px 22px;font-size:25px;line-height:1.22}
  .home-card.text-card::after{height:128px;background-position:50% 62%}
  .home-card .card-title{left:21px;top:23px;right:16px;font-size:29px;line-height:1.03}
  .right-stack{display:block}
  .map-section{height:260px}

  .perche main{padding-top:var(--mobile-header-h)}
  .intro-text{
    min-height:0;
    padding:46px 20px 30px;
  }
  .intro-text h1{
    font-size:31px;
    line-height:1.36;
    max-width:280px;
    margin-bottom:28px;
  }
  .intro-text p{
    max-width:280px;
    font-size:15px;
    line-height:1.28;
    text-align:left;
  }
  .info-row,.info-row.privati,.info-row.aziende{
    display:flex;
    flex-direction:column;
    min-height:0;
    border-top:0;
  }
  .info-row.reverse .info-media{order:1}
  .info-row.reverse .info-copy{order:2}
  .info-media,.info-row.privati .info-media,.info-row.aziende .info-media{
    min-height:0;height:205px;order:1;border-top:1px solid #b4b4b4;
  }
  .info-media.interior{height:205px}
  .info-media.car{height:242px}
  .info-media.fleet{height:260px}
  .info-media.business{height:226px}
  .info-copy,.info-row.privati .info-copy,.info-row.aziende .info-copy{
    min-height:0;order:2;padding:36px 20px 35px;border-top:0;
  }
  .info-copy-inner,.info-copy.center .info-copy-inner,.info-copy.left .info-copy-inner{max-width:280px}
  .info-copy h2,.info-copy.center h2{
    margin:0 0 24px;
    font-size:28px;
    line-height:1.18;
    text-align:center;
  }
  .info-copy p,.info-copy.center p{
    font-size:15px;
    line-height:1.54;
    text-align:center;
  }
  .info-copy.left p{text-align:left;line-height:1.36}
  .info-copy ul{font-size:15px;line-height:1.32;padding-left:18px}
  .info-copy li{margin-bottom:7px}
  .footer{padding-top:35px;font-size:14px}
  .footer-inner{
    width:calc(100% - 40px);
    min-height:0;
    display:block;
    padding:0 0 20px;
    border-bottom:1px solid #606060;
  }
  .footer-logo{width:82px;height:58px;margin:0 0 10px}
  .footer-text{line-height:1.35}
  .footer-copy{font-size:10px;padding:18px 10px 44px}
}


/* === v13 mobile rebuild === */
@media (max-width:900px){
  html, body{
    width:100%;
    min-width:0;
    overflow-x:hidden;
    background:#fff;
  }

  .site-header,
  .home .site-header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    height:90px;
    padding:0 18px;
    background:#4b4b4b;
  }

  .home .site-header{
    background:rgba(0,0,0,.58);
    backdrop-filter:none;
  }

  .logo-link{
    width:78px;
    height:58px;
  }

  .menu-btn{
    display:block;
    width:42px;
    height:42px;
  }

  .mobile-panel{
    inset:90px 0 0 0;
    background:#4b4b4b;
  }

  /* HOME mobile: Wix-like static hero */
  .home-hero{
    margin-top:90px !important;
    padding-top:0 !important;
    height:327px !important;
    min-height:327px !important;
    background:#111 !important;
  }

  .hero-video{
    display:none !important;
  }

  .home-hero-overlay{
    display:none !important;
  }

  .home-hero-inner{
    width:100% !important;
    padding:0 16px !important;
    margin-top:8px !important;
  }

  .home-title{
    font-size:26px !important;
    line-height:1.04 !important;
    margin:0 !important;
    font-weight:800 !important;
  }

  .home-title::after{
    content:"Viaggia come vuoi";
    display:block;
    font-size:18px;
    line-height:1.1;
    font-weight:800;
    margin-top:2px;
  }

  .search-pill{
    display:block !important;
    width:auto !important;
    height:auto !important;
    padding:0 !important;
    background:transparent !important;
    border-radius:0 !important;
  }

  .search-text{
    display:none !important;
  }

  .search-button{
    height:40px !important;
    width:max-content !important;
    min-width:0 !important;
    margin:18px auto 0 !important;
    padding:0 18px !important;
    border-radius:20px !important;
    font-size:14px !important;
  }

  .home-section-title{
    height:95px !important;
    justify-content:flex-start !important;
    padding-left:42px !important;
    gap:14px !important;
  }

  .home-section-title .dot{
    width:22px !important;
    height:22px !important;
  }

  .home-section-title h2{
    font-size:26px !important;
  }

  .home-cards{
    width:100% !important;
    margin:0 !important;
    display:block !important;
  }

  .home-card{
    width:100% !important;
    border:0 !important;
  }

  .home-card.tall{
    height:300px !important;
  }

  .home-card.small{
    height:236px !important;
  }

  .home-card.text-card{
    height:255px !important;
    padding:28px 22px !important;
    font-size:25px !important;
    line-height:1.22 !important;
  }

  .home-card.text-card::after{
    height:126px !important;
    background-image:url('../img/van-beach-dark.webp') !important;
    background-position:50% 50% !important;
    background-size:cover !important;
  }

  .home-card .card-title{
    left:21px !important;
    top:23px !important;
    right:16px !important;
    font-size:29px !important;
    line-height:1.03 !important;
  }

  .right-stack{
    display:block !important;
  }

  .map-section{
    height:260px !important;
  }

  /* PERCHÉ CONVIENE mobile */
  .perche main{
    padding-top:90px !important;
  }

  .intro-text{
    padding:44px 20px 28px !important;
    min-height:0 !important;
  }

  .intro-text h1{
    max-width:280px !important;
    font-size:31px !important;
    line-height:1.35 !important;
    margin:0 auto 28px !important;
    text-align:center !important;
  }

  .intro-text p{
    max-width:280px !important;
    font-size:15px !important;
    line-height:1.28 !important;
    text-align:left !important;
  }

  .info-row,
  .info-row.privati,
  .info-row.aziende{
    display:flex !important;
    flex-direction:column !important;
    min-height:0 !important;
    border-top:0 !important;
  }

  .info-row.reverse .info-media{
    order:1 !important;
  }

  .info-row.reverse .info-copy{
    order:2 !important;
  }

  .info-media,
  .info-row.privati .info-media,
  .info-row.aziende .info-media{
    order:1 !important;
    min-height:0 !important;
    height:205px !important;
    border-top:1px solid #b4b4b4 !important;
  }

  .info-media.interior{height:205px !important;}
  .info-media.car{height:242px !important;}
  .info-media.fleet{height:260px !important;}
  .info-media.business{height:226px !important;}

  .info-copy,
  .info-row.privati .info-copy,
  .info-row.aziende .info-copy{
    order:2 !important;
    min-height:0 !important;
    padding:36px 20px 35px !important;
    border-top:0 !important;
  }

  .info-copy-inner,
  .info-copy.center .info-copy-inner,
  .info-copy.left .info-copy-inner{
    max-width:280px !important;
  }

  .info-copy h2,
  .info-copy.center h2{
    margin:0 0 24px !important;
    font-size:28px !important;
    line-height:1.18 !important;
    text-align:center !important;
  }

  .info-copy p,
  .info-copy.center p{
    font-size:15px !important;
    line-height:1.54 !important;
    text-align:center !important;
  }

  .info-copy.left p{
    text-align:left !important;
    line-height:1.36 !important;
  }

  .info-copy ul{
    font-size:15px !important;
    line-height:1.32 !important;
    padding-left:18px !important;
  }

  .info-copy li{
    margin-bottom:7px !important;
  }

  .footer{
    padding-top:35px !important;
    font-size:14px !important;
  }

  .footer-inner{
    width:calc(100% - 40px) !important;
    min-height:0 !important;
    display:block !important;
    padding:0 0 20px !important;
    border-bottom:1px solid #606060 !important;
  }

  .footer-logo{
    width:82px !important;
    height:58px !important;
    margin:0 0 10px !important;
  }

  .footer-copy{
    font-size:10px !important;
    padding:18px 10px 44px !important;
  }
}


/* === v14 mobile: Wix mobile header is in-flow, not fixed === */
@media (max-width:900px){
  .site-header,
  .home .site-header{
    position:relative !important;
    top:auto !important;
    left:auto !important;
    right:auto !important;
    height:90px !important;
    padding:0 18px !important;
    background:#4b4b4b !important;
    z-index:2001 !important;
  }

  .home .site-header{
    background:#4b4b4b !important;
  }

  .home-hero{
    margin-top:0 !important;
    padding-top:0 !important;
    height:327px !important;
    min-height:327px !important;
    background:#111 !important;
  }

  .hero-video,
  .home-hero video{
    display:none !important;
    visibility:hidden !important;
    opacity:0 !important;
  }

  .home-hero-overlay{
    display:none !important;
  }

  .perche main{
    padding-top:0 !important;
  }

  .mobile-panel{
    position:fixed !important;
    inset:0 !important;
    padding-top:90px !important;
    z-index:2000 !important;
    background:#4b4b4b !important;
  }

  body.menu-open .site-header{
    position:fixed !important;
    top:0 !important;
    left:0 !important;
    right:0 !important;
  }

  .home-card .card-title,
  .home-card.text-card .text-card-copy{
    opacity:1 !important;
    transform:none !important;
  }
}

/* === v15 home media crop correction === */
/* Desktop: media cuts closer to Wix references */
.hero-video{
  object-position:50% 50%;
}
.home-hero{
  background-position:50% 50%;
}
.home-card.road-card img{
  object-position:50% 50%;
}
.home-card.van-card img{
  object-position:52% 50%;
}
.home-card.dash-card img{
  object-position:50% 50%;
}
.home-card.text-card::after{
  background-image:url('../img/van-beach-dark.webp');
  background-position:50% 50%;
  background-size:cover;
}

@media (max-width:900px){
  .home-hero{
    background:#111 !important;
    height:327px !important;
    min-height:327px !important;
  }

  .hero-video,
  .home-hero video{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:50% 50% !important;
  }

  .home-hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.32);
    pointer-events:none;
    z-index:1;
  }

  .home-hero-inner{
    z-index:2 !important;
  }

  .home-card.road-card img{
    object-position:50% 50% !important;
  }

  .home-card.van-card img{
    object-position:52% 50% !important;
  }

  .home-card.dash-card img{
    object-position:50% 50% !important;
  }

  .home-card.text-card::after{
    height:130px !important;
    background-image:url('../img/van-beach-dark.webp') !important;
    background-size:cover !important;
    background-position:50% 68% !important;
  }
}

/* === v16 mobile: match Wix mobile preview proportions === */
@media (max-width:900px){
  html, body{
    min-width:0 !important;
    overflow-x:hidden !important;
    background:#fff !important;
  }

  /* Wix mobile editor works like a narrow mobile canvas. */
  .site-header,
  main,
  .mobile-panel{
    width:320px !important;
    max-width:100% !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }

  .site-header,
  .home .site-header{
    position:relative !important;
    height:90px !important;
    padding:0 18px !important;
    background:#4b4b4b !important;
    z-index:2001 !important;
  }

  .logo-link{
    width:77px !important;
    height:58px !important;
  }

  .menu-btn{
    display:block !important;
    width:42px !important;
    height:42px !important;
  }

  .mobile-panel{
    position:fixed !important;
    left:50% !important;
    right:auto !important;
    top:0 !important;
    bottom:0 !important;
    transform:translateX(-50%) !important;
    max-width:100vw !important;
    padding-top:90px !important;
    background:#4b4b4b !important;
  }

  body.menu-open .site-header{
    position:fixed !important;
    left:50% !important;
    right:auto !important;
    top:0 !important;
    transform:translateX(-50%) !important;
    max-width:100vw !important;
  }

  .perche main{
    padding-top:0 !important;
  }

  .home-hero{
    margin-top:0 !important;
    padding-top:0 !important;
    height:350px !important;
    min-height:350px !important;
    background:#111 !important;
    overflow:hidden !important;
  }

  .hero-video,
  .home-hero video{
    display:none !important;
    visibility:hidden !important;
    opacity:0 !important;
  }

  .home-hero::after,
  .home-hero-overlay{
    display:none !important;
  }

  .home-hero-inner{
    width:100% !important;
    padding:0 16px !important;
    margin-top:18px !important;
  }

  .home-title{
    font-size:26px !important;
    line-height:1.05 !important;
    margin:0 0 2px !important;
    font-weight:800 !important;
    letter-spacing:-.02em !important;
  }

  .home-title::after{
    content:"Viaggia come vuoi" !important;
    display:block !important;
    font-size:18px !important;
    line-height:1.12 !important;
    font-weight:800 !important;
    margin-top:2px !important;
  }

  .search-pill{
    display:block !important;
    height:auto !important;
    width:auto !important;
    padding:0 !important;
    background:transparent !important;
    border-radius:0 !important;
  }

  .search-text{display:none !important;}

  .search-button{
    height:40px !important;
    width:max-content !important;
    min-width:0 !important;
    margin:18px auto 0 !important;
    padding:0 18px !important;
    border-radius:20px !important;
    font-size:14px !important;
    font-weight:800 !important;
  }

  .home-section-title{
    height:88px !important;
    justify-content:flex-start !important;
    padding-left:42px !important;
    gap:13px !important;
  }

  .home-section-link{
    justify-content:flex-start !important;
    gap:13px !important;
  }

  .home-section-title .dot{
    width:22px !important;
    height:22px !important;
  }

  .home-section-title h2{
    font-size:24px !important;
    line-height:1 !important;
    font-weight:400 !important;
  }

  .home-cards{
    width:100% !important;
    margin:0 !important;
    display:block !important;
  }

  .home-card{
    width:100% !important;
    border:0 !important;
  }

  .home-card.tall{
    height:305px !important;
  }

  .home-card.small{
    height:255px !important;
  }

  .home-card.road-card img{
    object-position:50% 52% !important;
  }

  .home-card.van-card img{
    object-position:50% 47% !important;
  }

  .home-card.dash-card img{
    object-position:50% 50% !important;
  }

  .home-card .card-title{
    left:20px !important;
    top:20px !important;
    right:12px !important;
    font-size:27px !important;
    line-height:1.03 !important;
    font-weight:400 !important;
    opacity:1 !important;
    transform:none !important;
  }

  .right-stack{display:block !important;}

  .home-card.text-card{
    height:260px !important;
    padding:24px 20px !important;
    font-size:24px !important;
    line-height:1.22 !important;
  }

  .home-card.text-card .text-card-copy{
    opacity:1 !important;
    transform:none !important;
  }

  .home-card.text-card::after{
    height:142px !important;
    background-image:url('../img/van-beach-dark.webp') !important;
    background-size:cover !important;
    background-position:50% 43% !important;
  }

  .map-section{
    height:260px !important;
  }

  /* Perché conviene page: mobile page uses same narrow Wix canvas. */
  .intro-text{
    padding:44px 20px 28px !important;
    min-height:0 !important;
  }

  .intro-text h1{
    max-width:280px !important;
    font-size:31px !important;
    line-height:1.35 !important;
    margin:0 auto 26px !important;
    text-align:center !important;
  }

  .intro-text p{
    max-width:280px !important;
    font-size:15px !important;
    line-height:1.28 !important;
    text-align:left !important;
  }

  .info-row,
  .info-row.privati,
  .info-row.aziende{
    display:flex !important;
    flex-direction:column !important;
    min-height:0 !important;
    border-top:0 !important;
  }

  .info-row.reverse .info-media{order:1 !important;}
  .info-row.reverse .info-copy{order:2 !important;}

  .info-media,
  .info-row.privati .info-media,
  .info-row.aziende .info-media{
    order:1 !important;
    min-height:0 !important;
    height:205px !important;
    border-top:1px solid #b4b4b4 !important;
  }

  .info-media.interior{height:205px !important;}
  .info-media.car{height:242px !important;}
  .info-media.fleet{height:260px !important;}
  .info-media.business{height:226px !important;}

  .info-copy,
  .info-row.privati .info-copy,
  .info-row.aziende .info-copy{
    order:2 !important;
    min-height:0 !important;
    padding:36px 20px 35px !important;
    border-top:0 !important;
  }

  .info-copy-inner,
  .info-copy.center .info-copy-inner,
  .info-copy.left .info-copy-inner{
    max-width:280px !important;
  }

  .info-copy h2,
  .info-copy.center h2{
    margin:0 0 24px !important;
    font-size:28px !important;
    line-height:1.18 !important;
    text-align:center !important;
  }

  .info-copy p,
  .info-copy.center p{
    font-size:15px !important;
    line-height:1.54 !important;
    text-align:center !important;
  }

  .info-copy.left p{
    text-align:left !important;
    line-height:1.36 !important;
  }

  .info-copy ul{
    font-size:15px !important;
    line-height:1.32 !important;
    padding-left:18px !important;
  }

  .info-copy li{margin-bottom:7px !important;}

  .footer{
    padding-top:35px !important;
    font-size:14px !important;
  }

  .footer-inner{
    width:calc(100% - 40px) !important;
    min-height:0 !important;
    display:block !important;
    padding:0 0 20px !important;
    border-bottom:1px solid #606060 !important;
  }

  .footer-logo{
    width:82px !important;
    height:58px !important;
    margin:0 0 10px !important;
  }

  .footer-text{line-height:1.35 !important;}
  .footer-copy{font-size:10px !important;padding:18px 10px 44px !important;}
}


/* === v18 mobile cleanup: no side bands + mobile fixed orange top button === */
.scroll-top{
  display:none;
}

@media (max-width:900px){
  .site-header,
  main,
  .mobile-panel{
    width:100% !important;
    max-width:100% !important;
    margin-left:0 !important;
    margin-right:0 !important;
  }

  .mobile-panel{
    left:0 !important;
    right:0 !important;
    transform:none !important;
  }

  body.menu-open .site-header{
    left:0 !important;
    right:0 !important;
    transform:none !important;
    width:100% !important;
    max-width:100% !important;
  }

  .scroll-top{
    display:block;
    position:fixed;
    right:18px;
    bottom:76px;
    width:42px;
    height:42px;
    border:0;
    border-radius:50%;
    background:#f47a18;
    z-index:2200;
    cursor:pointer;
    box-shadow:none;
  }

  .scroll-top::before{
    content:"";
    position:absolute;
    left:50%;
    top:54%;
    width:14px;
    height:14px;
    border-left:5px solid #fff;
    border-top:5px solid #fff;
    transform:translate(-50%,-50%) rotate(45deg);
    border-radius:2px;
  }
}

/* === v19 desktop fix: van-beach-dark full image on desktop only === */
@media (min-width:901px){
  .home-card.text-card::after{
    background-color:#6d767b !important;
    background-image:url('../img/van-beach-dark.webp') !important;
    background-repeat:no-repeat !important;
    background-position:center bottom !important;
    background-size:contain !important;
  }
}

/* === v22 Web3Forms availability popup, Wix-like === */
body.modal-open{overflow:hidden}
.form-modal[aria-hidden="true"]{display:none}
.form-modal{
  position:fixed;
  inset:0;
  z-index:3000;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding:0;
  overflow:auto;
}
.form-modal-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.36);
}
.form-modal-panel{
  position:relative;
  z-index:1;
  width:min(860px,100vw);
  margin:84px auto 40px;
  max-height:none;
  overflow:visible;
  background:#25814f;
  color:#fff;
  border-radius:0;
  padding:28px 40px 34px;
  box-shadow:0 10px 30px rgba(0,0,0,.22);
}
.form-modal-panel h2{
  margin:0 0 34px;
  font-size:31px;
  line-height:1;
  font-weight:400;
  letter-spacing:-.02em;
  color:#fff;
}
.form-modal-intro{display:none}
.form-modal-close{
  position:absolute;
  top:24px;
  right:24px;
  width:18px;
  height:18px;
  border:0;
  background:transparent;
  cursor:pointer;
  z-index:2;
}
.form-modal-close::before,
.form-modal-close::after{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:18px;
  height:2px;
  background:#fff;
}
.form-modal-close::before{transform:rotate(45deg)}
.form-modal-close::after{transform:rotate(-45deg)}
.request-form{
  display:block;
  margin:0;
}
.botcheck{display:none !important}
.form-grid{
  display:grid;
  grid-template-columns:190px 1fr 1fr;
  column-gap:16px;
  row-gap:22px;
  align-items:end;
}
.form-section-label{
  font-size:14px;
  line-height:1.25;
  font-weight:800;
  color:#fff;
  align-self:start;
  padding-top:3px;
}
.request-form label.field{
  display:grid;
  gap:7px;
  font-size:12px;
  line-height:1.15;
  font-weight:800;
  color:#fff;
}
.request-form input,
.request-form select,
.request-form textarea{
  width:100%;
  height:42px;
  border:0;
  border-bottom:1px solid rgba(255,255,255,.78);
  border-radius:0;
  background:#1f6c42;
  color:#fff;
  padding:0 12px;
  font:inherit;
  font-size:14px;
  outline:none;
  box-shadow:none;
  appearance:auto;
}
.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus{
  border-bottom-color:#fff;
  background:#1d643e;
}
.request-form input[type="date"]{color-scheme:dark}
.form-divider{
  grid-column:1 / -1;
  height:1px;
  background:rgba(255,255,255,.28);
  margin:8px 0 2px;
}
.travel-label{grid-column:1;grid-row:1}
.field-pickup{grid-column:2;grid-row:1}
.field-dropoff{grid-column:3;grid-row:1}
.field-start{grid-column:2;grid-row:2}
.field-end{grid-column:3;grid-row:2}
.field-passengers{grid-column:2;grid-row:3}
.field-rv{grid-column:3;grid-row:3}
.form-divider{grid-row:4}
.personal-label{grid-column:1;grid-row:5}
.field-first{grid-column:2;grid-row:5}
.field-last{grid-column:3;grid-row:5}
.field-phone{grid-column:2;grid-row:6}
.field-email{grid-column:3;grid-row:6}
.form-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  margin-top:24px;
}
.form-submit{
  min-width:128px;
  height:46px;
  border:0;
  border-radius:24px;
  background:#fff;
  color:#111;
  font-size:14px;
  font-weight:400;
  cursor:pointer;
}
.form-submit:disabled{opacity:.65;cursor:wait}
.form-status{
  min-height:18px;
  margin:10px 0 0;
  font-size:12px;
  line-height:1.2;
  font-weight:800;
  color:#fff;
}
.form-status.is-error{color:#ffd4d4}

@media (max-width:900px){
  .form-modal{
    align-items:flex-start;
    justify-content:center;
    padding:0;
  }
  .form-modal-panel{
    width:252px;
    max-width:calc(100vw - 32px);
    margin:70px auto 28px;
    padding:27px 15px 30px;
  }
  .form-modal-panel h2{
    font-size:22px;
    line-height:1.05;
    margin:0 0 25px;
  }
  .form-modal-close{
    top:20px;
    right:15px;
  }
  .form-grid{
    display:block;
  }
  .form-section-label{
    display:block;
    margin:0 0 14px;
    font-size:13px;
  }
  .personal-label{
    margin-top:24px;
  }
  .request-form label.field{
    display:grid;
    gap:7px;
    margin-bottom:12px;
    font-size:12px;
  }
  .request-form input,
  .request-form select,
  .request-form textarea{
    height:38px;
    font-size:14px;
    padding:0 10px;
  }
  .form-divider{
    height:1px;
    margin:22px 0 22px;
  }
  .form-actions{
    align-items:center;
    margin-top:20px;
  }
  .form-submit{
    min-width:118px;
    height:42px;
    font-size:13px;
  }
  .form-status{
    text-align:center;
  }
}

/* === v23 form fixes: JSON submit + fullscreen mobile popup === */
@media (max-width:900px){
  body.modal-open{
    overflow:hidden !important;
  }
  .form-modal{
    position:fixed !important;
    inset:0 !important;
    width:100vw !important;
    height:100dvh !important;
    display:block !important;
    padding:0 !important;
    overflow:hidden !important;
    background:#25814f !important;
  }
  .form-modal[aria-hidden="true"]{
    display:none !important;
  }
  .form-modal-backdrop{
    display:none !important;
  }
  .form-modal-panel{
    width:100vw !important;
    max-width:none !important;
    min-height:100dvh !important;
    height:100dvh !important;
    margin:0 !important;
    padding:28px 18px 36px !important;
    overflow-y:auto !important;
    box-sizing:border-box !important;
    background:#25814f !important;
    box-shadow:none !important;
  }
  .form-modal-panel h2{
    font-size:28px !important;
    line-height:1.05 !important;
    margin:0 34px 28px 0 !important;
  }
  .form-modal-close{
    top:24px !important;
    right:20px !important;
    width:22px !important;
    height:22px !important;
  }
  .form-modal-close::before,
  .form-modal-close::after{
    width:22px !important;
    top:10px !important;
  }
  .form-grid{
    display:block !important;
  }
  .form-section-label{
    display:block !important;
    margin:0 0 15px !important;
    font-size:14px !important;
  }
  .personal-label{
    margin-top:28px !important;
  }
  .request-form label.field{
    display:grid !important;
    gap:7px !important;
    margin-bottom:15px !important;
    font-size:13px !important;
  }
  .request-form input,
  .request-form select,
  .request-form textarea{
    height:40px !important;
    font-size:14px !important;
    padding:0 10px !important;
  }
  .form-divider{
    display:block !important;
    height:1px !important;
    margin:26px 0 24px !important;
  }
  .form-actions{
    align-items:center !important;
    margin-top:22px !important;
    padding-bottom:24px !important;
  }
  .form-submit{
    min-width:126px !important;
    height:44px !important;
    font-size:14px !important;
  }
  .form-status{
    width:100% !important;
    text-align:center !important;
    font-size:12px !important;
  }
}


/* === v24: safer Web3Forms submit + real fullscreen mobile modal === */
@media (max-width:900px){
  body.modal-open{
    overflow:hidden !important;
  }
  body.modal-open .site-header,
  body.modal-open main,
  body.modal-open footer{
    width:100vw !important;
    max-width:none !important;
  }
  .form-modal{
    position:fixed !important;
    top:0 !important;
    right:0 !important;
    bottom:0 !important;
    left:0 !important;
    width:100vw !important;
    min-width:100vw !important;
    max-width:none !important;
    height:100dvh !important;
    min-height:100dvh !important;
    margin:0 !important;
    padding:0 !important;
    transform:none !important;
    background:#25814f !important;
    overflow:hidden !important;
    z-index:5000 !important;
  }
  .form-modal[aria-hidden="true"]{display:none !important;}
  .form-modal-backdrop{display:none !important;}
  .form-modal-panel{
    position:relative !important;
    top:0 !important;
    left:0 !important;
    right:auto !important;
    width:100vw !important;
    min-width:100vw !important;
    max-width:none !important;
    height:100dvh !important;
    min-height:100dvh !important;
    margin:0 !important;
    padding:28px 18px 44px !important;
    border-radius:0 !important;
    box-shadow:none !important;
    overflow-y:auto !important;
    background:#25814f !important;
  }
}


/* === v25: immagine van-beach ritagliata come le altre + fade bianco pagina === */
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:9000;
  pointer-events:none;
  background:#fff;
  opacity:1;
  transition:opacity .75s cubic-bezier(.22,.61,.36,1);
}
body.page-ready::before{
  opacity:0;
}
body.page-leaving::before{
  opacity:1;
  transition-duration:.42s;
}
@media (prefers-reduced-motion:reduce){
  body::before{display:none;transition:none;}
}

@media (min-width:901px){
  .home-card.text-card::after{
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    width:100% !important;
    height:360px !important;
    background-color:#6d767b !important;
    background-image:url('../img/van-beach-dark.webp') !important;
    background-repeat:no-repeat !important;
    background-size:cover !important;
    background-position:center 66% !important;
  }
}

/* === v26 final: Perché conviene reveal + van-beach cover crop === */
.home-section-title .dot,
.home-section-title h2{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .9s ease, transform .9s ease;
}
.home-section-title.is-visible .dot,
.home-section-title.is-visible h2{
  opacity:1;
  transform:translateY(0);
}
.home-section-title .dot{transition-delay:.04s;}
.home-section-title h2{transition-delay:.12s;}

@media (min-width:901px){
  .home-card.text-card::after{
    content:"" !important;
    position:absolute !important;
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    width:100% !important;
    height:360px !important;
    background-color:#6d767b !important;
    background-image:url('../img/van-beach-dark.webp') !important;
    background-repeat:no-repeat !important;
    background-size:cover !important;
    background-position:center 55% !important;
    opacity:1 !important;
    z-index:1 !important;
  }
}

@media (max-width:900px){
  .home-card.text-card::after{
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    width:100% !important;
    height:145px !important;
    background-color:#6d767b !important;
    background-image:url('../img/van-beach-dark.webp') !important;
    background-repeat:no-repeat !important;
    background-size:cover !important;
    background-position:center 55% !important;
  }
}


/* === v27 hard fix: right text card uses real full-width image block === */
.home-card.text-card{
  display:flex !important;
  flex-direction:column !important;
  justify-content:space-between !important;
  padding:0 !important;
  background:#8a9397 !important;
}
.home-card.text-card::after{
  content:none !important;
  display:none !important;
}
.home-card.text-card .text-card-copy{
  display:block !important;
  position:relative !important;
  z-index:2 !important;
  padding:66px 28px 0 !important;
  opacity:0;
  transform:translateY(18px);
  transition:opacity .9s ease, transform .9s ease;
}
.home-card.text-card.is-visible .text-card-copy{
  opacity:1 !important;
  transform:translateY(0) !important;
}
.home-card.text-card .text-card-photo{
  display:block !important;
  position:relative !important;
  width:100% !important;
  height:360px !important;
  margin-top:auto !important;
  background:#8a9397 url('../img/van-beach-dark.webp') center 54% / cover no-repeat !important;
  flex:0 0 360px !important;
  pointer-events:none !important;
}
@media (min-width:901px){
  .home-card.text-card{
    height:707px !important;
  }
  .home-card.text-card .text-card-copy{
    font-size:39px !important;
    line-height:1.23 !important;
  }
}
@media (max-width:900px){
  .home-card.text-card{
    height:255px !important;
  }
  .home-card.text-card .text-card-copy{
    padding:26px 22px 0 !important;
    font-size:25px !important;
    line-height:1.22 !important;
    opacity:1 !important;
    transform:none !important;
  }
  .home-card.text-card .text-card-photo{
    height:126px !important;
    flex:0 0 126px !important;
    background-position:center 52% !important;
  }
}

/* === v28: mobile hero uses the real video === */
.home-hero{
  background:#111 !important;
}
@media (max-width:900px){
  .home-hero{
    position:relative !important;
    height:350px !important;
    min-height:350px !important;
    overflow:hidden !important;
    background:#111 !important;
  }
  .hero-video,
  .home-hero video{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:50% 50% !important;
    z-index:0 !important;
  }
  .home-hero-overlay{
    display:block !important;
    position:absolute !important;
    inset:0 !important;
    opacity:1 !important;
    background:rgba(0,0,0,.36) !important;
    z-index:1 !important;
  }
  .home-hero-inner{
    position:relative !important;
    z-index:2 !important;
  }
}



/* === v29: text-card image must start behind the lower text, not below it === */
.home-card.text-card{
  position:relative !important;
  display:block !important;
  overflow:hidden !important;
  padding:0 !important;
  background:#8a9397 !important;
}
.home-card.text-card::after{
  content:none !important;
  display:none !important;
}
.home-card.text-card .text-card-copy{
  position:relative !important;
  z-index:3 !important;
  display:block !important;
  padding:66px 28px 0 !important;
  opacity:0;
  transform:translateY(18px);
  transition:opacity .9s ease, transform .9s ease;
}
.home-card.text-card.is-visible .text-card-copy{
  opacity:1 !important;
  transform:translateY(0) !important;
}
.home-card.text-card .text-card-photo{
  position:absolute !important;
  left:0 !important;
  right:0 !important;
  bottom:0 !important;
  z-index:1 !important;
  width:100% !important;
  height:55% !important;
  margin:0 !important;
  flex:none !important;
  display:block !important;
  background-image:linear-gradient(rgba(0,0,0,.36), rgba(0,0,0,.36)), url('../img/van-beach-dark.webp') !important;
  background-repeat:no-repeat !important;
  background-size:cover !important;
  background-position:center 53% !important;
  pointer-events:none !important;
}
@media (min-width:901px){
  .home-card.text-card{
    height:707px !important;
  }
  .home-card.text-card .text-card-copy{
    font-size:39px !important;
    line-height:1.23 !important;
  }
}
@media (max-width:900px){
  .home-card.text-card{
    height:255px !important;
  }
  .home-card.text-card .text-card-copy{
    padding:26px 22px 0 !important;
    font-size:25px !important;
    line-height:1.22 !important;
    opacity:1 !important;
    transform:none !important;
  }
  .home-card.text-card .text-card-photo{
    height:55% !important;
    background-position:center 52% !important;
  }
}


/* === v30 definitive text-card: single layered card, no separate photo block === */
.home-card.text-card{
  position:relative !important;
  display:block !important;
  overflow:hidden !important;
  padding:0 !important;
  background-color:#8f999d !important;
  background-image:
    linear-gradient(to bottom,
      #8f999d 0%,
      #8f999d 43%,
      rgba(0,0,0,.26) 43%,
      rgba(0,0,0,.26) 100%),
    url('../img/van-beach-dark.webp') !important;
  background-repeat:no-repeat !important;
  background-size:100% 100%, 100% auto !important;
  background-position:center top, center bottom !important;
}
.home-card.text-card::before,
.home-card.text-card::after{
  content:none !important;
  display:none !important;
}
.home-card.text-card .text-card-photo{
  display:none !important;
}
.home-card.text-card .text-card-copy{
  position:relative !important;
  z-index:3 !important;
  display:block !important;
  padding:66px 28px 0 !important;
  color:#fff !important;
  opacity:0;
  transform:translateY(18px);
  transition:opacity .9s ease, transform .9s ease;
}
.home-card.text-card.is-visible .text-card-copy{
  opacity:1 !important;
  transform:translateY(0) !important;
}
@media (min-width:901px){
  .home-card.text-card{
    height:707px !important;
  }
  .home-card.text-card .text-card-copy{
    font-size:39px !important;
    line-height:1.23 !important;
    letter-spacing:0 !important;
  }
}
@media (max-width:900px){
  .home-card.text-card{
    height:310px !important;
    background-image:
      linear-gradient(to bottom,
        #8f999d 0%,
        #8f999d 42%,
        rgba(0,0,0,.28) 42%,
        rgba(0,0,0,.28) 100%),
      url('../img/van-beach-dark.webp') !important;
    background-size:100% 100%, 100% auto !important;
    background-position:center top, center bottom !important;
  }
  .home-card.text-card .text-card-copy{
    padding:24px 18px 0 !important;
    font-size:22px !important;
    line-height:1.18 !important;
    opacity:1 !important;
    transform:none !important;
  }
}

/* v30: video source is valid on mobile; keep the video visible at mobile breakpoints */
@media (max-width:900px){
  .hero-video,
  .home-hero video{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:50% 50% !important;
  }
}

/* === v31: text-card uses image only, no grey block === */
.home-card.text-card{
  position:relative !important;
  display:block !important;
  overflow:hidden !important;
  padding:0 !important;
  background-color:transparent !important;
  background-image:
    linear-gradient(rgba(0,0,0,.40), rgba(0,0,0,.40)),
    url('../img/van-beach-dark.webp') !important;
  background-repeat:no-repeat !important;
  background-size:cover !important;
  background-position:center bottom !important;
}
.home-card.text-card::before,
.home-card.text-card::after{
  content:none !important;
  display:none !important;
}
.home-card.text-card .text-card-photo{
  display:none !important;
}
.home-card.text-card .text-card-copy{
  position:relative !important;
  z-index:3 !important;
  display:block !important;
  color:#fff !important;
  background:transparent !important;
  opacity:0;
  transform:translateY(18px);
  transition:opacity .9s ease, transform .9s ease;
}
.home-card.text-card.is-visible .text-card-copy{
  opacity:1 !important;
  transform:translateY(0) !important;
}
@media (min-width:901px){
  .home-card.text-card{
    height:707px !important;
    background-position:center bottom !important;
  }
  .home-card.text-card .text-card-copy{
    padding:66px 28px 0 !important;
    font-size:39px !important;
    line-height:1.23 !important;
    letter-spacing:0 !important;
  }
}
@media (max-width:900px){
  .home-card.text-card{
    height:310px !important;
    background-position:center bottom !important;
  }
  .home-card.text-card .text-card-copy{
    padding:24px 18px 0 !important;
    font-size:22px !important;
    line-height:1.18 !important;
    opacity:1 !important;
    transform:none !important;
  }
}

/* === v33 final mobile fidelity patch: align mobile layout to original screens without touching desktop === */
@media (max-width:900px){
  .site-header,
  .home .site-header,
  .perche .site-header{
    position:relative !important;
    inset:auto !important;
    top:auto !important;
    left:auto !important;
    right:auto !important;
    height:90px !important;
    padding:0 22px !important;
    background:#4b4b4b !important;
    z-index:2100 !important;
  }

  .logo-link{
    width:92px !important;
    height:66px !important;
  }

  .menu-btn{
    width:44px !important;
    height:44px !important;
    padding:8px !important;
    z-index:2102 !important;
  }

  .mobile-panel{
    display:flex !important;
    position:fixed !important;
    inset:90px 0 0 0 !important;
    padding:24px 30px 30px !important;
    background:#0f4f2b !important;
    align-items:flex-start !important;
    justify-content:flex-start !important;
    gap:34px !important;
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
    transition:opacity .2s ease !important, visibility .2s ease !important;
  }

  .mobile-panel.is-open{
    opacity:1 !important;
    visibility:visible !important;
    pointer-events:auto !important;
  }

  body.menu-open .site-header{
    background:#0f4f2b !important;
  }

  body.menu-open .logo-link{
    opacity:0 !important;
    pointer-events:none !important;
  }

  .mobile-panel a{
    width:auto !important;
    text-align:left !important;
  }

  .mobile-panel a[data-open-form]{
    order:1 !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    min-height:72px !important;
    padding:0 28px !important;
    border:3px solid #fff !important;
    border-radius:999px !important;
    color:#fff !important;
    font-size:21px !important;
    line-height:1 !important;
    font-weight:400 !important;
  }

  .mobile-panel a:not([data-open-form]){
    order:2 !important;
    color:rgba(255,255,255,.72) !important;
    font-size:22px !important;
    line-height:1.15 !important;
    font-weight:400 !important;
  }

  .home-hero{
    margin-top:0 !important;
    padding-top:0 !important;
    height:390px !important;
    min-height:390px !important;
    overflow:hidden !important;
    background:#111 !important;
  }

  .hero-video,
  .home-hero video{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:50% 50% !important;
  }

  .home-hero-overlay{
    display:block !important;
    background:rgba(0,0,0,.32) !important;
  }

  .home-hero-inner{
    position:relative !important;
    z-index:2 !important;
    width:100% !important;
    height:100% !important;
    margin-top:0 !important;
    padding:0 20px 26px !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:flex-end !important;
    align-items:center !important;
  }

  .home-title{
    margin:0 !important;
    font-size:31px !important;
    line-height:1.05 !important;
    text-align:center !important;
    letter-spacing:-.02em !important;
  }

  .home-title::after{
    content:"Viaggia come vuoi" !important;
    display:block !important;
    margin-top:2px !important;
    font-size:18px !important;
    line-height:1.12 !important;
    font-weight:400 !important;
    text-align:center !important;
  }

  .search-pill{
    display:block !important;
    width:auto !important;
    height:auto !important;
    margin-top:0 !important;
    padding:0 !important;
    background:transparent !important;
    border-radius:0 !important;
  }

  .search-text{
    display:none !important;
  }

  .search-button{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    min-width:282px !important;
    height:56px !important;
    margin:18px auto 0 !important;
    padding:0 24px !important;
    border-radius:999px !important;
    font-size:18px !important;
    font-weight:400 !important;
  }

  .home-section-title{
    height:112px !important;
    justify-content:flex-start !important;
    padding:0 24px 0 30px !important;
    gap:16px !important;
  }

  .home-section-link{
    justify-content:flex-start !important;
    gap:16px !important;
  }

  .home-section-title .dot{
    width:29px !important;
    height:29px !important;
  }

  .home-section-title h2{
    font-size:35px !important;
    line-height:1 !important;
  }

  .home-cards{
    width:100% !important;
    display:block !important;
    margin:0 !important;
  }

  .home-card{
    width:100% !important;
    border:0 !important;
  }

  .home-card.tall{
    height:392px !important;
  }

  .home-card.small{
    height:176px !important;
  }

  .home-card .card-title{
    left:20px !important;
    top:18px !important;
    right:18px !important;
    font-size:32px !important;
    line-height:1.04 !important;
    opacity:1 !important;
    transform:none !important;
  }

  .home-card.road-card img,
  .home-card.van-card img,
  .home-card.dash-card img{
    object-position:center center !important;
  }

  .home-card.text-card{
    height:372px !important;
    background-image:linear-gradient(rgba(0,0,0,.38), rgba(0,0,0,.38)), url('../img/van-beach-dark.webp') !important;
    background-position:center center !important;
    background-size:cover !important;
  }

  .home-card.text-card .text-card-copy{
    padding:22px 18px 0 !important;
    font-size:23px !important;
    line-height:1.18 !important;
    opacity:1 !important;
    transform:none !important;
  }

  .right-stack{
    display:block !important;
  }

  .map-section{
    height:260px !important;
  }

  .perche main{
    padding-top:90px !important;
  }

  .intro-text{
    min-height:0 !important;
    padding:48px 22px 32px !important;
  }

  .intro-text h1{
    max-width:300px !important;
    margin:0 auto 28px !important;
    font-size:33px !important;
    line-height:1.28 !important;
    text-align:center !important;
  }

  .intro-text p{
    max-width:300px !important;
    font-size:15px !important;
    line-height:1.34 !important;
    text-align:left !important;
  }

  .info-row,
  .info-row.privati,
  .info-row.aziende{
    display:flex !important;
    flex-direction:column !important;
    min-height:0 !important;
    border-top:0 !important;
  }

  .info-row.reverse .info-media{order:1 !important;}
  .info-row.reverse .info-copy{order:2 !important;}

  .info-media,
  .info-row.privati .info-media,
  .info-row.aziende .info-media{
    order:1 !important;
    min-height:0 !important;
    border-top:0 !important;
  }

  .info-media.interior{height:260px !important;}
  .info-media.car{height:370px !important;}
  .info-media.fleet{height:240px !important;}
  .info-media.business{height:230px !important;}

  .info-copy,
  .info-row.privati .info-copy,
  .info-row.aziende .info-copy{
    order:2 !important;
    min-height:0 !important;
    padding:34px 22px 40px !important;
    border-top:0 !important;
  }

  .info-copy-inner,
  .info-copy.center .info-copy-inner,
  .info-copy.left .info-copy-inner{
    max-width:300px !important;
  }

  .info-copy h2,
  .info-copy.center h2{
    margin:0 0 24px !important;
    font-size:36px !important;
    line-height:1.12 !important;
    text-align:center !important;
  }

  .info-copy p,
  .info-copy.center p{
    font-size:16px !important;
    line-height:1.52 !important;
    text-align:center !important;
  }

  .info-copy.left p{
    text-align:left !important;
    line-height:1.42 !important;
  }

  .info-copy ul{
    padding-left:18px !important;
    font-size:15px !important;
    line-height:1.38 !important;
  }

  .info-copy li{
    margin-bottom:8px !important;
  }

  .scroll-top{
    display:block !important;
    position:fixed !important;
    right:18px !important;
    bottom:90px !important;
    width:58px !important;
    height:58px !important;
    border-radius:50% !important;
    background:#f47a18 !important;
    z-index:2200 !important;
  }

  .scroll-top::before{
    width:16px !important;
    height:16px !important;
    border-left-width:5px !important;
    border-top-width:5px !important;
  }
}

/* === v34 MOBILE ONLY: faithful Wix mobile layout; desktop rules remain unchanged === */
.card-title-mobile{display:none}

@media (max-width:900px){
  html,body{
    width:100% !important;
    min-width:0 !important;
    max-width:none !important;
    overflow-x:hidden !important;
  }

  .site-header,
  .home .site-header,
  .perche .site-header,
  main,
  .mobile-panel{
    width:100% !important;
    max-width:none !important;
    margin-left:0 !important;
    margin-right:0 !important;
    transform:none !important;
  }

  .site-header,
  .home .site-header,
  .perche .site-header{
    position:relative !important;
    inset:auto !important;
    height:90px !important;
    padding:0 18px !important;
    background:#4b4b4b !important;
    z-index:2100 !important;
  }

  .logo-link{
    width:82px !important;
    height:62px !important;
  }

  .menu-btn{
    display:block !important;
    width:42px !important;
    height:42px !important;
    padding:8px !important;
    z-index:2102 !important;
  }

  .mobile-panel{
    display:flex !important;
    position:fixed !important;
    inset:90px 0 0 0 !important;
    padding:30px 25px !important;
    background:#104f2d !important;
    flex-direction:column !important;
    align-items:flex-start !important;
    justify-content:flex-start !important;
    gap:0 !important;
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
    transition:opacity .2s ease,visibility .2s ease !important;
    z-index:2099 !important;
  }

  .mobile-panel.is-open{
    opacity:1 !important;
    visibility:visible !important;
    pointer-events:auto !important;
  }

  body.menu-open .site-header{
    position:fixed !important;
    inset:0 0 auto 0 !important;
    background:#104f2d !important;
  }

  body.menu-open .logo-link{
    opacity:0 !important;
    pointer-events:none !important;
  }

  .mobile-panel a[data-open-form]{
    order:1 !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    min-height:58px !important;
    padding:0 26px !important;
    border:3px solid #fff !important;
    border-radius:999px !important;
    color:#fff !important;
    font-size:20px !important;
    line-height:1 !important;
    font-weight:400 !important;
  }

  .mobile-panel a:not([data-open-form]){
    order:2 !important;
    margin-top:58px !important;
    color:rgba(255,255,255,.72) !important;
    font-size:22px !important;
    line-height:1.15 !important;
    font-weight:400 !important;
  }

  body.menu-open{overflow:hidden !important}

  .home-hero{
    margin-top:0 !important;
    padding-top:0 !important;
    height:455px !important;
    min-height:455px !important;
    overflow:hidden !important;
    background:#111 !important;
  }

  .hero-video,
  .home-hero video{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:50% 50% !important;
    z-index:0 !important;
  }

  .home-hero::after{display:none !important}

  .home-hero-overlay{
    display:block !important;
    position:absolute !important;
    inset:0 !important;
    background:rgba(0,0,0,.34) !important;
    opacity:1 !important;
    z-index:1 !important;
  }

  .home-hero-inner{
    position:relative !important;
    z-index:2 !important;
    width:100% !important;
    height:auto !important;
    margin-top:52px !important;
    padding:0 16px !important;
    display:block !important;
  }

  .home-title{
    margin:0 !important;
    font-size:27px !important;
    line-height:1.05 !important;
    font-weight:800 !important;
    letter-spacing:-.02em !important;
    text-align:center !important;
  }

  .home-title::after{
    content:"Viaggia come vuoi" !important;
    display:block !important;
    margin-top:2px !important;
    font-size:18px !important;
    line-height:1.12 !important;
    font-weight:400 !important;
  }

  .search-pill{
    display:block !important;
    width:auto !important;
    height:auto !important;
    padding:0 !important;
    background:transparent !important;
    border-radius:0 !important;
  }

  .search-text{display:none !important}

  .search-button{
    display:flex !important;
    width:max-content !important;
    min-width:0 !important;
    height:48px !important;
    margin:18px auto 0 !important;
    padding:0 22px !important;
    border-radius:999px !important;
    font-size:15px !important;
    font-weight:700 !important;
  }

  .home-section-title{
    height:96px !important;
    padding:0 22px 0 30px !important;
    justify-content:flex-start !important;
    gap:14px !important;
  }

  .home-section-link{
    justify-content:flex-start !important;
    gap:14px !important;
  }

  .home-section-title .dot{
    width:22px !important;
    height:22px !important;
  }

  .home-section-title h2{
    font-size:26px !important;
    line-height:1 !important;
  }

  .home-cards{
    width:100% !important;
    display:block !important;
    margin:0 !important;
  }

  .home-card{
    width:100% !important;
    border:0 !important;
  }

  .home-card.tall{height:330px !important}
  .home-card.small{height:236px !important}

  .home-card.road-card img{
    object-position:50% 50% !important;
  }

  .home-card.van-card img{
    object-position:52% 50% !important;
  }

  .home-card.dash-card img{
    object-position:50% 50% !important;
  }

  .card-title-desktop{display:none !important}
  .card-title-mobile{
    display:block !important;
    left:20px !important;
    top:20px !important;
    right:14px !important;
    font-size:27px !important;
    line-height:1.04 !important;
    font-weight:400 !important;
    opacity:1 !important;
    transform:none !important;
  }

  .card-title-mobile>span{
    display:block !important;
    white-space:nowrap !important;
  }

  .right-stack{display:block !important}

  .home-card.text-card{
    height:310px !important;
    background-image:linear-gradient(rgba(0,0,0,.40),rgba(0,0,0,.40)),url('../img/van-beach-dark.webp') !important;
    background-position:center bottom !important;
    background-size:cover !important;
  }

  .home-card.text-card .text-card-copy{
    padding:24px 18px 0 !important;
    font-size:22px !important;
    line-height:1.18 !important;
    opacity:1 !important;
    transform:none !important;
  }

  .map-section{height:260px !important}

  .perche main{padding-top:0 !important}

  .intro-text{
    min-height:0 !important;
    padding:46px 20px 30px !important;
  }

  .intro-text h1{
    max-width:290px !important;
    margin:0 auto 28px !important;
    font-size:31px !important;
    line-height:1.33 !important;
    text-align:center !important;
  }

  .intro-text p{
    max-width:290px !important;
    font-size:15px !important;
    line-height:1.3 !important;
    text-align:left !important;
  }

  .info-row,
  .info-row.privati,
  .info-row.aziende{
    display:flex !important;
    flex-direction:column !important;
    min-height:0 !important;
    border-top:0 !important;
  }

  .info-row.reverse .info-media{order:1 !important}
  .info-row.reverse .info-copy{order:2 !important}

  .info-media,
  .info-row.privati .info-media,
  .info-row.aziende .info-media{
    order:1 !important;
    min-height:0 !important;
    border-top:0 !important;
  }

  .info-media.interior{height:320px !important}
  .info-media.car{height:300px !important}
  .info-media.fleet{height:260px !important}
  .info-media.business{height:260px !important}

  .info-copy,
  .info-row.privati .info-copy,
  .info-row.aziende .info-copy{
    order:2 !important;
    min-height:0 !important;
    padding:42px 20px 40px !important;
    border-top:0 !important;
  }

  .info-copy-inner,
  .info-copy.center .info-copy-inner,
  .info-copy.left .info-copy-inner{
    max-width:300px !important;
  }

  .info-copy h2,
  .info-copy.center h2{
    margin:0 0 30px !important;
    font-size:30px !important;
    line-height:1.16 !important;
    text-align:center !important;
  }

  .info-copy p,
  .info-copy.center p{
    font-size:16px !important;
    line-height:1.55 !important;
    text-align:center !important;
  }

  .info-copy.left p{
    text-align:left !important;
    line-height:1.42 !important;
  }

  .info-copy ul{
    padding-left:18px !important;
    font-size:15px !important;
    line-height:1.36 !important;
  }

  .info-copy li{margin-bottom:8px !important}

  .scroll-top{
    display:block !important;
    position:fixed !important;
    right:18px !important;
    bottom:76px !important;
    width:42px !important;
    height:42px !important;
    border-radius:50% !important;
    background:#f47a18 !important;
    z-index:2200 !important;
  }
}

/* === v35 mobile polish: closer crop + fade-up reveal for home cards, desktop untouched === */
@media (max-width:900px){
  .home-section-title{
    height:102px !important;
    padding:0 22px 0 28px !important;
    gap:14px !important;
  }

  .home-section-link{
    gap:14px !important;
  }

  .home-section-title .dot{
    width:24px !important;
    height:24px !important;
  }

  .home-section-title h2{
    font-size:28px !important;
  }

  .home-card,
  .map-section{
    opacity:0;
    transform:translateY(34px);
    transition:opacity .72s cubic-bezier(.22,.61,.36,1), transform .72s cubic-bezier(.22,.61,.36,1);
    will-change:opacity,transform;
  }

  .home-card.is-visible,
  .map-section.is-visible{
    opacity:1;
    transform:translateY(0);
  }

  .home-card.tall{
    height:430px !important;
  }

  .home-card.small{
    height:208px !important;
  }

  .home-card img{
    filter:brightness(.66) !important;
  }

  .home-card .card-title,
  .card-title-mobile{
    left:16px !important;
    top:18px !important;
    right:18px !important;
    font-size:31px !important;
    line-height:1.02 !important;
    letter-spacing:-.02em !important;
  }

  .card-title-mobile > span{
    display:block !important;
    white-space:normal !important;
  }

  .home-card.road-card img{
    object-position:56% 50% !important;
  }

  .home-card.van-card img{
    object-position:58% 50% !important;
  }

  .home-card.dash-card img{
    object-position:50% 46% !important;
  }

  .home-card.text-card{
    height:332px !important;
    background-image:linear-gradient(rgba(0,0,0,.36),rgba(0,0,0,.36)),url('../img/van-beach-dark.webp') !important;
    background-position:center 56% !important;
    background-size:cover !important;
  }

  .home-card.text-card .text-card-copy{
    padding:22px 18px 0 !important;
    font-size:22px !important;
    line-height:1.16 !important;
    letter-spacing:-.01em !important;
  }
}

/* === v37 cookie/privacy system — desktop and mobile === */
.cookie-banner[hidden]{display:none !important}
.cookie-banner{
  position:fixed;
  left:18px;
  right:18px;
  bottom:18px;
  z-index:8500;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  max-width:1120px;
  margin:0 auto;
  padding:18px 20px;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(48,48,48,.97);
  color:#fff;
  box-shadow:0 12px 36px rgba(0,0,0,.24);
  font-size:14px;
  line-height:1.35;
}
.cookie-banner-copy{max-width:760px}
.cookie-banner-copy strong{display:block;margin-bottom:4px;font-size:15px}
.cookie-banner-copy p{margin:0;color:rgba(255,255,255,.82)}
.cookie-banner-copy a{text-decoration:underline;text-underline-offset:2px}
.cookie-banner-actions{display:flex;align-items:center;gap:10px;flex:0 0 auto}
.cookie-btn{
  min-width:105px;
  height:42px;
  border-radius:999px;
  padding:0 20px;
  cursor:pointer;
  font-weight:700;
}
.cookie-btn-secondary{border:1px solid rgba(255,255,255,.8);background:transparent;color:#fff}
.cookie-btn-primary{border:1px solid var(--green);background:var(--green);color:#fff}
.cookie-btn:focus-visible,[data-cookie-manage]:focus-visible,[data-map-accept]:focus-visible{outline:3px solid #fff;outline-offset:3px}

.footer-legal{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:8px 18px;
  padding:17px 18px 0;
  font-size:12px;
  color:#777;
}
.footer-legal a,.footer-legal button{color:inherit;text-decoration:underline;text-underline-offset:3px}
.footer-legal button{border:0;background:none;padding:0;cursor:pointer;font:inherit}

.map-consent{position:relative;display:flex;align-items:center;justify-content:center;padding:24px;background:#dce6e9}
.map-consent-content{max-width:520px;text-align:center;color:#303536}
.map-consent-content strong{display:block;margin-bottom:9px;font-size:22px;font-weight:600}
.map-consent-content p{margin:0 0 18px;font-size:15px;line-height:1.45}
.map-consent-content button{
  min-height:44px;
  border:0;
  border-radius:999px;
  padding:0 22px;
  background:var(--green);
  color:#fff;
  cursor:pointer;
  font-weight:700;
}
.map-consent.is-loaded{padding:0}
.map-consent.is-loaded .map-consent-content{display:none}
.map-consent iframe{position:absolute;inset:0;width:100%;height:100%;border:0}

.form-privacy{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:24px 0 0;
  color:#fff;
  font-size:12px;
  line-height:1.35;
  font-weight:600;
}
.form-privacy input{width:17px !important;height:17px !important;min-width:17px;margin:1px 0 0;padding:0;accent-color:#fff}
.form-privacy a{text-decoration:underline;text-underline-offset:2px}

.legal main{padding-top:var(--header-h)}
.legal-page{
  width:min(900px,calc(100% - 48px));
  margin:0 auto;
  padding:82px 0 76px;
  color:#202020;
}
.legal-page h1{margin:0 0 8px;font-size:48px;line-height:1.08;font-weight:400;letter-spacing:-.025em}
.legal-updated{margin:0 0 42px;color:#777;font-size:14px}
.legal-page h2{margin:42px 0 13px;font-size:25px;line-height:1.2;font-weight:600}
.legal-page p,.legal-page li{font-size:16px;line-height:1.65}
.legal-page p{margin:0 0 16px}
.legal-page ul{margin:0 0 18px;padding-left:22px}
.legal-page a{text-decoration:underline;text-underline-offset:3px}
.legal-table-wrap{overflow-x:auto;margin:18px 0 28px}
.legal-table{width:100%;border-collapse:collapse;min-width:680px}
.legal-table th,.legal-table td{border:1px solid #cfcfcf;padding:13px 14px;text-align:left;vertical-align:top;font-size:14px;line-height:1.45}
.legal-table th{background:#f1f1f1;font-weight:700}
.legal-inline-button{border:0;background:none;padding:0;color:inherit;font:inherit;text-decoration:underline;text-underline-offset:3px;cursor:pointer}

@media (max-width:900px){
  .cookie-banner{
    left:0;
    right:0;
    bottom:0;
    width:100%;
    max-width:none;
    margin:0;
    padding:18px 16px calc(18px + env(safe-area-inset-bottom));
    display:block;
    border-left:0;
    border-right:0;
    border-bottom:0;
    font-size:13px;
  }
  .cookie-banner-copy strong{font-size:15px}
  .cookie-banner-actions{margin-top:15px;display:grid;grid-template-columns:1fr 1fr;gap:10px}
  .cookie-btn{width:100%;min-width:0;height:44px}
  .footer-legal{padding-top:15px;gap:9px 14px}
  .map-consent{height:260px !important;padding:22px}
  .map-consent-content strong{font-size:20px}
  .map-consent-content p{font-size:14px}
  .form-privacy{margin-top:20px;font-size:12px}
  .legal main{padding-top:0 !important}
  .legal-page{width:calc(100% - 40px);padding:48px 0 58px}
  .legal-page h1{font-size:36px}
  .legal-updated{margin-bottom:34px}
  .legal-page h2{margin-top:34px;font-size:23px}
  .legal-page p,.legal-page li{font-size:15px;line-height:1.58}
}
.form-privacy input[type="checkbox"]{
  appearance:auto !important;
  -webkit-appearance:checkbox !important;
  background:#fff !important;
  border:1px solid #fff !important;
  border-radius:2px !important;
}

/* === v38 canonical mobile card geometry: cropped boxes + working fade-up === */
@media (max-width:900px){
  .home-card{
    display:block !important;
    position:relative !important;
    overflow:hidden !important;
  }

  .home-card.tall{
    height:94vw !important;
    max-height:390px !important;
    min-height:0 !important;
  }

  .home-card.small{
    height:56vw !important;
    max-height:235px !important;
    min-height:0 !important;
  }

  .home-card > img{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
  }

  .home-card.road-card img{
    object-position:center 50% !important;
  }

  .home-card.van-card img{
    object-position:center 50% !important;
  }

  .home-card.dash-card img{
    object-position:center 46% !important;
  }

  .home-card .card-title,
  .card-title-mobile{
    left:24px !important;
    top:26px !important;
    right:20px !important;
    font-size:30px !important;
    line-height:1.04 !important;
    letter-spacing:-.02em !important;
  }

  .card-title-mobile > span{
    display:block !important;
    white-space:nowrap !important;
  }

  .home-card,
  .map-section{
    opacity:0;
    transform:translateY(30px);
    transition:opacity .78s cubic-bezier(.22,.61,.36,1), transform .78s cubic-bezier(.22,.61,.36,1);
    will-change:opacity,transform;
  }

  .home-card.is-visible,
  .map-section.is-visible{
    opacity:1;
    transform:translateY(0);
  }
}


/* === v39 mobile fix: all three home image cards same proportion on mobile === */
@media (max-width:900px){
  .home-card.dash-card{
    height:94vw !important;
    max-height:390px !important;
    min-height:0 !important;
  }

  .home-card.dash-card img{
    object-position:center 46% !important;
  }
}
