:root {
  --bg: #f5f4f0;
  --panel: #ffffff;
  --panel-soft: #f8f7f3;
  --text: #1c2430;
  --muted: #67707c;
  --line: #dde2e7;

  --primary: #b30000;
  --primary-2: #8f0000;
  --accent: #b30000;

  --shadow: 0 16px 40px rgba(18, 31, 45, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(221, 226, 231, 0.85);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  min-width: 0;
}

.brand-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary);
}

.brand-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.96rem;
  color: #334155;
}

.nav-links a:hover {
  color: var(--primary);
}

.hero {
  position: relative;
  overflow: hidden;

  background-image: url("images/achtergrond2.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.75) 0%,
    rgba(255,255,255,0.65) 35%,
    rgba(255,255,255,0.45) 60%,
    rgba(255,255,255,0.15) 85%,
    rgba(255,255,255,0.05) 100%
  );

  z-index: 1;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 38% 48%, rgba(255,255,255,0.45), transparent 26%),
    radial-gradient(circle at top right, rgba(176,138,87,0.12), transparent 24%),
    radial-gradient(circle at left, rgba(31,52,72,0.06), transparent 30%);
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: start;
  padding: 110px 0 120px;
}

.eyebrow,
.section-label,
.panel-label,
.contact-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
}

.eyebrow {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(176,138,87,0.3);
  color: var(--primary);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.93rem;
  font-weight: 500;
}

.hero-content h1,
.section-intro h2,
.contact-grid h2,
.hero-panel h2 {
  margin: 0;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.hero-content h1 {
  margin-top: 20px;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.08;
  max-width: 13ch;
}

.hero-text {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: 1.12rem;
  color: #2b3440;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.2s ease;
}

.button-small {
  padding: 12px 20px;
  font-size: 0.95rem;
}

.button-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(31,52,72,0.18);
}

.button-primary:hover {
  background: var(--primary-2);
  transform: translateY(-1px);
}

.button-secondary {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hero-panel {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(221, 226, 231, 0.9);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(1px);
}

.hero-panel h2 {
  margin-top: 10px;
  font-size: 2rem;
}

.service-preview {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.service-item {
  background: var(--panel-soft);
  border-radius: 18px;
  padding: 18px;
}

.service-item h3,
.card h3,
.step-card h3,
.contact-card h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #0f172a;
}

.service-item p,
.card p,
.step-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}
.section-intro {
  max-width: 760px;
}

.section-intro h2,
.contact-grid h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-intro p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.cards-grid,
.steps-grid {
  display: grid;
  gap: 24px;
  margin-top: 42px;
}

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

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

.card,
.step-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(18,31,45,0.08);
}

.contact-section {
  background: #1f3448;
  color: #fff;
  padding: 30px 0;
}

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

.contact-grid h2 {
  color: #fff;
  margin-top: 10px;
}

.contact-text {
  max-width: 720px;
  color: #dbe4ec;
  font-size: 1.05rem;
  margin-top: 18px;
}

.contact-label {
  color: #d3bc93;
}

.contact-card {
  background: #fff;
  color: var(--text);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

.contact-card h3 {
  color: var(--primary);
  font-size: 1.35rem;
}

.contact-item {
  margin-top: 20px;
}

.contact-item span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.contact-item strong a {
  color: var(--primary);
}

.contact-card .button {
  margin-top: 26px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .contact-grid,
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 860px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .brand {
    width: 100%;
    text-align: center;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
  }

  .hero-grid,
  .contact-grid,
  .cards-grid,

  .hero-content h1 {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .hero-grid,
  .section,
  .contact-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero-panel,
  .card,
  .step-card,
  .stat-card,
  .contact-card,

  .button,
  .button-small {
    width: 100%;
  }

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

  .nav-links {
    font-size: 0.92rem;
  }
}

.about-grid{
display:grid;
grid-template-columns:350px 1fr;
gap:50px;
align-items:center;
}

.about-image img{
width:100%;
border-radius:20px;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

@media(max-width:900px){
.about-grid{
grid-template-columns:1fr;
}
}

.clients-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:50px;
margin-top:40px;
}

.clients-column{
background:white;
padding:25px;
border-radius:14px;
box-shadow:0 6px 18px rgba(0,0,0,0.06);
}

.clients-column h3{
color:#1f3448;
font-size:18px;
margin-bottom:15px;
border-bottom:2px solid #e5e7eb;
padding-bottom:8px;
}

.clients-column ul{
list-style:none;
padding:0;
margin:0;
}

.clients-column li{
padding:10px 0;
border-bottom:1px solid #f0f2f5;
font-size:15px;
color:#374151;
}

.clients-column li:last-child{
border-bottom:none;
}

@media(max-width:900px){
.clients-grid{
grid-template-columns:1fr;
}
}
.highlights {
  padding-top: 32px;
}

.highlights-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.highlight-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 8px 22px rgba(18,31,45,0.04);
  color: var(--primary);
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .highlights-row {
    grid-template-columns: 1fr;
  }
}
.clients-intro {
  max-width: 700px;
  color: var(--muted);
  margin-top: 12px;
}
#diensten{
position:relative;
}

.diensten-image{
position:absolute;
top:190px;
right:180px;
width:350px;
opacity:0.85;
}

.diensten-image img{
width:100%;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}
.linkedin-link{
display:flex;
align-items:center;
gap:8px;
font-weight:500;
color:#0A66C2;
}

.linkedin-link:hover{
text-decoration:underline;
}
.site-footer{
background:#162635;
color:#ffffff;
padding:6px 0;
text-align:center;
font-size:11px;
margin-top:0;
}
.contact-actions{
  display:flex;
  gap:12px;
  margin-top:26px;
  flex-wrap:wrap;
}

.contact-actions .button{
  margin-top:0;
}
.contact-page{
  min-height: calc(100vh - 82px);
}

.contact-page-grid{
  display:grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap:48px;
  align-items:start;
}

.contact-page h1{
  margin:10px 0 0;
  font-size:clamp(2.2rem, 5vw, 3.5rem);
  line-height:1.1;
  letter-spacing:-0.03em;
  color:var(--primary);
}

.contact-page-text{
  margin-top:20px;
  max-width:680px;
  color:var(--muted);
  font-size:1.05rem;
}

.contact-page-info{
  margin-top:30px;
  display:grid;
  gap:18px;
}

.form-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:32px;
  box-shadow:0 16px 40px rgba(18,31,45,0.08);
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.contact-form label{
  font-weight:600;
  color:var(--primary);
  margin-top:6px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:14px;
  font-family:inherit;
  font-size:15px;
  color:var(--text);
  background:#fff;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:var(--primary);
  box-shadow:0 0 0 3px rgba(31,52,72,0.08);
}

.contact-form textarea{
  resize:vertical;
  min-height:140px;
}

.form-note{
  margin:10px 0 4px;
  font-size:14px;
  color:var(--muted);
}

@media (max-width: 900px){
  .contact-page-grid{
    grid-template-columns:1fr;
  }

  .form-card{
    padding:24px;
  }
}
section {
  padding: 80px 0;
}

.section-light {
  background-color: #ffffff;
}

.section-soft {
  background-color: #f5f4f0;
}
/* ---------------- */
/* MOBIEL STYLING  */
/* ---------------- */

@media (max-width: 1100px) {

  .diensten-image {
    position: static;
    width: 100%;
    max-width: 420px;
    margin: 0 auto 28px;
    opacity: 1;
  }

}

@media (max-width: 900px) {

  .hero-grid,
  .contact-grid,
  .about-grid,
  .cards-grid,
  .steps-grid,
  .clients-grid,
  .highlights-row {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding: 14px 0;
  }

  .brand {
    width: 100%;
    text-align: center;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-grid {
    gap: 28px;
    padding: 56px 0 64px;
  }

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

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

}

@media (max-width: 700px) {

  section,
  .contact-section {
    padding: 56px 0;
  }

  .container {
    width: calc(100% - 24px);
  }

  .site-header .button-small {
    display: none;
  }

}