/* === HERO === */
.hero{
  background: var(--bg);
  padding: 72px 0;
}

.hero__copy{
  display: flex;
  flex-direction: column;
}

.hero__inner{
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.hero__title{
  margin: 0 0 14px 0;
  font-size: clamp(30px, 3.2vw, 46px); 
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero__lead{
  margin: 0 0 22px 0;
  color: var(--muted);
  font-size: 18px;
}

.hero__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* HERO STATS */
.hero-stats{
  display: flex;
  gap: 72px;          
  margin-top: 40px;   
  
  padding-top: 28px;
  border-top: var(--border-subtle);
}

.hero-stats__item{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-stats__value{
  font-size: 1rem;
  font-weight: 450;
  letter-spacing: -0.01em;
}

.hero-stats__label{
  font-size: 0.8rem;
  color: var(--muted);
  opacity: 0.8;
}

/* HERO MEDIA */
.hero-media{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: 24px;
}

.hero-media__img{
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.hero-media__img--small{ margin-top: 60px; }

/* === FEATURES === */
.features{
  background: var(--bglight);
  padding: 44px 0 56px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.features__inner{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;                 /* meer lucht tussen items */
  align-items: start;
}

.features__item{
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.features__icon{
  width: 42px;
  height: 42px;
  border-radius: 12px;               
  background: rgba(0, 0, 0, 0.035);  
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.65);           
  flex: 0 0 42px;
}

.features__icon svg{
  width: 20px;
  height: 20px;
  display: block;
  opacity: 0.95;
}

.features__title{
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(0,0,0,0.82);
  letter-spacing: -0.01em;
}

.features__text{
  margin: 6px 0 0 0;
  font-size: 0.92rem;
  color: rgba(0,0,0,0.6);
  line-height: 1.5;
  max-width: 32ch;           
}

/* Responsive */
@media (max-width: 900px){
  .features__inner{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .features__text{
    max-width: none;
  }
}

/* === LISTINGS === */
.listings{
  padding: 56px 0;
  background: var(--bglight);
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.listings__header{ margin-bottom: 24px; }

.listings__title{
  margin: 0 0 8px 0;
  font-size: 28px;
}

.listings__subtitle{
  margin: 0;
  color: var(--muted);
}

.listings__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* PRODUCT CARD */
.product-card{
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease;
  will-change: transform;
}

.product-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.product-card__media{ display: block; }

.product-card__img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card__body{ padding: 16px; }

.product-card__meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.product-card__price{
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.06);
  font-weight: 700;
  color: var(--primary);
}

.product-card__badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  color: var(--muted);
  font-size: 0.9rem;
}

.product-card__title{ margin: 0 0 8px 0; font-size: 1.1rem; }

.product-card__link{
  color: inherit;
  text-decoration: none;
}
.product-card__link:hover{ text-decoration: underline; }

.product-card__text{
  margin: 0 0 14px 0;
  color: var(--muted);
}

.product-card__footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
}

.product-card__tag{ color: var(--muted); }

.product-card__stock{
  color: var(--primary);
  font-weight: 600;
}

/* === HOW IT WORKS === */
.how{
  padding: 56px 0 50px;
  background: var(--bg);
}

.how__header{
  text-align: center;
  max-width: 820px;
  margin: 0 auto 28px;
}

.how__title{
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 600;
}

.how__subtitle{
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 18px;
}

.how__kicker{
  margin: 0;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
}

.how__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 26px;
}

/* Step cards */
.how-card{
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 26px;
}

.how-card__top{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.how-card__icon{
  width: 48px;
  height: 48px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.04);
  color: var(--primary);
}

.how-card__head{ display: grid; gap: 4px; }

.how-card__step{
  margin: 0;
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.how-card__title{
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.how-card__text{
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

.how-card__text:last-child{ margin-bottom: 0; }

.how-card__svg{ width: 24px; height: 24px; display: block; }

/* Benefits card */
.how-benefits{
  margin-top: 26px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 22px;
}

.how-benefits__title{
  margin: 0 0 16px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.how-benefits__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 18px;
}

.how-benefits__item{
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
}

.how-benefits__check{
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;

  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(0, 0, 0, 0.02);
  color: var(--primary);
  flex: none;
}

.how-benefits__checkIcon{ width: 12px; height: 12px; display: block; }

/* CTA card */
.how-cta{
  margin-top: 60px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 34px 22px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.how-cta__title{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.how-cta__text{
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.6;
}

.how-cta__meta{
  margin: 0 0 22px;
  color: rgba(0, 0, 0, 0.55);
  font-size: 14px;
}

.how-cta__button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  min-width: 280px;

  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 650;

  box-shadow: 0 6px 16px rgba(91, 111, 96, 0.25);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.how-cta__button:hover{
  background: var(--primary-strong);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(91, 111, 96, 0.35);
}

.how-cta__buttonIcon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
  line-height: 1;
}

.how-cta__button:hover .how-cta__buttonIcon{ transform: translateX(1px); }

.how-cta__button:focus-visible{
  outline: 3px solid rgba(91, 111, 96, 0.30);
  outline-offset: 4px;
}

.how-cta__buttonIcon svg{
  width: 18px;
  height: 18px;
  display: block;
  opacity: 0.9;
}

.how-cta__note{
  margin: 14px 0 0;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.45);
}