/* =========================
   TOP OFFER BAR
========================= */

.top-offer-bar{
  height: 38px;
  background: #043d04;
  color: rgba(255,255,255,0.92);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.top-offer-track{
  width: 100%;
  overflow: hidden;
}

.top-offer-move{
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  width: max-content;
  animation: offerTicker 28s linear infinite;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding-left: 100%;
}

.top-offer-bar:hover .top-offer-move{
  animation-play-state: paused;
}

.offer-sep{
  color: rgba(255,255,255,0.4);
}

@keyframes offerTicker{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-50%);
  }
}

/* =========================
   HERO SLIDER
========================= */

.simple-hero-slider{
  padding: 20px 20px 26px;
  background: linear-gradient(180deg, #f8fbf8 0%, #f2f7f2 100%);
}

.simple-slider-wrap{
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 28px;
  background: #eef3ee;
  box-shadow: 0 12px 35px rgba(0,0,0,0.05);
}

.simple-slider-track{
  display: flex;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.simple-slide{
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 24px;
  padding: 34px 34px 58px 40px;
  min-height: 390px;
}

.simple-slide-content{
  max-width: 600px;
}

.simple-slide-tag{
  display: inline-block;
  padding: 8px 14px;
  background: #e6f5e6;
  color: #056d05;
  border-radius: 30px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
  transform: translateY(10px);
  opacity: 0;
  transition: 0.5s ease;
}

.simple-slide-content h1,
.simple-slide-content h2{
  font-family: 'Poppins', sans-serif;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.15;
  font-weight: 700;
  color: #111111;
  margin-bottom: 12px;
  letter-spacing: -0.8px;
  transform: translateY(16px);
  opacity: 0;
  transition: 0.6s ease;
}

.simple-slide-content p{
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #5a6470;
  margin-bottom: 22px;
  max-width: 560px;
  transform: translateY(18px);
  opacity: 0;
  transition: 0.7s ease;
}

.simple-slide-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.8s ease;
}

.simple-slide-btn{
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.primary-btn{
  background: #056d05;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(5,109,5,0.18);
}

.primary-btn:hover{
  background: #044f04;
  transform: translateY(-2px);
}

.simple-slide-features{
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.9s ease;
}

.simple-slide-features span{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

.simple-slide-features i{
  color: #0f9b0f;
  font-size: 12px;
}

.simple-slide-image{
  display: flex;
  justify-content: center;
  align-items: center;
}

.simple-slide-image img{
  width: 100%;
  max-width: 470px;
  height: 300px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transform: scale(0.96);
  opacity: 0;
  transition: 0.9s ease;
}

.simple-slide.active .simple-slide-tag,
.simple-slide.active .simple-slide-content h1,
.simple-slide.active .simple-slide-content h2,
.simple-slide.active .simple-slide-content p,
.simple-slide.active .simple-slide-actions,
.simple-slide.active .simple-slide-features,
.simple-slide.active .simple-slide-image img{
  transform: none;
  opacity: 1;
}

.simple-slider-dots{
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.simple-dot{
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: rgba(5,109,5,0.22);
  cursor: pointer;
  transition: 0.3s ease;
}

.simple-dot.active{
  width: 28px;
  border-radius: 20px;
  background: #056d05;
}

.slide-hidden{
  display: none !important;
}

@media (max-width: 992px){
  .simple-slide{
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 28px 24px 56px;
    gap: 20px;
  }

  .simple-slide-content{
    max-width: 100%;
    text-align: center;
  }

  .simple-slide-content p{
    margin-left: auto;
    margin-right: auto;
  }

  .simple-slide-actions,
  .simple-slide-features{
    justify-content: center;
  }

  .simple-slide-image img{
    max-width: 100%;
    height: 260px;
  }
}

@media (max-width: 768px){
  .top-offer-bar{
    height: 34px;
  }

  .top-offer-move{
    font-size: 12px;
  }

  .simple-hero-slider{
    padding: 16px 14px 22px;
  }

  .simple-slider-wrap{
    border-radius: 22px;
  }

  .simple-slide{
    padding: 22px 16px 56px;
  }

  .simple-slide-content h1,
  .simple-slide-content h2{
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1.2;
  }

  .simple-slide-content p{
    font-size: 14px;
    line-height: 1.65;
  }

  .simple-slide-actions{
    justify-content: center;
  }

  .simple-slide-features{
    gap: 10px 14px;
    justify-content: center;
  }

  .simple-slide-image img{
    height: 220px;
    border-radius: 18px;
  }

  .simple-slider-dots{
    bottom: 14px;
  }
}

/* =========================
   PREMIUM CATEGORY SHOWCASE
========================= */

.premium-categories-section{
  padding: 84px 20px 40px;
  background:
    radial-gradient(circle at top right, rgba(15,155,15,0.05), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f9fcf9 100%);
}

.premium-categories-wrap{
  max-width: 1320px;
  margin: 0 auto;
}

.premium-section-head{
  text-align: center;
  max-width: 680px;
  margin: 0 auto 44px;
  opacity: 0;
  transform: translateY(32px);
  transition: 0.8s ease;
}

.premium-section-head.revealed{
  opacity: 1;
  transform: translateY(0);
}

.premium-section-tag{
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e8f7e8;
  color: #056d05;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.premium-section-head h2{
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
  color: #111;
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}

.premium-section-head p{
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  line-height: 1.75;
  color: #5f6975;
}

.premium-categories-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.premium-cat-card{
  position: relative;
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0,0,0,0.06);
  opacity: 0;
  transform: translateY(34px);
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    opacity 0.7s ease;
}

.premium-cat-card.revealed{
  opacity: 1;
  transform: translateY(0);
}

.premium-cat-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(0,0,0,0.10);
}

.premium-cat-large{
  grid-column: span 2;
  min-height: 360px;
}

.premium-cat-wide{
  grid-column: span 2;
  min-height: 290px;
}

.premium-cat-image{
  position: absolute;
  inset: 0;
}

.premium-cat-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.premium-cat-card:hover .premium-cat-image img{
  transform: scale(1.07);
}

.premium-cat-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.22) 35%, rgba(0,0,0,0.65) 100%);
}

.premium-cat-content{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 24px 24px;
  z-index: 2;
}

.premium-cat-badge{
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: #0f9b0f;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.alt-badge{
  background: #1f7ae0;
}

.alt-badge-2{
  background: #111111;
}

.alt-badge-3{
  background: #7c3aed;
}

.premium-cat-content h3{
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.18;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.premium-cat-content p{
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.86);
  max-width: 520px;
  margin-bottom: 14px;
}

.premium-cat-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  transition: gap 0.3s ease;
}

.premium-cat-card:hover .premium-cat-link{
  gap: 12px;
}

@media (max-width: 1100px){
  .premium-categories-grid{
    grid-template-columns: 1fr 1fr;
  }

  .premium-cat-large,
  .premium-cat-wide{
    grid-column: span 2;
  }
}

@media (max-width: 768px){
  .premium-categories-section{
    padding: 64px 14px 24px;
  }

  .premium-section-head{
    margin-bottom: 30px;
  }

  .premium-section-head h2{
    font-size: clamp(24px, 6vw, 32px);
  }

  .premium-section-head p{
    font-size: 14px;
    line-height: 1.7;
  }

  .premium-categories-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .premium-cat-large,
  .premium-cat-wide{
    grid-column: span 1;
    min-height: 280px;
  }

  .premium-cat-card{
    min-height: 280px;
    border-radius: 22px;
  }

  .premium-cat-content{
    padding: 22px 18px 18px;
  }

  .premium-cat-content h3{
    font-size: 24px;
  }

  .premium-cat-content p{
    font-size: 13.5px;
  }
}

/* =========================
   PREMIUM TRUST STRIP
========================= */

.premium-trust-strip{
  padding: 34px 20px 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
}

.premium-trust-wrap{
  max-width: 1320px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f6faf6 0%, #edf5ed 100%);
  border: 1px solid rgba(5, 109, 5, 0.08);
  border-radius: 28px;
  padding: 30px 26px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.premium-trust-wrap::before{
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,155,15,0.10) 0%, rgba(15,155,15,0) 70%);
  pointer-events: none;
}

.premium-trust-head{
  text-align: center;
  max-width: 680px;
  margin: 0 auto 26px;
  opacity: 0;
  transform: translateY(26px);
  transition: 0.8s ease;
  position: relative;
  z-index: 2;
}

.premium-trust-head.trust-show{
  opacity: 1;
  transform: translateY(0);
}

.premium-trust-tag{
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: #e5f5e5;
  color: #056d05;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.premium-trust-head h2{
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.16;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
  letter-spacing: -0.6px;
}

.premium-trust-head p{
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #5e6874;
}

.premium-trust-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
  z-index: 2;
}

.premium-trust-card{
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(17,17,17,0.06);
  border-radius: 22px;
  padding: 22px 18px;
  min-height: 190px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  opacity: 0;
  transform: translateY(30px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.03);
}

.premium-trust-card.trust-show{
  opacity: 1;
  transform: translateY(0);
}

.premium-trust-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.07);
  border-color: rgba(5,109,5,0.14);
}

.premium-trust-icon{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0b7f0b 0%, #16a316 100%);
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 18px;
  box-shadow: 0 12px 24px rgba(5,109,5,0.18);
  transition: transform 0.35s ease;
}

.premium-trust-card:hover .premium-trust-icon{
  transform: scale(1.06) rotate(-3deg);
}

.premium-trust-content h3{
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
}

.premium-trust-content p{
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.72;
  color: #616c78;
}

@media (max-width: 1100px){
  .premium-trust-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px){
  .premium-trust-strip{
    padding: 24px 14px 22px;
  }

  .premium-trust-wrap{
    padding: 22px 16px;
    border-radius: 22px;
  }

  .premium-trust-head{
    margin-bottom: 20px;
  }

  .premium-trust-head h2{
    font-size: clamp(22px, 6vw, 30px);
  }

  .premium-trust-head p{
    font-size: 14px;
    line-height: 1.7;
  }

  .premium-trust-grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .premium-trust-card{
    min-height: auto;
    padding: 18px 16px;
    border-radius: 18px;
  }

  .premium-trust-icon{
    width: 50px;
    height: 50px;
    border-radius: 16px;
    font-size: 18px;
    margin-bottom: 14px;
  }

  .premium-trust-content h3{
    font-size: 17px;
  }

  .premium-trust-content p{
    font-size: 13.5px;
  }
}
/* =========================
   FEATURED BEST SELLERS
========================= */

.featured-bestsellers-section{
  padding: 56px 20px 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
}

.featured-bestsellers-wrap{
  max-width: 1320px;
  margin: 0 auto;
}

.featured-bestsellers-head{
  text-align: center;
  max-width: 700px;
  margin: 0 auto 26px;
  opacity: 0;
  transform: translateY(24px);
  transition: 0.8s ease;
}

.featured-bestsellers-head.fp-show{
  opacity: 1;
  transform: translateY(0);
}

.featured-bestsellers-tag{
  display: inline-block;
  padding: 7px 13px;
  border-radius: 999px;
  background: #e7f6e7;
  color: #056d05;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.featured-bestsellers-head h2{
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.15;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.6px;
  margin-bottom: 8px;
}

.featured-bestsellers-head p{
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.72;
  color: #5f6974;
}

.six-cards-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.featured-product-card{
  background: #ffffff;
  border: 1px solid rgba(17,17,17,0.06);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  opacity: 0;
  transform: translateY(24px);
}

.featured-product-card.fp-show{
  opacity: 1;
  transform: translateY(0);
}

.featured-product-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.07);
  border-color: rgba(5,109,5,0.14);
}

.featured-product-image-wrap{
  position: relative;
  display: block;
  background: #f3f5f3;
  overflow: hidden;
  aspect-ratio: 1 / 0.72;
}

.featured-product-image-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

.featured-product-card:hover .featured-product-image-wrap img{
  transform: scale(1.05);
}

.featured-product-badge{
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: #0b8d0b;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow: 0 6px 14px rgba(0,0,0,0.10);
}

.alt-badge-blue{
  background: #1769e0;
}

.alt-badge-dark{
  background: #111111;
}

.featured-product-info{
  padding: 13px 13px 14px;
}

.featured-product-category{
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  color: #056d05;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.featured-product-info h3{
  margin: 0 0 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
}

.featured-product-info h3 a{
  color: #111111;
  text-decoration: none;
}

.featured-product-subtext{
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  line-height: 1.65;
  color: #66717d;
  margin-bottom: 12px;
  min-height: 40px;
}

.featured-product-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: #056d05;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  transition: background 0.3s ease, transform 0.3s ease;
}

.featured-product-btn:hover{
  background: #044f04;
  transform: translateY(-1px);
}

@media (max-width: 1100px){
  .six-cards-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px){
  .featured-bestsellers-section{
    padding: 44px 14px 24px;
  }

  .featured-bestsellers-head{
    margin-bottom: 20px;
  }

  .featured-bestsellers-head h2{
    font-size: clamp(22px, 6vw, 28px);
  }

  .featured-bestsellers-head p{
    font-size: 13.5px;
    line-height: 1.7;
  }

  .six-cards-grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .featured-product-card{
    border-radius: 16px;
  }

  .featured-product-image-wrap{
    aspect-ratio: 1 / 0.78;
  }

  .featured-product-info{
    padding: 12px 12px 13px;
  }

  .featured-product-info h3{
    font-size: 14px;
  }

  .featured-product-subtext{
    font-size: 12px;
    min-height: auto;
  }

  .featured-product-btn{
    min-height: 36px;
    font-size: 12px;
  }
}

/* =========================
   PREMIUM BANNER SECTION
========================= */

.premium-banner-section{
  padding: 58px 20px 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faf7 100%);
}

.premium-banner-wrap{
  max-width: 1320px;
  margin: 0 auto;
  min-height: 400px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
  align-items: center;
  padding: 34px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 22%),
    radial-gradient(circle at bottom left, rgba(52,168,83,0.10), transparent 24%),
    linear-gradient(135deg, #0b1110 0%, #10211a 48%, #0f6a35 100%);
  box-shadow: 0 18px 42px rgba(0,0,0,0.10);
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: all 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.premium-banner-wrap::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.03), transparent 30%, transparent 70%, rgba(255,255,255,0.03));
  pointer-events: none;
}

.premium-banner-wrap::after{
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 72%);
  pointer-events: none;
}

.premium-banner-wrap.pb-show{
  opacity: 1;
  transform: translateY(0) scale(1);
}

.premium-banner-content{
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.premium-banner-kicker{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #d7f4df;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  margin-bottom: 16px;
}

.premium-banner-content h2{
  font-family: 'Poppins', sans-serif;
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.08;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.premium-banner-content p{
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.80);
  margin-bottom: 18px;
}

.premium-banner-offer-row{
  margin-bottom: 22px;
}

.premium-offer-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.premium-offer-pill i{
  color: #9ff0a8;
  font-size: 13px;
}

.premium-banner-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  background: #ffffff;
  color: #0a5e2d;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 12px 22px rgba(0,0,0,0.16);
}

.premium-banner-btn:hover{
  transform: translateY(-2px);
  background: #f3fff6;
}

.premium-banner-visual{
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.premium-visual-glow{
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76,255,154,0.18) 0%, rgba(76,255,154,0.03) 56%, transparent 72%);
  filter: blur(12px);
  animation: premiumPulse 4.5s ease-in-out infinite;
}

.premium-main-visual-card{
  position: relative;
  width: 100%;
  max-width: 470px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.08);
  transform: translateY(22px) scale(0.965);
  opacity: 0;
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.premium-banner-wrap.pb-show .premium-main-visual-card{
  transform: translateY(0) scale(1);
  opacity: 1;
}

.premium-main-visual-card img{
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

@keyframes premiumPulse{
  0%,100%{
    transform: scale(1);
    opacity: 0.88;
  }
  50%{
    transform: scale(1.08);
    opacity: 1;
  }
}

@media (max-width: 1100px){
  .premium-banner-wrap{
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .premium-banner-content{
    max-width: 100%;
  }

  .premium-banner-visual{
    min-height: 300px;
  }

  .premium-main-visual-card{
    max-width: 100%;
  }
}

@media (max-width: 768px){
  .premium-banner-section{
    padding: 44px 14px 24px;
  }

  .premium-banner-wrap{
    padding: 22px 18px;
    border-radius: 24px;
    gap: 18px;
    min-height: auto;
  }

  .premium-banner-kicker{
    min-height: 30px;
    font-size: 10px;
    padding: 0 12px;
    margin-bottom: 14px;
  }

  .premium-banner-content h2{
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1.12;
  }

  .premium-banner-content p{
    font-size: 14px;
    line-height: 1.72;
  }

  .premium-offer-pill{
    min-height: 35px;
    font-size: 12px;
    padding: 0 12px;
  }

  .premium-banner-btn{
    width: 100%;
    min-height: 42px;
    font-size: 12.5px;
  }

  .premium-banner-visual{
    min-height: 240px;
  }

  .premium-main-visual-card{
    border-radius: 20px;
  }

  .premium-main-visual-card img{
    height: 250px;
  }
}

@media (prefers-reduced-motion: reduce){
  .premium-banner-wrap,
  .premium-main-visual-card,
  .premium-visual-glow,
  .premium-banner-btn{
    transition: none !important;
    animation: none !important;
  }
}

/* =========================
   BRAND STORY SECTION
========================= */

.brand-story-section{
  padding: 58px 20px 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
}

.brand-story-wrap{
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-story-wrap.bs-show{
  opacity: 1;
  transform: translateY(0);
}

.brand-story-visual{
  position: relative;
  min-height: 500px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.brand-story-image{
  width: 100%;
  height: 100%;
}

.brand-story-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  transition: transform 1.2s ease;
}

.brand-story-wrap.bs-show .brand-story-image img{
  transform: scale(1);
}

.brand-story-overlay{
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px 18px;
  border-radius: 22px;
  background: rgba(10,10,10,0.38);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.brand-story-mini{
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 6px;
}

.brand-story-overlay strong{
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}

.brand-story-content{
  background: #ffffff;
  border: 1px solid rgba(17,17,17,0.06);
  border-radius: 30px;
  padding: 34px 34px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.brand-story-content::before{
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5,109,5,0.08) 0%, rgba(5,109,5,0) 72%);
  pointer-events: none;
}

.brand-story-kicker{
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e8f7e8;
  color: #056d05;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  width: fit-content;
  position: relative;
  z-index: 2;
}

.brand-story-content h2{
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.brand-story-content p{
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: #5f6974;
  margin-bottom: 14px;
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.brand-story-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: #056d05;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  transition: all 0.3s ease;
  width: fit-content;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 22px rgba(5,109,5,0.14);
  margin-top: 6px;
}

.brand-story-btn:hover{
  transform: translateY(-2px);
  background: #044f04;
}

@media (max-width: 1100px){
  .brand-story-wrap{
    grid-template-columns: 1fr;
  }

  .brand-story-visual{
    min-height: 420px;
  }
}

@media (max-width: 768px){
  .brand-story-section{
    padding: 44px 14px 24px;
  }

  .brand-story-wrap{
    gap: 18px;
  }

  .brand-story-visual{
    min-height: 300px;
    border-radius: 22px;
  }

  .brand-story-overlay{
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 14px;
    border-radius: 16px;
  }

  .brand-story-overlay strong{
    font-size: 16px;
  }

  .brand-story-content{
    border-radius: 22px;
    padding: 22px 18px;
  }

  .brand-story-content h2{
    font-size: clamp(24px, 7vw, 32px);
  }

  .brand-story-content p{
    font-size: 14px;
    line-height: 1.75;
  }

  .brand-story-btn{
    width: 100%;
    min-height: 42px;
    font-size: 12.5px;
  }
}

@media (prefers-reduced-motion: reduce){
  .brand-story-wrap,
  .brand-story-image img,
  .brand-story-btn{
    transition: none !important;
  }
}

/* =========================
   SHOP BY PHONE BRAND
========================= */

.phone-brand-section{
  padding: 58px 20px 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf7 100%);
}

.phone-brand-wrap{
  max-width: 1320px;
  margin: 0 auto;
}

.phone-brand-head{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
  opacity: 0;
  transform: translateY(24px);
  transition: 0.8s ease;
}

.phone-brand-head.pbx-show{
  opacity: 1;
  transform: translateY(0);
}

.phone-brand-tag{
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: #e8f7e8;
  color: #056d05;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.phone-brand-head h2{
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 2.9vw, 40px);
  line-height: 1.15;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.7px;
  margin-bottom: 10px;
}

.phone-brand-head p{
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #62707b;
}

.phone-brand-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.phone-brand-card{
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcf9 100%);
  border: 1px solid rgba(17,17,17,0.06);
  border-radius: 28px;
  padding: 24px 22px 22px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.04);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    opacity 0.7s ease;
}

.phone-brand-card::before{
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5,109,5,0.08) 0%, rgba(5,109,5,0) 72%);
  pointer-events: none;
}

.phone-brand-card.pbx-show{
  opacity: 1;
  transform: translateY(0) scale(1);
}

.phone-brand-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(0,0,0,0.07);
  border-color: rgba(5,109,5,0.14);
}

.phone-brand-icon{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0c8a0c 0%, #19a319 100%);
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 14px;
  box-shadow: 0 12px 20px rgba(5,109,5,0.15);
  position: relative;
  z-index: 2;
}

.phone-brand-icon-blue{
  background: linear-gradient(135deg, #1967d2 0%, #2e8bff 100%);
  box-shadow: 0 12px 20px rgba(25,103,210,0.15);
}

.phone-brand-label{
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #056d05;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.phone-brand-card h3{
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  line-height: 1.28;
  color: #111111;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.phone-brand-card p{
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #66717d;
  margin-bottom: 18px;
  max-width: 520px;
  position: relative;
  z-index: 2;
}

.phone-brand-options{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  position: relative;
  z-index: 2;
}

.phone-brand-option{
  display: block;
  padding: 16px 16px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(17,17,17,0.06);
  text-decoration: none;
  transition: all 0.3s ease;
}

.phone-brand-option:hover{
  transform: translateY(-3px);
  border-color: rgba(5,109,5,0.18);
  box-shadow: 0 12px 20px rgba(0,0,0,0.05);
}

.phone-brand-option-title{
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 4px;
}

.phone-brand-option-sub{
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: #6c7681;
}

@media (max-width: 1100px){
  .phone-brand-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  .phone-brand-section{
    padding: 44px 14px 24px;
  }

  .phone-brand-head{
    margin-bottom: 20px;
  }

  .phone-brand-head h2{
    font-size: clamp(22px, 6vw, 30px);
  }

  .phone-brand-head p{
    font-size: 13.5px;
    line-height: 1.7;
  }

  .phone-brand-card{
    padding: 18px 15px 15px;
    border-radius: 20px;
  }

  .phone-brand-icon{
    width: 50px;
    height: 50px;
    border-radius: 15px;
    font-size: 17px;
    margin-bottom: 12px;
  }

  .phone-brand-card h3{
    font-size: 20px;
  }

  .phone-brand-card p{
    font-size: 13px;
    margin-bottom: 14px;
  }

  .phone-brand-options{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .phone-brand-option{
    padding: 13px 13px;
    border-radius: 15px;
  }

  .phone-brand-option-title{
    font-size: 16px;
  }

  .phone-brand-option-sub{
    font-size: 12px;
  }
}
/* =========================
   WHY DRESSMYIPHONE DIFFERENT
========================= */

.why-dmi-section{
  padding: 58px 20px 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
}

.why-dmi-wrap{
  max-width: 1200px;
  margin: 0 auto;
}

.why-dmi-head{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.75s ease;
}

.why-dmi-head.dmi-show{
  opacity: 1;
  transform: translateY(0);
}

.why-dmi-tag{
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e8f7e8;
  color: #056d05;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.why-dmi-head h2{
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
  letter-spacing: -0.7px;
}

.why-dmi-head p{
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.85;
  color: #66717d;
}

.why-dmi-comparison{
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(17,17,17,0.06);
  border-radius: 30px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.05);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-dmi-comparison.dmi-show{
  opacity: 1;
  transform: translateY(0);
}

.why-dmi-top{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.why-dmi-top-left,
.why-dmi-top-right{
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.why-dmi-top-left{
  background: #f3f5f6;
  color: #717b85;
  border: 1px solid rgba(17,17,17,0.05);
}

.why-dmi-top-right{
  background: linear-gradient(135deg, #0a7c0a 0%, #18a318 100%);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(5,109,5,0.16);
}

.why-dmi-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 12px;
}

.why-dmi-row:last-child{
  margin-bottom: 0;
}

.why-dmi-col{
  min-height: 74px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 18px 18px;
  position: relative;
  overflow: hidden;
}

.why-dmi-col span{
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.why-dmi-col-left{
  background: #fafafa;
  border: 1px solid rgba(17,17,17,0.06);
  color: #7b858e;
}

.why-dmi-col-right{
  background: linear-gradient(180deg, #ffffff 0%, #f6fbf6 100%);
  border: 1px solid rgba(5,109,5,0.10);
  color: #111111;
  box-shadow: 0 10px 22px rgba(5,109,5,0.05);
}

.why-dmi-col-right::before{
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5,109,5,0.10) 0%, rgba(5,109,5,0) 72%);
  pointer-events: none;
}

.why-dmi-col-right span{
  position: relative;
  padding-left: 28px;
}

.why-dmi-col-right span::before{
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  color: #056d05;
  font-size: 14px;
}

@media (max-width: 768px){
  .why-dmi-section{
    padding: 44px 14px 24px;
  }

  .why-dmi-comparison{
    padding: 14px;
    border-radius: 22px;
  }

  .why-dmi-top{
    gap: 10px;
    margin-bottom: 10px;
  }

  .why-dmi-top-left,
  .why-dmi-top-right{
    min-height: 48px;
    font-size: 15px;
    border-radius: 14px;
  }

  .why-dmi-row{
    gap: 10px;
    margin-bottom: 10px;
  }

  .why-dmi-col{
    min-height: 64px;
    padding: 14px 12px;
    border-radius: 16px;
  }

  .why-dmi-col span{
    font-size: 13px;
    line-height: 1.45;
  }

  .why-dmi-col-right span{
    padding-left: 22px;
  }
}

@media (max-width: 520px){
  .why-dmi-top,
  .why-dmi-row{
    grid-template-columns: 1fr;
  }

  .why-dmi-top-left,
  .why-dmi-top-right{
    justify-content: flex-start;
    padding: 0 14px;
  }
}
/* =========================
   CUSTOMER REVIEWS
========================= */

.dm-reviews-section{
  padding: 60px 20px 36px;
  background:
    radial-gradient(circle at top left, rgba(5,109,5,0.05), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
  overflow: hidden;
}

.dm-reviews-wrap{
  max-width: 1240px;
  margin: 0 auto;
}

.dm-reviews-head{
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.75s ease;
}

.dm-reviews-head.rv-show{
  opacity: 1;
  transform: translateY(0);
}

.dm-reviews-tag{
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e8f7e8;
  color: #056d05;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.dm-reviews-head h2{
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
  letter-spacing: -0.7px;
}

.dm-reviews-head p{
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.85;
  color: #66717d;
}

.dm-reviews-summary{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  margin-bottom: 20px;
  border-radius: 26px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(17,17,17,0.06);
  box-shadow: 0 18px 42px rgba(0,0,0,0.05);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.8s ease;
}

.dm-reviews-summary.rv-show{
  opacity: 1;
  transform: translateY(0);
}

.dm-rs-left{
  display: flex;
  align-items: center;
  gap: 16px;
}

.dm-rs-rating{
  width: 74px;
  height: 74px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0a7c0a 0%, #18a318 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(5,109,5,0.18);
}

.dm-rs-meta{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dm-rs-stars{
  font-size: 18px;
  letter-spacing: 2px;
  color: #f5b301;
}

.dm-rs-meta span{
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #66717d;
}

.dm-rs-points{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.dm-rs-chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f7faf7;
  border: 1px solid rgba(5,109,5,0.10);
  color: #111111;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.dm-rs-chip i{
  color: #056d05;
}

.dm-reviews-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dm-review-card{
  position: relative;
  padding: 24px 22px;
  border-radius: 28px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(17,17,17,0.06);
  box-shadow: 0 18px 38px rgba(0,0,0,0.05);
  backdrop-filter: blur(10px);
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
  transition: transform 0.45s ease, box-shadow 0.45s ease, opacity 0.8s ease;
}

.dm-review-card.rv-show{
  opacity: 1;
  transform: translateY(0);
}

.dm-review-card::before{
  content: "";
  position: absolute;
  top: -45px;
  right: -45px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5,109,5,0.09) 0%, rgba(5,109,5,0) 72%);
  pointer-events: none;
}

.dm-review-card:hover{
  transform: translateY(-7px);
  box-shadow: 0 22px 44px rgba(0,0,0,0.08);
}

.dm-review-card-featured{
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(245,251,245,0.96) 100%);
  border: 1px solid rgba(5,109,5,0.10);
}

.dm-review-top{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.dm-review-avatar{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex: 0 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a7c0a 0%, #1cb61c 100%);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(5,109,5,0.18);
}

.dm-review-user{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dm-review-user strong{
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #111111;
  line-height: 1.2;
}

.dm-review-user span{
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #7a838d;
}

.dm-review-verified{
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef9ee;
  color: #056d05;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.dm-review-stars{
  margin-bottom: 14px;
  color: #f5b301;
  font-size: 17px;
  letter-spacing: 2px;
}

.dm-review-card p{
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.9;
  color: #5d6873;
  margin: 0;
}

@media (max-width: 991px){
  .dm-reviews-summary{
    flex-direction: column;
    align-items: flex-start;
  }

  .dm-rs-points{
    justify-content: flex-start;
  }

  .dm-reviews-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px){
  .dm-reviews-section{
    padding: 46px 14px 24px;
  }

  .dm-reviews-summary{
    padding: 16px;
    border-radius: 20px;
  }

  .dm-rs-left{
    align-items: flex-start;
  }

  .dm-rs-rating{
    width: 62px;
    height: 62px;
    border-radius: 18px;
    font-size: 24px;
  }

  .dm-reviews-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .dm-review-card{
    padding: 20px 16px;
    border-radius: 22px;
  }

  .dm-review-top{
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .dm-review-verified{
    margin-left: 0;
  }
}
/* =========================================
   INSTAGRAM BANNER
========================================= */
.ig-banner-section{
  padding:60px 20px 34px;
  background:transparent;
}
.ig-banner-container{
  max-width:1320px;
  margin:0 auto;
}
.ig-banner-head{
  max-width:760px;
  margin:0 auto 28px;
  text-align:center;
  opacity:0;
  transform:translateY(24px);
  transition:all .8s ease;
}
.ig-banner-head.ig-head-show{
  opacity:1;
  transform:translateY(0);
}
.ig-banner-tag{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:#e8f7e8;
  color:#056d05;
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  font-family:Inter,sans-serif;
  margin-bottom:12px;
}
.ig-banner-head h2{
  font-family:Poppins,sans-serif;
  font-size:clamp(28px,3vw,42px);
  line-height:1.12;
  color:#111;
  margin-bottom:10px;
  letter-spacing:-0.7px;
}
.ig-banner-head p{
  font-family:Inter,sans-serif;
  font-size:14px;
  line-height:1.8;
  color:#66717d;
}
.ig-banner-wrap{
  max-width:1320px;
  margin:0 auto;
  min-height:420px;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:24px;
  align-items:center;
  padding:34px;
  border-radius:32px;
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg,#ffffff 0%,#f9fdf9 100%);
  border:1px solid rgba(17,17,17,.06);
  box-shadow:0 18px 44px rgba(0,0,0,.06);
  opacity:0;
  transform:translateY(26px) scale(.985);
  transition:all .9s cubic-bezier(.22,1,.36,1);
}
.ig-banner-wrap.igb-show{
  opacity:1;
  transform:translateY(0) scale(1);
}
.ig-banner-wrap::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top right, rgba(5,109,5,.05), transparent 24%),
    radial-gradient(circle at bottom left, rgba(5,109,5,.04), transparent 26%);
  pointer-events:none;
}
.ig-banner-content{
  position:relative;
  z-index:2;
  max-width:620px;
}
.ig-banner-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:0 14px;
  border-radius:999px;
  background:#eef8ee;
  border:1px solid rgba(5,109,5,.08);
  color:#056d05;
  font-family:Inter,sans-serif;
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:16px;
}
.ig-banner-content h3{
  font-family:Poppins,sans-serif;
  font-size:clamp(30px,3.5vw,50px);
  line-height:1.08;
  color:#111;
  margin-bottom:14px;
  letter-spacing:-1px;
}
.ig-banner-content p{
  font-family:Inter,sans-serif;
  font-size:15px;
  line-height:1.9;
  color:#5d6975;
  margin-bottom:22px;
  max-width:560px;
}
.ig-banner-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:18px;
}
.ig-banner-btn{
  min-height:48px;
  padding:0 24px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
  background:#056d05;
  color:#fff;
  font-family:Inter,sans-serif;
  font-size:14px;
  font-weight:700;
  box-shadow:0 14px 28px rgba(5,109,5,.16);
  transition:all .3s ease;
}
.ig-banner-btn:hover{
  transform:translateY(-2px);
  background:#044f04;
}
.ig-banner-points{
  display:flex;
  flex-wrap:wrap;
  gap:16px 18px;
}
.ig-banner-points span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:Inter,sans-serif;
  font-size:13px;
  font-weight:600;
  color:#4f5e6d;
}
.ig-banner-points i{
  color:#056d05;
}
.ig-banner-visual{
  position:relative;
  min-height:320px;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
}
.ig-banner-glow{
  position:absolute;
  width:320px;
  height:320px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(5,109,5,.10) 0%, rgba(5,109,5,.02) 56%, transparent 72%);
  filter:blur(14px);
  animation:igBannerPulse 4.8s ease-in-out infinite;
}
.ig-phone-card{
  position:relative;
  width:100%;
  max-width:360px;
  border-radius:30px;
  overflow:hidden;
  background:linear-gradient(180deg,#ffffff 0%,#f7fbf7 100%);
  border:1px solid rgba(17,17,17,.06);
  box-shadow:0 20px 42px rgba(0,0,0,.08);
}
.ig-phone-card-main{
  transform:translateY(12px) rotate(-4deg);
  transition:transform .45s ease;
}
.ig-banner-wrap:hover .ig-phone-card-main{
  transform:translateY(0) rotate(-2deg);
}
.ig-phone-top{
  display:flex;
  align-items:center;
  gap:8px;
  padding:16px 18px 0;
}
.ig-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#b7c0c9;
}
.ig-phone-body{
  padding:20px 22px 24px;
}
.ig-mini-badge{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  background:#eef8ee;
  border:1px solid rgba(5,109,5,.08);
  color:#056d05;
  font-family:Inter,sans-serif;
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:14px;
}
.ig-phone-body h4{
  font-family:Poppins,sans-serif;
  font-size:28px;
  line-height:1.2;
  color:#111;
  margin-bottom:10px;
}
.ig-phone-body p{
  font-family:Inter,sans-serif;
  font-size:14px;
  line-height:1.8;
  color:#62707c;
}
.ig-floating-pill{
  position:absolute;
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  background:#ffffff;
  border:1px solid rgba(17,17,17,.06);
  color:#111;
  font-family:Inter,sans-serif;
  font-size:12px;
  font-weight:600;
  box-shadow:0 12px 24px rgba(0,0,0,.06);
}
.ig-floating-pill i{
  color:#056d05;
}
.pill-one{
  top:28px;
  right:0;
  animation:igFloatOne 4.5s ease-in-out infinite;
}
.pill-two{
  left:0;
  bottom:26px;
  animation:igFloatTwo 5s ease-in-out infinite;
}
@keyframes igBannerPulse{
  0%,100%{transform:scale(1);opacity:.88;}
  50%{transform:scale(1.08);opacity:1;}
}
@keyframes igFloatOne{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-8px);}
}
@keyframes igFloatTwo{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(8px);}
}

/* =========================================
   STATS COUNTER
========================================= */
.luxe-stats-section{
  padding:58px 20px 34px;
  background:transparent;
}
.luxe-stats-wrap{
  max-width:1320px;
  margin:0 auto;
}
.luxe-stats-panel{
  position:relative;
  padding:34px 30px;
  border-radius:34px;
  overflow:hidden;
  background:linear-gradient(180deg,#ffffff 0%,#f9fdf9 100%);
  border:1px solid rgba(17,17,17,.06);
  box-shadow:0 18px 42px rgba(0,0,0,.06);
  opacity:0;
  transform:translateY(26px) scale(.985);
  transition:all .85s cubic-bezier(.22,1,.36,1);
}
.luxe-stats-panel.stats-show{
  opacity:1;
  transform:translateY(0) scale(1);
}
.luxe-stats-panel::before{
  content:"";
  position:absolute;
  top:-90px;
  right:-90px;
  width:240px;
  height:240px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(5,109,5,.07) 0%, rgba(5,109,5,0) 72%);
}
.luxe-stats-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 26px;
  position:relative;
  z-index:2;
}
.luxe-stats-tag{
  display:inline-block;
  min-height:32px;
  padding:0 14px;
  border-radius:999px;
  background:#eef8ee;
  border:1px solid rgba(5,109,5,.08);
  color:#056d05;
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  font-family:Inter,sans-serif;
  line-height:32px;
  margin-bottom:14px;
}
.luxe-stats-head h2{
  font-family:Poppins,sans-serif;
  font-size:clamp(28px,3.2vw,44px);
  line-height:1.12;
  color:#111;
  margin-bottom:0;
  letter-spacing:-0.8px;
}
.luxe-stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  position:relative;
  z-index:2;
}
.luxe-stat-card{
  min-height:170px;
  border-radius:24px;
  padding:24px 18px;
  background:#ffffff;
  border:1px solid rgba(17,17,17,.06);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  transform:translateY(20px);
  opacity:0;
  transition:all .7s ease;
  box-shadow:0 10px 26px rgba(0,0,0,.04);
}
.luxe-stats-panel.stats-show .luxe-stat-card{
  transform:translateY(0);
  opacity:1;
}
.luxe-stat-number{
  font-family:Poppins,sans-serif;
  font-size:clamp(30px,3vw,46px);
  line-height:1;
  color:#056d05;
  font-weight:700;
  margin-bottom:12px;
  letter-spacing:-1px;
}
.luxe-stat-label{
  font-family:Inter,sans-serif;
  font-size:13.5px;
  line-height:1.7;
  color:#5e6b77;
  max-width:150px;
}

/* =========================================
   NEWS
========================================= */
.news-luxe-section{
  padding:60px 20px 34px;
  background:transparent;
}
.news-luxe-wrap{
  max-width:1320px;
  margin:0 auto;
}
.news-luxe-head{
  max-width:760px;
  margin:0 auto 28px;
  text-align:center;
  opacity:0;
  transform:translateY(24px);
  transition:all .8s ease;
}
.news-luxe-head.news-show{
  opacity:1;
  transform:translateY(0);
}
.news-luxe-tag{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:#e8f7e8;
  color:#056d05;
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  font-family:Inter,sans-serif;
  margin-bottom:12px;
}
.news-luxe-head h2{
  font-family:Poppins,sans-serif;
  font-size:clamp(28px,3vw,42px);
  line-height:1.12;
  color:#111;
  margin-bottom:10px;
  letter-spacing:-0.7px;
}
.news-luxe-head p{
  font-family:Inter,sans-serif;
  font-size:14px;
  line-height:1.8;
  color:#66717d;
}
.news-luxe-grid-three{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.news-luxe-card{
  position:relative;
  background:linear-gradient(180deg,#ffffff 0%,#fbfdfb 100%);
  border:1px solid rgba(17,17,17,.06);
  border-radius:28px;
  padding:26px 24px;
  box-shadow:0 16px 36px rgba(0,0,0,.05);
  overflow:hidden;
  opacity:0;
  transform:translateY(26px) scale(.99);
  transition:all .75s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
}
.news-luxe-card.news-show{
  opacity:1;
  transform:translateY(0) scale(1);
}
.news-luxe-card:hover{
  transform:translateY(-7px);
  box-shadow:0 24px 46px rgba(0,0,0,.08);
}
.news-luxe-card::before{
  content:"";
  position:absolute;
  top:-60px;
  right:-60px;
  width:160px;
  height:160px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(5,109,5,.09) 0%, rgba(5,109,5,0) 72%);
}
.news-luxe-mini{
  display:inline-block;
  padding:7px 12px;
  border-radius:999px;
  background:#eef8ee;
  color:#056d05;
  font-family:Inter,sans-serif;
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:14px;
}
.news-luxe-card h3{
  font-family:Poppins,sans-serif;
  font-size:24px;
  line-height:1.34;
  color:#111;
  margin-bottom:12px;
}
.news-luxe-card p{
  font-family:Inter,sans-serif;
  font-size:14px;
  line-height:1.85;
  color:#64707b;
  margin-bottom:16px;
}
.news-luxe-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:Inter,sans-serif;
  font-size:14px;
  font-weight:700;
  color:#056d05;
  text-decoration:none;
  transition:gap .3s ease;
}
.news-luxe-card:hover .news-luxe-link{
  gap:12px;
}
.news-luxe-footer{
  text-align:center;
  margin-top:24px;
  opacity:0;
  transform:translateY(20px);
  transition:all .75s ease;
}
.news-luxe-footer.news-show{
  opacity:1;
  transform:translateY(0);
}
.news-luxe-view-all-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 24px;
  border-radius:999px;
  background:#056d05;
  color:#fff;
  text-decoration:none;
  font-family:Inter,sans-serif;
  font-size:14px;
  font-weight:700;
  box-shadow:0 14px 30px rgba(5,109,5,.16);
  transition:all .3s ease;
}
.news-luxe-view-all-btn:hover{
  transform:translateY(-2px);
  background:#044f04;
}

/* =========================================
   FAQ
========================================= */
.faq-luxe-section{
  padding:60px 20px 34px;
  background:transparent;
}
.faq-luxe-wrap{
  max-width:1100px;
  margin:0 auto;
}
.faq-luxe-head{
  max-width:760px;
  margin:0 auto 26px;
  text-align:center;
  opacity:0;
  transform:translateY(24px);
  transition:all .8s ease;
}
.faq-luxe-head.faq-show{
  opacity:1;
  transform:translateY(0);
}
.faq-luxe-tag{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:#e8f7e8;
  color:#056d05;
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  font-family:Inter,sans-serif;
  margin-bottom:12px;
}
.faq-luxe-head h2{
  font-family:Poppins,sans-serif;
  font-size:clamp(28px,3vw,40px);
  line-height:1.15;
  color:#111;
  margin-bottom:10px;
}
.faq-luxe-head p{
  font-family:Inter,sans-serif;
  font-size:14px;
  line-height:1.8;
  color:#66717d;
}
.faq-luxe-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.faq-luxe-item{
  background:#ffffff;
  border:1px solid rgba(17,17,17,.06);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 14px 34px rgba(0,0,0,.04);
  opacity:0;
  transform:translateY(22px);
  transition:all .72s cubic-bezier(.22,1,.36,1), box-shadow .3s ease;
}
.faq-luxe-item.faq-show{
  opacity:1;
  transform:translateY(0);
}
.faq-luxe-item.active{
  border-color:rgba(5,109,5,.16);
  box-shadow:0 16px 36px rgba(5,109,5,.08);
}
.faq-luxe-question{
  width:100%;
  min-height:78px;
  border:none;
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:22px 24px;
  text-align:left;
  cursor:pointer;
}
.faq-luxe-question span{
  font-family:Poppins,sans-serif;
  font-size:18px;
  line-height:1.45;
  color:#111;
  font-weight:700;
}
.faq-luxe-question i{
  width:40px;
  height:40px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f0f7f0;
  color:#056d05;
  font-size:14px;
  flex:0 0 40px;
  transition:transform .35s ease, background .35s ease;
}
.faq-luxe-item.active .faq-luxe-question i{
  transform:rotate(45deg);
  background:#056d05;
  color:#fff;
}
.faq-luxe-answer{
  display:none;
  padding:0 24px 22px;
}
.faq-luxe-answer p{
  font-family:Inter,sans-serif;
  font-size:14px;
  line-height:1.85;
  color:#62707c;
  max-width:880px;
  margin:0;
}

/* =========================================
   FINAL PREMIUM CTA
========================================= */
.final-premium-banner-section{
  padding:60px 20px 70px;
  background:transparent;
}
.final-premium-banner-wrap{
  max-width:1320px;
  margin:0 auto;
  min-height:430px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:24px;
  align-items:center;
  padding:38px;
  border-radius:34px;
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg,#ffffff 0%,#f9fdf9 100%);
  border:1px solid rgba(17,17,17,.06);
  box-shadow:0 18px 44px rgba(0,0,0,.06);
  opacity:0;
  transform:translateY(26px) scale(.985);
  transition:all .9s cubic-bezier(.22,1,.36,1);
}
.final-premium-banner-wrap.fb-show{
  opacity:1;
  transform:translateY(0) scale(1);
}
.final-premium-banner-wrap::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top right, rgba(5,109,5,.05), transparent 24%),
    radial-gradient(circle at bottom left, rgba(5,109,5,.04), transparent 26%);
  pointer-events:none;
}
.final-premium-banner-content{
  position:relative;
  z-index:2;
  max-width:620px;
}
.final-premium-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:0 14px;
  border-radius:999px;
  background:#eef8ee;
  border:1px solid rgba(5,109,5,.08);
  color:#056d05;
  font-family:Inter,sans-serif;
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:16px;
}
.final-premium-banner-content h2{
  font-family:Poppins,sans-serif;
  font-size:clamp(34px,4vw,58px);
  line-height:1.06;
  color:#111;
  margin-bottom:16px;
  letter-spacing:-1px;
}
.final-premium-banner-content p{
  font-family:Inter,sans-serif;
  font-size:15px;
  line-height:1.9;
  color:#5d6975;
  margin-bottom:22px;
  max-width:560px;
}
.final-premium-points{
  display:flex;
  flex-wrap:wrap;
  gap:16px 18px;
}
.final-premium-points span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:Inter,sans-serif;
  font-size:13px;
  font-weight:600;
  color:#4f5e6d;
}
.final-premium-points i{
  color:#056d05;
}
.final-premium-banner-visual{
  position:relative;
  min-height:380px;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
}
.final-premium-orb{
  position:absolute;
  width:340px;
  height:340px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(5,109,5,.10) 0%, rgba(5,109,5,.02) 56%, transparent 72%);
  filter:blur(14px);
  animation:finalPremiumPulse 5s ease-in-out infinite;
}
.final-premium-card{
  position:absolute;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 20px 42px rgba(0,0,0,.08);
  border:1px solid rgba(17,17,17,.06);
  transition:transform .5s ease;
}
.final-premium-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.final-premium-card.card-one{
  width:270px;
  height:360px;
  left:40px;
  top:10px;
  transform:rotate(-8deg);
}
.final-premium-card.card-two{
  width:250px;
  height:320px;
  right:40px;
  bottom:10px;
  transform:rotate(8deg);
}
.final-premium-banner-wrap:hover .card-one{
  transform:rotate(-10deg) translateY(-6px);
}
.final-premium-banner-wrap:hover .card-two{
  transform:rotate(10deg) translateY(6px);
}
@keyframes finalPremiumPulse{
  0%,100%{transform:scale(1);opacity:.88;}
  50%{transform:scale(1.08);opacity:1;}
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1100px){
  .luxe-stats-grid,
  .news-luxe-grid-three{
    grid-template-columns:repeat(2,1fr);
  }
  .ig-banner-wrap,
  .final-premium-banner-wrap{
    grid-template-columns:1fr;
  }
}
@media (max-width: 768px){
  .ig-banner-section,
  .luxe-stats-section,
  .news-luxe-section,
  .faq-luxe-section,
  .final-premium-banner-section{
    padding-left:14px;
    padding-right:14px;
  }
  .luxe-stats-grid,
  .news-luxe-grid-three{
    grid-template-columns:1fr;
  }
  .ig-banner-wrap,
  .final-premium-banner-wrap{
    padding:24px 18px;
    border-radius:24px;
    min-height:auto;
  }
  .ig-banner-content h3,
  .final-premium-banner-content h2{
    font-size:clamp(28px,8vw,38px);
  }
  .ig-banner-actions{
    flex-direction:column;
  }
  .ig-banner-btn{
    width:100%;
  }
  .ig-banner-visual{
    min-height:260px;
  }
  .ig-phone-card{
    max-width:100%;
  }
  .pill-one{
    top:10px;
    right:0;
  }
  .pill-two{
    left:0;
    bottom:10px;
  }
  .news-luxe-card{
    border-radius:22px;
    padding:20px 18px;
  }
  .news-luxe-card h3{
    font-size:21px;
  }
  .faq-luxe-item{
    border-radius:18px;
  }
  .faq-luxe-question{
    padding:18px 16px;
    min-height:68px;
  }
  .faq-luxe-question span{
    font-size:16px;
  }
  .faq-luxe-answer{
    padding:0 16px 18px;
  }
  .final-premium-banner-visual{
    min-height:280px;
  }
  .final-premium-card.card-one{
    width:180px;
    height:240px;
    left:10px;
    top:10px;
  }
  .final-premium-card.card-two{
    width:170px;
    height:220px;
    right:10px;
    bottom:10px;
  }
}

.news-luxe-section{
  display:none;
}