@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  --navy:#0c1f3d;
  --navy-2:#102b52;
  --blue:#1368e8;
  --blue-dark:#0e54bd;
  --sky:#dbeafe;
  --white:#ffffff;
  --off-white:#f6f8fc;
  --text:#172033;
  --muted:#667085;
  --border:#e6eaf0;
  --shadow:0 18px 55px rgba(15,31,58,.12);
  --radius:22px;
  --header-height:108px;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
  scroll-padding-top:110px;
}

body{
  font-family:'Inter',Arial,sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.6;
  overflow-x:hidden;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
textarea{
  font:inherit;
}

img{
  display:block;
  max-width:100%;
}

.container{
  width:min(1180px,calc(100% - 40px));
  margin-inline:auto;
}

/* HEADER */

.site-header{
  position:fixed;
  inset:0 0 auto;
  height:var(--header-height);
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(12,31,61,.08);
  z-index:1000;
  transition:.25s ease;
}

.site-header.scrolled{
  height:92px;
  box-shadow:0 10px 30px rgba(12,31,61,.10);
}

.header-inner{
  height:100%;
  display:flex;
  align-items:center;
  gap:32px;
}

.brand{
  display:flex;
  align-items:center;
  flex:0 0 auto;
}

.brand img{
  width:auto;
  height:97px;
  object-fit:contain;
  transition:.25s ease;
}

.site-header.scrolled .brand img{
  height:81px;
}

.main-nav{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:28px;
}

.main-nav a{
  position:relative;
  color:var(--navy);
  font-size:15px;
  font-weight:700;
}

.main-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  border-radius:10px;
  background:var(--blue);
  transition:.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after{
  width:100%;
}

.menu-toggle{
  display:none;
  margin-left:auto;
  width:44px;
  height:44px;
  border:0;
  border-radius:10px;
  background:var(--off-white);
  padding:10px;
  cursor:pointer;
}

.menu-toggle span{
  display:block;
  height:2px;
  margin:5px 0;
  background:var(--navy);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:13px 22px;
  border:0;
  border-radius:12px;
  font-weight:800;
  cursor:pointer;
  transition:.25s ease;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  background:var(--blue);
  color:var(--white);
  box-shadow:0 12px 28px rgba(19,104,232,.23);
}

.btn-primary:hover{
  background:var(--blue-dark);
}

.btn-outline{
  color:var(--white);
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.48);
}

.btn-outline:hover{
  background:rgba(255,255,255,.16);
}

.btn-light{
  background:var(--white);
  color:var(--navy);
}

/* HERO */

.hero{
  position:relative;
  min-height:760px;
  padding:calc(var(--header-height) + 82px) 0 112px;
  color:var(--white);
  background:
    radial-gradient(circle at 84% 30%,rgba(41,123,255,.33),transparent 26%),
    linear-gradient(125deg,#08162b 0%,#0d2850 56%,#0a1f3d 100%);
  overflow:visible;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  align-items:center;
  gap:72px;
}

.eyebrow{
  margin-bottom:16px;
  color:#72aaff;
  font-size:13px;
  font-weight:800;
  letter-spacing:2.4px;
}

.hero h1{
  max-width:760px;
  margin-bottom:26px;
  font-size:clamp(48px,6vw,78px);
  line-height:1.04;
  letter-spacing:-3px;
}

.hero-text{
  max-width:700px;
  margin-bottom:34px;
  color:rgba(255,255,255,.84);
  font-size:19px;
  line-height:1.75;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.hero-visual{
  position:relative;
  min-height:440px;
}

.glass-card{
  position:absolute;
  inset:20px 0 20px 30px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.20);
  border-radius:34px;
  background:
    linear-gradient(135deg,rgba(255,255,255,.18),rgba(255,255,255,.03)),
    repeating-linear-gradient(90deg,transparent 0 88px,rgba(255,255,255,.12) 89px 91px),
    repeating-linear-gradient(0deg,transparent 0 105px,rgba(255,255,255,.08) 106px 108px);
  box-shadow:0 35px 80px rgba(0,0,0,.28);
  transform:perspective(900px) rotateY(-8deg);
}

.glass-card::before{
  content:"";
  position:absolute;
  top:-60px;
  left:70px;
  width:170px;
  height:520px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.25),transparent);
  transform:rotate(16deg);
}

.result-card{
  position:absolute;
  left:24px;
  right:24px;
  bottom:28px;
  display:grid;
  grid-template-columns:48px minmax(0,1fr);
  align-items:center;
  column-gap:14px;
  padding:17px 20px;
  border-radius:16px;
  background:rgba(255,255,255,.97);
  color:var(--navy);
  box-shadow:var(--shadow);
}

.result-card > div{
  display:flex;
  min-width:0;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
}

.result-card strong{
  display:block;
  width:100%;
  margin-bottom:3px;
  font-size:15px;
  line-height:1.2;
  white-space:nowrap;
}

.result-card small{
  display:block;
  width:100%;
  color:var(--muted);
  font-size:12px;
  line-height:1.25;
  white-space:nowrap;
}

/* TRUST BAR */

.trust-bar{
  position:absolute;
  left:20px;
  right:20px;
  bottom:-46px;
  z-index:10;
  width:auto;
  max-width:1180px;
  margin-inline:auto;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:18px;
  background:var(--white);
  box-shadow:var(--shadow);
}

.trust-item{
  min-width:0;
  min-height:92px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:18px 12px;
  text-align:center;
  color:var(--navy);
}

.trust-item + .trust-item{
  border-left:1px solid var(--border);
}

.trust-item strong{
  display:block;
  width:100%;
  font-size:16px;
  line-height:1.2;
  white-space:normal;
  overflow-wrap:anywhere;
}

.trust-item span{
  display:block;
  width:100%;
  margin-top:5px;
  color:var(--muted);
  font-size:12px;
  line-height:1.25;
  white-space:normal;
  overflow-wrap:anywhere;
}

/* SECTIONS */

.section{
  padding:84px 0;
}

.services{
  padding-top:148px;
  background:var(--off-white);
}

.section-heading{
  max-width:760px;
  margin:0 auto 40px;
  text-align:center;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2{
  margin-bottom:18px;
  color:var(--navy);
  font-size:clamp(35px,4.6vw,54px);
  line-height:1.12;
  letter-spacing:-1.7px;
}

.section-heading > p:last-child,
.about-copy > p,
.contact-copy > p{
  color:var(--muted);
  font-size:17px;
}

/* SERVICES */

.service-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap: 14px;
}

.service-card{
  display:flex;
  flex-direction:column;
  min-width:0;
  min-height:370px;
  padding: 24px 16px;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--white);
  box-shadow:0 12px 35px rgba(15,31,58,.06);
  transition:.3s ease;
}

.service-card:hover{
  transform:translateY(-8px);
  border-color:rgba(19,104,232,.28);
  box-shadow:var(--shadow);
}

.service-number{
  display:grid;
  place-items:center;
  width:58px;
  height:58px;
  margin-bottom:26px;
  border-radius:16px;
  background:var(--sky);
  color:var(--blue);
  font-weight:800;
}

.service-card h3{
  min-height:82px;
  margin-bottom:14px;
  color:var(--navy);
  font-size:21px;
  line-height:1.25;
  overflow-wrap:anywhere;
}

.service-card p{
  color:var(--muted);
  font-size:15px;
}

.service-card a{
  margin-top:auto;
  padding-top:22px;
  color:var(--blue);
  font-weight:800;
}

.service-card a span{
  display:inline-block;
  transition:.2s ease;
}

.service-card a:hover span{
  transform:translateX(5px);
}

/* PROJECTS */

.projects{
  background:var(--white);
}

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

.project-card{
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--white);
  box-shadow:0 12px 35px rgba(15,31,58,.07);
}

.project-image{
  height:265px;
  background-position:center;
  background-size:cover;
  transition:.45s ease;
}

.project-card:hover .project-image{
  transform:scale(1.04);
}

.project-image-one{
  background:linear-gradient(145deg,#0f2a50,#3f80dc);
}

.project-image-two{
  background:linear-gradient(145deg,#2b4b71,#9ec9ff);
}

.project-image-three{
  background:linear-gradient(145deg,#112b46,#4f89b8);
}

.project-content{
  position:relative;
  padding:27px;
  background:var(--white);
}

.project-content span{
  color:var(--blue);
  font-size:12px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
}

.project-content h3{
  margin:8px 0 12px;
  color:var(--navy);
  font-size:22px;
}

.project-content p{
  color:var(--muted);
  font-size:15px;
}

/* ABOUT */

.about{
  background:var(--off-white);
}

.about-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:72px;
  align-items:center;
}

.about-visual{
  position:relative;
  min-height:510px;
  border-radius:32px;
  background:
    linear-gradient(rgba(12,31,61,.25),rgba(12,31,61,.25)),
    linear-gradient(140deg,#0d2850,#4383dc);
  box-shadow:var(--shadow);
}

.about-visual::before,
.about-visual::after{
  content:"";
  position:absolute;
  border:1px solid rgba(255,255,255,.25);
  border-radius:24px;
}

.about-visual::before{
  inset:36px;
}

.about-visual::after{
  inset:90px 70px;
}

.about-badge{
  position:absolute;
  left:-30px;
  bottom:38px;
  max-width:300px;
  padding:24px;
  border-radius:18px;
  background:var(--white);
  box-shadow:var(--shadow);
}

.about-badge strong{
  display:block;
  margin-bottom:6px;
  color:var(--navy);
}

.about-badge span{
  color:var(--muted);
  font-size:14px;
}

.about-copy > p{
  margin-bottom:26px;
}

.check-list{
  display:grid;
  gap:12px;
  margin:0 0 30px;
  list-style:none;
}

.check-list li{
  position:relative;
  padding-left:31px;
  color:var(--navy);
  font-weight:700;
}

.check-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  display:grid;
  place-items:center;
  width:21px;
  height:21px;
  border-radius:50%;
  background:var(--sky);
  color:var(--blue);
  font-size:12px;
}

/* REVIEWS */

.review-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

.review-card{
  padding:30px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--white);
  box-shadow:0 10px 30px rgba(15,31,58,.06);
}

.stars{
  margin-bottom:16px;
  color:#f6b51d;
  letter-spacing:2px;
}

.review-card p{
  margin-bottom:20px;
  color:var(--text);
  font-size:17px;
}

.review-card footer{
  color:var(--muted);
  font-size:14px;
}

/* CTA */

.cta{
  padding:62px 0;
  background:linear-gradient(120deg,var(--navy),var(--blue));
  color:var(--white);
}

.cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:38px;
}

.cta .eyebrow{
  color:#bcd6ff;
}

.cta h2{
  max-width:780px;
  font-size:clamp(34px,4vw,52px);
  line-height:1.15;
}

/* CONTACT */

.contact{
  background:var(--off-white);
}

.contact-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:64px;
  align-items:start;
}

.contact-copy > p{
  margin-bottom:32px;
}

.contact-details{
  display:grid;
  gap:16px;
}

.contact-details div{
  padding:18px 20px;
  border:1px solid var(--border);
  border-radius:14px;
  background:var(--white);
}

.contact-details strong{
  display:block;
  color:var(--navy);
}

.contact-details span{
  color:var(--muted);
  font-size:14px;
}

.contact-form{
  display:grid;
  gap:18px;
  padding:34px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--white);
  box-shadow:var(--shadow);
}

.contact-form label{
  display:grid;
  gap:8px;
  color:var(--navy);
  font-size:14px;
  font-weight:800;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:14px;
  border:1px solid #d7dce5;
  border-radius:11px;
  background:var(--white);
  color:var(--text);
  outline:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 4px rgba(19,104,232,.10);
}

.contact-form textarea{
  resize:vertical;
}

.form-status{
  min-height:24px;
  color:var(--blue);
  font-weight:700;
}

/* FOOTER */

.site-footer{
  padding:56px 0 22px;
  background:#08172d;
  color:rgba(255,255,255,.76);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.45fr .72fr 1fr 1.08fr;
  gap:54px;
  align-items:start;
}

.footer-brand{
  min-width:0;
}

.footer-logo{
  display:inline-block;
  margin-bottom:24px;
}

.footer-logo img{
  width:auto;
  height:120px;
  object-fit:contain;
}

.site-footer p{
  max-width:440px;
}

.site-footer h3{
  margin-bottom:16px;
  color:var(--white);
}

.footer-column{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
}

.footer-column a{
  color:rgba(255,255,255,.76);
  transition:color .2s ease, transform .2s ease;
}

.footer-column a:hover{
  color:var(--white);
  transform:translateX(3px);
}

.footer-contact p{
  margin:0;
  line-height:1.65;
}

.footer-contact a[href^="tel:"],
.footer-contact a[href^="mailto:"]{
  overflow-wrap:anywhere;
}

.footer-kvk{
  margin-top:8px !important;
  color:rgba(255,255,255,.76);
}

.footer-kvk strong{
  color:var(--white);
}

.site-footer a:hover{
  color:var(--white);
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:20px;
  margin-top:38px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.12);
  font-size:14px;
}

@media (max-width:1020px){
  .footer-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:42px 54px;
  }
}

@media (max-width:760px){
  .footer-grid{
    grid-template-columns:1fr;
    gap:34px;
  }

  .footer-bottom{
    flex-direction:column;
  }
}

/* ANIMATIONS */

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .75s ease,transform .75s ease;
}

.reveal.visible{
  opacity:1;
  transform:none;
}

/* RESPONSIVE */

@media (max-width:1020px){
  .header-button{
    display:none;
  }

  .main-nav{
    gap:20px;
  }

  .hero-grid,
  .about-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .hero-visual{
    min-height:360px;
  }

  .glass-card{
    inset:0 8%;
  }

  .service-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .project-grid,
  .review-grid{
    grid-template-columns:1fr;
  }

  .about-badge{
    left:24px;
  }
}

@media (max-width:760px){
  :root{
    --header-height:88px;
  }

  .container{
    width:min(100% - 28px,1180px);
  }

  .site-header{
    height:var(--header-height);
  }

  .brand img{
    height:77px;
  }

  .site-header.scrolled .brand img{
    height:70px;
  }

  .menu-toggle{
    display:block;
  }

  .main-nav{
    position:absolute;
    top:calc(100% + 1px);
    left:14px;
    right:14px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:12px;
    border:1px solid var(--border);
    border-radius:14px;
    background:var(--white);
    box-shadow:var(--shadow);
  }

  .main-nav.open{
    display:flex;
  }

  .main-nav a{
    padding:12px;
  }

  .main-nav a::after{
    display:none;
  }

  .hero{
    min-height:auto;
    padding:calc(var(--header-height) + 58px) 0 160px;
  }

  .hero h1{
    font-size:clamp(42px,14vw,60px);
    letter-spacing:-2px;
  }

  .hero-text{
    font-size:17px;
  }

  .hero-visual{
    min-height:315px;
  }

  .glass-card{
    inset:0;
    transform:none;
  }

  .trust-bar{
    left:14px;
    right:14px;
    bottom:-128px;
    width:auto;
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .trust-item{
    min-height:84px;
    padding:14px 10px;
  }

  .trust-item:nth-child(3){
    border-left:0;
    border-top:1px solid var(--border);
  }

  .trust-item:nth-child(4){
    border-top:1px solid var(--border);
  }

  .services{
    padding-top:250px;
  }

  .section{
    padding:82px 0;
  }

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

  .service-card{
    min-height:auto;
  }

  .service-card h3{
    min-height:auto;
  }

  .cta-inner{
    align-items:flex-start;
    flex-direction:column;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:34px;
  }

  .footer-bottom{
    flex-direction:column;
  }
}

@media (max-width:430px){
  .hero-actions{
    flex-direction:column;
  }

  .hero-actions .btn{
    width:100%;
  }

  .contact-form{
    padding:24px;
  }
}


@media (max-width:520px){
  .result-card{
    left:14px;
    right:14px;
    grid-template-columns:42px minmax(0,1fr);
    column-gap:10px;
    padding:14px;
  }

  .check{
    width:42px;
    height:42px;
  }

  .result-card strong{
    font-size:13px;
  }

  .result-card small{
    font-size:10px;
    white-space:normal;
  }
}


/* DIENSTENFOTO'S - ALLE VIER GELIJK UITGELIJND */
.service-image{
  display:block;
  width:100%;
  height: 155px;
  flex:0 0  155px;
  margin:0 0 20px;
  border-radius:14px;
  object-fit:cover;
  object-position:center;
}

/* Zorgt dat alle kaarten en inhoud netjes gelijk blijven */
.service-grid{
  align-items:stretch;
}

.service-card{
  height:100%;
}

/* Tablet */
@media (max-width:1020px){
  .service-image{
    height:220px;
    flex-basis:220px;
  }
}

/* Mobiel */
@media (max-width:760px){
  .service-image{
    height:240px;
    flex-basis:240px;
  }
}


/* 5 DIENSTEN OP 1 RIJ - DESKTOP/LAPTOP */
@media (min-width:901px){
  .service-grid{
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:14px;
  }

  .service-card{
    min-width:0;
    padding:24px 16px;
  }

  .service-image{
    width:100%;
    height:155px;
    flex:0 0 155px;
    object-fit:cover;
    object-position:center;
  }

  .service-card h3{
    font-size:18px;
  }

  .service-card p{
    font-size:14px;
  }
}


/* SCS V2 - COMPACTERE EN CONSISTENTE SECTIE-SPACING */
.projects{
  padding-top:84px;
  padding-bottom:84px;
}

.about{
  padding-top:84px;
  padding-bottom:84px;
}

.reviews{
  padding-top:80px;
  padding-bottom:80px;
}

.contact{
  padding-top:82px;
  padding-bottom:82px;
}

/* Als in Over ons een echte foto staat, blijft die netjes in het bestaande vlak. */
.about-visual img{
  display:block;
  width:100%;
  height:100%;
  min-height:510px;
  object-fit:cover;
  object-position:center;
  border-radius:32px;
}

/* Iets kortere afstand tussen koppen en de inhoud eronder. */
.about-copy > p{
  margin-bottom:22px;
}

.contact-copy > p{
  margin-bottom:26px;
}

/* Mobiel/tablet: dezelfde compacte flow, zonder dat onderdelen op elkaar drukken. */
@media (max-width:760px){
  .section{
    padding:64px 0;
  }

  .services{
    padding-top:228px;
  }

  .section-heading{
    margin-bottom:32px;
  }

  .projects,
  .about,
  .reviews,
  .contact{
    padding-top:64px;
    padding-bottom:64px;
  }

  .about-visual img{
    min-height:380px;
  }

  .cta{
    padding:52px 0;
  }

  .site-footer{
    padding-top:48px;
  }
}

@media (max-width:520px){
  .about-visual img{
    min-height:300px;
  }
}


/* =========================================================
   SCS V2 - PROJECTKAARTEN UITLIJNEN + SUBTIELE HOVER
   ========================================================= */

/* Alle drie de kaarten exact vanaf dezelfde bovenlijn */
.projects-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  align-items:stretch;
  gap:24px;
}

/* Kaarten zelf even hoog en zonder verspringing */
.project-card{
  display:flex;
  flex-direction:column;
  height:100%;
  margin:0;
  overflow:hidden;
  border-radius:24px;
  transform:translateY(0);
  transition:
    transform .28s ease,
    box-shadow .28s ease;
}

/* Afbeeldingsvlak voor iedere kaart exact gelijk */
.project-card .project-image{
  width:100%;
  height:280px;
  overflow:hidden;
  flex:0 0 280px;
}

/* Werkt ook wanneer de img direct in de kaart staat */
.project-card > img,
.project-card .project-image img{
  display:block;
  width:100%;
  height:280px;
  object-fit:cover;
  object-position:center;
  margin:0;
  transition:transform .4s ease;
}

/* Tekstgedeelte vult de resterende hoogte gelijkmatig */
.project-card .project-content{
  display:flex;
  flex-direction:column;
  flex:1;
}

/* Geen individuele kaart mag lager/hoger beginnen */
.projects-grid > .project-card{
  align-self:stretch;
}

/* Alleen op apparaten met een echte muis */
@media (hover:hover) and (pointer:fine){
  .project-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 42px rgba(15, 35, 60, .13);
  }

  .project-card:hover > img,
  .project-card:hover .project-image img{
    transform:scale(1.035);
  }
}

/* Tablet */
@media (max-width:980px){
  .projects-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

/* Mobiel */
@media (max-width:680px){
  .projects-grid{
    grid-template-columns:1fr;
  }

  .project-card .project-image,
  .project-card > img,
  .project-card .project-image img{
    height:240px;
  }

  .project-card .project-image{
    flex-basis:240px;
  }
}


/* =========================================================
   SCS V2 - DIENSTENKAARTEN UITLIJNEN + SUBTIELE HOVER
   ========================================================= */

/* Vijf diensten strak op één rij op desktop */
.service-grid{
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  align-items:stretch;
  gap:14px;
  width:100%;
}

/* Alle kaarten exact even hoog */
.service-card{
  display:flex;
  flex-direction:column;
  height:100%;
  min-width:0;
  margin:0;
  overflow:hidden;
  border-radius:18px;
  transform:translateY(0);
  transition:
    transform .28s ease,
    box-shadow .28s ease;
}

/* Alle dienstfoto's exact dezelfde hoogte */
.service-image{
  display:block;
  width:100%;
  height:155px;
  flex:0 0 155px;
  object-fit:cover;
  object-position:center;
  margin:0;
  transition:transform .4s ease;
}

/* Tekstgedeelte netjes gelijk laten doorlopen */
.service-card h3{
  min-height:42px;
}

.service-card p{
  flex-grow:1;
}

/* Offerte-link onderaan gelijk uitlijnen */
.service-card > a{
  margin-top:auto;
}

/* Alleen hover op apparaten met echte muis */
@media (hover:hover) and (pointer:fine){
  .service-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 42px rgba(15, 35, 60, .13);
  }

  .service-card:hover .service-image{
    transform:scale(1.035);
  }
}

/* Laptop: vijf kaarten op één rij houden */
@media (min-width:901px) and (max-width:1250px){
  .service-grid{
    grid-template-columns:repeat(5, minmax(0, 1fr));
    gap:10px;
  }

  .service-card{
    padding:10px;
  }

  .service-image{
    height:135px;
    flex-basis:135px;
  }

  .service-card h3{
    min-height:38px;
    font-size:15px;
  }

  .service-card p{
    font-size:12px;
  }
}

/* Tablet */
@media (max-width:900px){
  .service-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:18px;
  }

  .service-image{
    height:190px;
    flex-basis:190px;
  }

  .service-card h3{
    min-height:0;
  }
}

/* Mobiel */
@media (max-width:600px){
  .service-grid{
    grid-template-columns:1fr;
  }

  .service-image{
    height:220px;
    flex-basis:220px;
  }
}


/* =========================================================
   SCS V2 - DETAILPAGINA GLASBEWASSING
   ========================================================= */

.detail-page{
  background:var(--white);
}

.detail-hero{
  padding:72px 0 84px;
  background:
    radial-gradient(circle at 88% 12%, rgba(219,234,254,.9), transparent 30%),
    linear-gradient(180deg,#ffffff 0%,#f7faff 100%);
}

.detail-hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  gap:56px;
}

.detail-copy h1{
  max-width:760px;
  color:var(--navy);
  font-size:clamp(42px,5.5vw,68px);
  line-height:1.05;
  letter-spacing:-.04em;
}

.detail-copy > p:not(.eyebrow){
  max-width:680px;
  margin-top:22px;
  color:var(--muted);
  font-size:18px;
}

.detail-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}

.btn-outline-dark{
  color:var(--navy);
  background:transparent;
  border:1px solid var(--border);
}

.btn-outline-dark:hover{
  background:var(--off-white);
}

.detail-media{
  overflow:hidden;
  border-radius:28px;
  box-shadow:var(--shadow);
}

.detail-media img{
  width:100%;
  height:480px;
  object-fit:cover;
  object-position:center;
}

.detail-intro{
  padding-top:78px;
  padding-bottom:78px;
}

.detail-content-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:start;
}

.detail-text h2{
  color:var(--navy);
  font-size:clamp(32px,4vw,48px);
  line-height:1.12;
  letter-spacing:-.03em;
}

.detail-text > p:not(.eyebrow){
  margin-top:18px;
  color:var(--muted);
  font-size:17px;
}

.detail-points{
  display:grid;
  gap:14px;
}

.detail-point{
  padding:20px 22px;
  border:1px solid var(--border);
  border-radius:16px;
  background:var(--white);
  box-shadow:0 10px 28px rgba(15,31,58,.05);
}

.detail-point strong{
  display:block;
  color:var(--navy);
  font-size:16px;
}

.detail-point span{
  display:block;
  margin-top:4px;
  color:var(--muted);
  font-size:14px;
}

.detail-cta{
  padding:64px 0;
  background:linear-gradient(120deg,var(--navy),var(--blue));
  color:var(--white);
}

.detail-cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
}

.detail-cta .eyebrow{
  color:#bcd6ff;
}

.detail-cta h2{
  max-width:760px;
  font-size:clamp(32px,4vw,48px);
  line-height:1.15;
}

@media (max-width:900px){
  .detail-hero-grid,
  .detail-content-grid{
    grid-template-columns:1fr;
  }

  .detail-media img{
    height:380px;
  }

  .detail-cta-inner{
    align-items:flex-start;
    flex-direction:column;
  }
}

@media (max-width:600px){
  .detail-hero{
    padding:52px 0 64px;
  }

  .detail-copy h1{
    font-size:40px;
  }

  .detail-copy > p:not(.eyebrow){
    font-size:16px;
  }

  .detail-media img{
    height:280px;
  }

  .detail-intro{
    padding-top:60px;
    padding-bottom:60px;
  }

  .detail-actions{
    flex-direction:column;
  }

  .detail-actions .btn{
    width:100%;
  }

  .detail-cta{
    padding:52px 0;
  }
}


/* =========================================================
   SCS V2 - KLIKBARE DIENSTKAART ZONDER UITLIJNING TE VERANDEREN
   ========================================================= */

.service-card-clickable{
  position:relative;
}

/* Onzichtbare kliklaag over de kaart; verandert geen maten of spacing */
.service-card-overlay{
  position:absolute !important;
  inset:0;
  z-index:1;
  display:block;
  margin:0 !important;
  padding:0 !important;
  border:0;
  background:transparent;
}

/* Inhoud blijft visueel exact gelijk */
.service-card-clickable .service-image,
.service-card-clickable .service-number,
.service-card-clickable h3,
.service-card-clickable p{
  position:relative;
  z-index:0;
}

/* Offerte-link blijft apart klikbaar boven de kaart-link */
.service-card-clickable .service-quote-link{
  position:relative;
  z-index:2;
  margin-top:auto;
}


/* AANPASSING DIENSTEN - LANGERE FOTO'S, GEEN CIJFERS */
.service-number{display:none !important;}

@media (min-width:901px){
  .service-image{
    height:320px !important;
    flex:0 0 320px !important;
    object-fit:cover;
    object-position:center;
    border-radius:16px 16px 0 0;
  }
  .service-card{
    padding:0 14px 18px !important;
  }
  .service-card h3{
    margin-top:22px;
  }
}

@media (max-width:900px){
  .service-image{
    height:260px !important;
    flex-basis:260px !important;
  }
}

@media (max-width:600px){
  .service-image{
    height:280px !important;
    flex-basis:280px !important;
  }
}

/* =========================================================
   SCS V2 - DEFINITIEF OFFERTEGEDEELTE
   ========================================================= */
.contact-modern{
  background:
    radial-gradient(circle at 82% 18%, rgba(219,234,254,.82), transparent 30%),
    linear-gradient(180deg,#f8fbff 0%,#f3f7fc 100%);
  padding-top:86px;
  padding-bottom:88px;
}

.contact-modern-grid{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:72px;
  align-items:start;
}

.contact-modern-copy h2{
  margin-bottom:18px;
  color:var(--navy);
  font-size:clamp(38px,4.8vw,58px);
  line-height:1.08;
  letter-spacing:-1.8px;
}

.contact-modern-intro{
  max-width:560px;
  margin-bottom:30px;
  color:var(--muted);
  font-size:17px;
  line-height:1.72;
}

.contact-benefits-card{
  max-width:570px;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:20px;
  background:rgba(255,255,255,.95);
  box-shadow:0 16px 42px rgba(15,31,58,.07);
}

.contact-benefit-item{
  display:grid;
  grid-template-columns:46px minmax(0,1fr);
  align-items:center;
  gap:16px;
  padding:18px 22px;
  border-bottom:1px solid var(--border);
}

.contact-benefit-item:last-child{
  border-bottom:0;
}

.contact-benefit-icon{
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--sky);
  color:var(--blue);
  font-size:16px;
  font-weight:900;
}

.contact-benefit-item strong{
  display:block;
  color:var(--navy);
  font-size:16px;
}

.contact-benefit-item span{
  display:block;
  margin-top:2px;
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}

.contact-form-modern{
  gap:18px;
  padding:34px;
  border-radius:22px;
  background:rgba(255,255,255,.98);
  box-shadow:0 20px 55px rgba(15,31,58,.10);
}

.contact-form-modern label{
  font-size:14px;
}

.contact-form-modern input,
.contact-form-modern textarea{
  padding:15px 16px;
  border-radius:12px;
  background:#fff;
}

.contact-form-modern textarea{
  min-height:150px;
}

.contact-submit{
  width:100%;
  min-height:54px;
}

.contact-privacy{
  margin-top:-2px;
  color:var(--muted);
  font-size:12px;
  line-height:1.5;
  text-align:center;
}

@media (max-width:1020px){
  .contact-modern-grid{
    grid-template-columns:1fr;
    gap:42px;
  }

  .contact-benefits-card{
    max-width:none;
  }
}

@media (max-width:760px){
  .contact-modern{
    padding-top:64px;
    padding-bottom:64px;
  }

  .contact-modern-grid{
    gap:32px;
  }

  .contact-form-modern{
    padding:24px;
  }

  .contact-benefit-item{
    padding:16px 18px;
  }
}

/* SCS HERO SLOGAN - DEFINITIEVE KLEURFIX */
.hero-slogan{
  color:#d7b06a !important;
  font-family:'Great Vibes',cursive !important;
  text-shadow:0 2px 14px rgba(0,0,0,.22) !important;
}

@media (max-width:760px){
  .hero-slogan{
    color:#d7b06a !important;
  }
}

/* SCS SLOGAN GOUD - DESKTOP + MOBIEL */
.hero-slogan,
.hero-slogan *,
.hero-visual .hero-slogan,
.hero-visual .hero-slogan *{
  color:#d7b06a !important;
  -webkit-text-fill-color:#d7b06a !important;
}

@media (max-width:760px){
  .hero-slogan,
  .hero-slogan *,
  .hero-visual .hero-slogan,
  .hero-visual .hero-slogan *{
    color:#d7b06a !important;
    -webkit-text-fill-color:#d7b06a !important;
  }
}

/* =========================================================
   SCS - ALLEEN HERO-FOTO KADRERING
   Laat de rest van de website exact ongemoeid.
   ========================================================= */

/* Alleen wanneer er daadwerkelijk een foto in .hero-visual staat */
.hero-visual > img,
.hero-visual .hero-photo,
.hero-visual .hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% center;
}

/* Desktop/laptop: alleen de foto iets naar links in het bestaande vlak */
@media (min-width: 901px) {
  .hero-visual > img,
  .hero-visual .hero-photo,
  .hero-visual .hero-image {
    object-position: 44% center;
  }
}

/* =========================================================
   SCS - DRONEVIDEO TUSSEN TEAMFOTO EN WITTE BALK
   ========================================================= */

.hero-video-wrap{
  width:min(1180px, calc(100% - 40px));
  height:240px;
  margin:28px auto 28px;
  overflow:hidden;
  border-radius:18px;
  background:#08172d;
  box-shadow:0 16px 38px rgba(0,0,0,.18);
}

.hero-drone-video{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

@media (max-width:1020px){
  .hero-video-wrap{
    height:145px;
    margin-top:24px;
    margin-bottom:24px;
  }
}

@media (max-width:760px){
  .hero-video-wrap{
    width:min(100% - 28px,1180px);
    height:115px;
    margin-top:20px;
    margin-bottom:20px;
    border-radius:14px;
  }
}



/* =========================================================
   SCS - CONVERSIE: DIRECT BELLEN ONDER DIENSTEN
   ========================================================= */
.services-call-cta{
  margin-top:32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  padding:28px 32px;
  border:1px solid var(--border);
  border-radius:22px;
  background:var(--white);
  box-shadow:0 16px 42px rgba(15,31,58,.08);
}

.services-call-copy .eyebrow{
  margin-bottom:7px;
}

.services-call-copy h3{
  margin-bottom:5px;
  color:var(--navy);
  font-size:clamp(24px,2.6vw,34px);
  line-height:1.15;
}

.services-call-copy > p:last-child{
  color:var(--muted);
  font-size:15px;
}

.services-call-actions{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:18px;
}

.services-call-number{
  color:var(--navy);
  font-size:18px;
  font-weight:800;
  white-space:nowrap;
}

.services-call-number:hover{
  color:var(--blue);
}

@media (max-width:760px){
  .services-call-cta{
    margin-top:24px;
    align-items:stretch;
    flex-direction:column;
    gap:20px;
    padding:24px;
  }

  .services-call-actions{
    align-items:stretch;
    flex-direction:column;
    gap:12px;
  }

  .services-call-number{
    text-align:center;
  }

  .services-call-actions .btn{
    width:100%;
  }
}

/* =========================================================
   SCS - CONVERSIE: OFFERTE ONDER PROJECTEN
   ========================================================= */
.projects-quote-cta{
  margin-top:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  padding:28px 32px;
  border:1px solid var(--border);
  border-radius:22px;
  background:var(--white);
  box-shadow:0 16px 42px rgba(15,31,58,.08);
  text-align:center;
}

.projects-quote-cta h3{
  color:var(--navy);
  font-size:clamp(24px,2.6vw,34px);
  line-height:1.15;
}

.projects-quote-cta .btn span{
  display:inline-block;
  margin-left:4px;
}

@media (max-width:760px){
  .projects-quote-cta{
    margin-top:24px;
    align-items:stretch;
    flex-direction:column;
    gap:18px;
    padding:24px;
  }

  .projects-quote-cta .btn{
    width:100%;
  }
}

/* =========================================================
   SCS - DETAILPAGINA'S: FOTO NAAST "STREEPLOOS, VEILIG EN PROFESSIONEEL"
   Strakke gelijke uitlijning op desktop, tablet en mobiel.
   ========================================================= */

.detail-content-grid{
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  align-items:center;
  gap:56px;
}

.detail-content-grid .detail-media,
.detail-content-grid .detail-image,
.detail-content-grid > figure{
  width:100%;
  margin:0;
  align-self:center;
  overflow:hidden;
  border-radius:24px;
}

.detail-content-grid .detail-media img,
.detail-content-grid .detail-image img,
.detail-content-grid > img,
.detail-content-grid > figure img{
  display:block;
  width:100%;
  height:390px;
  margin:0;
  object-fit:contain;
  object-position:center;
  background:var(--off-white);
  border-radius:24px;
}

/* Glasbewassing: persoon en raam goed zichtbaar */
body.glasbewassing-page .detail-content-grid img,
.detail-page.glasbewassing-page .detail-content-grid img{
  object-position:center center;
}

/* Telewas: lange telescoop + gevel centraal in beeld */
body.telewas-page .detail-content-grid img,
.detail-page.telewas-page .detail-content-grid img{
  object-position:center center;
}

@media (max-width:900px){
  .detail-content-grid{
    grid-template-columns:1fr;
    gap:30px;
    align-items:start;
  }

  .detail-content-grid .detail-media img,
  .detail-content-grid .detail-image img,
  .detail-content-grid > img,
  .detail-content-grid > figure img{
    height:360px;
  }
}

@media (max-width:600px){
  .detail-content-grid{
    gap:24px;
  }

  .detail-content-grid .detail-media,
  .detail-content-grid .detail-image,
  .detail-content-grid > figure{
    border-radius:18px;
  }

  .detail-content-grid .detail-media img,
  .detail-content-grid .detail-image img,
  .detail-content-grid > img,
  .detail-content-grid > figure img{
    height:280px;
    border-radius:18px;
  }
}

/* =========================================================
   SCS - FIX DETAILFOTO'S GLASBEWASSING + TELEWAS
   Het vlak sluit exact om de volledige foto: geen crop, geen zoom,
   geen brede lege witte ruimte naast de foto.
   ========================================================= */

.detail-content-grid .detail-media,
.detail-content-grid .detail-image,
.detail-content-grid > figure{
  width:fit-content;
  max-width:100%;
  justify-self:center;
  background:transparent;
}

.detail-content-grid .detail-media img,
.detail-content-grid .detail-image img,
.detail-content-grid > img,
.detail-content-grid > figure img{
  width:auto;
  max-width:100%;
  height:390px;
  object-fit:contain;
  object-position:center;
  background:transparent;
}

/* Tablet */
@media (max-width:900px){
  .detail-content-grid .detail-media img,
  .detail-content-grid .detail-image img,
  .detail-content-grid > img,
  .detail-content-grid > figure img{
    width:auto;
    max-width:100%;
    height:360px;
  }
}

/* Mobiel */
@media (max-width:600px){
  .detail-content-grid .detail-media,
  .detail-content-grid .detail-image,
  .detail-content-grid > figure{
    width:fit-content;
    max-width:100%;
    margin-inline:auto;
  }

  .detail-content-grid .detail-media img,
  .detail-content-grid .detail-image img,
  .detail-content-grid > img,
  .detail-content-grid > figure img{
    width:auto;
    max-width:100%;
    height:auto;
    max-height:420px;
  }
}



/* =========================================================
   SCS - MOBIEL: DRONEVIDEO EVEN GROOT ALS DE BUSFOTO
   Alleen mobiel; desktop/tablet blijven ongewijzigd.
   ========================================================= */
@media (max-width:600px){
  .hero-video-wrap{
    width:calc(100% - 28px);
    height:240px;
    margin:20px auto;
    border-radius:18px;
    overflow:hidden;
  }

  .hero-drone-video{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
  }
}

/* =========================================================
   SCS - MOBIEL: MINDER DONKERBLAUWE RUIMTE ONDER DRONEVIDEO
   Alleen mobiel. Desktop en tablet blijven ongewijzigd.
   ========================================================= */
@media (max-width:600px){
  .hero{
    padding-bottom:60px !important;
  }
}

/* =========================================================
   SCS - DIENSTEN IETS LAGER BIJ KLIK OP MENU
   ========================================================= */
#diensten{
  scroll-margin-top:35px;
}

/* =========================================================
   SCS - PRIVACYVERKLARING
   ========================================================= */
.footer-legal-links{
  display:flex;
  align-items:center;
  gap:22px;
}

.contact-privacy a{
  color:var(--blue);
  font-weight:700;
}

.contact-privacy a:hover{
  text-decoration:underline;
}

.privacy-page{
  background:var(--off-white);
}

.privacy-hero{
  padding:calc(var(--header-height) + 72px) 0 52px;
  background:linear-gradient(180deg,#ffffff 0%,#f5f8fd 100%);
}

.privacy-container{
  max-width:900px;
}

.privacy-hero h1{
  color:var(--navy);
  font-size:clamp(42px,5.5vw,66px);
  line-height:1.05;
  letter-spacing:-.04em;
}

.privacy-intro{
  max-width:760px;
  margin-top:20px;
  color:var(--muted);
  font-size:18px;
}

.privacy-updated{
  margin-top:14px;
  color:var(--muted);
  font-size:13px;
}

.privacy-content{
  padding:54px 0 84px;
}

.privacy-card{
  padding:44px;
  border:1px solid var(--border);
  border-radius:24px;
  background:var(--white);
  box-shadow:var(--shadow);
}

.privacy-card h2{
  margin-top:34px;
  margin-bottom:12px;
  color:var(--navy);
  font-size:24px;
  line-height:1.25;
}

.privacy-card h2:first-child{
  margin-top:0;
}

.privacy-card p,
.privacy-card li{
  color:var(--muted);
  font-size:16px;
  line-height:1.75;
}

.privacy-card ul{
  margin:10px 0 12px 22px;
}

.privacy-card a:not(.btn){
  color:var(--blue);
  font-weight:700;
}

.privacy-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:38px;
}

@media (max-width:760px){
  .footer-legal-links{
    align-items:flex-start;
    flex-direction:column;
    gap:10px;
  }

  .privacy-hero{
    padding:calc(var(--header-height) + 44px) 0 38px;
  }

  .privacy-content{
    padding:36px 0 64px;
  }

  .privacy-card{
    padding:26px 22px;
  }

  .privacy-actions{
    flex-direction:column;
  }

  .privacy-actions .btn{
    width:100%;
  }
}

