/* ================================================
   AST BV — Globale stylesheet (Stijl 3 — Bold Contrast)
   Eenmaal hier, automatisch op alle pagina's.
   ================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --orange: #f26b1f;
  --orange-bright: #ff7a2e;
  --orange-dark: #d85a12;
  --cream: #f4efe8;
  --cream-soft: #ede6db;
  --paper: #faf7f2;
  --line: #262626;
  --ink: #1a1a1a;
  --grey: #5f5f5f;
  --grey-light: #a0a0a0;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.display {
  font-family: 'Archivo Black', sans-serif;
  letter-spacing: -0.02em;
  line-height: 0.95;
  font-weight: 400;
}

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

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

.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

/* ---------- HEADER ---------- */
header.site {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  color: #fff;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Archivo Black';
  font-size: 20px;
  letter-spacing: -0.02em;
}
.logo-img {
  height: 56px;
  width: auto;
  display: block;
}
.footer-logo {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 4px;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--orange);
  color: #000;
  display: grid;
  place-items: center;
  font-family: 'Archivo Black';
  font-size: 18px;
  border-radius: 50%;
}
.nav-links {
  display: none;
  gap: 26px;
  font-weight: 500;
  font-size: 14px;
  align-items: center;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}
.nav-links a[href*="#prijscalculator"] {
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-links a[href*="#prijscalculator"]::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
}
.nav-links a[href*="#prijscalculator"]:hover {
  color: #fff;
}
.nav-links a[href*="#prijscalculator"]:hover::before {
  background: #fff;
}

/* Diensten dropdown */
.nav-item-dropdown {
  position: relative;
}
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-chevron {
  transition: transform 0.25s ease;
  opacity: 0.55;
  margin-top: 1px;
}
.nav-item-dropdown:hover .nav-chevron,
.nav-item-dropdown:focus-within .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 10px;
  min-width: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  z-index: 60;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}
.nav-dropdown-link {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.18s;
}
.nav-dropdown-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff !important;
}
.nav-dropdown-num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  width: 18px;
}
.nav-dropdown-title {
  flex: 1;
}
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}
.nav-cta {
  display: none;
  background: var(--orange);
  color: #000;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: #fff;
  transform: translateY(-1px);
}
@media (min-width: 768px) {
  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
}
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
@media (min-width: 1024px) {
  .burger {
    display: none;
  }
}

/* ---------- HERO (DARK) ---------- */
.hero {
  background: var(--black);
  color: #fff;
  position: relative;
  padding: 140px 0 0;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(242, 107, 31, 0.25), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: end;
  }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 32px;
}
.hero-eyebrow::before {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--orange);
}
.hero h1 {
  font-size: clamp(56px, 7.5vw, 112px);
  line-height: 0.92;
  margin-bottom: 0;
  text-transform: uppercase;
}
.hero h1 .accent {
  color: var(--orange);
}
.hero h1 .outline {
  -webkit-text-stroke: 2px var(--orange);
  color: transparent;
}
.hero-side {
  padding-bottom: 64px;
}
.hero-side p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 420px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 30px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}
.btn-primary {
  background: var(--orange);
  color: #000;
}
.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover {
  background: #000;
}
.btn svg {
  width: 16px;
  height: 16px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.hero-meta strong {
  color: #fff;
  font-weight: 700;
}

.hero-visual {
  grid-column: 1 / -1;
  margin-top: 64px;
  position: relative;
}
.hero-strip {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.hero-strip-item {
  flex: 1;
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s;
}
.hero-strip-item:last-child {
  border-right: none;
}
.hero-strip-item:hover {
  background: rgba(242, 107, 31, 0.1);
}
.hero-strip-item .num {
  font-family: 'Archivo Black';
  font-size: clamp(32px, 4vw, 52px);
  color: var(--orange);
  line-height: 1;
}
.hero-strip-item .lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

/* Inner page hero (kleinere variant voor sub-pagina's) */
.hero-inner {
  background: var(--black);
  color: #fff;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-inner::before {
  content: '';
  position: absolute;
  top: 30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242, 107, 31, 0.2), transparent 60%);
  pointer-events: none;
}
.hero-inner .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
}
.hero-inner .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.hero-inner .breadcrumb a:hover {
  color: var(--orange);
}
.hero-inner .breadcrumb span.sep {
  color: rgba(255, 255, 255, 0.25);
}
.hero-inner .breadcrumb span.current {
  color: var(--orange);
}
.hero-inner h1 {
  font-size: clamp(44px, 5.5vw, 84px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
}
.hero-inner h1 .accent {
  color: var(--orange);
}
.hero-inner h1 .outline {
  -webkit-text-stroke: 2px var(--orange);
  color: transparent;
}
.hero-inner p.lede {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  position: relative;
}

/* ---------- USPS / FEATURED ---------- */
.featured {
  background: var(--black);
  color: #fff;
  padding: 80px 0 120px;
}
.featured-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .featured-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.feat {
  padding: 32px 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all 0.3s;
}
.feat:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}
.feat-num {
  font-family: 'Archivo Black';
  font-size: 36px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 18px;
}
.feat h3 {
  font-family: 'DM Sans';
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feat p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- SECTIONS — DIENSTEN (LIGHT) ---------- */
.diensten {
  background: var(--cream);
  padding: 120px 0;
  position: relative;
}
.section-head {
  margin-bottom: 80px;
}
.section-head.center {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}
.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--orange);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--orange);
}
.section-head h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1;
}
.section-head h2 .outline {
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
}
.section-head h2 .accent {
  color: var(--orange);
}
.section-head p {
  color: var(--grey);
  font-size: 17px;
  max-width: 580px;
}
.section-head.center p {
  margin-inline: auto;
}

.dienst-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 24px;
  overflow: hidden;
}
@media (min-width: 640px) {
  .dienst-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .dienst-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.dienst {
  background: var(--cream);
  padding: 36px 32px;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.dienst:hover {
  background: var(--orange);
  color: #000;
}
.dienst-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.dienst-icon {
  width: 48px;
  height: 48px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 12px;
  display: grid;
  place-items: center;
  transition: all 0.3s;
  flex-shrink: 0;
}
.dienst:hover .dienst-icon {
  background: #000;
  color: var(--orange);
}
.dienst-num {
  font-family: 'Archivo Black';
  font-size: 13px;
  color: var(--grey-light);
  transition: color 0.3s;
}
.dienst:hover .dienst-num {
  color: rgba(0, 0, 0, 0.6);
}
.dienst h3 {
  font-size: 24px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.dienst p {
  font-size: 14px;
  color: var(--grey);
  transition: color 0.3s;
}
.dienst:hover p {
  color: rgba(0, 0, 0, 0.7);
}
.dienst-arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 32px;
  height: 32px;
  color: var(--ink);
  transition: transform 0.3s, color 0.3s;
}
.dienst:hover .dienst-arrow {
  transform: translate(4px, -4px);
  color: #000;
}
.dienst.featured-card {
  background: var(--ink);
  color: var(--cream);
}
.dienst.featured-card h3 {
  color: #fff;
}
.dienst.featured-card .dienst-num {
  color: var(--orange);
}
.dienst.featured-card .dienst-icon {
  background: var(--orange);
  color: #000;
}
.dienst.featured-card .dienst-arrow {
  color: var(--orange);
}
.dienst.featured-card p {
  color: rgba(255, 255, 255, 0.6);
}
.dienst.featured-card:hover {
  background: var(--orange);
  color: #000;
}
.dienst.featured-card:hover h3,
.dienst.featured-card:hover p {
  color: #000;
}
.dienst.featured-card:hover .dienst-num {
  color: rgba(0, 0, 0, 0.6);
}

/* ---------- OVER ---------- */
.over {
  padding: 140px 0;
  background: var(--paper);
}
.over-grid {
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1024px) {
  .over-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 96px;
  }
}
.over-img-wrap {
  position: relative;
}
.over-img {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7)),
    repeating-linear-gradient(45deg, #1a1a1a 0, #1a1a1a 3px, #0f0f0f 3px, #0f0f0f 16px),
    var(--black);
  position: relative;
}
.over-tape {
  position: absolute;
  top: 32px;
  left: -16px;
  background: var(--orange);
  color: #000;
  padding: 10px 24px;
  font-family: 'Archivo Black';
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: rotate(-3deg);
}
.over-floater {
  position: absolute;
  bottom: -32px;
  right: -16px;
  background: var(--ink);
  color: #fff;
  padding: 24px 28px;
  border-radius: 20px;
  box-shadow: 0 24px 50px -12px rgba(0, 0, 0, 0.3);
}
.over-floater .num {
  font-family: 'Archivo Black';
  font-size: 48px;
  color: var(--orange);
  line-height: 1;
}
.over-floater .lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 6px;
  max-width: 160px;
}
.over h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1;
}
.over h2 .accent {
  color: var(--orange);
}
.over p {
  color: var(--grey);
  font-size: 16px;
  margin-bottom: 18px;
  line-height: 1.7;
}
.over-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0;
}
.pillar {
  padding: 20px;
  background: var(--cream-soft);
  border-radius: 14px;
}
.pillar svg {
  width: 24px;
  height: 24px;
  color: var(--orange);
  margin-bottom: 10px;
}
.pillar strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 4px;
}
.pillar span {
  font-size: 13px;
  color: var(--grey);
}

/* ---------- PROJECTEN ---------- */
.projecten {
  background: var(--black);
  color: #fff;
  padding: 140px 0;
}
.projecten .section-head h2 {
  color: #fff;
}
.projecten .section-head h2 .outline {
  -webkit-text-stroke: 2px #fff;
  color: transparent;
}
.projecten .section-head p {
  color: rgba(255, 255, 255, 0.7);
}
.proj-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .proj-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.proj {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}
.proj-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.95) 100%),
    linear-gradient(135deg, #2a2a2a, #0f0f0f);
  transition: transform 0.6s ease;
}
.proj-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent 0,
    transparent 20px,
    rgba(255, 255, 255, 0.02) 20px,
    rgba(255, 255, 255, 0.02) 22px
  );
}
.proj:hover .proj-bg {
  transform: scale(1.06);
}
.proj-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px;
}
.proj-tag {
  display: inline-block;
  background: var(--orange);
  color: #000;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border-radius: 6px;
}
.proj h3 {
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #fff;
}
.proj-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.proj-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: gap 0.25s;
}
.proj:hover .proj-link {
  gap: 14px;
}
.proj-link svg {
  width: 14px;
  height: 14px;
}

/* ---------- CTA ---------- */
.cta {
  padding: 0;
  background: var(--orange);
  position: relative;
  overflow: hidden;
}
.cta-inner {
  padding: 120px 0;
  text-align: center;
  color: #000;
  position: relative;
}
.cta::before {
  content: 'AST · BV · AST · BV · AST · BV · AST · BV · AST · BV · AST · BV';
  position: absolute;
  top: 24px;
  left: 0;
  width: 200%;
  font-family: 'Archivo Black';
  font-size: 80px;
  color: rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  pointer-events: none;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.cta h2 {
  font-size: clamp(40px, 5.5vw, 80px);
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #000;
  position: relative;
  line-height: 0.95;
}
.cta p {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 580px;
  margin-inline: auto;
  color: rgba(0, 0, 0, 0.75);
  position: relative;
}
.cta .btn-primary {
  background: #000;
  color: var(--orange);
  padding: 20px 36px;
  font-size: 15px;
  position: relative;
}
.cta .btn-primary:hover {
  background: #fff;
  color: #000;
}

/* ---------- CONTACT TEASER ---------- */
.contact-teaser {
  padding: 120px 0;
  background: var(--paper);
}
.ct-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .ct-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.ct-card {
  background: var(--ink);
  color: #fff;
  padding: 36px 32px;
  border-radius: 20px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.ct-card::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(242, 107, 31, 0.3), transparent 70%);
  transition: transform 0.4s;
}
.ct-card:hover {
  background: var(--orange);
  color: #000;
  transform: translateY(-4px);
}
.ct-card:hover::before {
  transform: scale(1.5);
}
.ct-icon {
  width: 40px;
  height: 40px;
  color: var(--orange);
  margin-bottom: 24px;
  transition: color 0.3s;
  position: relative;
}
.ct-card:hover .ct-icon {
  color: #000;
}
.ct-card .lbl {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  position: relative;
  transition: color 0.3s;
}
.ct-card:hover .lbl {
  color: rgba(0, 0, 0, 0.6);
}
.ct-card .val {
  font-family: 'Archivo Black';
  font-size: 20px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  position: relative;
}

/* ---------- CONTENT (sub-pagina's algemene tekst) ---------- */
.content-section {
  background: var(--paper);
  padding: 100px 0;
}
.content-section.cream {
  background: var(--cream);
}
.content-section.dark {
  background: var(--black);
  color: #fff;
}
.content-grid {
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr 2fr;
    gap: 96px;
  }
}
.content-aside h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 16px;
  font-family: 'DM Sans';
}
.content-aside p {
  font-size: 15px;
  color: var(--grey);
  margin-bottom: 16px;
}
.content-aside ul {
  list-style: none;
  display: grid;
  gap: 8px;
}
.content-aside li {
  font-size: 14px;
  color: var(--grey);
  padding-left: 16px;
  position: relative;
}
.content-aside li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}
.content-body h2 {
  font-size: clamp(32px, 5vw, 56px);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.content-body h2 .outline {
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
}
.content-body h2 .accent {
  color: var(--orange);
}
.content-body p {
  font-size: 16px;
  color: var(--grey);
  margin-bottom: 20px;
  line-height: 1.8;
  max-width: 720px;
}
.content-body p strong {
  color: var(--ink);
  font-weight: 600;
}

/* ---------- WERKWIJZE STAPPEN ---------- */
.werkwijze {
  background: var(--cream);
  padding: 120px 0;
}
.werkwijze-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-top: 56px;
}
@media (min-width: 640px) {
  .werkwijze-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .werkwijze-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stap {
  background: var(--paper);
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid rgba(10, 10, 10, 0.06);
  transition: all 0.3s;
}
.stap:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}
.stap-num {
  font-family: 'Archivo Black';
  font-size: 36px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 18px;
}
.stap h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  font-family: 'DM Sans';
}
.stap p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
}

/* ---------- FORMULIER ---------- */
.form-section {
  background: var(--paper);
  padding: 100px 0;
}
.form-grid {
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .form-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 96px;
  }
}
.form-aside {
  background: var(--ink);
  color: #fff;
  padding: 48px 40px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.form-aside::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(242, 107, 31, 0.25), transparent 70%);
}
.form-aside h3 {
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}
.form-aside p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  position: relative;
  font-size: 15px;
}
.form-aside .info-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.form-aside .info-row:last-child {
  border-bottom: none;
}
.form-aside .info-row svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
  flex-shrink: 0;
}
.form-aside .info-row .lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}
.form-aside .info-row .val {
  font-family: 'Archivo Black';
  font-size: 16px;
  color: #fff;
}
form.contact-form {
  display: grid;
  gap: 20px;
}
.field {
  display: grid;
  gap: 8px;
}
.field label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  font-family: 'DM Sans';
  font-size: 16px;
  padding: 16px 18px;
  background: #fff;
  border: 1.5px solid rgba(10, 10, 10, 0.1);
  border-radius: 12px;
  color: var(--ink);
  transition: border-color 0.2s;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.field textarea {
  min-height: 140px;
  resize: vertical;
  font-family: 'DM Sans';
}
.field-row {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}
form.contact-form button {
  justify-self: start;
  margin-top: 12px;
}
.form-note {
  font-size: 13px;
  color: var(--grey);
  margin-top: 6px;
}

/* ---------- 404 ---------- */
.not-found {
  min-height: 100vh;
  background: var(--black);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.not-found::before {
  content: '';
  position: absolute;
  top: 30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(242, 107, 31, 0.25), transparent 60%);
  pointer-events: none;
}
.not-found-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
}
@media (min-width: 1024px) {
  .not-found-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.not-found h1 {
  font-size: clamp(120px, 22vw, 280px);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 0;
}
.not-found h1 .accent {
  color: var(--orange);
}
.not-found h1 .outline {
  -webkit-text-stroke: 2px var(--orange);
  color: transparent;
}
.not-found h2 {
  font-size: clamp(32px, 4vw, 48px);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.not-found p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 480px;
}
.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- FOOTER ---------- */
footer {
  padding: 80px 0 32px;
  background: var(--black);
  color: #fff;
}
.ft-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .ft-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
.ft-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-top: 18px;
  max-width: 340px;
}
.ft-col h4 {
  font-family: 'Archivo Black';
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  color: var(--orange);
}
.ft-col ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.ft-col a,
.ft-col li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.ft-col a:hover {
  color: #fff;
}
.ft-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ---------- PRIVACY / TEKSTPAGINA ---------- */
.legal-section {
  background: var(--paper);
  padding: 80px 0 120px;
}
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 32px;
  text-transform: uppercase;
  margin: 48px 0 16px;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content p,
.legal-content li {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-content ul,
.legal-content ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
.legal-content strong {
  color: var(--ink);
  font-weight: 600;
}
.legal-content a {
  color: var(--orange);
  text-decoration: underline;
}

/* ---------- TOEPASSINGEN GRID (per dienst) ---------- */
.toepassingen-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .toepassingen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .toepassingen-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.toepassing-card {
  background: var(--paper);
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid rgba(10, 10, 10, 0.06);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.toepassing-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}
.toepassing-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--orange);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.toepassing-icon svg {
  width: 22px;
  height: 22px;
}
.toepassing-card h3 {
  font-family: 'DM Sans';
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.toepassing-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
}

/* ---------- GEMEENTE CHIPS (werkgebied sectie) ---------- */
.gemeente-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.gemeente-chip {
  display: inline-block;
  padding: 6px 12px;
  background: var(--cream-soft);
  color: var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ---------- FAQ ACCORDEON ---------- */
.faq-section {
  background: var(--paper);
  padding: 120px 0;
}
.faq-grid {
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .faq-grid {
    grid-template-columns: 1fr 1.6fr;
    gap: 96px;
  }
}
.faq-head h2 {
  font-size: clamp(32px, 4vw, 56px);
  text-transform: uppercase;
  margin: 16px 0 24px;
  line-height: 1;
}
.faq-head h2 .outline {
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
}
.faq-head h2 .accent {
  color: var(--orange);
}
.faq-head p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.7;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--cream);
  border-radius: 14px;
  border: 1px solid rgba(10, 10, 10, 0.05);
  overflow: hidden;
  transition: all 0.25s;
}
.faq-item[open] {
  border-color: var(--orange);
  background: var(--paper);
}
.faq-item summary {
  cursor: pointer;
  padding: 22px 24px;
  font-family: 'DM Sans';
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:hover {
  color: var(--orange);
}
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--orange);
}
.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 24px 24px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.75;
}

/* ============================================================
   CONTAINER PRIJSCALCULATOR
   ============================================================ */
.container-calculator {
  background: var(--paper);
  padding: 100px 0;
  border-top: 1px solid rgba(10, 10, 10, 0.06);
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}

.calc-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.calc-head h2 {
  font-size: clamp(32px, 4vw, 52px);
  text-transform: uppercase;
  margin: 16px 0 20px;
  line-height: 0.95;
}

.calc-head h2 .accent {
  color: var(--orange);
}

.calc-head p {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.6;
}

.calc-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px 24px;
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid rgba(10, 10, 10, 0.06);
  box-shadow: 0 2px 24px rgba(10, 10, 10, 0.04);
}

@media (min-width: 640px) {
  .calc-card {
    padding: 48px;
  }
}

/* Progress */
.calc-progress {
  margin-bottom: 36px;
}

.calc-progress-track {
  height: 4px;
  background: var(--cream);
  border-radius: 999px;
  overflow: hidden;
}

.calc-progress-bar {
  height: 100%;
  background: var(--orange);
  width: 0%;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 999px;
}

.calc-progress-label {
  margin-top: 12px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Steps */
.calc-step {
  display: none;
}
.calc-step.active {
  display: block;
  animation: calc-fade 0.3s ease;
}

@keyframes calc-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.calc-step h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.15;
}

@media (min-width: 640px) {
  .calc-step h3 {
    font-size: 26px;
  }
}

.calc-step h4 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--ink);
  margin: 32px 0 8px;
  letter-spacing: -0.01em;
}

.calc-hint {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Options */
.calc-options {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.calc-option {
  background: var(--paper);
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 16px 18px;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: all 0.2s;
  font-family: inherit;
  width: 100%;
  position: relative;
}

.calc-option:hover {
  border-color: rgba(242, 107, 31, 0.3);
  background: #fff;
}

.calc-option.selected {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(242, 107, 31, 0.1);
}

.calc-option.selected .calc-option-check {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.calc-option.special {
  background: rgba(242, 107, 31, 0.05);
  border-color: rgba(242, 107, 31, 0.15);
}

.calc-option-main {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.calc-option-main strong {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.calc-option-main span {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.45;
}

.calc-option-price {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
  white-space: nowrap;
}

.calc-option-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(10, 10, 10, 0.15);
  background: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.calc-option-check svg {
  width: 14px;
  height: 14px;
  opacity: 0;
  transition: opacity 0.2s;
}

.calc-option.selected .calc-option-check svg {
  opacity: 1;
}

.calc-option-arrow {
  font-size: 20px;
  color: var(--orange);
  flex-shrink: 0;
}

/* Maat options - grid layout */
.calc-options-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 540px) {
  .calc-options-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.calc-option-maat {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 22px 12px;
  gap: 6px;
}

.calc-maat-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 32px;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}

.calc-maat-num small {
  font-size: 14px;
  color: var(--grey);
  margin-left: 2px;
  font-family: 'JetBrains Mono', monospace;
}

.calc-maat-prijs {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.02em;
}

/* Days */
.calc-days {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 32px 0 8px;
}

.calc-days-btn {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--paper);
  border: 2px solid transparent;
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  display: grid;
  place-items: center;
  line-height: 1;
}

.calc-days-btn:hover {
  background: var(--orange);
  color: #fff;
}

.calc-days-display {
  text-align: center;
  min-width: 100px;
}

.calc-days-display span {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 56px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.calc-days-display small {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

.calc-days-extra {
  text-align: center;
  font-size: 13px;
  color: var(--grey);
  margin-top: 16px;
  font-family: 'JetBrains Mono', monospace;
}

.calc-days-extra.has-extra {
  color: var(--orange);
  font-weight: 600;
}

/* Result */
.calc-result h3 {
  text-align: center;
  margin-bottom: 24px;
}

.calc-price-card {
  background: var(--ink);
  color: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  .calc-price-card {
    padding: 32px 28px;
  }
}

.calc-breakdown {
  margin-bottom: 8px;
}

.calc-line {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 16px;
}

.calc-line:first-child {
  padding-top: 0;
}

.calc-line:last-of-type {
  border-bottom: none;
}

.calc-line span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  flex: 1;
  line-height: 1.4;
}

.calc-line strong {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  white-space: nowrap;
}

.calc-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  margin-top: 8px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  gap: 16px;
}

.calc-total span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'JetBrains Mono', monospace;
}

.calc-total strong {
  font-family: 'Archivo Black', sans-serif;
  font-size: 36px;
  color: var(--orange);
  letter-spacing: -0.02em;
  line-height: 1;
}

@media (min-width: 540px) {
  .calc-total strong {
    font-size: 44px;
  }
}

.calc-disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 20px;
  line-height: 1.5;
}

.calc-disclaimer strong {
  color: rgba(255, 255, 255, 0.85);
}

.calc-form-intro {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 18px;
  line-height: 1.5;
}

.calc-form {
  display: grid;
  gap: 12px;
}

.calc-form-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

@media (min-width: 480px) {
  .calc-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.calc-form input,
.calc-form textarea {
  background: var(--paper);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: all 0.2s;
  width: 100%;
  -webkit-appearance: none;
}

.calc-form input::placeholder,
.calc-form textarea::placeholder {
  color: var(--grey);
}

.calc-form input:focus,
.calc-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
}

.calc-form textarea {
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
}

.calc-submit {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Navigation */
.calc-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(10, 10, 10, 0.06);
  gap: 12px;
}

.calc-nav-btn {
  background: transparent;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 12px 18px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
}

.calc-back {
  color: var(--grey);
}

.calc-back:hover {
  color: var(--ink);
  background: var(--paper);
}

.calc-next {
  background: var(--orange);
  color: #fff;
  margin-left: auto;
  padding: 14px 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 13px;
}

.calc-next:hover:not(:disabled) {
  background: var(--ink);
}

.calc-next:disabled {
  background: rgba(10, 10, 10, 0.08);
  color: rgba(10, 10, 10, 0.3);
  cursor: not-allowed;
}
