/* =========================================================
   ROOT
   ========================================================= */

:root{
  --newcars-shell: 1600px;
  --newcars-pad: 2vw;
  --newcars-content: 1600px;
}

/* =========================
   PAGE
   ========================= */

body{
  font-family: "Poppins", sans-serif;
}   

.newcars-page main{
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.newcars-shell{
  width: min(var(--newcars-shell), calc(100% - (var(--newcars-pad) * 2)));
  margin: 0 auto;
}

.newcars-section{
  position: relative;
  width: 100%;
}

/* =========================
   HERO
   ========================= */

.newcars-hero{
  position: relative;
  padding: 82px 0 74px;
  overflow: hidden;
}

.newcars-hero__glow{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 75% at 50% 0%, rgba(250, 231, 191, 0.04) 0%, rgba(250, 231, 191, 0) 74%);
}

.newcars-hero__panel{
  position: relative;
  z-index: 2;
  width: min(100%, var(--newcars-content));
  margin: 0 auto;
  padding: clamp(40px, 4vw, 64px);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(250,231,191,0.022) 0%, rgba(0,0,0,0.28) 60%),
    rgba(10, 13, 18, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.34);
}

.newcars-hero__panel::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(250, 231, 191, 0.14), transparent);
}

.newcars-kicker{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(250,231,191,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 600;
}

.newcars-hero h1{
  margin: 0 0 18px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.96);
  z-index: 2;
}

.newcars-lead{
  max-width: 920px;
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.95;
  z-index: 2;
}

.newcars-hero__actions{
  margin-top: 34px;
  display: flex;
  justify-content: flex-start;
}

/* =========================
   HERO CAR
   ========================= */

.hero-car{
  position:absolute;
  right:-10px;
  bottom:-20px;

  width:660px;
  height:520px;

  background-image:url("../assets/car-hero.png");
  background-size:contain;
  background-repeat:no-repeat;
  background-position:right bottom;

  pointer-events:none;
  z-index:0;

  mask-image: linear-gradient(to left, black 35%, transparent 90%);

  animation: heroFadeIn 1.4s cubic-bezier(.2,.8,.2,1) forwards;
}

.hero-car::before{
  content:"";
  position:absolute;

  right:80px;
  bottom:60px;

  width:420px;
  height:420px;

  background: radial-gradient(
    circle,
    rgba(198,168,101,0.085) 0%,
    rgba(198,168,101,0.03) 35%,
    transparent 90%
  );

  filter: blur(70px);
  opacity:0.42;

  z-index:-1;
}

.hero-car::after{
  content:"";
  position:absolute;
  inset:0;

  background: radial-gradient(
    circle at 70% 50%,
    rgba(198,168,101,0.05),
    transparent 70%
  );

  filter: blur(40px);
  opacity:0.34;

  z-index:-1;
}

/* =========================
   HERO FADE IN
   ========================= */

@keyframes heroFadeIn {

  0%{
    opacity:0;
    transform:translateY(18px) scale(0.98);
    filter:blur(6px);
  }

  100%{
    opacity:0.80;
    transform:translateY(0) scale(1);
    filter:blur(0);
    z-index: -1;
  }

}

/* =========================
   INTRO
   ========================= */

.newcars-section--intro{
  padding: 58px 0 58px;
}

.newcars-split{
  width: min(100%, var(--newcars-content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 30px;
  align-items: stretch;
}

.newcars-glass{
  height: 100%;
  padding: 40px;
  border-radius: 24px;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(250, 231, 191, 0.012) 0%, rgba(0,0,0,0.25) 60%),
    rgba(10, 13, 18, 0.38);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.24);
}

.newcars-glass h2{
  margin: 0 0 18px;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.newcars-glass .muted{
  line-height: 1.9;
}

.newcars-list{
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.newcars-list li{
  padding: 18px 20px;
  border-radius: 18px;
  color: rgba(255,255,255,0.76);
  line-height: 1.75;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(250,231,191,0.008) 0%, rgba(0,0,0,0.22) 60%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 30px rgba(0,0,0,0.16);
}

.newcars-list strong{
  color: rgba(255,255,255,0.94);
}

.newcars-split__aside{
  display: grid;
  gap: 18px;
}

.newcars-feature{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  margin-left: 120px;
  border-radius: 20px;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(255,255,255,0.035) 0%, rgba(0,0,0,0.22) 60%),
    rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 34px rgba(0,0,0,0.16);
}

.newcars-feature__icon{
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  box-shadow: none;
}

.newcars-feature__icon svg{
  width: 20px;
  height: 20px;
}

.newcars-feature__text strong{
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.95);
  font-size: 17px;
  line-height: 1.3;
}

.newcars-feature__text span{
  display: block;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* =========================
   BENEFITS
   ========================= */

.newcars-section--benefits{
  padding: 50px 0 58px;
}

.newcars-head{
  width: min(100%, 1040px);
  margin: 50px auto 34px;
  text-align: center;
}

.newcars-head h2{
  margin: 0 0 50px;
  font-size: clamp(34px, 3vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.newcars-head p{
  margin: 50px;
  color: rgba(255,255,255,0.68);
  line-height: 1.9;
}

.newcars-cards{
  width: min(100%, var(--newcars-content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.newcars-card{
  padding: 34px 30px;
  margin-top: 30px;
  border-radius: 22px;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(250,231,191,0.015) 0%, rgba(0,0,0,0.24) 60%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  transition: transform 250ms ease, border-color 250ms ease;
}

.newcars-card:hover{
  transform: translateY(-6px);
  border-color: rgba(0, 93, 200, 0.418);
}

.newcars-card__icon{
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  box-shadow: none;
}

.newcars-card__icon svg{
  width: 20px;
  height: 20px;
}

.newcars-card h3{
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.25;
}

.newcars-card p{
  margin: 0;
  color: rgba(255,255,255,0.70);
  line-height: 1.8;
}

/* =========================
   CTA
   ========================= */

.newcars-section--cta{
  padding: 50px 0 0;
  margin-top: 50px;
}
.newcars-cta::before{
  content:"";
  position:absolute;
  left:20%;
  right:20%;
  top: 50px;

  height:1px;

  background:
    linear-gradient(
      to right,
      transparent,
      rgba(250,231,191,0.16),
      transparent
    );
}

.newcars-cta{
  width: min(100%, var(--newcars-content));
  margin: 0 auto;
  padding: clamp(42px, 4vw, 64px);
  text-align: center;

   background:
    radial-gradient(
      circle at 50% 0%,
      rgba(250, 231, 191, 0.04),
      transparent 42%
    );
  
}

.newcars-cta h2{
  margin: 0 0 16px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.newcars-cta p{
  max-width: 860px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,0.70);
  line-height: 1.9;
}

.newcars-cta__actions{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.newcars-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.newcars-btn--primary{
  color: #fff;
  background: linear-gradient(180deg, rgba(130,201,83,0.96) 0%, rgba(91,155,53,0.96) 100%);
  border: 1px solid rgba(186,233,154,0.18);
  box-shadow: 0 12px 28px rgba(91,155,53,0.24);
}

.newcars-btn--primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(91,155,53,0.30);
}

.newcars-btn--ghost{
  color: #fff;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
}

.newcars-btn--ghost:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.16);
}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1100px){
  :root{
    --newcars-pad: 18px;
  }

  .newcars-hero{
    padding: calc(var(--header-h, 84px) + 24px) 0 50px;
  }

  .newcars-section--intro{
    padding-bottom: 46px;
  }

  .newcars-section--benefits{
    padding-bottom: 46px;
  }

  .newcars-split{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .newcars-cards{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .newcars-feature{
    margin-top: 20px;
    margin-left: 0;
  }

  .hero-car{
    width: 560px;
    height: 420px;
  }
}

@media (max-width:900px){

  .hero-car{
    display:none;
  }

}

@media (max-width: 720px){
  :root{
    --newcars-pad: 14px;
  }

  .newcars-hero{
    padding: calc(var(--header-h, 84px) + 18px) 0 34px;
  }

  .newcars-section--intro{
    padding-bottom: 34px;
  }

  .newcars-section--benefits{
    padding-bottom: 34px;
  }

  .newcars-hero__panel,
  .newcars-glass,
  .newcars-card,
  .newcars-cta{
    padding: 22px;
    border-radius: 20px;
  }

  .newcars-kicker{
    min-height: 32px;
    padding: 0 12px;
    margin-bottom: 16px;
    font-size: 12px;
  }

  .newcars-hero h1{
    margin-bottom: 14px;
    font-size: clamp(34px, 11vw, 52px);
  }

  .newcars-head{
    margin-bottom: 24px;
  }

  .newcars-head h2,
  .newcars-glass h2,
  .newcars-cta h2{
    font-size: clamp(28px, 8vw, 40px);
  }

  .newcars-list{
    margin-top: 24px;
    gap: 12px;
  }

  .newcars-list li{
    padding: 16px;
  }

  .newcars-feature{
    padding: 16px;
    margin-top: 10px;
    margin-left: 0;
  }

  .newcars-feature__icon{
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 12px;
  }

  .newcars-feature__icon svg,
  .newcars-card__icon svg{
    width: 18px;
    height: 18px;
  }

  .newcars-card__icon{
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    border-radius: 12px;
  }

  .newcars-card h3{
    margin-bottom: 10px;
    font-size: 20px;
  }

  .newcars-cta__actions{
    flex-direction: column;
  }

  .newcars-btn{
    width: 100%;
  }
}
