/* ============================================================
   REFINE — Service Pages Shared Stylesheet
   Premium white/minimal automotive aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Cinzel:wght@400;500&display=swap');

/* ── Variables ── */
:root {
  --bg:            #FFFFFF;
  --bg-subtle:     #F6F6F6;
  --bg-mid:        #F0F0F0;
  --white:         #FFFFFF;
  --gold:          #C9A96E;
  --gold-dark:     #A8854E;
  --gold-light:    #E4CFA0;
  --gold-pale:     #FAF5EC;
  --dark:          #1A1A1A;
  --text:          #2C2C2C;
  --text-muted:    #888888;
  --border:        #E8E8E8;
  --border-dark:   #D0D0D0;

  --font-sans:  'Inter', system-ui, sans-serif;

  --max-w: 1160px;
  --nav-h: 72px;

  --ease-out:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.nav--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 68px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav__links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s;
}
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
  color: var(--dark) !important;
  border: 1px solid var(--dark) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s !important;
}
.nav__cta:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--dark) !important;
}

/* ── Hero ── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 4rem) clamp(1.5rem, 5vw, 4rem) 6rem;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
/* Gold radial glow shared across all hero variants */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 55% at 76% 44%, rgba(201,169,110,0.10) 0%, transparent 65%);
  pointer-events: none;
}
/* Subtle grid lines */
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 30% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 30% 50%, black 0%, transparent 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero__title {
  font-family: var(--font-sans);
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 250;
  line-height: 1.0;
  color: var(--dark);
  letter-spacing: -0.04em;
  font-optical-sizing: auto;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1s var(--ease-out) 0.5s forwards;
}
.hero__title em {
  font-style: italic;
  font-weight: 250;
  color: var(--gold-dark);
}
.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.85;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease-out) 0.7s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 5vw, 4rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.2s forwards;
}
.hero__scroll span {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite 1.5s;
  transform-origin: top;
}
/* Decorative large number */
.deco-number {
  position: absolute;
  right: clamp(1.5rem, 5vw, 4rem);
  top: calc(var(--nav-h) + 1rem);
  font-family: var(--font-sans);
  font-size: clamp(14rem, 26vw, 24rem);
  font-weight: 200;
  line-height: 1;
  color: rgba(0,0,0,0.04);
  letter-spacing: -0.06em;
  font-optical-sizing: auto;
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

/* ── Hero bg variants ── */
.hero--detailing   .hero__bg { background: linear-gradient(155deg, #FFFFFF 0%, #FAFAFA 50%, #F5F4F2 100%); }
.hero--driver      .hero__bg { background: linear-gradient(150deg, #FFFFFF 0%, #F8F8F8 50%, #F3F3F1 100%); }
.hero--onderhoud   .hero__bg { background: linear-gradient(158deg, #FFFFFF 0%, #F9F9F9 50%, #F4F4F2 100%); }
.hero--ophalen     .hero__bg { background: linear-gradient(145deg, #FFFFFF 0%, #F9F9FA 50%, #F3F4F5 100%); }
.hero--monitoring  .hero__bg { background: linear-gradient(152deg, #FFFFFF 0%, #FAFAFA 50%, #F4F3F6 100%); }
.hero--dashboard   .hero__bg { background: linear-gradient(148deg, #FFFFFF 0%, #F9FAFA 50%, #F2F5F5 100%); }
.hero--manager     .hero__bg { background: linear-gradient(155deg, #FFFFFF 0%, #FAFAF9 50%, #F5F4F1 100%); }
.hero--docs        .hero__bg { background: linear-gradient(150deg, #FFFFFF 0%, #F9FAF9 50%, #F3F5F3 100%); }
.hero--seizoen     .hero__bg { background: linear-gradient(158deg, #FFFFFF 0%, #FAFAF8 50%, #F5F4EF 100%); }

/* Gold divider */
.gold-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light) 25%, var(--gold) 50%, var(--gold-light) 75%, transparent);
}

/* ── Section wrapper ── */
.section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 4rem);
}
.section--alt   { background: var(--bg-subtle); }
.section--white { background: var(--white); }
.section--dark  { background: var(--dark); }
.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ── Section header ── */
.section__eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section__title {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--dark);
  letter-spacing: -0.03em;
  font-optical-sizing: auto;
  margin-bottom: 1.5rem;
}
.section__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-dark);
}
.section__lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 600px;
}

/* ── Intro 2-col ── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.intro-grid__img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-subtle);
  box-shadow: 0 16px 56px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.05);
}
.intro-grid__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.intro-grid__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.13) 100%);
  pointer-events: none;
}
/* subtle gold accent line */
.intro-grid__frame {
  position: absolute;
  top: -8px; right: -8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 20px;
  pointer-events: none;
  z-index: 1;
}
.intro-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--border-dark);
}
.intro-placeholder__icon { width: 56px; height: 56px; opacity: 0.4; }
.intro-placeholder__text {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.5;
}

.phone-tabs { display: none; }

/* ── Phone scroll section (dashboard) ── */
.phone-scroll-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.phone-scroll__content {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 2rem 0 10rem;
}
.scroll-block {
  padding: 2.5rem 2rem;
  border-left: 2px solid transparent;
  transition: border-color 0.4s ease, opacity 0.4s ease;
  opacity: 0.4;
}
.scroll-block.active {
  border-left-color: var(--gold);
  opacity: 1;
}
.scroll-block__num {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.scroll-block__title {
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  font-optical-sizing: auto;
}
.scroll-block__title em {
  font-style: italic;
  color: var(--gold);
}
.scroll-block__body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.phone-scroll__sticky {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
}
.phone-mock {
  width: 300px;
  aspect-ratio: 390/844;
  border-radius: 44px;
  background: #091510;
  border: 1.5px solid rgba(201,169,110,0.2);
  box-shadow: 0 40px 100px rgba(0,0,0,0.22), 0 0 0 8px rgba(201,169,110,0.05), inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}
.phone-mock::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #091510;
  border-radius: 20px;
  z-index: 10;
}
.phone-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
}
.phone-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.phone-slide.active { opacity: 1; }
.phone-dots {
  display: flex;
  gap: 7px;
  margin-top: 1.25rem;
}
.phone-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201,169,110,0.2);
  transition: background 0.3s ease, transform 0.3s ease;
}
.phone-dot.active {
  background: var(--gold);
  transform: scale(1.25);
}

/* ── Signature icon grid ── */
.signature-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.sig-icon-card {
  background: #0d1f14;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background 0.3s ease;
}
.sig-icon-card:hover { background: #122418; }
.sig-icon-card svg {
  width: 40px;
  height: 40px;
  color: var(--gold);
  flex-shrink: 0;
}
.sig-icon-card span {
  font-size: 0.82rem;
  color: rgba(201,169,110,0.8);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

/* ── Feature cards ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.feature-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: background 0.35s var(--ease-out);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 2rem; right: 2rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.feature-card:hover { background: var(--bg-subtle); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-card__icon {
  width: 40px; height: 40px;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.feature-card__title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.feature-card__body {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── Process ── */
.process-list { display: flex; flex-direction: column; }
.process-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.process-step__num {
  font-family: var(--font-sans);
  font-size: 2.4rem;
  font-weight: 200;
  color: var(--border);
  line-height: 1;
  letter-spacing: -0.04em;
  font-optical-sizing: auto;
  transition: color 0.35s;
  flex-shrink: 0;
}
.process-step:hover .process-step__num { color: var(--gold-light); }
.process-step__title {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.process-step__body {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 520px;
}

/* ── Membership badges ── */
.membership-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.membership-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid;
}
.membership-badge--essential {
  background: var(--bg-subtle);
  border-color: var(--border);
  color: var(--text-muted);
}
.membership-badge--premium {
  background: var(--gold-pale);
  border-color: var(--gold-light);
  color: var(--gold-dark);
}
.membership-badge--signature {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--gold-light);
}
.membership-badge svg { width: 12px; height: 12px; }

/* ── Stats ── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
}
.stat-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  text-align: center;
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg-subtle); }
.stat-item__value {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}
.stat-item__value em { font-style: normal; color: var(--gold); }
.stat-item__label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Pull quote ── */
.pull-quote {
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 4vw, 4rem);
  border-left: 2px solid var(--gold);
  background: var(--white);
  border-radius: 0 4px 4px 0;
}
.pull-quote__text {
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  line-height: 1.65;
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
}
.pull-quote__attr {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pull-quote__attr::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

/* ── Notice box (e.g. kosten van derden) ── */
.notice-box {
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold-light);
  background: var(--bg-subtle);
  padding: 1.25rem 1.5rem;
  border-radius: 0 4px 4px 0;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 1.5rem;
}
.notice-box strong {
  font-weight: 500;
  color: var(--text);
}

/* ── CTA section ── */
.cta-section {
  background: var(--dark);
  padding: clamp(5rem, 10vw, 10rem) clamp(1.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.4) 30%, var(--gold) 50%, rgba(201,169,110,0.4) 70%, transparent);
}
/* subtle large text watermark */
.cta-section::after {
  content: 'Refine';
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  font-family: var(--font-sans);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 300;
  line-height: 1;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03em;
}
.cta-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.cta-section__eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cta-section__eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}
.cta-section__title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-optical-sizing: auto;
  margin-bottom: 1rem;
}
.cta-section__title em { font-style: italic; color: var(--gold); }
.cta-section__body {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  max-width: 460px;
}
.cta-section__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  min-width: 200px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn--gold { background: var(--gold); color: var(--dark); }
.btn--gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168,133,78,0.3);
}
.btn--outline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn--outline:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
}
.btn svg { width: 13px; height: 13px; transition: transform 0.3s; flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }

/* ── Comparison strip (detailing) ── */
.comparison-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.comparison-col {
  background: var(--white);
  padding: 2.5rem 2rem;
}
.comparison-col--highlight { background: var(--gold-pale); }
.comparison-col__badge {
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid var(--gold-light);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.comparison-col__title {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.comparison-col__value {
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}
.comparison-col__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.comparison-col__list li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.5;
}
.comparison-col__list li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.55em;
}

/* ── Footer ── */
.footer {
  background: var(--dark);
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer__copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer__links { display: flex; gap: 2rem; }
.footer__links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: color 0.25s;
}
.footer__links a:hover { color: rgba(255,255,255,0.65); }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal.revealed { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* ── Tier belt (inbegrepen in — gedeeld over alle service pages) ── */
.tier-belt {
  background: #f5f3ef;
  padding: 3rem clamp(2rem,6vw,5rem);
  border-top: 1px solid rgba(201,169,110,.12);
  border-bottom: 1px solid rgba(201,169,110,.12);
}
.tier-belt__inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap;
}
.tier-belt__lbl {
  font-size: .52rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(26,26,24,.32); white-space: nowrap;
}
.tier-belt__tiers { display: flex; gap: 1rem; flex-wrap: wrap; }
.tier-belt__item {
  display: flex; align-items: center; gap: 1rem;
  text-decoration: none;
  border: 1px solid rgba(26,26,24,.1); border-radius: 4px;
  padding: .75rem 1.25rem;
  transition: border-color .2s, box-shadow .2s;
  background: #fff;
}
.tier-belt__item:hover { border-color: rgba(201,169,110,.4); box-shadow: 0 4px 16px rgba(201,169,110,.08); }
.tier-belt__item--lock { opacity: .45; pointer-events: none; }
.tier-belt__name {
  font-size: .58rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(26,26,24,.4);
}
.tier-belt__val {
  font-size: .78rem; font-weight: 300; color: var(--dark);
  letter-spacing: -.01em;
}
.tier-belt__arrow { color: var(--gold); font-size: .7rem; margin-left: .25rem; }
.tier-belt__item--sig .tier-belt__name { color: var(--gold-dark); }
.tier-belt__item--sig .tier-belt__val { color: var(--gold-dark); }

/* Meer info link (tier detail pages → service pages) */
.t-more { display: inline-flex; align-items: center; gap: .45rem; margin-top: 1.25rem; text-decoration: none; font-size: .62rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-dark, #A8854E); transition: gap .2s; }
.t-more svg { width: 11px; height: 11px; transition: transform .2s; }
.t-more:hover { gap: .7rem; }
.t-more:hover svg { transform: translateX(2px); }

/* ── Keyframes ── */
@keyframes fadeUp { to { opacity: 1; transform: none; } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* ── Responsive ── */
/* ── How-grid (Hoe werkt het section) ── */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 960px) {
  .intro-grid { grid-template-columns: 1fr; }
  .intro-grid .intro-grid__visual { order: -1; max-width: 480px; }
  .cta-section__inner { grid-template-columns: 1fr; }
  .cta-section__actions { flex-direction: row; }
  .comparison-strip { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 2rem; }
  .phone-scroll-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .phone-scroll__content { display: none; }
  .phone-tabs {
    display: flex;
    gap: 0.5rem;
  }
  .phone-tab {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid var(--border-dark);
    border-radius: 2px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: color 0.25s, border-color 0.25s;
    background: none;
  }
  .phone-tab.active {
    color: var(--gold);
    border-color: var(--gold);
  }
  .phone-scroll__sticky {
    position: static;
    padding: 0;
    width: 100%;
    align-items: center;
  }
  .phone-mock { width: min(280px, 72vw); }
}
@media (max-width: 640px) {
  .nav__logo-img { height: 44px; }
  .nav__links {
    display: flex !important;
    gap: 0.75rem;
    align-items: center;
  }
  .nav__links a:nth-child(1),
  .nav__links a:nth-child(3),
  .nav__links a:nth-child(4) { display: none !important; }
  .nav__links a:nth-child(2) {
    display: inline !important;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }
  .nav__cta {
    display: inline-block !important;
    font-size: 0.68rem !important;
    padding: 0.4rem 0.85rem !important;
    letter-spacing: 0.1em !important;
  }
  .process-step { grid-template-columns: 44px 1fr; gap: 1rem; }
  .footer__inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer__links { flex-wrap: wrap; justify-content: center; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .cta-section__actions { flex-direction: column; }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 0;
    background: transparent;
    border: none;
  }
  .feature-card {
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    margin-bottom: 0.75rem;
  }
  .feature-card:last-child { margin-bottom: 0; }
  .phone-mock { width: min(260px, 70vw); }
}
