:root {
  --bg: #f3f3f3;
  --ink: #141414;
  --orange: #f57126;
  --orange-dark: #d45512;
  --orange-light: #ffb15a;
  --blue: #56a7de;
  --blue-dark: #2f7bb8;
  --blue-light: #8dcbef;
  --footer: #3f667a;
  --footer-dark: #1e3d4c;
  --footer-light: #6a9db3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background-color: var(--bg);
  background-image: linear-gradient(
    90deg,
    rgba(245, 113, 38, 0.18) 0%,
    var(--bg) 32%,
    var(--bg) 68%,
    rgba(86, 167, 222, 0.18) 100%
  );
}

.site-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: var(--bg);
}

.site-top-spacer {
  height: var(--sticky-h, 188px);
}

.site-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--bg);
  padding: 22px 40px;
}

.header-contact {
  position: absolute;
  top: 18px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

.header-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
}

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

.contact-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.lang-switch {
  position: absolute;
  top: 18px;
  right: 24px;
  display: inline-grid;
  grid-template-columns: auto auto;
  width: max-content;
  isolation: isolate;
  padding: 3px;
  border: 1px solid rgba(20, 20, 20, 0.14);
  border-radius: 999px;
  background: #fff;
}

.lang-switch button {
  position: relative;
  z-index: 1;
  border: 0;
  background: transparent;
  color: #5a5a5a;
  min-width: 42px;
  padding: 6px 10px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.lang-switch button[aria-pressed="true"] {
  color: #fff;
}

.lang-pill {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(50% - 3px);
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.22s ease;
}

.lang-switch[data-active="en"] .lang-pill {
  transform: translateX(100%);
}

.header-cluster {
  display: flex;
  align-items: center;
}

.logo-link {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}

.logo {
  display: block;
  width: min(280px, 46vw);
  height: auto;
}



.menu-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  height: 30px;
  overflow: visible;
  background: linear-gradient(
    90deg,
    var(--blue-dark) 0%,
    var(--blue) 42%,
    var(--blue) 58%,
    var(--blue-light) 100%
  );
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 16px;
  border: 2px solid var(--blue);
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transform: skewX(-18deg);
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    border-width 0.18s ease;
}

.menu-btn span {
  display: inline-block;
  transform: skewX(18deg);
}

.menu-btn.is-active,
.menu-btn:hover,
.menu-btn:focus-visible {
  background: linear-gradient(
    90deg,
    var(--orange-dark) 0%,
    var(--orange) 50%,
    var(--orange-light) 100%
  );
  color: #fff;
  font-weight: 800;
  border-width: 4px;
  border-color: #fff;
  transform: skewX(-18deg) scale(1.12);
}

#pakketten,
#portfolio,
#contact {
  scroll-margin-top: calc(var(--sticky-h, 188px) + 8px);
}

#portfolio {
  padding-bottom: 8px;
}

.page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0 56px;
}

.intro {
  max-width: 720px;
  margin: 0 auto;
  color: #4a4a4a;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.65;
  text-align: center;
}

.intro h1,
.intro p {
  margin: 0 0 8px;
}

.intro h1 {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

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

.intro-close {
  margin-top: 16px;
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.intro-about {
  margin: 10px 0 0;
}

.intro-about a {
  color: var(--blue-dark);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.intro-about a:hover,
.intro-about a:focus-visible {
  color: var(--orange);
}

.intro-rule {
  width: min(560px, 88%);
  height: 2px;
  margin: 28px auto 0;
  border: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--orange-light) 32%,
    var(--orange) 50%,
    var(--orange-light) 68%,
    transparent 100%
  );
}

.contact-break {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin: 28px auto 8px;
}

.page > .contact-break:last-child {
  margin-bottom: 40px;
}

.contact-break .intro-rule {
  margin: 0;
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 28px;
  border: 2px solid #1a4a72;
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  background: linear-gradient(
    90deg,
    var(--blue-dark) 0%,
    var(--blue) 50%,
    var(--blue-dark) 100%
  );
  transform: skewX(-18deg);
  box-shadow: 5px 6px 10px rgba(26, 74, 114, 0.48);
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.contact-cta span {
  display: inline-block;
  transform: skewX(18deg);
}

.contact-cta:hover,
.contact-cta:focus-visible {
  background: linear-gradient(
    90deg,
    var(--orange-dark) 0%,
    var(--orange) 50%,
    var(--orange-light) 100%
  );
  transform: skewX(-18deg) scale(1.08);
}

button.contact-cta {
  cursor: pointer;
}

button.contact-cta:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: skewX(-18deg);
}

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

.contact-lead {
  max-width: 560px;
  margin: 0 auto 18px;
  color: #4a4a4a;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
}

.form-status {
  width: min(640px, 100%);
  margin: 0 auto 16px;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 1.45;
}

.form-status-ok {
  background: #e7f6ee;
  color: #1e5c38;
}

.form-status-err {
  background: #fdece6;
  color: #9a3412;
}

.contact-form {
  position: relative;
  width: min(640px, 100%);
  margin: 0 auto 20px;
  padding: 28px 26px 26px;
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(20, 20, 20, 0.05);
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-grid .form-row {
  margin-bottom: 16px;
}

.contact-form label {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-optional {
  color: #8a8a8a;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid rgba(20, 20, 20, 0.16);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
  border-color: var(--blue-dark);
}

.form-note {
  margin: 0 0 18px;
  color: #6a6a6a;
  font-size: 0.88rem;
  font-weight: 500;
}

.form-submit {
  width: 100%;
}

.about-body {
  max-width: 720px;
  margin: 0 auto 40px;
  color: #4a4a4a;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.7;
  text-align: left;
}

.about-hello {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.about-body p {
  margin: 0 0 16px;
}

.about-body h2 {
  margin: 36px 0 16px;
  color: var(--blue-dark);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.about-pay {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(20, 20, 20, 0.04);
}

.about-body a {
  color: var(--blue-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-body a:hover,
.about-body a:focus-visible {
  color: var(--orange);
}

.packages-title {
  width: fit-content;
  margin: 36px auto 22px;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  text-align: center;
  background: linear-gradient(
    90deg,
    #2e71a0 0%,
    #508fb7 50%,
    #2e71a0 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.package-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 22px;
  align-items: stretch;
}

.package {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 24px 22px 22px;
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(20, 20, 20, 0.05);
}

.package b {
  font-weight: 800;
}

.package::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

.package-kicker {
  margin: 0 0 6px;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-scope {
  margin: 0 0 10px;
  color: #4a4a4a;
  font-size: 0.95rem;
  font-weight: 600;
}

.package-title-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}

.package h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.package-sub {
  margin: 0;
  color: #8a8a8a;
  font-size: 1rem;
  font-weight: 600;
}

.package-note {
  margin: 0;
  color: #5a5a5a;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
}

.package-price {
  margin: 10px 0 18px;
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.package-price [data-i18n="startup.vat"] {
  display: block;
  margin-top: 4px;
  color: #6a6a6a;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
}

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

.package li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}

.package li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.site-footer {
  padding: 28px 24px 32px;
  background: linear-gradient(
    90deg,
    var(--footer-dark) 0%,
    var(--footer) 55%,
    var(--footer-light) 100%
  );
  color: #fff;
  text-align: center;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(20, 20, 20, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.portfolio-card:hover,
.portfolio-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(20, 20, 20, 0.1);
}

.portfolio-card img {
  display: block;
  width: 100%;
  height: 128px;
  padding: 10px 16px;
  object-fit: contain;
  background: #fff;
}

.portfolio-card-bleed img {
  padding: 0;
  background: #e30613;
}

.portfolio-card-tight img {
  padding: 6px 10px;
  object-fit: contain;
}

.portfolio-logo-ph {
  display: grid;
  place-items: center;
  height: 128px;
  background: #ececec;
  color: #8a8a8a;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.portfolio-card p {
  margin: 0;
  padding: 16px 18px 20px;
  color: #4a4a4a;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.footer-name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.footer-tag {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.5;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  margin: 16px 0 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 1150px) {
  .site-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    padding: 16px 18px;
    gap: 8px 12px;
  }

  .header-contact {
    position: relative;
    top: auto;
    left: auto;
    justify-self: start;
  }

  .header-cluster {
    justify-self: center;
    min-width: 0;
  }

  .lang-switch {
    position: relative;
    top: auto;
    right: auto;
    justify-self: end;
  }

  .logo {
    width: min(200px, 32vw);
  }

  .header-contact a {
    font-size: 0.74rem;
  }
}

@media (max-width: 960px) {
  .package-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    display: flex;
    padding: 18px 20px;
  }

  .logo {
    width: min(188px, 38vw);
  }

  .header-contact {
    position: absolute;
    top: 12px;
    left: 12px;
    gap: 2px;
  }

  .header-contact a {
    font-size: 0.72rem;
    gap: 5px;
  }

  .contact-icon {
    width: 13px;
    height: 13px;
  }

  .lang-switch {
    position: absolute;
    top: 12px;
    right: 12px;
  }

  .page {
    width: min(1180px, calc(100% - 28px));
    padding-top: 36px;
  }

  .package {
    padding: 24px 20px 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 22px 18px 20px;
  }

  .menu-bar {
    gap: 10px;
  }

  .menu-btn {
    height: 34px;
    padding: 0 9px;
    font-size: 0.78rem;
  }
}
