
.home-valuation-section{
  margin-top:24px;
  margin-bottom:8px;
}

.home-valuation-card{
  min-height:330px;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(390px,.95fr);
  align-items:center;
  gap:30px;
  position:relative;
  overflow:hidden;
  border-radius:30px;
  padding:38px 44px;
  text-decoration:none;
  color:#fff;
  background:
    radial-gradient(circle at 78% 20%,rgba(48,229,29,.18),transparent 30%),
    linear-gradient(135deg,#092d22,#0e583b 58%,#103b2d);
  box-shadow:0 22px 55px rgba(8,52,34,.18);
}

.home-valuation-card::before{
  content:"";
  position:absolute;
  width:360px;
  height:360px;
  left:-140px;
  bottom:-220px;
  border-radius:50%;
  border:1px solid rgba(48,229,29,.22);
}

.home-valuation-content,
.home-valuation-visual{
  position:relative;
  z-index:2;
}

.home-valuation-kicker{
  display:inline-flex;
  border-radius:99px;
  padding:7px 12px;
  background:rgba(49,229,29,.13);
  border:1px solid rgba(49,229,29,.3);
  color:#54f33f;
  font-size:12px;
  font-weight:900;
}

.home-valuation-content h2{
  max-width:520px;
  margin:14px 0 9px;
  font-size:34px;
  line-height:1.45;
}

.home-valuation-content p{
  max-width:590px;
  margin:0;
  color:#d1e4d8;
  line-height:2;
  font-size:14px;
}

.home-valuation-benefits{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:19px 0;
}

.home-valuation-benefits span{
  position:relative;
  padding-right:18px;
  color:#e5f1e9;
  font-size:12px;
  font-weight:800;
}

.home-valuation-benefits span::before{
  content:"";
  position:absolute;
  right:0;
  top:50%;
  width:9px;
  height:9px;
  transform:translateY(-50%);
  border-radius:50%;
  background:#31e51d;
  box-shadow:0 0 0 4px rgba(49,229,29,.12);
}

.home-valuation-button{
  width:max-content;
  display:flex;
  align-items:center;
  gap:9px;
  border-radius:14px;
  padding:12px 18px;
  background:#31e51d;
  color:#073b11;
  font-weight:1000;
  box-shadow:0 12px 28px rgba(49,229,29,.24);
  transition:transform .22s ease,box-shadow .22s ease;
}

.home-valuation-button svg{
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  transform:scaleX(-1);
}

.home-valuation-card:hover .home-valuation-button{
  transform:translateX(-5px);
  box-shadow:0 16px 34px rgba(49,229,29,.34);
}

.home-valuation-visual{
  min-height:250px;
  display:grid;
  place-items:center;
}

.valuation-car-art{
  width:100%;
  max-width:430px;
  filter:drop-shadow(0 18px 25px rgba(0,0,0,.22));
}

.valuation-car-art .car-body,
.valuation-car-art .car-line,
.valuation-car-art .wheel-ring,
.valuation-car-art .chart-line,
.valuation-car-art .chart-arrow{
  fill:none;
  stroke:#e7f7ec;
  stroke-width:5;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.valuation-car-art .car-window{
  fill:rgba(49,229,29,.15);
  stroke:#31e51d;
  stroke-width:4;
  stroke-linejoin:round;
}

.valuation-car-art .wheel-core{
  fill:#31e51d;
  stroke:#0c5335;
  stroke-width:5;
}

.valuation-car-art .chart-line,
.valuation-car-art .chart-arrow{
  stroke:#31e51d;
  stroke-width:6;
}

.valuation-price-chip{
  position:absolute;
  top:12px;
  right:15px;
  display:grid;
  gap:3px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:14px;
  padding:11px 14px;
  background:rgba(255,255,255,.09);
  backdrop-filter:blur(12px);
}

.valuation-price-chip small{
  color:#bcd3c5;
  font-size:10px;
}

.valuation-price-chip strong{
  font-size:13px;
}

.valuation-float-stat{
  position:absolute;
  display:grid;
  gap:2px;
  min-width:93px;
  border:1px solid rgba(255,255,255,.17);
  border-radius:14px;
  padding:10px 12px;
  background:rgba(4,36,24,.68);
  backdrop-filter:blur(12px);
  box-shadow:0 12px 28px rgba(0,0,0,.13);
}

.valuation-float-stat b{
  color:#31e51d;
  font-size:17px;
}

.valuation-float-stat small{
  color:#c9dcd0;
  font-size:9px;
}

.valuation-float-stat.stat-one{
  left:8px;
  bottom:23px;
}

.valuation-float-stat.stat-two{
  right:30px;
  bottom:7px;
}

@media(max-width:950px){
  .home-valuation-card{
    grid-template-columns:1fr .8fr;
    padding:32px;
  }

  .home-valuation-content h2{
    font-size:29px;
  }
}

@media(max-width:700px){
  .home-valuation-section{
    padding-inline:11px;
    margin-top:18px;
  }

  .home-valuation-card{
    min-height:0;
    grid-template-columns:1fr;
    gap:15px;
    border-radius:23px;
    padding:24px 20px 18px;
  }

  .home-valuation-content h2{
    font-size:25px;
    margin-top:12px;
  }

  .home-valuation-content p{
    font-size:12px;
    line-height:1.9;
  }

  .home-valuation-benefits{
    margin:15px 0;
  }

  .home-valuation-benefits span{
    font-size:10px;
  }

  .home-valuation-button{
    width:100%;
    justify-content:center;
    padding:12px;
  }

  .home-valuation-visual{
    min-height:185px;
  }

  .valuation-car-art{
    max-width:330px;
  }

  .valuation-price-chip{
    top:0;
    right:0;
  }

  .valuation-float-stat{
    min-width:80px;
    padding:8px 9px;
  }

  .valuation-float-stat.stat-one{
    left:0;
    bottom:6px;
  }

  .valuation-float-stat.stat-two{
    right:5px;
    bottom:-3px;
  }
}

@media(max-width:390px){
  .home-valuation-card{
    padding-right:16px;
    padding-left:16px;
  }

  .home-valuation-content h2{
    font-size:22px;
  }

  .valuation-price-chip{
    transform:scale(.88);
    transform-origin:top right;
  }
}


.home-valuation-visual.has-custom-image{
  overflow:hidden;
  border-radius:24px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  padding:10px;
}

.home-valuation-custom-image{
  width:100%;
  height:250px;
  display:block;
  object-fit:contain;
  border-radius:18px;
}

@media(max-width:700px){
  .home-valuation-custom-image{
    height:210px;
  }
}
