:root {
    color-scheme: light;
    
  /* Basis */
  --bg: #f3f1f2;
  --text: #024e44;

  /* Branding */
  --green: #024e44;
  --green-dark: #001e19;
  --pink: #f27b9b;
  --gold: #dfac50;

  /* Neutrals */
  --white: #f0f0f0;
  --soft: #f5f5f5;

  /* Effects */
  --shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

input,
textarea,
select,
button {
  color-scheme: light;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 14px;
}
html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  overflow-x: hidden;
  background: #f0f0f0;
  color: #024e44;
}
body {
  font-family: 'Poppins', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  margin: 0;
  padding: 0;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.25s ease;
}

.btn-gold {
  background: var(--gold);
  color: white;
  font-size: 1.1rem;
}

.btn-light {
  background: white;
  color: var(--green);
}
.mobile-number-btn {
  display: none;
}

.navbar {
  max-width: 1500px;
  margin: 0 auto;
  padding: 28px 40px 18px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}

.logo img {
  height: 40px;
  margin-left: 115px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-mobile {
  display: none !important;
}

.logo-desktop {
  display: block !important;
}

nav {
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 48px;
  font-weight: 700;
  color: var(--text);
  font-size: 1.1rem;
}

.nav-links a:hover {
  color: var(--pink);
}

.hero {
  width: calc(100% - 100px);
  min-height: 80vh;
  margin: 20px 0 20px 100px;
  padding: 22px 22px 24px;
  border-radius: 38px 0 0 38px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-dark) 100%);
  color: white;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 20px;
}

.hero-left {
  display: block;
}

.hero-label {
  font-size: 1.2rem;                
  color: var(--pink);             
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 600;
  margin-left: 30px;
}

.hero-text h1 {
  font-size: 4.8rem;
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -2px;
  margin: 0;
  margin-left: 30px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-top: 45px;
  flex-wrap: wrap;
  margin-left: 30px;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-circle img {
  width: 100%;
  max-width: 438px;
  height: auto;

  transform: translateX(-40px) rotate(-10deg);
}

/* Tablet */
@media (max-width: 1200px) {
  .navbar {
    padding: 24px 30px 20px;
    gap: 24px;
  }

  .nav-links {
    gap: 24px;
  }
 .hamburger {
    display: flex !important;
  }

  .navbar nav {
    display: none;
  }

  .navbar nav.active {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    background: white;
    padding: 24px;
    border-radius: 20px;
    margin-top: 20px;
    gap: 18px;
  }
  .hamburger {
  display: flex !important;
  width: 42px;
  height: 42px;
  border: none;
  background: var(--green);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 18px;
  height: 2px;
  background: white;
  border-radius: 999px;
}
  .hero {
    margin: 20px 20px 40px;
    padding: 50px 40px;
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
  }

  .hero-left {
    grid-template-columns: 100px 1fr;
  }

  .hero-label {
    margin-top: 70px;
  }

  .hero-text h1 {
    font-size: 4rem;
  }

  .hero-right {
    margin-top: 20px;
  }

  .hero-circle img {
    max-width: 420px;
  }

  .werkwijze .subtitle,
  .werkwijze .step p,
  .over-ons p,
  .over-container p,
  .dienst-card p,
  .contact-text {
    font-size: 1.08rem !important;
    line-height: 1.7 !important;
    max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  }

  h2,
.portfolio-header h2,
.diensten-header h2,
.over-ons h2,
.werkwijze h2,
.contact-left h2 {
  font-size: 2.8rem !important;
  line-height: 1.1;
}

h3,
.step h3,
.card-content h3,
.dienst-card h3,
.over-ons h3 {
  font-size: 1.4rem !important;
  line-height: 1.2;
}

.subtitle,
.contact-eyebrow,
.hero-label {
  font-size: 1.1 !important;
  line-height: 1.4;
}

 .portfolio {
    margin-top: 60px;
    overflow: hidden;
    padding: 80px 20px 40px;
  }

  .portfolio-header {
    display: block;
    text-align: center;
    padding: 45px 20px 100px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .portfolio-header h2 {
    font-size: 3rem;
  }

  .portfolio-grid {
    width: calc(100% - 80px);
    margin: -70px auto 0;

    display: grid;
    grid-template-columns: 1fr !important;
    grid-template-rows: none !important;

    grid-template-areas:
      "branding"
      "social"
      "strategy"
      "content";

    gap: 18px;
  }

  .card-image-1,
  .card-phone,
  .card-laptop,
  .card-gold-arrow {
    display: none !important;
  }

  .card-branding,
  .card-social,
  .card-strategy,
  .card-content-green {
    display: flex !important;
    flex-direction: column;

    min-height: auto !important;
    height: auto !important;

    border-radius: 26px;
    overflow: hidden;
  }

  .card-branding {
    background: var(--green) !important;
    color: white !important;
  }

  .card-social {
    background: white !important;
    color: var(--green) !important;
  }

  .card-strategy {
    background: #f8dce4 !important;
    color: var(--green) !important;
  }

  .card-content-green {
    background: var(--gold) !important;
    color: white !important;
  }

  .card-social h3,
  .card-social .card-link,
  .card-social .dark-text {
    color: var(--green) !important;
  }

  .card-content-green h3,
  .card-content-green .card-link {
    color: white !important;
  }

  .card-content-green .card-label {
    color: var(--pink) !important;
  }

  .card-top,
  .card-bottom {
    position: relative !important;
    height: auto !important;
    clip-path: none !important;
  }

  .card-top::after,
  .card-branding::after {
    display: none !important;
  }

  .card-content {
    padding: 28px 24px !important;
    height: auto !important;
    min-height: auto !important;
  }

  .card-content h3 {
    font-size: 1.6rem !important;
    line-height: 1.15;
  }

  .mobile-card-image,
  .card-bottom {
    display: block !important;
    width: 100%;
    height: 260px !important;
    overflow: hidden;
  }

  .mobile-card-image img,
  .card-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
.diensten-header {
  padding: 45px 20px 110px;
}

.navbar {
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 16px;
    padding: 24px 32px;
  }

.logo img {
  margin-left: 24px !important;
}

  .navbar .btn-gold {
    display: inline-block;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    padding: 14px 28px;
  }

  .hamburger {
    display: flex !important;
    grid-column: 3;
    grid-row: 1;
  }

  .navbar nav {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    margin-left: 0;
  }

  .navbar nav.active {
    display: block;
  }

  .nav-links {
    margin-top: 14px;
    background: var(--bg);
    border-radius: 20px;
    padding: 22px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  /* portfolio tablet hetzelfde als mobiel */
  .portfolio-grid {
    width: calc(100% - 32px);
    margin: -70px auto 0;

    display: grid;
    grid-template-columns: 1fr !important;
    grid-template-rows: none !important;
    grid-template-areas:
      "branding"
      "social"
      "strategy"
      "content";

    gap: 18px;
  }

  .card-image-1,
  .card-phone,
  .card-laptop,
  .card-gold-arrow {
    display: none !important;
  }

  .card-branding,
  .card-social,
  .card-strategy,
  .card-content-green {
    display: flex;
    flex-direction: column;
    min-height: auto !important;
    height: auto !important;
    border-radius: 26px;
    overflow: hidden;
  }

  .mobile-card-image {
    display: block;
    width: 100%;
    height: 260px;
    overflow: hidden;
  }

  .mobile-card-image img,
  .card-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .card-bottom {
    position: relative !important;
    height: 260px !important;
    clip-path: none !important;
  }
   .mobile-card-image {
    display: block !important;
  }
}

/* Mobiel */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
  }
   .contact-section {
    margin-top: 20px !important;
    padding: 40px 20px !important;
    grid-template-columns: 1fr !important;
  }
  .contact-left {
  padding-left: 0 !important;
  text-align: left !important;
  align-items: flex-start !important;
}
.contact-left .contact-text {
  display: block !important;
  width: 100% !important;
  max-width: none !important;

  margin: 0 !important;
  padding: 0 !important;

  text-align: left !important;
}

.contact-left h2,
.contact-text,
.response-line {
  text-align: left !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 40px !important;
}

.contact-text {
  max-width: 280px !important;
}
  .contact-form,
  form {
    width: 100%;
    max-width: 100%;
  }

  .form-group,
  .form-group input,
  .form-group textarea {
    width: 100%;
    box-sizing: border-box;
  }

 .form-row {
    flex-direction: column;
  }
   .portfolio {
    margin-top: 10px !important;
  }
   .diensten {
    padding-top: 10px !important;
  }
  .mobile-card-image {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .mobile-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  


/* minder hoogte */
.btn-light,
.btn-gold {
  min-height: unset;
}

  .hero-left {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .hero-label {
    width: fit-content;
  margin: 0 auto 8px;

  position: relative;
  left: -50px;
    font-size: 0.8rem;
  }

  .hero-text h1 {
    font-size: 3rem;
    line-height: 0.95;
    letter-spacing: -1px;

    text-align: center;

    max-width: 100%;
    margin: 0 auto;
  }

 
 }
.werkwijze {
  padding-top: 25px !important;
  padding-bottom: 20px !important;
  text-align: center;
}
.subtitle {
  margin-bottom: 24px;
}

.werkwijze .subtitle {
  margin-bottom: 80px !important;
  text-align: center;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Titel */
.werkwijze h2 {
  font-size: 4rem;
  color: var(--green);
  margin-bottom: 8px !important;
}

.subtitle {
  font-size: 1.6rem;
  margin-bottom: 60px;
}

/* 3 kolommen */
.steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 280px;
}

/* Icon (druppel vorm) */
.icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 10px;
  

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50% 50% 50% 0;
  transform: rotate(-180deg);

  font-weight: 700;
  font-size: 1.5rem;
  color: #f0f0f0;
}
.icon span {
  transform: rotate(180deg);
}

.icon.green { background: var(--green); }
.icon.pink { background: var(--pink); }
.icon.gold { background: var(--gold); }


/* Titels */
.step h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
/* kleuren werkwijze */
.step:nth-child(1) h3 {
  color: var(--green) !important;
}

.step:nth-child(2) h3 {
  color: var(--pink) !important;
}

.step:nth-child(3) h3 {
  color: var(--gold) !important;
}

/* PORTFOLIO */
.portfolio {
  margin-top: 100px;
  background: var(--bg);
}

.portfolio-header {
  background: var(--pink);
  color: var(--white);
  padding: 80px 20px 140px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
}

.portfolio-header h2 {
  grid-column: 2;
  margin: 0;
  font-size: 3.4rem;
  line-height: 1;
  text-align: center;
}

.portfolio-header a {
  grid-column: 3;
  justify-self: end;
  margin-top: 10px;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 600;
}

.portfolio-grid {
  width: min(1350px, calc(100% - 120px));
  margin: -105px auto 0;

  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 0.75fr 0.75fr;
  grid-template-rows: 230px 270px;
  grid-template-areas:
    "branding image1 social phone phone"
    "branding strategy laptop gold content";
  gap: 8px;

  position: relative;
  z-index: 20;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  display: flex;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 34px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.card-top .card-content {
  position: relative;
  z-index: 3;

  padding-left: 12px;
  padding-top: 0;

  max-width: 560px;
}
.card-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--pink);
  margin-bottom: 18px;
}

.card-content h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.15;
  font-weight: 800;
}

.card-link {
  background: transparent;
  border: none;
  padding: 8px 14px 8px 0;
  border-radius: 999px;

  font-size: 0.95rem;
  font-weight: 700;
  color: inherit;

  cursor: pointer;
  transition: all 0.25s ease;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  align-self: flex-start;
}

/* Hover effect */
.card-link:hover {
  color: var(--pink);
  transform: translateY(-2px);
}


.card-branding {
  grid-area: branding;
  background: var(--green);
  color: var(--white);
  position: relative;
  overflow: hidden;
  display: block;
}

.card-image-1 {
  grid-area: image1;
}

.card-social {
  grid-area: social;
  background: var(--white);
  color: var(--green);
}

.card-phone {
  grid-area: phone;
  background: #f5c6d1;
}

.card-strategy {
  grid-area: strategy;
  background: #f8dce4;
 color: var(--green);
}

.card-laptop {
  grid-area: laptop;
  background: #111;
}

.card-gold-arrow {
  grid-area: gold;
  background: var(--gold);
}

.card-content-green {
  grid-area: content;
  background: var(--green);
  color: var(--white);
}

.card-gold-arrow {
  position: relative;
  overflow: hidden;
  background: var(--gold);
}

.card-gold-arrow::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  left: 25px;
  bottom: 25px;
  border: 3px solid rgba(240, 240, 240, 0.35);
  border-top: none;
  border-left: none;
  border-radius: 0 0 80px 0;
}

.card-gold-arrow::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  right: 35px;
  top: 35px;
  border-top: 3px solid rgba(240, 240, 240, 0.35);
  border-right: 3px solid rgba(240, 240, 240, 0.35);
  transform: rotate(-45deg);
}
.card-branding {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.card-branding::after {
  content: "";
  position: absolute;
  left: -10%;
  top: 62.5%;
  width: 120%;
  height: 12px;
  background: var(--bg);
  transform: rotate(-8deg);
  z-index: 10;
}
.card-branding .card-content {
  position: relative;
  z-index: 3;
}

.card-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background: var(--green);
  z-index: 2;
  padding: 40px 0 0 22px;
  overflow: visible;

  clip-path: none;
}
.card-top::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 380px;
  right: -250px;
  bottom: -300px;
  background: var(--pink);
  border-radius: 50% / 70%;
  z-index: 1;
  transform: translateY(110px);
}

.card-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  z-index: 3;
  overflow: hidden;
  clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
}

.card-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.over-ons {
  background: var(--bg);
  padding: 60px 20px 20px;
  text-align: center;
}

.over-container {
  max-width: 900px;
  margin: 0 auto;
}

.over-ons h2 {
  font-size: 3.5rem;
  color: var(--pink);
  margin-bottom: 40px;
  font-weight: 800;
}

.over-ons h3 {
  font-size: 2.2rem;
  color: var(--green);
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.3;
}

.over-ons p {
  font-size: 1.3rem;
  color: var(--green);
  line-height: 1.6;
  margin-bottom: 25px;
}
.diensten {
  background: var(--bg);
  padding: 80px 20px 40px;
}

.diensten-header {
  background: var(--pink);
  padding: 45px 20px 150px;
  text-align: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.diensten-header h2 {
  color: white;
  font-size: 4rem;
  font-weight: 800;
}

.diensten-grid {
  max-width: 1200px;
  margin: -100px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

.dienst-card {
  background: #f7f7f7;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.dienst-card h3 {
  font-size: 1.8rem;
  color: var(--green);
  margin-bottom: 20px;
}

.dienst-card p {
  font-size: 1.1rem;
  color: var(--green);
  line-height: 1.6;
  margin-bottom: 30px;
}

.dienst-card .btn {
  align-self: flex-start;
}
.dienst-card.active {
  z-index: 10;
}

.dienst-extra {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, margin-top 0.35s ease;
}

.dienst-card.active .dienst-extra {
  max-height: 260px;
  margin-top: 20px;
}

.dienst-toggle {
  border: none;
  cursor: pointer;
  margin-top: auto;
}
.contact-section {
  background: var(--bg);
  margin-top: 70px;
  padding: 70px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.contact-left {
  position: relative;
  padding-left: 80px;
  z-index: 2;
}

.contact-bg-logo {
  position: absolute;
  left: -80px;
  top: -40px;

  width: 300px;
  opacity: 0.08;

  z-index:-1;
  pointer-events: none;
}

.contact-left > *:not(.contact-bg-logo) {
  position: relative;
  z-index: 2;
}

.contact-eyebrow {
  color: var(--pink);
  font-weight: 800;
  letter-spacing: 6px;
  font-size: 1.2rem;  
  margin-bottom: 25px;
}

.contact-left h2 {
  font-size: 4.2rem;
  line-height: 1.05;
  color: var(--green);
  margin-bottom: 35px;
}

.contact-left h2 span {
  color: var(--gold);
}

.contact-text {
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 70px;
}

.response-line {
  font-size: 1rem;
  color: var(--green);
}

.response-line::before {
  content: "";
  display: inline-block;
  width: 45px;
  height: 2px;
  background: var(--pink);
  margin-right: 15px;
  vertical-align: middle;
}

.contact-card {
  background: white;
  padding: 50px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  font-size: 2.4rem;
  color: var(--pink);
  margin-bottom: 15px;
}

.contact-card p {
  color: var(--green);
  margin-bottom: 35px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.form-group label {
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  font-family: inherit;
  background: #f7f7f7;
}

.form-group textarea {
  min-height: 130px;
  resize: none;
}

.contact-card button {
  width: 100%;
  border: none;
  background: var(--pink);
  color: white;
  padding: 18px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 900px) {
  .contact-section {
    grid-template-columns: 1fr;
    padding: 80px 24px;
  }

 .contact-left {
  text-align: left !important;
  align-items: flex-start !important;
}

.contact-left .contact-text {
  display: block !important;
  width: 100% !important;
  max-width: none !important;

  margin: 0 !important;
  padding: 0 !important;

  text-align: left !important;
}

  .contact-left h2 {
    font-size: 3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

.footer {
  background: linear-gradient(135deg, #0d3d35, #024e44);
  color: white;

  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 0;

  padding: 50px 0 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px 45px;

  display: grid;
  grid-template-columns: 1.1fr 1.6fr 1fr 1fr;
  gap: 70px;
  align-items: flex-start;
}

.footer-logo-block img {
  width: 170px;

  position: relative;
  top: 25px;      /*   */
  left: 0px;    /*   */

  transform: rotate(-8deg); /*   */
}

.footer h4 {
  font-size: 1.2rem;
  margin-bottom: 28px;
  color: var(--white)
}

.footer-contact p {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
  color: rgba(240,240,240,0.85);
  line-height: 1.5;
  transition: 0.2s;
}
.footer-contact p a {
  display: grid;
  grid-template-columns: 24px 1fr;
}
.footer-contact span {
  display: block;
  line-height: 1.5;
}
.footer-contact i {
  color: var(--white);
  font-size: 1.1rem;
  width: 20px;
  flex-shrink: 0; 
  margin-top: 4px;
}
.footer-contact p a:hover {
  color: var(--pink);
}

.footer-logo-block a {
  display: inline-block;
}
.footer-contact .kvk {
  margin-left: 42px;
  font-size: 0.95rem;
}

.footer-column a {
  display: block;
  margin-bottom: 14px;
  color: rgba(240,240,240,0.85);
  transition: 0.2s;
}

.footer-column a:hover {
  color: var(--pink);
}

.footer-bottom {
  background: #02332c;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 0;

  padding: 14px 0;
  border-top: none;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(240,240,240,0.85);
}
.footer-bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
   padding: 0 120px 0 80px; 

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.footer-copy {
  font-size: 0.9rem;
  color: rgba(240,240,240,0.85);
  white-space: nowrap;
}



.footer-menu {
  display: flex;
  gap: 30px;
}

.footer-menu a {
  color: rgba(240,240,240,0.85);
  font-size: 0.9rem;
  transition: 0.2s;
}

.footer-menu a:hover {
  color: var(--pink);
}

.footer-socials {
  display: flex;
  gap: 18px;
}

.footer-socials a {
  display: flex;              /**/
  align-items: center;
  justify-content: center;

  width: 44px;                /* */
  height: 44px;               /* */

  border-radius: 50%;

  color: var(--white);
  font-size: 1.2rem;

  transition: all 0.25s ease;
}

.footer-socials a:hover {
  background: var(--pink);
  color: white;
  transform: translateY(-2px);
}

.footer-socials {
  display: flex;
  gap: 22px;
}


@media (max-width: 900px) {
  .footer {
    padding: 45px 24px 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-bottom-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    gap: 24px;

    padding: 0 24px;
  }

  .footer-bottom p {
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

}

.dienst-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}

.dienst-extra {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, margin-top 0.35s ease;
}

.dienst-card.active .dienst-extra {
  max-height: 260px;
  margin-top: 10px;
}

.dienst-toggle {
  border: none;
  cursor: pointer;
  margin-top: auto;
}
.dark-text {
  color: var(--green);
}
.project-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  overflow-y: auto;
  padding: 40px 0;
}

.project-modal.active {
  display: block;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  z-index: 2;
  width: min(1450px, calc(100% - 40px));
  margin: 0 auto;
  background: white;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: none;
  background: transparent;
  font-size: 2rem;
  cursor: pointer;
  color: var(--green);
}

.popup-branding-wide {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.branding-image {
  position: relative;
}

.branding-image > img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 16px;
}

.branding-content {
  max-width: 720px;
}

.branding-content h2 {
  color: var(--green);
  font-size: 3.1rem;
  line-height: 1.1;
  margin: 24px 0;
}

.branding-content h2 span {
  color: var(--pink);
}

.branding-intro {
  color: #555;
  font-size: 1.05rem;
  max-width: 760px;
  margin-bottom: 34px;
}

.branding-approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 20px 0 28px;
}

.branding-approach div {
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 18px;
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 18px;
}

.branding-approach i {
  grid-row: span 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff3f7;
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.branding-approach h4 {
  color: var(--green);
  font-size: 1rem;
  margin-bottom: 8px;
}

.branding-approach p {
  color: #666;
  font-size: 0.9rem;
}


.branding-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid #eee;
  margin-top: 0;
  padding-top: 20px;

  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.4fr;
  gap: 28px;
  align-items: center;
}

.branding-bottom > div:not(.branding-quote) {
  display: grid;
  grid-template-columns: 54px auto;
  column-gap: 16px;
  align-items: center;
  border-right: 1px solid #eee;
}

.branding-bottom i {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff3f7;
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.branding-bottom strong {
  color: var(--pink);
  font-size: 1.8rem;
}

.branding-bottom span {
 color: var(--green);
  font-size: 0.85rem;
}

.branding-quote {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;

  background: #fff3f7; /* licht roze */
  border-radius: 14px;
  padding: 24px 28px;
}

.branding-quote i {
  color: var(--pink);
  background: none;
  width: auto;
  height: auto;
  font-size: 2rem;
}

.branding-quote p,
.branding-quote strong {
 color: var(--green);
}

.branding-quote p {
  font-size: 1rem;
  color: var(--green);
}

.branding-quote strong {
  color: var(--pink);
  font-size: 0.9rem;
}

.branding-quote strong {
  grid-column: 2;
  color: var(--pink);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .popup-branding-wide,
  .branding-approach,
  .branding-bottom {
    grid-template-columns: 1fr;
  }

  .branding-content h2 {
    font-size: 2.3rem;
  }

  .branding-image > img {
    height: 520px;
  }
}
.popup-strategy {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  gap: 34px;
}
.popup-strategy .modal-small-label {
  color: var(--pink);
}
.strategy-left {
  border-right: 1px solid #eee;
  padding-right: 34px;
}

.strategy-left h2 {
  color: var(--green);
  font-size: 3rem;
  line-height: 0.95;
  margin: 18px 0 24px;
}

.strategy-left p {
  color: var(--green);
}

.strategy-stats {
  display: grid;
  gap: 22px;
  margin: 18px 0;
  margin-top: 30px;
  margin-bottom: 15px;
}

.strategy-stats div {
  display: grid;
  grid-template-columns: 44px auto;
  column-gap: 18px;
  align-items: center;
}

.strategy-stats i {
  grid-row: span 2;
  color: var(--pink);
  font-size: 1.7rem;
}

.strategy-stats strong {
  color: var(--green);
  font-size: 1.7rem;
}

.strategy-stats span {
  color: var(--green);
  font-size: 0.85rem;
}


.strategy-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin: 22px 0 44px;
}

.strategy-process div {
  position: relative;
}

.strategy-process i {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff7fa;
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.strategy-process h4 {
  color: var(--green);
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.strategy-process p {
 color: var(--green);
  font-size: 0.75rem;
  line-height: 1.5;
}

.strategy-project {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.strategy-main-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

.strategy-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.strategy-thumbs img {
  height: 80px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.strategy-case h3 {
  color: var(--green);
  font-size: 1.7rem;
  line-height: 1.05;
  margin: 8px 0 16px;
}

.strategy-case p,
.strategy-case li {
  color: var(--green);
  font-size: 0.9rem;
}

.strategy-case ul {
  margin: 18px 0;
  display: grid;
  gap: 8px;
}

.strategy-case li::before {
  content: "✓";
  color: white;
  background: var(--pink);
  border-radius: 50%;
  font-size: 0.65rem;
  padding: 2px 5px;
  margin-right: 8px;
}

.strategy-result {
  background: #fff7fa;
  padding: 18px;
  border-radius: 10px;
}

.strategy-result strong {
  color: var(--pink);
  font-size: 0.75rem;
}

.strategy-result p {
  margin: 4px 0;
}

@media (max-width: 900px) {
  .popup-strategy,
  .strategy-project {
    grid-template-columns: 1fr;
  }

  .strategy-left {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-right: 0;
    padding-bottom: 28px;
  }

  .strategy-process {
    grid-template-columns: 1fr;
  }
}
.popup-social-custom {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 36px;
}

.social-left {
  border-right: 1px solid #eee;
  padding-right: 30px;
}

.social-left h2 {
  font-size: 2.6rem;
  line-height: 1.05;
  margin: 15px 0 20px;
  color: var(--green);
}

.social-stats {
  display: grid;
  gap: 20px;
  margin: 40px 0;
}

.social-stats div {
  display: grid;
  grid-template-columns: 40px auto;
  column-gap: 15px;
  align-items: center;
}

.social-stats i {
  color: var(--pink);
  font-size: 1.4rem;
}

.social-stats strong {
  font-size: 1.5rem;
  color: var(--green);
}

.social-stats span {
  font-size: 0.85rem;
  color: var(--green);
}

.social-cta {
  background: var(--pink);
  border-radius: 8px;
  font-size: 0.95rem;
}

.social-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 20px 0 40px;
}

.social-steps i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  margin-bottom: 12px;
}

.social-steps h4 {
  font-size: 0.85rem;
 color: var(--green);
  margin-bottom: 6px;
}

.social-steps p {
  font-size: 0.75rem;
  color: var(--green);
}

.social-phones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 15px 0 30px;
}

.social-phones img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.social-quote {
  background: #fff7fa;
  padding: 18px;
  border-radius: 10px;
}

.social-quote p {
  font-size: 0.9rem;
  color: var(--green);
  margin-bottom: 8px;
}

.social-quote span {
  font-size: 0.75rem;
  color: #666;
}

.mobile-card-image {
  display: none;
}


@media (max-width: 768px) {

  /* losse afbeeldingen weg */
  .card-image-1,
  .card-phone,
  .card-laptop,
  .card-gold-arrow {
    display: none !important;
  }

  /* mobiele portfolio layout */
  .portfolio {
    margin-top: 40px;
    overflow: hidden;
  }


  .portfolio-header h2 {
    font-size: 3rem;
  }

  .portfolio-grid {
    width: calc(100% - 32px);
    margin: -70px auto 0;

    display: grid;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "branding"
      "social"
      "strategy"
      "content";

    gap: 14px;
  }

  /* alle kaarten */
  .card-branding,
  .card-social,
  .card-strategy,
  .card-content-green {
    display: flex;
    flex-direction: column;

    min-height: auto !important;
    height: auto !important;

    border-radius: 22px;
    overflow: hidden;
  }

/* BRANDING */
.card-branding {
  background: var(--green);
  color: white;
}

/* SOCIAL MEDIA */
.card-social {
  background: white;
  color: var(--green);
}

/* STRATEGIE */
.card-strategy {
  background: #f8dce4;
  color: var(--green);
}

/* CONTENT */
.card-content-green {
  background: var(--gold);
  color: white;
}
/* juiste tekstkleuren */
.card-social h3,
.card-social .card-link,
.card-social .dark-text {
  color: var(--green) !important;
}

.card-content-green h3,
.card-content-green .card-link {
  color: white !important;
}

  /* desktop branding vormen uit */
  .card-top,
  .card-bottom {
    position: relative !important;
    height: auto !important;
    clip-path: none !important;
  }

  .card-top::after,
  .card-branding::after {
    display: none !important;
  }

  /* content */
  .card-content {
    padding: 16px 18px;
    height: auto;
    min-height: auto !important;
  }

  .card-content h3 {
    font-size: 1.4rem !important;
    line-height: 1.12;
  }

  .card-label {
    margin-bottom: 12px;
    font-size: 0.72rem;
  }

  .card-link {
    margin-top: 14px;
    font-size: 0.95rem;
  }

  /* afbeelding onder */
  .mobile-card-image,
  .card-bottom {
    display: block;
    width: 100%;
    height: 150px !important;
    overflow: hidden;
  }

  .mobile-card-image img,
  .card-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

@media (max-width: 768px) {

  /* losse portfolio foto's weg */
  .card-image-1,
  .card-phone,
  .card-laptop,
  .card-gold-arrow {
    display: none !important;
  }

  /* portfolio layout */
  .portfolio-grid {
    width: calc(100% - 32px);
    margin: -70px auto 0;

    display: grid;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "branding"
      "social"
      "strategy"
      "content";

    gap: 18px;
  }

  /* alle kaarten zelfde stijl */
  .card-branding,
  .card-social,
  .card-strategy,
  .card-content-green {
    display: flex;
    flex-direction: column;

    min-height: auto !important;
    height: auto !important;

    border-radius: 26px;
    overflow: hidden;
  }

  /* branding en content groen */
  .card-social,
  .card-content-green,
  .card-branding {
    background: var(--green);
    color: white;
  }

  /* strategie roze */
  .card-strategy {
    background: #f8dce4;
    color: var(--green);
  }

  /* branding desktop vormen uit */
  .card-top,
  .card-bottom {
    position: relative !important;
    height: auto !important;
    clip-path: none !important;
  }

  .card-top::after,
  .card-branding::after {
    display: none !important;
  }



  .card-content h3 {
    font-size: 1.1rem;
    line-height: 1.1;
    margin-bottom: 14px;
  }

  .card-link {
    margin-top: 8px;
    font-size: 0.9rem;
  }

  /* mobiele afbeelding */
  .mobile-card-image {
    display: block;
    width: 100%;
    height: 170px;
    overflow: hidden;
  }

  .mobile-card-image img,
  .card-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .over-ons {
  padding-top: 40px !important;
  padding-bottom: 5px !important;
  text-align: center;
}

.over-container {
  gap: 24px !important;
}

.over-ons h2 {
  margin-bottom: 20px !important;
}

.over-ons h3 {
  font-size: 1.2rem !important;
  line-height: 1.3;
}

.over-ons p {
  font-size: 0.9rem !important;
  line-height: 1.6;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
}
/* mobiel */
@media (max-width: 900px) {
  .popup-social-custom {
    grid-template-columns: 1fr;
  }

  .social-left {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
  }

  .social-steps {
    grid-template-columns: 1fr;
  }

  .social-phones {
    grid-template-columns: repeat(2, 1fr);
  }
}
.popup-content-custom {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  min-height: 720px;
  margin: -28px;
  border-radius: 18px;
  overflow: hidden;
}

.content-left {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  padding: 60px 45px;
  position: relative;
  overflow: hidden;
}
.content-left .modal-small-label {
  color: var(--pink);
}

.content-left h2 {
  font-size: 3rem;
  line-height: 1.05;
  margin: 18px 0 24px;
  color: var(--white)
}
.content-left h2 span {
  color: var(--pink);
}

.content-left p,
.content-left span {
  color: white;
}

.content-stats {
  display: grid;
  gap: 24px;
  margin: 50px 0;
}

.content-stats div {
  display: grid;
  grid-template-columns: 70px auto;
  column-gap: 20px;
  align-items: center;
}

.content-stats i {
  grid-row: span 2;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.content-stats strong {
  font-size: 1.8rem;
  color: white;
}


.content-right {
  padding: 60px 42px 34px;
  background: white;
}

.content-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 24px 0 45px;
}

.content-process i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff3f7;
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.content-process h4 {
  color: var(--green);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.content-process p {
  color: var(--green);
  font-size: 0.75rem;
}

.content-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  gap: 28px;
}

.content-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pillar-card {
  min-height: 260px;
  border-radius: 12px;
  padding: 22px 18px;
  background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)), url("pictures/project2.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
}

.pillar-card span {
  background: var(--pink);
  color: white;
  border-radius: 50%;
  padding: 6px 10px;
  font-weight: 800;
}

.pillar-card i {
  display: block;
  font-size: 2rem;
  margin: 45px 0 14px;
}

.pillar-card h3,
.pillar-card p,
.pillar-card a {
  color: white;
}

.pillar-card h3 {
  font-size: 1.25rem;
}

.pillar-card p {
  font-size: 0.85rem;
  margin: 10px 0 18px;
}

.content-result {
  background: #fff7fa;
  border-radius: 14px;
  padding: 30px;
}

.content-result div {
  display: grid;
  grid-template-columns: 42px auto;
  align-items: center;
  margin: 22px 0;
}

.content-result i {
  grid-row: span 2;
  color: var(--pink);
  font-size: 1.4rem;
}

.content-result strong {
  color: var(--green);
  font-size: 1.5rem;
}

.content-result span {
  color: var(--green);
  font-size: 0.85rem;
}

.content-quote {
  margin-top: 24px;
  background: #fff7fa;
  border-radius: 12px;
  padding: 22px 28px;
}

.content-quote p {
  color: var(--green);
  margin-bottom: 8px;
}

.content-quote strong {
  color: var(--green);
}

@media (max-width: 900px) {
  .popup-content-custom,
  .content-bottom-grid {
    grid-template-columns: 1fr;
  }

  .content-process,
  .content-pillars {
    grid-template-columns: 1fr;
  }

  .popup-content-custom {
    margin: 0;
  }
}
.popup-social-wide {
  display: grid;
  grid-template-columns: 1fr 0.75fr 1.6fr;
  gap: 34px;
  padding: 34px 24px 0;
}

.social-wide-left h2 {
  font-size: 3.1rem;
  line-height: 1.05;
  color: var(--green);
  margin: 22px 0;
}

.social-wide-left h2 span {
  color: var(--pink);
}

.small-line {
  width: 46px;
  height: 3px;
  background: var(--pink);
  margin-bottom: 34px;
}

.social-wide-left p {
  color: var(--green);
  max-width: 360px;
}


.social-phone-mockup img {
  max-height: 500px;
  margin: 0 auto;
  object-fit: contain;
}

.social-wide-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 90px;
}

.social-wide-stats div {
  border-right: 1px solid #eee;
}

.social-wide-stats div:last-child {
  border-right: none;
}

.social-wide-stats strong {
  color: var(--pink);
  font-size: 1.9rem;
}

.social-wide-stats span {
  display: block;
  color: var(--green);
  font-weight: 700;
  font-size: 0.8rem;
  margin: 8px 0;
}

.social-wide-stats i {
  color: var(--pink);
}

.social-wide-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 24px 0 58px;
}

.social-wide-steps i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff3f7;
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
}

.social-wide-steps span {
  color: var(--green);
  font-weight: 800;
  font-size: 0.8rem;
}

.social-wide-steps h4 {
  color: var(--green);
  font-size: 0.8rem;
  margin: 14px 0 8px;
}

.social-wide-steps p {
  color: var(--green);
  font-size: 0.72rem;
}

.social-content-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.social-content-cards div {
  min-height: 230px;
  border-radius: 14px;
  overflow: hidden;
  padding: 120px 18px 18px;
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
}

.social-content-cards div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
}

.social-content-cards span,
.social-content-cards p,
.social-content-cards b {
  position: relative;
  z-index: 2;
}

.social-content-cards span {
  background: var(--pink);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
}

.social-content-cards p {
  color: white;
  font-size: 0.82rem;
  margin: 14px 0;
  font-weight: 700;
}

.social-content-cards b {
  background: white;
  color: var(--green);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.social-wide-quote {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: 60px 1fr 0.5fr;
  align-items: center;
  gap: 25px;
  background: #fff7fa;
  border-radius: 12px;
  padding: 24px 34px;
  margin-top: 24px;
}

.social-wide-quote i {
  color: var(--pink);
  font-size: 2.1rem;
}

.social-wide-quote p,
.social-wide-quote strong,
.social-wide-quote span {
  color: var(--green);
}

.social-wide-quote span {
  display: block;
}

@media (max-width: 900px) {
  .popup-social-wide {
    grid-template-columns: 1fr;
  }
 /* VERBERG losse afbeeldingen */
  .card-image-1,
  .card-phone,
  .card-laptop,
  .card-gold-arrow {
    display: none;
  }

  /* portfolio = 1 nette kaart per dienst */
  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "branding"
      "social"
      "strategy"
      "content";
  }

  /* alle kaarten zelfde stijl */
  .card-branding,
  .card-social,
  .card-strategy,
  .card-content-green {
    min-height: auto;
    border-radius: 26px;
    overflow: hidden;

    display: flex;
    flex-direction: column;
  }

  /* bovenkant */
  .card-top {
    position: relative;
    height: auto;
    padding: 32px 24px;
  }

  .card-top::after,
  .card-branding::after {
    display: none;
  }

  /* content */
  .card-content {
    padding: 32px 24px;
  }

  .card-content h3 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .card-link {
    margin-top: 18px;
    font-size: 1.05rem;
  }

  /* afbeeldingen onder */
  .card-bottom {
    position: relative;
    height: 320px;
    clip-path: none;
  }

  .card-bottom img,
  .card-social img,
  .card-strategy img,
  .card-content-green img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* SOCIAL */
  .card-social {
    background: var(--green);
    color: white;
  }

  /* STRATEGIE */
  .card-strategy {
    background: #f8dce4;
  }

  /* CONTENT */
  .card-content-green {
    background: var(--green);
    color: white;
  }
  .social-wide-steps,
  .social-content-cards,
  .social-wide-stats,
  .social-wide-quote {
    grid-template-columns: 1fr;
  }

  .social-wide-quote {
    grid-column: auto;
  }
}
.popup-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: fit-content;
  min-width: 280px;

  padding: 18px 28px;

  background: var(--pink);
  color: white !important;

  border-radius: 16px;

  font-size: 1.1rem;
  font-weight: 800;

  transition: 0.25s ease;
  margin-top: 28px;
}

.popup-cta:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}
.modal-small-label {
  color: var(--pink);
}
/* =========================
   MOBIEL MENU + HERO FIX
========================= */

.hamburger {
  display: none;
}
.werkwijze .steps .step p {
  max-width: 340px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.werkwijze .subtitle {
  max-width: 900px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media (min-width: 900px) and (max-width: 1200px) {

  .portfolio-grid {
    display: grid !important;

    grid-template-columns: 1fr 1fr !important;
    grid-template-areas:
      "branding social"
      "strategy content";

    gap: 24px;

    width: calc(100% - 64px);
    margin: -80px auto 0;
  }

  .card-branding,
  .card-social,
  .card-strategy,
  .card-content-green {
    min-height: 520px !important;
    height: 100%;
  }

  .card-content {
    padding: 32px 28px !important;
  }

  .card-content h3 {
    font-size: 1.5rem !important;
    
  }
  .card-branding .card-top {
  position: relative !important;
  height: 203px !important;
  padding: 0 !important;
}

.card-branding .card-top .card-content {
  padding: 32px 28px !important;
  max-width: none !important;
}
  .card-branding .card-content,
.card-social .card-content {
  padding: 32px 28px !important;

  max-width: 100% !important;

  text-align: left !important;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.card-branding .card-content h3,
.card-social .card-content h3 {
  font-size: 1.5rem !important;
  line-height: 1.15 !important;

  max-width: 100% !important;
}
  section.werkwijze .steps .step p {
  max-width: 220px !important;
  width: 100% !important;

  margin-left: auto !important;
  margin-right: auto !important;
}

section.werkwijze .subtitle {
  max-width: 520px !important;

  margin-left: auto !important;
  margin-right: auto !important;
}
.contact-container {
  grid-template-columns: 1.2fr 0.8fr !important;
  gap: 32px !important;
}

.contact-left {
  padding-left: 0 !important;
  text-align: left !important;
}

.contact-text {
  max-width: 520px !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  text-align: left !important;
}
}

/* ALLEEN MOBIEL */
@media (max-width: 768px) {

  .logo img {
   margin-left: 18px;
  height: 56px;
  }

  .navbar .btn-gold {
    display: none;
  }


  /* Hamburger zichtbaar */
  .hamburger {
    display: flex;
    width: 42px;
    height: 42px;
    border: none;
    background: var(--green);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .hamburger span {
    width: 18px;
    height: 2px;
    background: white;
    border-radius: 999px;
  }

  /* Menu standaard dicht */
  .navbar nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    margin-left: 0;
  }

  /* Open menu */
  .navbar nav.active {
    display: block;
  }

  .nav-links {
    margin-top: 14px;
    background: var(--green);
    border-radius: 20px;
    padding: 22px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 18px;
  }
  .nav-links a {
  color: var(--bg);
}

  /* HERO */
 .hero {
    background:
      linear-gradient(
        135deg,
        #214f46 0%,
        #0a2f2a 55%,
        #031816 100%
      );

    width: 100vw;
    max-width: 100vw !important;
    margin: 0 !important;
    margin-bottom: 60px;
    text-align: center;
    padding-top: 30px !important;
    padding-bottom: 60px !important;
    padding-left: 24px !important;
    padding-right: 24px !important;

    border-radius: 0 !important;

    overflow: hidden;

    position: relative;
  }
.hero,
  .hero-container,
  .hero-left {
    width: 100vw !important;
    max-width: 100vw !important;

    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;

    border-radius: 0 !important;
  }

  .navbar {
 display: grid !important;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 6px;
  padding: 12px 12px;

  position: relative !important;
  top: 0;
  left: 0;
  width: 100%;

  z-index: 999;

  background: var(--green);
  }
  .hero-text {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
  flex-direction: column;
  align-items: center;
  }
  .hero-text h1 {
  text-align: left !important;

  width: fit-content;
  margin: 0 auto;
    font-size: 2.8rem !important;
    line-height: 1.05;
  }

  .hero-buttons {
    display: flex !important;
    gap: 10px;
    justify-content: center;
    margin-top: 24px;
  }

  .hero-buttons .btn {
    width: auto !important;

    padding: 9px 14px !important;
    height: 36px !important;

    min-width: 100px !important;
    max-width: 170px;

    font-size: 0.78rem !important;
    border-radius: 16px;
  }

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-circle {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-circle img {
  max-width: 240px;
  width: 100%;

  transform: none;
  margin: 10px auto 0;
}

  .portfolio {
    margin-top: 60px;
    overflow: hidden;
  }

  .portfolio-header {
    display: block;
    text-align: center;
    padding: 28px 20px 90px;
  }

  .portfolio-header h2 {
    font-size: 3rem;
  }

  .portfolio-grid {
    width: calc(100% - 32px);
    margin: -70px auto 0;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;

    grid-template-areas:
      "branding"
      "image1"
      "social"
      "phone"
      "strategy"
      "laptop"
      "gold"
      "content";

    gap: 16px;
  }

 .card-social,
.card-strategy,
.card-content-green {
  min-height: auto !important;
  height: auto !important;

  display: flex;
  flex-direction: column;
}

.card-social .card-content,
.card-strategy .card-content,
.card-content-green .card-content {
  padding: 32px 24px;
  min-height: auto;
  flex: unset;
}

.mobile-card-image {
  display: block;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.mobile-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portfolio-card {
  min-height: auto !important;
}

  .portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .card-branding {
    min-height: auto;
  }

  .card-branding::after {
    display: none;
  }

  .card-top {
    position: relative;
    width: 100%;
    height: auto;
    padding: 32px 24px;
  }

  .card-top::after {
    display: none;
  }

  .card-bottom {
    position: relative;
    width: 100%;
    height: 240px;
    clip-path: none;
  }

  .card-content {
    padding: 18px
  }

  .card-content h3 {
    font-size: 0.95rem;
    line-height: 1.1w;
    margin-bottom: 10px;
  }
  .card-link {
    margin-top: 4px !important;
    font-size: 0.85rem;
  }

  .card-image-1,
  .card-phone,
  .card-laptop {
    height: 320px;
  }

  .card-social,
  .card-strategy,
  .card-content-green {
    min-height: 250px;
  }

  .card-gold-arrow {
    min-height: 140px;
  }
.diensten {
    padding: 60px 16px 40px;
  }

  .diensten-header {
  padding: 28px 20px 90px;
  }

  .diensten-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .diensten-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 24px;

    width: calc(100% - 32px);
    max-width: none;

    margin: -70px auto 0;
  }

  .dienst-card {
    width: 100%;
    min-height: auto;
    padding: 28px 24px 24px;
    border-radius: 24px;
  }

  .dienst-card .btn {
    width: 100%;
    text-align: center;
  }
 .card-branding .card-bottom {
    height: 170px !important;
  }

  .card-branding .card-bottom img {
    object-position: center;
  }
 .card-social {
    background: white !important;
    color: var(--green) !important;
  }

.card-content-green {
  background: var(--gold) !important;
}
  .card-social .card-link:hover,
  .card-content-green .card-link:hover {
    color: var(--pink) !important;
  }
  .card-social h3,
  .card-social .card-link,
  .card-social .dark-text {
    color: var(--green) !important;
  }

.card-content-green h3,
.card-content-green .card-link {
  color: var(--white)
}

.card-content-green .card-label {
  color: var(--pink) !important;
}
.card-branding .card-content {
    padding-left: 24px !important;
    padding-right: 24px !important;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    text-align: left;
  }

  .card-branding .card-top {
    padding: 0 !important;
  }

   .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
    width: 100%;
    padding-left: 20px !important;
    padding-right: 0 !important;
    justify-items: center;
  }

  .footer-logo-block,
  .footer-contact {
    grid-column: 1 / -1;
    width: 100%;
    text-align: left;
  }
.footer-contact {
  width: 100%;
  margin: 0;
  padding-left: 10px;
  text-align: left !important;
}

  .footer-contact h4 {
    text-align: left !important;
    margin-left: 0 !important;
  }
  
  .footer-column {
    width: 100%;
    text-align: center;
  }
.footer-contact p {
  width: 260px;
  margin: 0 0 24px 0;
}

  .footer-contact a {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-start;
  }
    .footer-links,
  .footer-column {
    text-align: left !important;
  }

  .footer-links ul,
  .footer-column ul {
    padding-left: 10;
  }

}
/* standaard */
.footer-logo-mobile {
  display: none;
}


/* mobiel */
@media (max-width: 768px) {

  .footer-logo-desktop {
    display: none;
  }

  .footer-logo-mobile {
  display: block;
    width: 210px !important;
    max-width: none !important;
    height: auto;
    margin: 0 auto;
  }
  .footer-logo-mobile {
    transform: none !important;
    rotate: 0deg !important;
    top: 0 !important;
    left: 0 !important;
    position: relative;
  }
 
  .icon {
  width: 48px;
  height: 48px;
}

.icon span {
  font-size: 1.2rem;
}


  .hamburger {
    grid-column: 3;
    grid-row: 1;
  }

  .navbar nav {
    grid-column: 1 / -1;
    grid-row: 2;

    display: none;
    width: 100%;
    margin-top: 14px;
    margin-left: 0;
  }

  .navbar nav.active {
    display: block;
  }

  .navbar .btn-gold {
    display: none;
  }
 }

@media (max-width: 768px) {
    .logo-desktop {
    display: none;
  }

.mobile-cta-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;

  background: var(--gold);
  color: white;

  padding: 12px 22px;
  border-radius: 999px;

  font-size: 0.9rem;
  font-weight: 700;

  text-decoration: none;
  white-space: nowrap;
}
  p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .btn,
  .nav-links a {
    font-size: 0.92rem;
  }
  .werkwijze h2,
  .portfolio-header h2,
  .over-ons h2,
  .diensten-header h2, 
   .contact-left h2 {
    font-size: 1.9rem !important;
    line-height: 1.1;
    margin-bottom: 18px
  }
  
}
@media (max-width: 768px) {
.navbar {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr;
    padding: 18px 20px 14px;
    align-items: center;
    gap: 10px;
}
.logo {
    grid-column: 2;
    justify-self: center;
}

.hamburger {
    grid-column: 3;
    justify-self: end;
}



  .navbar .logo .logo-mobile {
    display: block !important;
    width: 160px !important;
    max-width: none !important;
    height: auto !important;
    margin-left: 0 !important;
    position: relative;
    top: 6px;
    left: 0;
  }

  .navbar .logo .logo-desktop {
    display: none !important;
  }


  .mobile-number-btn {
    display: none !important;
  }

  .hamburger {
    justify-self: end !important;
    position: relative;
    top: 8px;
  }


.werkwijze .subtitle,
.werkwijze .step p,
.over-ons p,
.over-container p,
.dienst-card p {
  font-size: 1rem !important;
  line-height: 1.6 !important;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
  text-align: center !important;
}
.werkwijze .subtitle {
  max-width: 280px !important;
}
.contact-text {
  font-size: 1rem !important;
  line-height: 1.6 !important;
  text-align: left !important;
}
  section.werkwijze .steps .step p {
  max-width: 240px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
 .over-ons h3 {
    font-size: 1.45rem !important;
    line-height: 1.25 !important;
    margin-bottom: 22px !important;
  }
.contact-left {
  padding-top: 0 !important;
}
.contact-card {
  margin-top: 0px;
}
  .over-ons p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }
  
.step h3,
.card-content h3,
.dienst-card h3 {
  font-size: 1.2rem !important;
}
  .contact-eyebrow {
    font-size: 0.9rem !important;
    letter-spacing: 4px !important;
  }
}
@media (min-width: 400px) and (max-width: 770px) {

  .dienst-card,
  .dienst-card h3,
  .dienst-card p {
    text-align: left !important;
  }

  .dienst-card {
    align-items: flex-start !important;
  }

  .dienst-card p {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 400px) {

  .dienst-card p {
    text-align: left !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

}
html {
  color-scheme: light !important;
}

body {
  background: #f3f1f2 !important;
  color: #024e44 !important;
}

input,
textarea,
select,
button {
  color-scheme: light !important;
}
@media (prefers-color-scheme: dark) {
  html,
  body {
    background: #f3f1f2 !important;
    color: #024e44 !important;
  }

  input,
  textarea,
  select {
    background: #f7f7f7 !important;
    color: #024e44 !important;
    border-color: #ddd !important;
  }
}
.project-open {
  display: none;
}