/* =============== */
/* ONZE SERVICE    */
/* =============== */

.os-page{
  padding: 0;
  margin: 0;
  background: #fff;
}

.os-container{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
}

/* HERO */
.os-hero{
  padding: 70px 0 40px;
}

.os-hero-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.os-hero h1{
  font-size: 64px;
  line-height: 1.05;
  margin: 0 0 16px;
}

.os-hero-text{
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #555;
}

.os-hero-img{
  width: 100%;
  border-radius: 14px;
  display: block;
}

/* SERVICE + PRICE */
.os-block{
  padding: 0 0 40px;
}

.os-service-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 28px;
  align-items: start;
}

.os-service-title{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #444;
  margin-bottom: 12px;
}

.os-service-icon{
  font-size: 16px;
  color: var(--brand-purple);
}

.os-service-card{
  background: #f6f5fb;
  border-radius: 16px;
  padding: 18px 18px;
  margin-bottom: 14px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

.os-service-card h3{
  font-size: 20px;
  margin: 0 0 6px;
}

.os-service-card p{
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* PRICE CARD */
.os-price-card{
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
}

.os-price-top{
  margin: 0 0 14px;
  font-weight: 700;
  color: #222;
}

.os-price-row{
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}

.os-price-amount{
  font-size: 56px;
  font-weight: 900;
  color: var(--brand-purple);
}

.os-price-period{
  font-size: 18px;
  color: #333;
  font-weight: 600;
}

.os-price-list{
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.os-price-list li{
  margin-bottom: 10px;
  color: #333;
  font-weight: 600;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.os-price-list li::before{
  content: "✔";
  color: var(--brand-purple);
  font-weight: 900;
}

/* BUTTON */
.os-btn{
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--brand-purple);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(142,42,168,0.25);
}

.os-btn:hover{
  opacity: 0.92;
}

/* STEPS */
.os-steps{
  padding: 40px 0 40px;
}

.os-steps h2{
  font-size: 34px;
  margin: 0 0 18px;
}

.os-steps-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.os-step{
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.os-step-number{
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--brand-purple);
  color: #fff;
  text-align: center;
  line-height: 34px;
  font-weight: 800;
  margin-bottom: 10px;
  font-size: 13px;
}

.os-step h3{
  margin: 0 0 8px;
  font-size: 20px;
}

.os-step p{
  margin: 0;
  color: #666;
  line-height: 1.5;
  font-size: 14px;
}

.os-steps-btn{
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.os-steps-btn .os-btn{
  width: auto;
  padding: 14px 26px;
}

/* FAQ */
.os-faq{
  padding: 40px 0 80px;
}

.os-faq h2{
  font-size: 34px;
  margin: 0 0 16px;
}

.os-faq-item{
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 18px rgba(0,0,0,0.04);
  padding: 14px 16px;
  margin-bottom: 12px;
}

.os-faq-item summary{
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.os-faq-item summary::-webkit-details-marker{
  display: none;
}

.os-faq-item summary::after{
  content: "+";
  font-size: 20px;
  font-weight: 900;
  color: #333;
}

.os-faq-item[open] summary::after{
  content: "−";
}

.os-faq-item p{
  margin: 10px 0 0;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .os-hero-grid{
    grid-template-columns: 1fr;
  }

  .os-service-grid{
    grid-template-columns: 1fr;
  }

  .os-steps-grid{
    grid-template-columns: 1fr 1fr;
  }

  .os-hero h1{
    font-size: 48px;
  }
}

@media (max-width: 560px){
  .os-steps-grid{
    grid-template-columns: 1fr;
  }

  .os-hero h1{
    font-size: 40px;
  }
}

