@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400;600&display=swap');

html, body {
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  background-color: #f5f5f5;
}

a {
  text-decoration: inherit;
  color: inherit;
  cursor: pointer;
}

header {
  position: fixed;
  z-index: 999;
}

.maintitle {
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 1rem;
  padding-top: 60px;
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  color: #111;
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.productstitle {
  font-size: clamp(28px, 5vw, 40px);
  text-align: center;
  padding-bottom: 50px;
}

.mediatitle {
  font-size: clamp(22px, 3.5vw, 35px);
  text-align: center;
  padding-bottom: 40px;
}

.reviewtitle {
  font-size: clamp(22px, 3.5vw, 35px);
  text-align: center;
  padding: 20px;
}

.slidertitle {
  font-size: clamp(20px, 3.5vw, 35px);
  text-align: right;
  margin-right: clamp(20px, 4vw, 50px);
  transform: translateY(clamp(-25px, 4vw, -30px));
}

.trust-grid {
  max-width: 1250px;
  margin: 4rem auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.trust-card .icon {
  font-size: 1.8rem;
  display: inline-block;
  margin-bottom: .8rem;
}

.trust-card h4 {
  font-size: 1.05rem;
  margin-bottom: .4rem;
  font-weight: 600;
}

.trust-card p {
  font-size: .9rem;
  color: #666;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.featured-banner {
  max-width: 1500px;
  margin: 3rem auto 2rem;
  padding: 2.5rem;
  border: 20px solid #f5f5f5;
  border-radius: 42px;
  background: linear-gradient(135deg, #111 0%, #1c1c1c 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.featured-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}

.banner-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.banner-content {
  max-width: 560px;
}

.badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  padding: .35rem .7rem;
  border-radius: 999px;
  font-size: .75rem;
  letter-spacing: .5px;
  margin-bottom: .9rem;
}

.featured-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: .6rem;
  font-weight: 700;
}

.featured-banner p {
  font-size: .95rem;
  line-height: 1.6;
  color: #d0d0d0;
  margin-bottom: 1.4rem;
}

.banner-btn {
  display: inline-block;
  padding: .65rem 1.4rem;
  border-radius: 10px;
  background: #f5f5f5;
  color: #111;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  background: #fff;
}

.banner-video video {
  height: clamp(200px, 25vw, 300px);
  width: 100%;
  border-radius: 14px;
  background: #000;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

@media (max-width: 768px) {
  .banner-inner {
    grid-template-columns: 1fr;
  }

  .banner-video {
    margin-top: 1.5rem;
  }
}

.card-hover-section {
  padding-bottom: 20px;
  background-color: #f5f5f5;
  font-family: 'Fira Sans', sans-serif;
  color: #1F1D42;
}

.card-hover-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  max-width: 1300px;
  margin: 0 auto;
}

.card-hover {
  flex: 0 1 360px;
  height: 500px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 32px -10px rgba(0, 0, 0, 0.08);
  z-index: 0;
}

.card-hover:has(.card-hover__link:hover) .card-hover__extra {
  transform: translateY(0);
}

.card-hover:hover .card-hover__content {
  background-color: #DEE8C2;
  bottom: 100%;
  transform: translateY(100%);
  padding: 50px 60px;
  transition: all 0.35s cubic-bezier(.1, .72, .4, .97);
}

.card-hover:hover .card-hover__link {
  opacity: 1;
  transform: translate(-50%, 0);
  transition: all 0.3s 0.35s cubic-bezier(.1, .72, .4, .97);
}

.card-hover:hover img {
  transform: scale(1);
  transition: 0.35s 0.1s transform cubic-bezier(.1, .72, .4, .97);
}

.card-hover__content {
  width: 100%;
  text-align: center;
  background-color: #86B971;
  padding: 0 60px 50px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  transition: all 0.35s 0.35s cubic-bezier(.1, .72, .4, .97);
}

.card-hover__content::before,
.card-hover__content::after {
  content: '';
  width: 100%;
  height: 120px;
  background-color: inherit;
  position: absolute;
  left: 0;
  z-index: -1;
}

.card-hover__content::before {
  top: -80px;
  clip-path: ellipse(60% 80px at bottom center);
}

.card-hover__content::after {
  bottom: -80px;
  clip-path: ellipse(60% 80px at top center);
}

.card-hover__title {
  font-size: 1.5rem;
  margin-bottom: 1em;
  font-weight: 800;
}

.card-hover__title span,
.card-hover__extra span {
  color: #2d7f0b;
}

.card-hover__text {
  font-size: 0.75rem;
}

.card-hover__link {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translate(-50%, 10%);
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #2d7f0b;
  opacity: 0;
  transition: all 0.35s;
}

.card-hover__link svg {
  width: 18px;
  transition: transform 0.3s;
}

.card-hover__link:hover svg {
  transform: translateX(4px);
}

.card-hover__extra {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #86B971;
  color: #DEE8C2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px;
  z-index: 1;
  transform: translateY(100%);
  transition: transform 0.35s;
}

.card-hover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.2);
  transition: 0.35s 0.35s transform cubic-bezier(.1, .72, .4, .97);
}