/*
  Beweegkracht CSS split from public/styles.backup.css.
  Load order: main.css, responsive.css, admin.css only on admin pages.
*/

:root {
  --blue: #004575;
  --blue-dark: #1e3f6a;
  --green: #789a78;
  --green-soft: #eef5ee;
  --mint: #f6faf7;
  --line: #dfe9e3;
  --text: #1e3350;
  --muted: #53647b;
  --white: #fff;
  --max-width: 1190px;
}

* { box-sizing: border-box; }

html { font-size: 17px; }

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Aptos", "Segoe UI", "Inter", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); }

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

.site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 10px 35px rgba(30, 63, 106, 0.06);
}

.header-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo {
  width: 128px;
  height: 76px;
  object-fit: contain;
  display: block;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a,
.footer-nav a {
  color: var(--blue-dark);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 650;
  padding: 9px 11px;
  border-bottom: 0;
  border-radius: 999px;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.active,
.footer-nav a:hover {
  color: #fff;
  background: var(--blue-dark);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 11px 22px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  font-size: 0.95rem;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--blue-dark);
  padding: 0;
  place-items: center;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
  display: block;
  margin: 3px auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

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

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  background:
    radial-gradient(circle at 78% 12%, rgba(120, 154, 120, 0.16), transparent 32%),
    linear-gradient(90deg, #fff 0%, #fff 54%, var(--mint) 100%);
  border-bottom: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 0.86fr);
  gap: 56px;
  align-items: center;
  padding: 60px 0 54px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hero-title,
.page-title {
  margin: 0;
  color: var(--blue-dark);
  font-family: "Aptos Display", "Segoe UI", Arial, sans-serif;
  line-height: 1.06;
  font-weight: 850;
  letter-spacing: -0.015em;
}

.hero-title { font-size: clamp(2.55rem, 4.45vw, 4rem); }

.hero-title span { color: var(--green); }

.page-title { font-size: clamp(2.25rem, 4vw, 3.7rem); }

.hero-lead,
.page-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.24rem;
  line-height: 1.42;
}

.hero-media {
  position: relative;
  min-height: 470px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(30, 63, 106, 0.18);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  display: block;
}

.hero-note {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 22px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 14px;
  padding: 16px 22px;
  box-shadow: 0 18px 40px rgba(30, 63, 106, 0.14);
}

.hero-note img {
  width: 54px;
  height: 54px;
  min-height: auto;
  object-fit: contain;
}

.hero-note span {
  display: block;
  color: var(--muted);
}

.hero-note strong {
  display: block;
  color: var(--blue-dark);
  font-size: 1.08rem;
}

.route-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px;
  min-height: 310px;
  position: relative;
  box-shadow: 0 18px 45px rgba(8, 54, 84, 0.07);
}

.route-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(111, 143, 112, 0.22);
  pointer-events: none;
}

.route-card-icon,
.step-icon {
  display: inline-grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green);
}

.route-card-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border-radius: 18px;
}

.route-card h3 {
  margin: 0 0 10px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.2;
}

.route-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.route-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-card li {
  padding: 9px 0 9px 24px;
  position: relative;
  border-top: 1px solid var(--line);
}

.route-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  left: 2px;
  top: 19px;
}

.route-card svg,
.step-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--green);
  border-radius: 16px;
  color: var(--blue-dark);
  background: #fff;
  text-decoration: none;
  font-weight: 650;
}

.hero-btn {
  min-height: 64px;
  min-width: 210px;
  border-radius: 999px;
  padding: 16px 28px;
  font-size: 1.02rem;
  gap: 14px;
}

.btn.primary {
  background: var(--blue-dark);
  color: #fff;
  border-color: var(--blue-dark);
}

.btn.secondary {
  border-color: var(--line);
  background: #fff;
}

.hero-ctas,
.page-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.section { padding: 54px 0; }

.section.alt {
  background: var(--mint);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section h2,
.content-page h2 {
  margin: 0 0 16px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 600;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 28px;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
}

.section-summary {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.intro-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 42px;
  align-items: start;
}

.quick-list,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-list li,
.check-list li,
.steps li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.quick-list strong {
  display: block;
  color: var(--blue-dark);
}

.audience-section {
  align-items: stretch;
}

.audience-list {
  display: grid;
  gap: 12px;
}

.audience-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 82px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(30, 63, 106, 0.06);
  color: var(--blue-dark);
}

.audience-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.audience-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-item p {
  margin: 0;
  color: var(--blue-dark);
  line-height: 1.55;
}

.mini-list {
  margin: 12px 0 22px;
  padding-left: 18px;
}

.mini-list li {
  margin-bottom: 8px;
}

.price-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 32px;
}

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
}

.price-list span {
  color: var(--blue-dark);
  font-weight: 700;
}

.price-list strong {
  color: var(--green);
  font-size: 1.25rem;
  white-space: nowrap;
}

.tariffs-section {
  background: #f7faf7;
}

.tariffs-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  box-shadow: 0 16px 36px rgba(30, 63, 106, 0.07);
}

.tariffs-card-heading {
  padding: 28px 30px 8px;
}

.tariffs-card-heading h2,
.tariffs-info h2 {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.tariffs-card-heading p,
.tariffs-info p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.75;
}

.tariff-table-wrap {
  overflow-x: auto;
  padding: 0 30px 30px;
}

.tariff-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: #fff;
}

.tariff-table th {
  padding: 16px;
  text-align: left;
  color: var(--blue-dark);
  font-weight: 750;
  background: #f4f7f5;
  border-bottom: 2px solid var(--green);
}

.tariff-table td {
  padding: 18px 16px;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}

.tariff-table th:last-child,
.tariff-table td:last-child {
  text-align: right;
  color: var(--blue-dark);
  font-weight: 800;
  white-space: nowrap;
}

.tariffs-info {
  margin-top: 34px;
}

.tariffs-note {
  max-width: 560px;
  margin-top: 30px;
  padding: 26px 28px;
  background: var(--mint);
  border-left: 4px solid var(--green);
}

.tariffs-note strong {
  display: block;
  margin-bottom: 16px;
  color: var(--blue-dark);
  font-weight: 800;
}

.tariffs-note p {
  margin: 0 0 20px;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
}

.roadmap-section {
  background: linear-gradient(180deg, #fff 0%, var(--mint) 100%);
  border-top: 1px solid var(--line);
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  position: relative;
}

.roadmap::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 9%;
  right: 9%;
  height: 2px;
  background: var(--line);
}

.roadmap-step {
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
  min-height: 245px;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 52px;
  height: 52px;
  margin: 0 0 22px;
  border: 6px solid #fff;
  outline: 1px solid var(--line);
  border-radius: 16px;
}

.roadmap-step h3 {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 1.05rem;
}

.roadmap-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.detailed-steps {
  list-style: none;
  padding-left: 0;
}

.detailed-steps li {
  position: relative;
  padding-left: 70px;
  min-height: 58px;
}

.detail-icon {
  position: absolute;
  left: 0;
  top: 13px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.detail-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detailed-steps strong,
.detailed-steps span {
  display: block;
}

.detailed-steps span {
  color: var(--muted);
  margin-top: 3px;
}

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

.card {
  background:
    linear-gradient(180deg, rgba(247, 251, 248, 0.75), rgba(255, 255, 255, 0) 58%),
    #fff;
  border: 1px solid var(--line);
  padding: 26px;
  min-height: 210px;
  border-radius: 22px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(120, 154, 120, 0.38);
  box-shadow: 0 16px 36px rgba(30, 63, 106, 0.08);
}

.treatment-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.treatment-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 1.14rem;
  line-height: 1.25;
}

.card p {
  margin: 0;
  color: var(--text);
}

.page-hero {
  padding: 72px 0 56px;
  background:
    radial-gradient(circle at 82% 15%, rgba(120, 154, 120, 0.18), transparent 30%),
    var(--mint);
  border-bottom: 1px solid var(--line);
}

.compact-hero {
  padding: 42px 0 34px;
}

.content-page { padding: 46px 0 60px; }

.notice {
  background: var(--green-soft);
  border-left: 4px solid var(--green);
  padding: 18px 20px;
}

.over-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: 22px;
  align-items: start;
}

.over-mobile.over-page {
  display: none;
}

.over-main {
  grid-row: span 2;
}

.over-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  padding: 20px;
}

.over-card h2 {
  margin-top: 0;
}

.over-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.over-points li {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.fact-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
}

.fact-list div {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.fact-list dt {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fact-list dd {
  margin: 2px 0 0;
  color: var(--blue-dark);
  font-weight: 700;
}

.compact-list {
  margin-top: 10px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 1fr);
  gap: 42px;
  align-items: start;
}

.contact-section-pro {
  padding: 48px 0 64px;
  background: #f3f5f3;
}

.contact-pro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(360px, 1.08fr);
  gap: 22px;
  align-items: start;
}

.contact-side {
  display: grid;
  gap: 22px;
}

.info-panel,
.map-panel,
.form-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  padding: 24px;
  box-shadow: 0 12px 28px rgba(8, 54, 84, 0.08);
}

.info-panel h2,
.map-panel h2,
.form-panel h2 {
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: #f5f8f5;
  color: var(--green);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.contact-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-list strong,
.form-helpers strong {
  display: block;
  color: var(--blue-dark);
  font-size: 0.94rem;
}

.contact-list span,
.contact-list a,
.form-intro,
.form-helpers p {
  color: var(--muted);
  font-size: 0.92rem;
}

.map-frame {
  height: 250px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--mint);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-placeholder {
  display: grid;
  place-items: center;
  padding: 24px;
}

.map-placeholder div {
  max-width: 260px;
}

.map-placeholder strong {
  display: block;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.map-placeholder p {
  margin: 0;
  color: var(--muted);
}

.map-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue-dark);
  font-weight: 650;
  text-decoration: none;
}

.form-intro {
  margin: 0 0 18px;
  max-width: 620px;
}

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

.contact-form label {
  display: block;
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-weight: 650;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  margin-top: 6px;
  border: 1px solid #cddbd4;
  padding: 12px 13px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.privacy-note,
.contact-result {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 10px;
}

.form-helpers {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.form-helpers div {
  position: relative;
  padding-left: 28px;
}

.form-helpers div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--green);
  background: var(--green-soft);
}

.form-helpers p {
  margin: 3px 0 0;
}

.form-helpers a {
  color: var(--blue-dark);
  font-weight: 700;
}

.privacy-page {
  max-width: 860px;
}

.privacy-page h2 {
  margin-top: 28px;
}

.privacy-page h2:first-child {
  margin-top: 0;
}

.referral-section {
  background: #f7faf7;
  border-top: 1px solid var(--line);
}

.referral-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  padding: 32px;
  box-shadow: 0 16px 36px rgba(30, 63, 106, 0.07);
}

.referral-intro h2 {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}

.referral-intro p:last-child,
.referral-points p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.referral-points {
  display: grid;
  gap: 14px;
}

.referral-points div {
  padding: 16px 18px;
  background: var(--mint);
  border: 1px solid var(--line);
}

.referral-points strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-dark);
}

.site-footer {
  background: #1f3558;
  color: #eef5f0;
  padding: 0 0 20px;
}

.site-footer a {
  color: rgba(238, 245, 240, 0.82);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.pre-footer-cta {
  background: #f7fbf8;
  border-top: 1px solid var(--line);
  padding: 34px 0;
}

.footer-cta {
  transform: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: transparent;
  color: var(--text);
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  position: relative;
  overflow: visible;
}

.footer-cta::after {
  content: none;
}

.footer-cta > * {
  position: relative;
  z-index: 1;
}

.footer-cta-action {
  display: flex;
  justify-content: flex-end;
}

.footer-cta h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(1.4rem, 2.25vw, 1.95rem);
  line-height: 1.14;
  max-width: 760px;
}

.footer-cta p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
  max-width: 720px;
}

.footer-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--green);
  color: #fff !important;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(31, 53, 88, 0.08);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr minmax(280px, 1.05fr);
  gap: 34px;
  padding: 34px 0 24px;
}

.footer-brand-name {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.footer-brand-name span {
  color: var(--green);
}

.footer-brand-subtitle {
  color: rgba(238, 245, 240, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  margin-top: 6px;
  text-transform: lowercase;
}

.footer-brand p {
  max-width: 300px;
  margin: 14px 0 0;
  color: rgba(238, 245, 240, 0.82);
  font-size: 0.94rem;
  line-height: 1.55;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-column h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 740;
}

.footer-column h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 8px;
  background: var(--green);
}

.footer-column p {
  margin: 0;
  color: rgba(238, 245, 240, 0.78);
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-contact {
  gap: 8px;
}

.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 2px;
  color: #fff;
}

.footer-contact-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-email {
  display: inline-flex;
  max-width: 100%;
  white-space: nowrap;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border-top: 1px solid rgba(238, 245, 240, 0.16);
  padding-top: 14px;
  color: rgba(238, 245, 240, 0.68);
  font-size: 0.84rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

/* Footer refinement - mobile first */
.site-footer {
  padding-top: 56px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 64px;
  align-items: start;
}

.footer-brand p,
.footer-contact p {
  margin: 0 0 10px;
  max-width: 360px;
}

.footer-column a {
  display: block;
  margin-bottom: 10px;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.16);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-legal-copy {
  display: grid;
  gap: 6px;
  font-size: 0.82rem;
  opacity: 0.72;
}

.footer-legal-copy p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-smallprint {
  padding-top: 10px;
  padding-bottom: 28px;
  font-size: 0.82rem;
  opacity: 0.72;
}

.footer-smallprint p {
  margin: 0;
}

.privacy-settings-button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  margin-right: 2px;
  cursor: pointer;
}

.privacy-settings-button:hover,
.privacy-settings-button:focus-visible {
  background: var(--green);
  outline: none;
}

.privacy-settings-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-dialog[hidden] {
  display: none;
}

body.has-open-dialog {
  overflow: hidden;
}

.privacy-dialog {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 20px;
}

.privacy-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 42, 76, 0.42);
}

.privacy-dialog-panel {
  position: relative;
  width: min(520px, 100%);
  max-height: min(720px, calc(100vh - 40px));
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(9, 42, 76, 0.26);
  padding: 30px;
}

.privacy-dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.privacy-dialog-close:hover,
.privacy-dialog-close:focus-visible {
  border-color: var(--green);
  color: var(--green);
  outline: none;
}

.privacy-dialog-panel h2 {
  margin: 4px 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.privacy-dialog-panel p {
  margin: 0 0 18px;
}

.privacy-cookie-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  margin-top: 12px;
}

.privacy-cookie-row strong,
.privacy-cookie-row span {
  display: block;
}

.privacy-cookie-row strong {
  color: var(--navy);
  margin-bottom: 4px;
}

.privacy-cookie-row.is-muted {
  background: #fff;
}

.privacy-cookie-status {
  flex: 0 0 auto;
  min-width: 72px;
  border-radius: 999px;
  padding: 7px 12px;
  text-align: center;
  font-weight: 800;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
}

.privacy-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

/* Tarieven pagina - professionele layout */
.tariffs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
  gap: 56px;
  align-items: start;
}

.tariffs-main {
  max-width: 820px;
}

.tariff-cards {
  display: grid;
  gap: 18px;
  margin: 24px 0 42px;
}

.tariff-card {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 26px 28px;
  border: 1px solid rgba(28, 62, 103, 0.14);
  border-left: 5px solid var(--green);
  background: #fff;
  box-shadow: 0 18px 45px rgba(28, 62, 103, 0.06);
}

.tariff-card h3 {
  margin: 0 0 8px;
  color: var(--blue);
}

.tariff-card p {
  margin: 0;
  color: var(--text-muted);
}

.tariff-card strong {
  white-space: nowrap;
  font-size: 1.6rem;
  color: var(--green);
}

.tariffs-notice {
  position: sticky;
  top: 120px;
}
