:root {
  --ink: #102234;
  --muted: #5b7288;
  --line: #d9e8f5;
  --blue: #1088d8;
  --blue-dark: #0867aa;
  --blue-soft: #eaf7ff;
  --white: #ffffff;
  --panel: #f7fbff;
  --shadow: 0 20px 55px rgba(16, 34, 52, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(217, 232, 245, 0.86);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #7bd2ff);
  border-radius: 8px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.95rem;
  line-height: 1.15;
}

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

.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: #29445b;
  font-size: 0.94rem;
  font-weight: 650;
}

.main-nav a:hover,
.header-contact:hover {
  color: var(--blue-dark);
}

.header-contact {
  justify-self: end;
  color: var(--blue-dark);
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 45%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(0deg, rgba(16, 136, 216, 0.16), rgba(16, 136, 216, 0.04));
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 80px 0 118px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 6vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 660px;
  color: #2f4b62;
  font-size: clamp(1.04rem, 2vw, 1.3rem);
}

.trust-line {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 11px;
  color: var(--blue-dark);
  background: rgba(234, 247, 255, 0.88);
  border: 1px solid rgba(16, 136, 216, 0.18);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 850;
}

.hero-actions,
.floating-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.floating-actions a,
.package-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border-radius: 8px;
  font-weight: 850;
}

.button.primary,
.floating-actions a:first-child {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(16, 136, 216, 0.28);
}

.button.primary:hover,
.floating-actions a:first-child:hover {
  background: var(--blue-dark);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
}

.section {
  padding: clamp(70px, 9vw, 124px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

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

.card p,
.timeline p,
.package-grid p,
.package-note p,
.faq p,
.affirmation-copy p,
.affirmation-conclusion p,
.about-panel p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
}

.affirmation {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: var(--white);
}

.affirmation-copy {
  max-width: 620px;
}

.affirmation-conclusion {
  grid-column: 2;
  max-width: 680px;
}

.affirmation-conclusion p {
  margin-bottom: 16px;
  font-size: 1.04rem;
  font-weight: 750;
}

.question-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.question-list li {
  position: relative;
  padding: 15px 18px 15px 46px;
  background: linear-gradient(180deg, #ffffff, #f8fcff);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #29445b;
  font-weight: 750;
}

.question-list li::before {
  content: "?";
  position: absolute;
  left: 16px;
  top: 14px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.image-band {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.image-band img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.image-band div {
  padding: clamp(40px, 6vw, 76px);
}

.image-band p:not(.eyebrow) {
  color: #cfe2f0;
  font-size: 1.08rem;
}

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

.card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.card div {
  padding: 24px;
}

.audience {
  background: var(--blue-soft);
}

.info-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  padding: clamp(34px, 5vw, 54px) clamp(18px, 5vw, 72px);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.info-teaser h2 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
}

.info-teaser p:not(.eyebrow) {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
}

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

.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 34px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-panel p {
  max-width: 900px;
  margin: 0;
  font-size: 1.06rem;
}

.about-panel span {
  padding: 9px 12px;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 850;
  white-space: nowrap;
}

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

.pill-grid span {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 850;
  text-align: center;
}

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

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.timeline article {
  min-height: 190px;
  padding: 26px;
  background: linear-gradient(180deg, #ffffff, #f6fbff);
  border-right: 1px solid var(--line);
}

.timeline article:last-child {
  border-right: 0;
}

.timeline strong {
  display: block;
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-size: 1.18rem;
}

.benefits {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  align-items: stretch;
  background: #f5fbff;
}

.benefits-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.benefits-content {
  align-self: center;
  padding: clamp(46px, 7vw, 82px);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 15px 18px 15px 48px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 17px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  transform: rotate(-45deg);
}

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

.frequency-check {
  background: linear-gradient(180deg, var(--panel), var(--white));
}

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

.package-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.package-grid article.featured {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-color: transparent;
  box-shadow: var(--shadow);
}

.package-grid article.featured p {
  color: #e7f6ff;
}

.package-grid article.featured .package-list li {
  color: #f3fbff;
  border-color: rgba(255, 255, 255, 0.22);
}

.package-grid article.featured .package-list li::before {
  border-color: #ffffff;
}

.package-grid article > span {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: var(--blue-dark);
  background: var(--white);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
}

.package-grid a {
  margin-top: auto;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid var(--line);
}

.package-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.package-list li {
  position: relative;
  padding-left: 24px;
  color: #29445b;
  font-size: 0.94rem;
  font-weight: 700;
}

.package-list li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 8px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.package-note {
  max-width: 920px;
  margin: 24px 0 0;
  padding: 22px 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.package-note h3 {
  margin-bottom: 8px;
}

.package-note p {
  margin-bottom: 0;
}

.faq {
  background: var(--blue-soft);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(26px, 6vw, 72px);
  padding: clamp(70px, 9vw, 124px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.94)),
    url("assets/images/site-ready/slider-voor-vies-padelglas.jpg")
      center/cover;
}

.contact-copy {
  align-self: start;
  max-width: 620px;
}

.contact-card {
  margin-top: 28px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(16, 34, 52, 0.08);
}

.contact-card strong,
.contact-card span {
  display: block;
}

.contact-card span {
  margin-top: 4px;
  color: var(--muted);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: #29445b;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfdff;
  border: 1px solid #c9deee;
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(16, 136, 216, 0.16);
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-status {
  margin: 0;
  color: var(--blue-dark);
  font-weight: 800;
}

button[disabled] {
  cursor: not-allowed;
  opacity: 0.78;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px) 96px;
  color: var(--white);
  background: var(--ink);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.footer-contact {
  display: grid;
  justify-items: end;
  gap: 4px;
  text-align: right;
}

.footer-contact p {
  margin-bottom: 4px;
}

.footer-contact a {
  color: #e8f6ff;
  font-weight: 750;
}

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

.site-footer span,
.site-footer p {
  color: #cfe2f0;
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
}

.floating-actions a {
  min-height: 46px;
  padding-inline: 17px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(16, 34, 52, 0.16);
}

.info-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.8fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(70px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background: linear-gradient(180deg, var(--white), var(--panel));
}

.info-hero p:not(.eyebrow) {
  max-width: 760px;
  color: #2f4b62;
  font-size: clamp(1.04rem, 1.7vw, 1.22rem);
}

.info-hero h1 {
  font-size: clamp(2.45rem, 5vw, 5rem);
}

.info-hero img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.content-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.34fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: start;
  padding: clamp(70px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.content-main {
  display: grid;
  gap: 42px;
  max-width: 900px;
}

.content-main section {
  scroll-margin-top: 110px;
}

.content-main h2,
.content-aside h2,
.info-cta h2 {
  font-size: clamp(1.65rem, 3vw, 2.55rem);
}

.content-main p,
.content-list,
.content-aside p,
.info-cta p {
  color: var(--muted);
  font-size: 1.04rem;
}

.content-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.content-list li {
  position: relative;
  padding-left: 28px;
  color: #29445b;
  font-weight: 750;
}

.content-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.highlight-block,
.content-aside,
.info-cta {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.highlight-block {
  padding: clamp(24px, 4vw, 34px);
}

.highlight-block p:last-child {
  margin-bottom: 0;
}

.content-aside {
  position: sticky;
  top: 104px;
  align-self: start;
  min-width: 0;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(16, 34, 52, 0.08);
}

.content-aside h2 {
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.content-aside img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.content-aside div {
  padding: 24px;
}

.content-aside p {
  margin-bottom: 20px;
}

.aside-list {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.aside-list li {
  position: relative;
  padding-left: 22px;
  color: #29445b;
  font-size: 0.96rem;
  font-weight: 750;
}

.aside-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.content-aside .button {
  width: 100%;
}

.info-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 0 clamp(18px, 5vw, 72px) clamp(70px, 8vw, 110px);
  padding: clamp(26px, 4vw, 42px);
}

.info-cta p {
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-contact {
    display: none;
  }

  .main-nav.is-open {
    grid-column: 1 / -1;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .main-nav.is-open a {
    padding: 13px 0;
  }

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

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

  .timeline article:nth-child(2) {
    border-right: 0;
  }

  .timeline article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .affirmation,
  .image-band,
  .benefits,
  .contact-section,
  .info-hero,
  .content-page {
    grid-template-columns: 1fr;
  }

  .info-teaser,
  .info-cta {
    grid-template-columns: 1fr;
  }

  .info-teaser .button,
  .info-cta .button {
    justify-self: start;
  }

  .content-aside {
    position: static;
  }

  .about-panel {
    grid-template-columns: 1fr;
  }

  .about-panel span {
    justify-self: start;
    white-space: normal;
  }

  .affirmation-conclusion {
    grid-column: auto;
  }

  .benefits-media img {
    min-height: 380px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    max-width: 210px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72));
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 74px 0 128px;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 4.2rem);
  }

  .service-grid,
  .package-grid,
  .pill-grid,
  .timeline,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .timeline article,
  .timeline article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline article:last-child {
    border-bottom: 0;
  }

  .image-band img {
    height: 340px;
  }

  .info-hero img {
    min-height: 300px;
  }

  .contact-section {
    padding-bottom: 110px;
  }

  .site-footer {
    display: grid;
  }

  .footer-contact {
    justify-items: start;
    text-align: left;
  }

  .floating-actions {
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
