/*=============== GOOGLE FONTS ===============*/
/* Primary fonts loaded in theme-professional.css */

/*===============  MY CUSTOM CSS ===============*/

:root {
  --header-height: 4rem;

  /*========== My Custom Colors ==========*/
  /* Light site: light blue page, #1A1A1A / #FFB84C / #2D2D2D */
  --first-color: #ffb84c;
  --first-color-alt: #e8a030;
  --title-color: #1a1a1a;
  --text-color: #2d2d2d;
  --text-color-light: #5a5a5a;
  --white-color: #ffffff;

  --body-color: hsl(32 28% 93%);
  --container-color: hsl(32 28% 93%);

  /*========== My Custom Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Lora", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --h1-font-size: 1.38rem;
  --h2-font-size: 1.12rem;
  --h3-font-size: 0.94rem;
  --normal-font-size: 0.9375rem;
  --small-font-size: 0.8125rem;
  --smaller-font-size: 0.75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 968px) {
  :root {
    --h1-font-size: 2.28rem;
    --h2-font-size: 1.48rem;
    --h3-font-size: 1.05rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.9375rem;
    --smaller-font-size: 0.8125rem;
  }
}


/*=============== BASE CSS ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  /* Root rem scale — theme may refine further */
  font-size: 105%;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: 500;
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  color: var(--title-color);
  font-weight: 700;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}


/*=============== MY REUSABLE CSS CLASSES ===============*/
.container {
  max-width: min(100%, 90rem);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(0.65rem, 2vw, 1.1rem);
  padding-right: clamp(0.65rem, 2vw, 1.1rem);
  box-sizing: border-box;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding: 4.5rem 0 2rem;
}

.section__title {
  font-size: var(--h2-font-size);
  text-align: center;
  margin-bottom: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: min(100%, 42rem);
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

.main {
  overflow: hidden;
}

/* ======== Shape X Design ======*/

.shapeX{
  background-color: hsla(219, 33%, 32%, .5);
  filter: blur(112px);
  border-radius: 50%;

}
.shape__big{
  width: 400px;
  height: 400px;

}
.shape__small{
  width: 300px;
  height: 300px;

}

.shape__smaller{
  width: 180px;
  height: 180px;
  filter: blur(64px);
}

/*=============== HEADER & NAV BAR ===============*/

.header{
  width: 100%;
  background-color: hsl(206 46% 97%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  border-bottom: 1px solid hsla(206 30% 40% / 0.14);
}
.nav{
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo,
.nav__toggle{
  color: var(--title-color);
  display: inline-flex;
}
.nav__logo{
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-medium);
  transition: .3s;
}
.nav__logo i{
font-size: 1.25rem;
}
.nav__logo:hover{
  color: var(--first-color);
}
.nav__toggle{
  font-size: 1.25rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .nav__menu{
    position: fixed;
    background: linear-gradient(
      165deg,
      hsl(206 52% 98% / 0.98) 0%,
      hsl(206 46% 96% / 0.99) 45%,
      hsl(206 44% 94% / 0.98) 100%
    );
    border-left: 1px solid var(--border-subtle);
    box-shadow: -12px 0 40px hsla(206 30% 18% / 0.12);
    top: 0;
    right: -100%;
    width: min(100%, 22rem);
    height: 100%;
    backdrop-filter: blur(16px);
    transition: .3s;
  }
}

.nav__list{
display: flex;
flex-direction: column;
text-align: center;
row-gap: 2rem;
padding-top: 6rem;
padding-left: 1.5rem;
padding-right: 1.5rem;
}
.nav__link{
  text-transform: uppercase;
  color: var(--title-color);
  font-size: clamp(1rem, 4.5vw, 1.35rem);
  font-weight: var(--font-medium);
  transition: .3s;
}
.nav__link:hover{
  color: var(--first-color);

}
.nav__close{
  font-size: 2rem;
  color: var(--title-color);
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}
/* Show menu items */
.show-menu{
  right: 0;
}

/* Change background header */
.scroll-header{
  border-radius: 0;
  background-color: hsl(206 48% 97% / 0.94);
  box-shadow: 0 8px 28px hsla(206 30% 20% / 0.08);
}

/* Active link */
.active-link{
  color: var(--first-color);
}

/*=============== HOME ===============*/

.home{
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;

}
.home__container{
  position: relative;
  padding-top: 4rem;
  row-gap: 3rem;
  justify-items: center;
}
.home__data{
  text-align: center;
  max-width: 22rem;
  justify-self: center;
}
@media screen and (min-width: 576px) {
  .home__data {
    max-width: 28rem;
  }
}
@media screen and (min-width: 768px) {
  .home__data {
    max-width: 36rem;
  }
}
.home__title{
  font-size: var(--h1-font-size);
  margin-bottom: 1rem;
}
.home__subtitle{
  font-size: var(--h3-font-size);
  margin-bottom: .25rem;
}
.home__elec{
  font-size: var(--small-font-size);
  font-weight: 400;
  color: var(--text-color);
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: .35rem;
  row-gap: .25rem;
  text-align: center;
  max-width: 100%;
}
.home__elec i{
  color: var(--first-color);

}
.home__img{
  width: 280px;
  justify-self: center;
  

}
.home__car{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  column-gap: 1.5rem;
  row-gap: 1.25rem;
  margin-bottom: 2rem;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 576px) {
  .home__car {
    column-gap: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .home__car {
    column-gap: 4rem;
    flex-wrap: nowrap;
  }
}
.home__car-name{
  font-size: .625rem;
  font-weight: 400;
  color: var(--text-color-light);

}
.home__car-data{
  text-align: center;

}
.home__car-number{
  font-size: var(--h2-font-size);
  font-weight: var(--font-medium);
  margin-bottom: .25rem;

}
.home__car-icon{
  background-color: var(--container-color);
  border-radius: 50%;
  padding: .376rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: .875rem;
  margin-bottom: .75rem;

}
.home__button{
  z-index: 888;
  position: relative;
  border: 2px solid hsl(158, 89%, 30%);
  width: auto;
  min-height: 3rem;
  height: auto;
  padding: 0.65rem 1.35rem;
  border-radius: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  cursor: pointer;
  font-size: var(--smaller-font-size);
  color: var(--white-color);
  font-weight: var(--font-medium);
  text-align: center;
  line-height: 1.25;
  white-space: nowrap;
  background-color: hsla(283, 40%, 12%, 0.35);
}
.home__button-text{
  position: relative;
  z-index: 1;
}

.home__button::before{
  content: '';
  border: 2px solid hsl(158, 98%, 43%);
  width: calc(100% + 14px);
  height: calc(100% + 14px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 2.75rem;
  box-shadow: 0 0 12px hsl(158, 98%, 43%);
  transition: .3s;
  animation: button 2s infinite;
  pointer-events: none;
}

.home__social{
  z-index: 888;
  position: absolute;
  right: 30px;
  top: 25rem;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  transition: 0.3s ease;
  
}
.home__social-icon{
  color: #fff;
  font-size: 1.4em;
  visibility: hidden !important;
}
.home__social-icon:hover{
  color: var(--first-color);
  
}
.slider__bg{
  z-index: 888 !important;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  gap: .25rem;
  cursor: pointer;

}
.slider__bg-navBtn{
  z-index: var(--z-fixed) !important;
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.392);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 2px rgba(255, 255, 255, .5);
  transition: .3s ease;
  
}
.slider__bg-navBtn:hover{

transform: scale(1.2);
}

.slider__bg .active{
  background: #fff;
  color: #fff;
}
.video__slide{
  
  width: 100%;
  clip-path: circle(0% at 0 50%);
}
.video__slide.active{
  clip-path: circle(150% at 0 50%);
}





.home .shape__big,
.home .shape__small{
  position: absolute;
}

.home .shape__big{
  left: -9rem;
  top: -4rem;
}
.home .shape__small{
  right: -10rem;
  bottom: 3rem;
}

/* Button animate */
@keyframes button {
  0%{
    box-shadow: 0 0 12px hsl(158, 98%, 43%);

  }
  50%{
    box-shadow: 0 0 24px hsl(158, 98%, 43%);

  }
  
}

/*=============== BUTTON ===============*/
.button{
  display: inline-block;
  background-color: var(--first-color);
  color: var(--title-color);
  padding: .5rem 2rem;
  border-radius: .25rem;
  font-size: var(--normal-font-size);
  transition: .3s;
}
.button:hover{
  background-color: var(--first-color-alt);
}

/*=============== ABOUT ===============*/
.about__container{
  row-gap: 6rem;
  width: 100%;
}
.about__group{
  position: relative;

}
.about__img{
  width: 310px;
  border-radius: .5rem;

}
.about__card{
  width: 180px;
  position: absolute;
  right: 0;
  bottom: -2.5rem;
  background-color: hsla(0, 0%, 100%, .1);
  backdrop-filter: 1rem .75rem;
  text-align: center;
  border-radius: 1.25rem;
}
.about__card-title{
  font-size: var(--h3-font-size);
  margin-bottom: 0.5rem;
}
.about__card-description{
  font-size: var(--smaller-font-size);
}

.about__title{
  text-align: initial;
  margin-bottom: 2rem;
}
.about__description{
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .about__data {
    text-align: center;
  }
  .about__title {
    text-align: center;
  }
  .about__description {
    margin-left: auto;
    margin-right: auto;
  }
}

/*=============== POPULAR ===============*/

.popular__container{
  padding-top: 1rem;

}
.popular__card{
  position: relative;
  width: 238px;
  background-color: var(--container-color);
  padding: 2rem 1.5rem 1.5rem;
  border-radius: 1rem;
  margin-bottom: 3.5rem;
  overflow: hidden;
}
.popular__card .shape__smaller{
  position: absolute;
  top: -2.5rem;
  left: -2.5rem;
}

.popular__title,
.popular__subtitle,
.popular__img{
  position: relative;
}
.popular__title{
  font-size: var(--h2-font-size);
  margin-bottom: 0.25rem;

}
.popular__subtitle{
  font-size: var(--normal-font-size);
  color: var(--text-color);
  font-weight: 400;

}
.popular__img{
  width: 160px;
  margin: .75rem auto 1.25rem;
  display: block;
  transition: .3s;
}
.popular__data{
  display: grid;
  grid-template-columns: 1fr;
  gap: .5rem;
  margin-bottom: 2rem;
  justify-items: start;
  width: 100%;
}
.popular__data-group{
  display: inline-flex;
  align-items: flex-start;
  column-gap: .5rem;
  font-size: var(--smaller-font-size);
  color: var(--text-color);
  text-align: left;
  line-height: 1.35;
  max-width: 100%;
}
.popular__data-group i{
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.popular__data i{
  font-size: 1rem;
}
.popular__price{
  font-size: var(--h3-font-size);
}
.popular__button{
  border: none;
  outline: none;
  padding: .75rem 1rem;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 1rem 0 1rem 0;
  cursor: pointer;
}
.popular__button i{
  font-size: 1.25rem;
}
.popular__card:hover .popular__img{
  transform: translateY(-.5rem);
}

/* Swiper class */

.swiper-pagination-bullet{
  background: var(--text-color);
}
.swiper-pagination-bullet-active{
  background-color: var(--first-color);
}

/*=============== FEATURES ===============*/
.features{
  overflow: hidden;
  position: relative;

}
.features__container{
  padding-top: 2rem;
  grid-template-columns: 285px;
  justify-content: center;

}
.features__group{
  display: grid;
  position: relative;
  z-index: 10;
}
.features__img{
  width: 150px;
  justify-self: center;
}
.features__card{
  width: 112px;
  background-color: hsla(0, 0%, 100%, .1);
  backdrop-filter: blur(16px);
  padding: .75rem 2rem;
  border-radius: 1rem;
  text-align: center;
  color: var(--title-color);
  position: absolute;
}
.features__card-1{
  top: 4rem;
  left: 1.5rem;

}
.features__card-2{
  top: 8rem;
  right: 1rem;

}
.features__card-3{
  left: 1.5rem;
  bottom: 2rem;

}
.features__card-title{
  font-size: var(--h3-font-size);
  margin-bottom: 0.25rem;

}
.features__card-description{
  font-size: var(--smaller-font-size);
}
.features__map{
  max-width: initial;
  width: 450px;
  position: absolute;
  top: 8rem;
  left: -3rem;
  margin: auto;
  transform: rotate(-22deg);
}

/*=============== FEATURED ===============*/

.featured__container{
  padding-top: 1rem;

}
.featured__filters{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 0.85rem;
  margin-bottom: 3.5rem;
}

.featured__item{
  min-width: 2.75rem;
  width: auto;
  min-height: 2.75rem;
  height: auto;
  border: none;
  outline: none;
  padding: 0.45rem 0.7rem;
  border-radius: .75rem;
  background-color: var(--container-color);
  color: var(--title-color);
  font-size: var(--normal-font-size);
  cursor: pointer;
  transition: .3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.featured__item img{
  width: 1.5rem;

}
.featured__item span,
.featured__itemimg{
  opacity: .3;
  transition: .3s;
}
.featured__item:hover{
  background-color: var(--first-color);
  color: var(--title-color);
}
.featured__item:hover span,
.featured__item:hover img{
  opacity: 1;

}
.featured__content{
  grid-template-columns: 228px;
  row-gap: 2.5rem;
  justify-content: center;
}
.featured__card{
  position: relative;
  background-color: var(--container-color);
  padding: 2rem 1.5rem 1.5rem;
  border-radius: 1rem;
}
.featured__card .shape__smaller{
  position: absolute;
  inset: 0;
  margin: auto;
}
.featured__title,
.featured__subtitle,
.featured__img{
  position: relative;
}

.featured__title{
  font-size: var(--h2-font-size);
  margin-bottom: 0.25rem;
  text-align: center;
  width: 100%;
}
.featured__subtitle{
  font-size: var(--normal-font-size);
  color: var(--text-color);
  font-weight: 400;
  text-align: center;
  width: 100%;
}
.featured__img{
  width: 180px;
  margin: 1.5rem auto;
  display: block;
  transform: .3s;

}
.featured__price{
  font-size: var(--h3-font-size);
  text-align: left;
}
.featured__button{
  border: none;
  outline: none;
  padding: .75rem 1rem;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 1rem 0 1rem 0;
  cursor: pointer;
}
.featured__button i{
  font-size: 1.25rem;
}
.featured__card:hover .featured__img{
  transform: translateX(-.30rem);
}
.featured__button:hover{

}

/* Active link featured */

.active-featured{
  background-color: var(--first-color);
}
.active-featured span,
.active-featured img{
  opacity: 1;
}

/*=============== GALLERY ===============*/
.gallery__container video{
  z-index: 000;
  position: absolute;
  opacity: .1;
  bottom: 0;
  
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*=============== OFFER ===============*/

.offer{
  position: relative;
}
.offer__container{
  grid-template-rows: max-content 224px;
  width: 100%;
  justify-items: center;
}

.offer__bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.offer__data,
.offer__visuals{
  position: relative;
}
.offer__data{
  text-align: center;
}
.offer__title{
  margin-bottom: 2rem;
}
.offer__description{
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 36rem;
}
.offer__visuals{
  position: absolute;
  max-width: initial;
  width: 400px;
  bottom: 2rem;
  right: -5.5rem;
}
.offer__visuals .offer__hero-img{
  width: 100%;
  height: auto;
  object-fit: contain;
}
/*=============== LOGOS ===============*/

.logos__img{
  width: 40px;
  opacity: .4;
  transition: .3s;
}
.logos__container{
  grid-template-columns: repeat(3, max-content);
  justify-content: center;
  align-items: center;
  gap: 4rem;
  padding-bottom: 2rem;
}

.logos__img:hover{
  opacity: 1;
  cursor: pointer;
}

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

.footer{
  position: relative;
  overflow: hidden;
}
.footer .shape__big,
.footer .shape__small{
  position: absolute;
}
.footer .shape__big{
  width: 300px;
  height: 300px;
  top: 6rem;
  left: -12rem;
}
.footer .shape__small{
  right: -13rem;
  bottom: -6rem;
}
.footer__container{
  row-gap: 2.5rem;
  position: relative;
  width: 100%;
  justify-items: start;
}
.footer__logo{
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  color: var(--title-color);
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 1.35rem;
  transition: .3s;
}
.footer__logo{
  font-size: 1.5rem;
}
.footer__logo:hover{
  color: var(--first-color);
}
.footer__logo i{
  font-size: 1.5rem;
  font-weight: 500;
}
.footer__title{
  font-size: var(--h3-font-size);
  margin-bottom: 1.1rem;

}
.footer__links{
  display: flex;
  flex-direction: column;
  row-gap: .5rem;
  align-items: flex-start;
}
.footer__link,
.footer__social-link{
  color: var(--text-color);
  transition: .3s;
}
.footer__link{
  display: inline-block;
  text-align: left;
}
.footer__link:hover,
.footer__social-link:hover{
  color: var(--title-color);
}
.footer__social{
  display: flex;
  column-gap: 1.5rem;
}
.footer__social-link{
  font-size: 1.25rem;

}
.footer__copy{
  display: block;
  margin-top: 4.5rem;
  text-align: center;
  font-size: var(--smaller-font-size);
  color: rgb(199, 158, 47);
}
.footer__dev-link{
  color: #F76400;
}
.footer__dev-link::before{
 
  text-shadow: 0 0 12px hsl(0, 0%, 100%);
  transition: .3s;
  animation: a 2s infinite; 
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar{
  width: 0.5rem;
  background-color: hsl(206 40% 91%);
  border-radius: 1rem;

}

::-webkit-scrollbar-thumb{
  background-color: #c99228;
  border-radius: 1rem;
}
::-webkit-scrollbar-thumb:hover{
  background-color: #ffb84c;
}

/*=============== SCROLL UP ===============*/
.scrollup{
  position: fixed;
  right: 1rem;
  bottom: -30%;
  background-color: hsla(0, 0%, 100%, .1);
  display: inline-flex;
  padding: .45rem;
  border-radius: .5rem;
  font-size: 1.15rem;
  color: var(--white-color);
  z-index: var(--z-tooltip);
  transition: .4s;
}
.scrollup:hover{
  transform: translateY(-.28rem);
}


/* Show Scroll Up*/

.show-scroll{
  bottom: 3rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px){
  
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .about__group{
    width: 350px;
    justify-self: center;
  }
  .features__map{
    left: 0;
    right: 0;
  }
  .featured__content{
    grid-template-columns: repeat(2, 228px);
  }

  .offer__container{
    grid-template-rows: initial;
    grid-template-columns: .5fr;
    justify-content: center;
  }
  .offer__visuals{
    position: relative;
    bottom: initial;
    right: initial;
    width: min(100%, 400px);
  }
  .offer__data{
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 767px) {
  .section{
    padding: 7rem 0 2rem;
  }
  .nav{
    /* margin-top: 1rem;
    margin-bottom: 1rem;
    height: calc(var(--header-height)+ 1.5rem); */
  }
  .nav__toggle,
  .nav__close{
    display: none;
  }
  .nav__list{
    flex-direction: row;
    column-gap: clamp(1rem, 2.5vw, 3rem);
    padding-top: 0;
  }
  .nav__link{
    font-size: var(--normal-font-size);
    text-transform: initial;
  }
  .about__container{
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    column-gap: clamp(1.5rem, 4vw, 3rem);
  }
  .logos__container{
    gap: 4rem 8rem;
  }
  .footer__container{
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    column-gap: 2rem;
  }
}
/* For large devices */


@media screen and (min-width: 1040px) {
  .container{
    margin-left: auto;
    margin-right: auto;
    max-width: min(100%, 92rem);
    padding-left: clamp(0.85rem, 2.2vw, 1.35rem);
    padding-right: clamp(0.85rem, 2.2vw, 1.35rem);
  }

  .shape__big{
    width: 500px;
    height: 500px;

  }
  .shape__small{
    width: 400px;
    height: 400px;
  }
  .home__container{
    padding-top: 2rem;
  }
  .home__img{
    width: 380px;
  }
  .home__car{
    column-gap: 10rem;
    flex-wrap: nowrap;
    align-items: center;
  }
  .home__car-icon{
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .home__social-icon{
    visibility: visible !important;
  }
  .slider__bg-navBtn{
    z-index: var(--z-fixed);
  }


  .about__container{
    column-gap: 6rem;
    align-items: center;
  }
  .about__group,
  .about__img{
    width: 480px;

  }
  .about__card{
    width: 198px;
    padding: 1rem 1.25rem;
  }
  .about__description{
    padding-right: 4rem;
    margin-bottom: 3rem;
  }
  .popular__container{
    width: 875px;
    padding-top: 3rem;

  }
  .popular__card{
    width: 258px;
    border-radius: 1.15rem;
    margin-bottom: 5rem;
  }
  .popular__img{
    width: 180px;
    margin: .75rem auto 1.25rem;
  }
  .features__container{
    padding: 2rem 0 3rem;

  }
  .features__img{
    width: 200px;
  }
  .features__card{
    width: 128px;
    padding: .75rem 2.5rem;
  }
  .features__card-1{
    left: -1rem;

  }
  .features__card-2{
   right: -2.5rem;

  }
  .features__card-3{
    bottom: 7rem;
    left: -1rem;
  }
  .features__map{
    width: 650px;
    top: 11rem;

  }
  .featured__container{
    padding-bottom: 2.5rem;
  }
  .featured__filters{
    column-gap: 2rem;
    margin-bottom: 4.5rem;
  }
  .featured__item{
    min-width: 3.25rem;
    min-height: 3.25rem;
    width: auto;
    height: auto;
    padding: 0.5rem 0.85rem;
  }
  .featured__item img{
    width: 2rem;
  }
  .featured__content{
    grid-template-columns: repeat(3, 248px);
    gap: 4rem;
  }

  .offer__container{
    grid-template-columns: repeat(2, 1fr);
    column-gap: 5rem;
    align-items: center;
    padding-bottom: 2rem;

  }
  .offer__data,
  .offer__title{
    text-align: initial;
  }
  .offer__data{
    margin-bottom: 0;
  }
  .offer__description{
    padding-right: 0;
    max-width: 36rem;
  }
  .offer__visuals{
    width: 450px;
    max-width: 100%;
  }

  .logos__container{
    grid-template-columns: repeat(6, max-content);
  
  }
  .logos__img{
    width: 50px;
  }

  .footer__container{
    grid-template-columns: minmax(0, 1.35fr) minmax(0, auto) minmax(0, auto);
    justify-content: stretch;
    justify-items: start;
    column-gap: clamp(2rem, 4vw, 4rem);
    width: 100%;
  }
  .footer__logo{
    column-gap: .5rem;
  }
  .footer__logo i{
    font-size: 2rem;
  }
  .footer__title{
    margin-bottom: 1.5rem;
  }
  .footer__link{
    row-gap: .76rem;
  }
  .footer__social-link{
    font-size: 1.5rem;
  }
  .footer__copy{
    margin-top: 8rem;
    padding-bottom: 0.6rem;
  }

  .scrollup{
    right: 2.8rem;
  }
}

/* Text labels on featured filter chips (CRM / Leads / BI) */
.featured__item span{
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  white-space: nowrap;
  line-height: 1.2;
}

/* Spanish copy: comfortable paragraph flow */
.about__description,
.offer__description,
.footer__description{
  line-height: 1.72;
  max-width: 38rem;
}
.home__title{
  text-wrap: balance;
}

/*=============== PREMIUM: TRUST STRIP ===============*/
.premium-trust{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background: linear-gradient(180deg, hsl(206 48% 96%) 0%, hsl(206 42% 93%) 50%, hsl(206 38% 90%) 100%);
  border-top: 1px solid hsl(206 24% 82%);
  border-bottom: 1px solid hsl(206 24% 82%);
}
.premium-trust__eyebrow{
  text-align: center;
  font-size: var(--smaller-font-size);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsl(45, 70%, 58%);
  margin-bottom: 0.75rem;
  font-weight: var(--font-semi-bold);
}
.premium-trust__heading{
  text-align: center;
  font-size: var(--h2-font-size);
  color: hsl(222 26% 18%);
  font-weight: var(--font-semi-bold);
  max-width: min(100%, 44rem);
  margin: 0 auto 2.5rem;
  line-height: 1.35;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}
.premium-trust__grid{
  display: grid;
  gap: 1.75rem;
  width: 100%;
  max-width: 100%;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .premium-trust__grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
  }
}
.premium-trust__item{
  text-align: center;
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  background: hsl(220 42% 92%);
  border: 1px solid hsl(220 26% 76%);
}
@media screen and (min-width: 768px) {
  .premium-trust__item{
    text-align: left;
    padding: 1.5rem 1.35rem;
  }
}
.premium-trust__icon{
  font-size: 1.75rem;
  color: var(--first-color);
  display: block;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .premium-trust__icon{
    margin-bottom: 1rem;
  }
}
.premium-trust__title{
  font-size: var(--h3-font-size);
  color: hsl(222 26% 18%);
  margin-bottom: 0.5rem;
  font-weight: var(--font-semi-bold);
}
.premium-trust__text{
  font-size: var(--small-font-size);
  color: hsl(222 14% 30%);
  line-height: 1.6;
}

/*=============== PREMIUM: QUOTE ===============*/
.premium-quote{
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.premium-quote__wrap{
  max-width: min(100%, 72rem);
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 1.25rem;
  background: radial-gradient(120% 80% at 50% 0%, hsla(219, 45%, 25%, 0.4) 0%, hsla(283, 50%, 8%, 0.9) 55%);
  border: 1px solid hsla(219, 35%, 42%, 0.35);
  box-shadow: 0 24px 48px hsla(0, 0%, 0%, 0.25);
}
.premium-quote__eyebrow{
  font-size: var(--smaller-font-size);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(45, 65%, 55%);
  margin-bottom: 1rem;
  font-weight: var(--font-semi-bold);
}
.premium-quote__text{
  font-size: var(--normal-font-size);
  color: var(--title-color);
  line-height: 1.75;
  font-style: italic;
  margin: 0 0 1.25rem;
}
.premium-quote__cite{
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  letter-spacing: 0.04em;
}

/*=============== PREMIUM: ENGINE ===============*/
.premium-engine{
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.premium-engine__container{
  align-items: center;
  row-gap: 2.5rem;
}
.premium-engine__visual{
  justify-self: center;
}
.premium-engine__img{
  width: min(280px, 100%);
  display: block;
  filter: drop-shadow(0 16px 32px hsla(220 30% 28% / 0.14));
}
.premium-engine__content{
  text-align: center;
}
.premium-engine__eyebrow{
  font-size: var(--smaller-font-size);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: hsl(45, 65%, 55%);
  margin-bottom: 0.5rem;
  font-weight: var(--font-semi-bold);
}
.premium-engine__title.section__title{
  margin-bottom: 1.5rem;
  text-align: center;
}
.premium-engine__list{
  text-align: left;
  max-width: 32rem;
  margin: 0 auto 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.premium-engine__li{
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: var(--normal-font-size);
  color: var(--text-color);
  line-height: 1.55;
}
.premium-engine__li-body{
  min-width: 0;
}
.premium-engine__li i{
  color: hsl(158, 70%, 48%);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.premium-engine__cta{
  display: inline-flex;
}
@media screen and (min-width: 768px) {
  .premium-engine__container{
    grid-template-columns: 1fr 1.1fr;
    column-gap: 3rem;
  }
  .premium-engine__content{
    text-align: left;
  }
  .premium-engine__title.section__title{
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }
  .premium-engine__list{
    margin-left: 0;
    margin-right: 0;
  }
  .premium-engine__img{
    width: min(320px, 100%);
  }
}

/* Featured grid without filter bar */
.featured__content--premium{
  margin-top: 0.25rem;
}
@media screen and (min-width: 1040px) {
  .featured__content--premium{
    grid-template-columns: repeat(3, minmax(220px, 248px));
    justify-content: center;
    gap: 2.5rem 3rem;
  }
}

/* Offer premium badge */
.offer__badge{
  display: inline-block;
  font-size: var(--smaller-font-size);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(45, 75%, 52%);
  border: 1px solid hsla(45, 60%, 50%, 0.45);
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
  font-weight: var(--font-semi-bold);
}