/* ============================================================
   SloepYes – Design System v2 (Neuromarketing Edition)
   ============================================================ */

:root {
  --teal:       #2da8d1;
  --teal-dark:  #1e8ab3;
  --teal-light: #e8f6fb;
  --dark:       #141c26;
  --dark-2:     #1b2533;
  --body:       #4a5568;
  --light:      #f7f9fc;
  --border:     #e2e8f0;
  --white:      #ffffff;
  --green:      #22c55e;

  --font: 'Montserrat', sans-serif;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
  --transition: 220ms ease;
}

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); color: var(--body); background: var(--white); line-height: 1.65; padding-top: 70px; }
img  { display: block; max-width: 100%; height: auto; }
a    { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }
ul   { list-style: none; }
address { font-style: normal; }

/* ── CONTAINER ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── TYPOGRAPHY ────────────────────────────────────── */
h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; line-height: 1.15; color: var(--dark); }
h2 { font-size: clamp(1.3rem, 2.5vw, 2rem); font-weight: 700; line-height: 1.2; color: var(--dark); }
h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); line-height: 1.3; }
p  { line-height: 1.7; }

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.6rem;
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: .875rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: .95rem 2.2rem; font-size: .95rem; }
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,168,209,.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.65);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-secondary:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── SECTION HELPERS ───────────────────────────────── */
.section       { padding: 5rem 0; }
.section-light { background: var(--light); }
.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--teal);
  margin-bottom: .75rem;
}
.section-label-light {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.55);
  margin-bottom: .75rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--body);
  margin-top: .6rem;
}

/* ── VISUALLY HIDDEN (SEO/accessibility) ───────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── H1 SUB ────────────────────────────────────────── */
.h1-sub {
  display: block;
  font-size: .6em;
  font-weight: 400;
  opacity: .9;
  margin-top: .3em;
}

/* ── SCROLL REVEAL ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAVBAR ────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
}
.logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.logo img { height: 42px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text strong {
  font-size: .95rem; font-weight: 800;
  color: var(--dark);
}
.logo-text span {
  font-size: .6rem; font-weight: 400;
  color: var(--body);
}

.nav-menu { display: flex; align-items: center; gap: 1.75rem; }
.nav-link {
  font-size: .8rem;
  font-weight: 600;
  color: var(--body);
  padding: .3rem 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

.nav-cta-link {
  background: var(--teal);
  color: var(--white) !important;
  padding: .5rem 1.1rem;
  border-radius: var(--r-sm);
  border-bottom: none !important;
}
.nav-cta-link:hover { background: var(--teal-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  filter: brightness(.92) saturate(1.05);
  transform: scale(1.03);
  transition: transform 7s ease;
  contain: layout style paint;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  /* Lichte overlay — beeld ademt */
  background: linear-gradient(
    115deg,
    rgba(10,18,30,.52) 0%,
    rgba(10,18,30,.28) 55%,
    rgba(10,18,30,.06) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 9rem 2rem 5rem;
  margin-left: max(2rem, calc((100vw - 1180px) / 2));
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
  padding: .4rem .9rem;
  border-radius: 999px;
  width: fit-content;
}
.hero-stars { color: #fbbf24; font-size: .85rem; letter-spacing: .06em; }
.hero-trust span { font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.9); }

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.hero-content > p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.hero-reassurance {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  margin-bottom: 0 !important;
}
.hero-reassurance svg { color: var(--teal); flex-shrink: 0; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.45);
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
}

/* ── STATS BAR ─────────────────────────────────────── */
.stats-bar {
  background: var(--dark);
  padding: 2.5rem 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-item {
  flex: 1; text-align: center; padding: 0 1.5rem;
}
.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(45,168,209,.15);
  border: 1px solid rgba(45,168,209,.3);
  margin: 0 auto .75rem;
}
.stat-icon svg {
  width: 20px; height: 20px;
  color: var(--teal);
}
.stat-item strong {
  display: block;
  font-size: 2.2rem; font-weight: 800;
  color: var(--teal); line-height: 1; margin-bottom: .35rem;
}
.stat-check {
  font-size: 2rem !important;
}
.stat-item span {
  font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .07em;
  color: rgba(255,255,255,.5);
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.1); flex-shrink: 0;
}

/* ── MODEL CARDS ───────────────────────────────────── */
.models-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.model-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.model-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.model-card-image {
  display: block; position: relative; overflow: hidden; aspect-ratio: 16/9;
}
.model-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 400ms ease;
}
.model-card:hover .model-card-image img { transform: scale(1.05); }
.model-card-badge {
  position: absolute; top: 1rem; left: 1rem;
  font-size: .67rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  padding: .3rem .8rem; border-radius: 999px;
  display: flex; align-items: center; gap: .3rem;
}
.badge-green { background: var(--green); color: #fff; }
.badge-teal  { background: var(--teal);  color: #fff; }

.model-card-body { padding: 1.75rem; }
.model-card-specs { display: flex; gap: .6rem; margin-bottom: .85rem; }
.model-card-specs span {
  font-size: .67rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--teal); background: var(--teal-light);
  padding: .2rem .65rem; border-radius: 999px;
}
.model-card-body h3 { margin-bottom: .6rem; }
.model-card-body h3 a { color: var(--dark); }
.model-card-body h3 a:hover { color: var(--teal); }
.model-card-body > p { font-size: .88rem; color: var(--body); margin-bottom: .75rem; }
.model-benefit {
  display: flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 600; color: var(--teal);
  margin-bottom: 1.25rem !important;
}
.model-benefit svg { flex-shrink: 0; }

.models-cta {
  text-align: center; margin-top: 3rem;
  padding-top: 2.5rem; border-top: 1px solid var(--border);
}
.models-cta p { font-size: .95rem; color: var(--body); margin-bottom: 1rem; }

/* ── TESTIMONIAL ───────────────────────────────────── */
.testimonial-section {
  background: var(--teal-light);
  border-top: 1px solid #c7e9f5;
  border-bottom: 1px solid #c7e9f5;
  padding: 3.5rem 0;
}
.testimonial-inner { display: flex; align-items: center; gap: 4rem; }
.testimonial-quote { flex: 1; }
.testimonial-stars {
  color: #fbbf24; font-size: 1.1rem; letter-spacing: .1em; margin-bottom: 1rem;
}
blockquote {
  font-size: 1.1rem; font-weight: 500;
  color: var(--dark); line-height: 1.65;
  font-style: italic; margin-bottom: .75rem;
}
cite { font-size: .8rem; color: var(--body); font-style: normal; font-weight: 600; }
.testimonial-logo { flex-shrink: 0; }
.trustpilot-badge {
  display: flex; align-items: center; gap: 1rem;
  background: var(--white); border-radius: var(--r-md);
  padding: 1.25rem 1.75rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.tp-score { font-size: 2.5rem; font-weight: 800; color: var(--teal); line-height: 1; }
.trustpilot-badge strong {
  display: block; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--dark); margin-bottom: .2rem;
}
.tp-stars { color: #fbbf24; font-size: .9rem; }

/* ── HOW IT WORKS ──────────────────────────────────── */
.steps-grid {
  display: flex; align-items: flex-start;
  gap: 0; margin-bottom: 3rem;
}
.step-card {
  flex: 1;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem 1.75rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.step-number {
  font-size: 2.5rem; font-weight: 800; line-height: 1; margin-bottom: 1rem;
  -webkit-text-stroke: 2px var(--teal); color: transparent;
}
.step-card h3 { margin-bottom: .6rem; font-size: 1rem; }
.step-card p  { font-size: .875rem; color: var(--body); }
.step-arrow {
  display: flex; align-items: center; justify-content: center;
  padding: 0 1rem; font-size: 1.5rem; color: var(--teal);
  margin-top: 2rem; flex-shrink: 0;
}
.steps-cta { text-align: center; }
.steps-sub { margin-top: .75rem; font-size: .78rem; color: var(--body); }

/* ── FEATURE SPLIT ─────────────────────────────────── */
.feature-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.feature-images { position: relative; }
.feature-img-main {
  width: 100%; border-radius: var(--r-lg);
  aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-lg);
}
.feature-img-sub {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 45%; border-radius: var(--r-md);
  border: 4px solid var(--white); box-shadow: var(--shadow-md);
  aspect-ratio: 1; object-fit: cover;
}
.feature-text h2 { margin-bottom: .75rem; }
.feature-text > p { color: var(--body); margin-bottom: 1.5rem; }
.feature-list { margin-bottom: 2rem; }
.feature-list li {
  display: flex; align-items: center; gap: .75rem;
  padding: .55rem 0; font-size: .88rem; color: var(--body);
  border-bottom: 1px solid var(--border);
}
.feature-list li::before {
  content: ''; width: 8px; height: 8px;
  border-radius: 50%; background: var(--teal); flex-shrink: 0;
}

/* ── PHOTO STRIP ───────────────────────────────────── */
.photo-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  height: 300px; overflow: hidden;
}
.photo-strip-item { overflow: hidden; }
.photo-strip-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 500ms ease;
}
.photo-strip-item:hover img { transform: scale(1.08); }

/* ── CONTACT SECTION ───────────────────────────────── */
.contact-section { background: var(--dark); padding: 5rem 0; text-align: center; }
.contact-header { margin-bottom: 3rem; }
.contact-header h2 { color: var(--white); margin-bottom: .6rem; }
.contact-header p  { color: rgba(255,255,255,.6); font-size: 1rem; }
.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-bottom: 1.75rem;
}
.contact-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 2.25rem 1.5rem; color: var(--white);
  display: block; transition: all var(--transition);
}
.contact-card:hover {
  background: rgba(45,168,209,.12); border-color: rgba(45,168,209,.45);
  color: var(--white); transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(45,168,209,.18);
}
.contact-card-featured {
  background: rgba(45,168,209,.15);
  border-color: rgba(45,168,209,.4);
  position: relative;
}
.contact-card-featured::before {
  content: 'Meest populair';
  position: absolute; top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal); color: var(--white);
  font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: .25rem .75rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
}
.contact-icon {
  width: 52px; height: 52px; background: rgba(45,168,209,.18);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.contact-icon svg { width: 22px; height: 22px; color: var(--teal); }
.contact-card h3 { color: var(--white); font-size: .95rem; margin-bottom: .3rem; }
.contact-card p  { color: rgba(255,255,255,.5); font-size: .78rem; margin-bottom: .4rem; }
.contact-card strong { color: var(--teal); font-size: .9rem; }
.contact-more { color: rgba(255,255,255,.45); font-size: .82rem; }
.contact-more a { color: rgba(255,255,255,.65); font-weight: 600; }
.contact-more a:hover { color: var(--teal); }

/* ── FAQ ───────────────────────────────────────────── */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--r-md);
  margin-bottom: .75rem;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover {
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item[open] summary {
  color: var(--teal);
  border-bottom: 1px solid var(--border);
}
.faq-item p {
  padding: 1.25rem 1.5rem;
  font-size: .9rem;
  color: var(--body);
  line-height: 1.75;
  margin: 0;
}

/* ── BLOG ──────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.blog-col-header {
  padding-bottom: 1rem; margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--border);
}
.blog-col-header h2 { font-size: 1.4rem; }
.blog-card-meta {
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--teal); margin-bottom: .5rem;
}
.blog-card h3 { font-size: 1rem; margin-bottom: .6rem; }
.blog-card h3 a { color: var(--dark); }
.blog-card h3 a:hover { color: var(--teal); }
.blog-card p { font-size: .875rem; color: var(--body); margin-bottom: .85rem; line-height: 1.7; }
.read-more { font-size: .8rem; font-weight: 700; color: var(--teal); }
.read-more:hover { text-decoration: underline; }

/* ── FOOTER ────────────────────────────────────────── */
.site-footer { background: var(--dark-2); color: rgba(255,255,255,.55); padding-top: 4rem; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo { height: 38px; width: auto; margin-bottom: .9rem; }
.footer-brand p {
  font-size: .85rem; line-height: 1.7;
  color: rgba(255,255,255,.45); margin-bottom: 1.4rem;
}
.footer-social { display: flex; gap: .5rem; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.6);
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--teal); color: var(--white); }
.footer-social svg { width: 15px; height: 15px; }
.footer-why {
  list-style: none !important;
  padding: 0 !important;
  margin: 1.25rem 0 0 !important;
}
.footer-why li {
  display: flex !important;
  align-items: center !important;
  gap: .5rem !important;
  font-size: .82rem !important;
  color: rgba(255,255,255,.55) !important;
  padding: .25rem 0 !important;
}
.footer-why li::before {
  content: '✓' !important;
  color: #0099cc !important;
  font-weight: 700 !important;
  flex-shrink: 0 !important;
  font-size: .82rem !important;
}
.footer-nav-col h4 {
  color: var(--white); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.2rem;
}
.footer-nav-col ul li { margin-bottom: .45rem; }
.footer-nav-col ul a,
.footer-nav-col address a {
  color: rgba(255,255,255,.5); font-size: .85rem; transition: color var(--transition);
}
.footer-nav-col ul a:hover,
.footer-nav-col address a:hover { color: var(--teal); }
.footer-nav-col address { font-size: .85rem; line-height: 1.9; color: rgba(255,255,255,.5); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 0; font-size: .75rem; color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.45); font-weight: 600; }
.footer-bottom a:hover { color: var(--teal); }

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .feature-split { grid-template-columns: 1fr; gap: 3rem; }
  .feature-images { max-width: 560px; margin: 0 auto; }
  .feature-img-sub { right: 0; }
  .testimonial-inner { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    display: none; position: absolute; top: 70px; left: 0; right: 0;
    background: var(--white); flex-direction: column; gap: 0;
    box-shadow: var(--shadow-md); border-top: 2px solid var(--teal);
  }
  .nav-menu.open { display: flex; }
  .nav-link {
    display: block; padding: .85rem 2rem; color: var(--body) !important;
    border-bottom: 1px solid var(--border); border-bottom-color: var(--border) !important;
  }
  .nav-link.active, .nav-link:hover { color: var(--teal) !important; }
  .nav-cta-link {
    margin: 1rem 2rem; text-align: center; border-radius: var(--r-sm);
    background: var(--teal) !important; color: var(--white) !important;
    border-bottom: none !important;
  }
  .hero-content { margin-left: 0; padding: 8rem 1.5rem 4rem; }
  .stats-grid { flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
  .stat-divider { display: none; }
  .stat-item { flex: 0 0 40%; }
  .models-grid  { grid-template-columns: 1fr; }
  .steps-grid   { flex-direction: column; gap: 1rem; }
  .step-arrow   { transform: rotate(90deg); padding: .5rem 0; margin-top: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 1rem; }
  .blog-grid    { grid-template-columns: 1fr; gap: 2rem; }
  .photo-strip  { grid-template-columns: repeat(2, 1fr); height: 200px; }
  .testimonial-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .trustpilot-badge  { justify-content: center; }
  .footer-top   { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .4rem; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero h1 { font-size: 1.85rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); height: 160px; }
  .stat-item { flex: 0 0 100%; }
  /* Disable expensive GPU effects on mobile */
  .hero-bg {
    filter: brightness(.92);
    transform: none;
    transition: none;
  }
  .hero:hover .hero-bg { transform: none; }
  .photo-strip-item img { transition: none; }
}


/* Dropdown nav */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.dropdown-arrow { font-size: 0.75em; transition: transform 0.2s; }
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  min-width: 200px;
  padding: 8px 0;
  z-index: 1000;
  list-style: none;
  margin: 0;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
}
.dropdown-menu li a:hover { background: #f0f7ff; color: #2b7fc1; }

/* Breadcrumb */
.breadcrumb-bar {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: .75rem 0;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: .5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .78rem;
  color: var(--body);
}
.breadcrumb-list a { color: var(--teal); font-weight: 600; text-decoration: none; }
.breadcrumb-list a:hover { text-decoration: underline; }
.breadcrumb-list svg { color: var(--body); opacity: .4; flex-shrink: 0; }
.breadcrumb-list li:last-child { color: var(--dark); font-weight: 500; }
