:root {
  --bg: #f4f8fb;
  --card: #ffffff;
  --text: #101820;
  --muted: #52616d;
  --blue: #0b8fdc;
  --blue-dark: #0b5f93;
  --orange: #f47b20;
  --dark: #071827;
  --line: #d8e5ee;
  --shadow: 0 20px 60px rgba(7, 24, 39, 0.08);
  --radius: 22px;
}

/* Base */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

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

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

.section {
  padding: 92px 0;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--blue);
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.6rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 15px 23px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  box-shadow: 0 16px 38px rgba(11, 143, 220, .22);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .60);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .85);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(7, 24, 39, .06);
}

.nav-shell {
  min-height: 96px;
  width: min(1360px, calc(100% - 80px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-logo img {
  height: 58px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 10px;
  border-radius: 14px;
  color: var(--blue-dark);
  font-weight: 900;
  transition: background .18s ease, color .18s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 3px;
  background: transparent;
}

.site-nav a.active::after {
  background: var(--orange);
}

.site-nav a:hover {
  background: rgba(11, 143, 220, .10);
}

.mobile-nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid #cbe6f7;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-dark);
  transition: transform .2s ease, opacity .2s ease;
}

.mobile-nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

main {
  padding-top: 96px;
}

/* Home hero */
.hero-clean {
  position: relative;
  min-height: calc(100svh - 96px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-clean::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/hero.jpg");
  background-size: cover;
  background-position: center center;
  filter: saturate(1.06) brightness(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,18,35,.60) 0%, rgba(5,18,35,.46) 38%, rgba(5,18,35,.23) 70%, rgba(5,18,35,.10) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-clean .eyebrow {
  color: #fff;
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  letter-spacing: 0.12em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .45);
}

.hero-clean h1 {
  max-width: 860px;
  color: #fff;
  font-size: clamp(3.5rem, 6.2vw, 6.4rem);
  line-height: .95;
}

.hero-text {
  max-width: 720px;
  margin-top: 26px;
  color: rgba(255,255,255,.94);
  font-weight: 750;
  font-size: 1.08rem;
  line-height: 1.65;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 28px;
}

.hero-trust span {
  color: rgba(255,255,255,.94);
  font-weight: 850;
}

.hero-trust span::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  transform: translateY(-1px);
}

/* Home aanbod */
.offer-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

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

.offer-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(7, 24, 39, .05);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: 0 18px 50px rgba(11, 143, 220, .10);
}

.offer-card .tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eef7fd;
  color: var(--blue-dark);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.offer-card h3 {
  margin-bottom: 14px;
}

/* Algemene layouts */
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.soft-section {
  background: #fff;
  border-block: 1px solid var(--line);
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 64px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, #071827, #0b3555);
  box-shadow: var(--shadow);
}

.cta p {
  margin-top: 14px;
  color: rgba(255,255,255,.82);
}

.page-hero {
  padding: 86px 0 76px;
  background: var(--bg);
}

.page-hero p {
  max-width: 820px;
  margin-top: 22px;
  font-size: 1.18rem;
}

/* Aanbod pagina */
.brand-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.brand-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(7, 24, 39, .06);
}

.brand-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: #eef7fd;
}

.brand-card .content {
  padding: 28px;
}

.dark-block {
  padding: 64px;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(135deg, #071827, #0b3555);
}

.dark-block p {
  color: rgba(255,255,255,.80);
}

.dark-block .eyebrow {
  color: #7bc9ff;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: rgba(255,255,255,.08);
}

.step::before {
  content: counter(step);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--blue));
}

/* Over ons */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(7, 24, 39, .06);
}

.team-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  background: #eef7fd;
}

.team-content {
  padding: 26px;
}

.photo-note {
  margin-top: 8px;
  font-size: .95rem;
}

.about-block {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(7, 24, 39, .06);
}

.value-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.value-list div {
  padding: 16px 18px;
  border-left: 4px solid var(--blue);
  border-radius: 14px;
  background: #eef7fd;
  font-weight: 850;
}

/* Contact pagina */
.contact-pro {
  min-height: calc(100svh - 96px);
  display: flex;
  align-items: center;
  padding: 60px 0;
  background:
    radial-gradient(circle at 16% 22%, rgba(11,143,220,.12), transparent 24%),
    radial-gradient(circle at 84% 72%, rgba(244,123,32,.10), transparent 24%),
    linear-gradient(180deg, #f4f8fb, #fff);
}

.contact-pro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.contact-pro-intro h1 {
  max-width: 600px;
  font-size: clamp(3.2rem, 5vw, 5.3rem);
  line-height: .92;
}

.contact-pro-intro p {
  max-width: 520px;
  margin-top: 22px;
  font-size: 1.08rem;
}

.contact-pro-panel {
  max-width: 560px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(7, 24, 39, .08);
}

.contact-pro-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  transition: transform .18s ease, box-shadow .18s ease;
}

.contact-pro-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(11,143,220,.16);
}

.contact-pro-label,
.contact-method {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .74rem;
  font-weight: 900;
}

.contact-pro-main .contact-pro-label {
  color: #fff;
}

.contact-pro-main strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1.1;
}

.contact-pro-main small,
.contact-pro-secondary small {
  display: block;
  margin-top: 6px;
  font-weight: 800;
}

.contact-pro-arrow {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #fff;
  font-weight: 900;
  font-size: 1.3rem;
}

.contact-pro-secondary {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.contact-pro-secondary a {
  position: relative;
  display: block;
  padding: 22px 56px 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.contact-pro-secondary a::after {
  content: "→";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 900;
}

.contact-pro-secondary a:hover {
  transform: translateX(4px);
  border-color: var(--blue);
  background: #f7fbfe;
}

.contact-pro-secondary strong {
  color: var(--text);
  font-size: 1.18rem;
}

/* Footer */
.footer {
  padding: 58px 0 0;
  border-top: 1px solid var(--line);
  background: #f2f8fc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 54px;
}

.footer h3 {
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer p {
  margin-top: 8px;
}

.footer a,
.footer p {
  color: #4f5960;
}

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 1000px) {
  .nav-shell {
    width: min(100% - 34px, 1360px);
    min-height: 82px;
  }

  .site-logo img {
    height: 50px;
    max-width: 220px;
  }

  main {
    padding-top: 82px;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    left: 17px;
    right: 17px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

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

  .split,
  .cta,
  .contact-pro-grid {
    grid-template-columns: 1fr;
  }

  .offer-grid,
  .brand-section,
  .team-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .cta,
  .dark-block {
    padding: 36px 24px;
    border-radius: 28px;
  }

  .contact-pro {
    min-height: auto;
    padding: 42px 0 56px;
  }

  .contact-pro-grid {
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 40px, 1120px);
  }

  .hero-clean {
    display: block;
    min-height: 80svh;
    height: auto;
  }

  .hero-clean::before {
    background-image: url("../assets/images/hero-mobile.jpg");
    background-position: center top;
    filter: saturate(1.08) brightness(1.08);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5,18,35,.48) 0%, rgba(5,18,35,.62) 42%, rgba(5,18,35,.70) 100%),
      linear-gradient(90deg, rgba(5,18,35,.66) 0%, rgba(5,18,35,.46) 58%, rgba(5,18,35,.16) 100%);
  }

  .hero-content {
    padding: 22px 20px 28px;
  }

  .hero-clean .eyebrow {
    margin-bottom: 16px;
    font-size: .9rem;
    letter-spacing: .12em;
  }

  .hero-clean h1 {
    max-width: 330px;
    font-size: clamp(2.25rem, 10.2vw, 2.85rem);
    line-height: .94;
  }

  .hero-text {
    max-width: 325px;
    margin-top: 16px;
    font-size: .94rem;
    line-height: 1.58;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 250px;
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 52px;
    padding: 13px 18px;
    font-size: .96rem;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 330px;
    gap: 10px;
    margin-top: 18px;
  }

  .hero-trust span {
    font-size: .95rem;
    line-height: 1.25;
  }

  .page-hero {
    padding: 56px 0 56px;
  }

  .contact-pro {
    padding: 28px 0 34px;
  }

  .contact-pro-intro h1 {
    max-width: 340px;
    font-size: clamp(2.6rem, 11vw, 3.7rem);
  }

  .contact-pro-intro p {
    max-width: 340px;
    font-size: .98rem;
    margin-top: 16px;
  }

  .contact-pro-panel {
    width: 100%;
    padding: 16px;
    border-radius: 24px;
  }

  .contact-pro-main {
    padding: 22px;
    border-radius: 18px;
  }

  .contact-pro-main strong {
    font-size: 1.2rem;
  }

  .contact-pro-arrow {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .contact-pro-secondary a {
    padding: 18px 48px 18px 18px;
  }

  .contact-pro-secondary strong {
    font-size: 1rem;
  }
}

@media (max-width: 420px) {
  .site-logo img {
    height: 46px;
    max-width: 210px;
  }

  .mobile-nav-toggle {
    width: 46px;
    height: 46px;
  }
}

/* Contactpagina verbeteringen */
.contact-pro-balanced {
  min-height: auto;
  padding: 96px 0 72px;
}

.form-section-clean {
  padding: 20px 0 96px;
  background:
    radial-gradient(circle at 12% 20%, rgba(11,143,220,.08), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(244,123,32,.07), transparent 28%),
    linear-gradient(180deg, #fff, #f4f8fb);
}

.contact-form-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(7, 24, 39, .08);
}

.contact-form-head {
  padding: 30px;
  border-radius: 26px;
  background: linear-gradient(135deg, #071827, #0b3555);
  margin-bottom: 22px;
}

.contact-form-head .eyebrow {
  color: #7bc9ff;
}

.contact-form-head h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.contact-form-head p {
  margin-top: 12px;
  color: rgba(255,255,255,.82);
  font-weight: 750;
}

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

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form-clean label {
  display: grid;
  gap: 8px;
}

.contact-form-clean label span {
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.contact-form-clean input,
.contact-form-clean textarea {
  width: 100%;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid #cfe1ec;
  background: #f7fbfe;
  color: var(--text);
  font: inherit;
  font-weight: 750;
}

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

.contact-form-clean input:focus,
.contact-form-clean textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11,143,220,.12);
}

.contact-form-clean .btn {
  width: 100%;
  min-height: 62px;
  margin-top: 4px;
  border-radius: 18px;
}

@media (max-width: 1000px) {
  .contact-pro-grid {
    justify-items: center;
  }

  .contact-pro-intro,
  .contact-pro-panel {
    width: 100%;
    max-width: 620px;
  }
}

@media (max-width: 768px) {
  .contact-pro-balanced {
    padding: 42px 0 38px;
  }

  .contact-pro-grid {
    gap: 24px;
    justify-items: center;
  }

  .contact-pro-panel {
    max-width: 100%;
    margin-inline: auto;
  }

  .form-section-clean {
    padding: 10px 0 64px;
  }

  .contact-form-card {
    padding: 16px;
    border-radius: 26px;
    max-width: 100%;
    margin-inline: auto;
  }

  .contact-form-head {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-head h2 {
    font-size: clamp(2.05rem, 10vw, 3.1rem);
  }
}


/* Mobile refinement */
@media (max-width: 768px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .contact-pro-grid {
    width: 100%;
    justify-items: center;
    align-items: center;
  }

  .contact-pro-intro,
  .contact-pro-panel,
  .contact-form-card {
    width: 100%;
    margin-inline: auto;
  }

  .contact-form-card,
  .contact-pro-panel {
    padding: 16px;
  }
}

/* Hero refinements */
.hero-overlay {
  background: linear-gradient(90deg,
    rgba(5,18,35,.78) 0%,
    rgba(5,18,35,.62) 38%,
    rgba(5,18,35,.34) 70%,
    rgba(5,18,35,.18) 100%);
}

.hero-clean h1 {
  max-width: 980px;
  font-size: clamp(4rem, 7vw, 7.4rem);
  text-shadow: 0 10px 34px rgba(0,0,0,.22);
}

.hero-text {
  max-width: 760px;
  color: rgba(255,255,255,.98);
  font-size: 1.14rem;
  line-height: 1.72;
  text-shadow: 0 4px 18px rgba(0,0,0,.18);
}

.hero-actions {
  margin-top: 34px;
}

.hero-trust {
  margin-top: 32px;
}

.btn-primary,
.contact-form-clean .btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 56px;
  padding: 15px 26px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  font-size: .98rem;
  font-weight: 900;
  letter-spacing: -.01em;
  background: linear-gradient(135deg, #f47b20 0%, #df8840 34%, #2997d7 76%, #0b8fdc 100%);
  background-repeat: no-repeat;
  box-shadow: 0 16px 34px rgba(11, 143, 220, .20), inset 0 1px 0 rgba(255,255,255,.18);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.btn-primary:hover,
.contact-form-clean .btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
  box-shadow: 0 24px 54px rgba(11,143,220,.28), inset 0 1px 0 rgba(255,255,255,.24);
}

.btn-primary::before,
.contact-form-clean .btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,0));
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 768px) {
  .hero-clean h1 {
    max-width: 360px;
    font-size: clamp(2.7rem, 12vw, 3.8rem);
  }

  .hero-text {
    max-width: 340px;
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-overlay {
    background: linear-gradient(180deg,
      rgba(5,18,35,.58) 0%,
      rgba(5,18,35,.76) 48%,
      rgba(5,18,35,.82) 100%),
      linear-gradient(90deg,
      rgba(5,18,35,.78) 0%,
      rgba(5,18,35,.42) 100%);
  }

  .btn-primary,
  .contact-form-clean .btn {
    min-height: 52px;
    padding: 14px 20px;
    border-radius: 16px;
    font-size: .95rem;
  }
}

.btn-primary:hover,
.contact-form-clean .btn:hover,
.hero-actions .btn-primary:hover,
.quote-submit:hover,
.quick-form-bottom .btn:hover,
.simple-form .btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    0 22px 46px rgba(11, 143, 220, .25),
    inset 0 1px 0 rgba(255,255,255,.22);
}

.contact-form-clean .btn {
  width: 100%;
  min-height: 62px;
}

.cta .btn-primary {
  background: linear-gradient(135deg, #f47b20 0%, #df8840 34%, #2997d7 76%, #0b8fdc 100%) !important;
}

@media (max-width: 768px) {
  .btn-primary,
  .contact-form-clean .btn,
  .hero-actions .btn-primary,
  .quote-submit,
  .quick-form-bottom .btn,
  .simple-form .btn {
    min-height: 52px;
    padding: 14px 20px;
    border-radius: 15px;
    font-size: .95rem;
  }

  .contact-form-clean .btn {
    min-height: 58px;
  }
}


/* Nieuwe Daikin sectie */
.daikin-focus-box{
  margin-top:42px;
  display:grid;
  gap:18px;
  max-width:920px;
}

.daikin-focus-line{
  padding:28px 30px;
  border-radius:24px;
  background:#fff;
  border:1px solid #d8e6ef;
  box-shadow:0 14px 40px rgba(7,24,39,.05);
}

.daikin-focus-line strong{
  display:block;
  margin-bottom:10px;
  font-size:1.25rem;
  color:var(--text);
}

.daikin-focus-line p{
  margin:0;
  max-width:720px;
  font-size:1.04rem;
  line-height:1.7;
}

@media(max-width:768px){

  .daikin-focus-box{
    margin-top:30px;
    gap:14px;
  }

  .daikin-focus-line{
    padding:22px 20px;
    border-radius:20px;
  }

  .daikin-focus-line strong{
    font-size:1.08rem;
  }

  .daikin-focus-line p{
    font-size:.98rem;
    line-height:1.6;
  }
}


/* Service flow sectie */
.service-flow-section {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.service-flow {
  display: grid;
  gap: 38px;
}

.service-flow-head {
  max-width: 820px;
}

.service-flow-head h2 {
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.service-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-flow-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  min-height: 245px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, #fff, #f7fbfe);
  box-shadow: 0 16px 44px rgba(7,24,39,.06);
}

.service-flow-card span {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #eef7fd;
  color: var(--blue-dark);
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .08em;
}

.service-flow-card h3 {
  margin-bottom: 14px;
  font-size: 1.55rem;
}

.service-flow-card p {
  max-width: 320px;
  font-size: 1.03rem;
  line-height: 1.65;
}

.service-flow-card::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -46px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,143,220,.16), transparent 68%);
}

@media (max-width: 1000px) {
  .service-flow-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .service-flow-section {
    padding: 58px 0;
  }

  .service-flow {
    gap: 28px;
  }

  .service-flow-card {
    padding: 24px 22px;
    border-radius: 22px;
  }

  .service-flow-card h3 {
    font-size: 1.35rem;
  }

  .service-flow-card p {
    font-size: .98rem;
  }
}


/* Interactieve service-kadertjes */
.service-flow-card {
  cursor: default;
  border: 1px solid #cfe1ec;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    background .22s ease;
}

.service-flow-card:hover {
  transform: translateY(-10px);
  border-color: var(--blue);
  background:
    linear-gradient(180deg, #ffffff, #f4fbff);
  box-shadow:
    0 26px 64px rgba(7, 24, 39, .10),
    0 10px 28px rgba(11, 143, 220, .10);
}

.service-flow-card span {
  transition:
    background .22s ease,
    color .22s ease,
    transform .22s ease;
}

.service-flow-card:hover span {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  transform: translateY(-2px);
}

.service-flow-card h3,
.service-flow-card p {
  transition: transform .22s ease;
}

.service-flow-card:hover h3,
.service-flow-card:hover p {
  transform: translateY(-2px);
}

.service-flow-card::after {
  transition:
    opacity .22s ease,
    transform .22s ease;
  opacity: .75;
}

.service-flow-card:hover::after {
  opacity: 1;
  transform: scale(1.18);
}

@media (max-width: 768px) {
  .service-flow-card:hover {
    transform: translateY(-5px);
  }
}


/* Learn more text CTA */
.learn-more-link{
  display:inline-flex;
  align-items:center;
  gap:12px;
  margin-top:10px;
  color:var(--blue-dark);
  font-size:1.08rem;
  font-weight:900;
  text-decoration:none;
  transition:
    color .18s ease,
    gap .18s ease,
    transform .18s ease;
}

.learn-more-link span{
  display:inline-flex;
  transition:
    transform .18s ease;
}

.learn-more-link:hover{
  gap:16px;
  color:var(--blue);
}

.learn-more-link:hover span{
  transform:translateX(4px);
}

@media(max-width:768px){

  .learn-more-link{
    font-size:1rem;
  }
}


/* About preview blok */
.about-preview-card{
  display:flex;
  align-items:center;
  gap:22px;
  margin-top:26px;
  padding:18px;
  max-width:560px;
  border-radius:26px;
  border:1px solid #d7e6f0;
  background:linear-gradient(180deg,#fff,#f7fbfe);
  box-shadow:0 18px 46px rgba(7,24,39,.06);
}

.about-preview-image{
  width:140px;
  height:140px;
  flex-shrink:0;
  border-radius:20px;
  background:
    linear-gradient(135deg, rgba(244,123,32,.14), rgba(11,143,220,.14)),
    #edf6fc;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:18px;
  color:var(--blue-dark);
  font-size:.9rem;
  font-weight:800;
  line-height:1.45;
}

.about-preview-content{
  display:grid;
  gap:16px;
}

.about-preview-content p{
  margin:0;
  font-size:1rem;
  line-height:1.65;
}

.about-preview-button{
  display:inline-flex;
  align-items:center;
  gap:10px;
  width:max-content;
  min-height:52px;
  padding:14px 22px;
  border-radius:16px;
  text-decoration:none;
  color:#fff;
  font-weight:900;
  background:linear-gradient(135deg,#f47b20 0%,#df8840 34%,#2997d7 76%,#0b8fdc 100%);
  box-shadow:0 16px 36px rgba(11,143,220,.18);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    gap .18s ease;
}

.about-preview-button:hover{
  transform:translateY(-2px);
  gap:14px;
  box-shadow:0 22px 48px rgba(11,143,220,.24);
}

@media(max-width:768px){

  .about-preview-card{
    flex-direction:column;
    align-items:flex-start;
    padding:16px;
    border-radius:22px;
  }

  .about-preview-image{
    width:100%;
    height:180px;
    border-radius:18px;
  }

  .about-preview-button{
    width:100%;
    justify-content:center;
  }
}


/* Grote foto CTA - over ons */
.about-photo-cta{
  position:relative;
  display:block;
  overflow:hidden;
  margin-top:30px;
  max-width:620px;
  height:340px;
  border-radius:30px;
  border:1px solid #cfe1ec;
  background:#eef7fd;
  box-shadow:0 22px 58px rgba(7,24,39,.08);
  text-decoration:none;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.about-photo-cta:hover{
  transform:translateY(-6px);
  border-color:var(--blue);
  box-shadow:
    0 30px 78px rgba(7,24,39,.12),
    0 12px 30px rgba(11,143,220,.12);
}

.about-photo-placeholder{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  padding:30px;
  text-align:center;
  background:
    linear-gradient(135deg, rgba(244,123,32,.18), rgba(11,143,220,.20)),
    #edf6fc;
  color:var(--blue-dark);
  font-weight:900;
  font-size:1.05rem;
}

.about-photo-overlay{
  position:absolute;
  right:18px;
  bottom:18px;
  display:inline-flex;
  align-items:center;
  gap:14px;
  padding:14px 18px;
  border-radius:16px;
  color:#fff;
  background:rgba(7,24,39,.78);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(8px);
  box-shadow:0 10px 28px rgba(0,0,0,.18);
}

.about-photo-overlay strong{
  font-size:.95rem;
  font-weight:850;
  letter-spacing:-.01em;
}

.about-photo-overlay span{
  width:34px;
  height:34px;
  flex:0 0 34px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(135deg,#f47b20,#0b8fdc);
  font-weight:900;
  transition:transform .18s ease;
}

.about-photo-cta:hover .about-photo-overlay span{
  transform:translateX(4px);
}

@media(max-width:768px){

  .about-photo-cta{
    max-width:100%;
    height:300px;
    border-radius:24px;
  }

  .about-photo-overlay{
    left:14px;
    right:14px;
    bottom:14px;
    padding:16px 18px;
    border-radius:18px;
  }

  .about-photo-overlay strong{
    font-size:.98rem;
  }
}

.about-photo-cta img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
/* NovaThermic uitbreidingen */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.product-card {
  display: block;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(7, 24, 39, .06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: 0 18px 50px rgba(11, 143, 220, .10);
}

.product-card h3 { margin-bottom: 12px; }

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue-dark);
  font-weight: 900;
}

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

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(7, 24, 39, .06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: 0 18px 50px rgba(11, 143, 220, .10);
}

.project-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.project-card div { padding: 26px; }
.project-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.project-card h3 { margin-bottom: 12px; }

.about-portrait {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 46px;
  align-items: center;
}

.about-portrait img,
.rounded-img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(7, 24, 39, .12);
}

.footer-note {
  margin-top: 14px !important;
  font-weight: 850;
  color: var(--blue-dark) !important;
}

.form-note {
  margin-top: 8px;
  font-size: .92rem;
}

.contact-form-clean select {
  width: 100%;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid #cfe1ec;
  background: #f7fbfe;
  color: var(--text);
  font: inherit;
  font-weight: 750;
}

@media (max-width: 1000px) {
  .product-grid,
  .project-grid,
  .about-portrait {
    grid-template-columns: 1fr;
  }
}

