/* ===================================================================
   Phone Store Leiderdorp
   Plat, echt-winkel-gevoel: één merkkleur + wit + donkergrijs.
   Geen gradients, geen glassmorphism, geen emoji-iconen.
   =================================================================== */

:root {
  --brand: #2563EB;
  --brand-dark: #1D4ED8;
  --ink: #111827;
  --grey: #6B7280;
  --grey-light: #9CA3AF;
  --line: #E5E7EB;
  --bg: #ffffff;
  --bg-alt: #F9FAFB;
  --green: #16A34A;
  --wa: #25D366;
  --wa-dark: #1EB958;
  --radius: 10px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(17,24,39,.05);
  --shadow: 0 1px 3px rgba(17,24,39,.08), 0 1px 2px rgba(17,24,39,.04);
  --shadow-md: 0 4px 14px rgba(17,24,39,.08);
  --container: 1160px;
  --font: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 130px; }
body { font-family: var(--font); color: var(--ink); background: var(--bg); line-height: 1.6; font-size: 16px; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--ink); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.text-blue, .logo__blue { color: var(--brand); }

.ic { width: 22px; height: 22px; flex: none; }
.ic--sm { width: 15px; height: 15px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; font-size: 15px; padding: 12px 22px; border-radius: 8px; border: 1.5px solid transparent; cursor: pointer; transition: background .15s ease, border-color .15s ease, color .15s ease; white-space: nowrap; }
.btn .ic { width: 18px; height: 18px; }
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-dark); }
.btn--outline { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { border-color: var(--brand); color: var(--brand); }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: var(--wa-dark); }
.btn--lg { padding: 15px 28px; font-size: 16px; }
.btn--sm { padding: 9px 16px; font-size: 14px; }
.btn--block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar { background: var(--ink); color: #c8cdd3; font-size: 13px; }
.topbar__inner { display: flex; align-items: center; gap: 12px; justify-content: center; height: 38px; }
.topbar__sep { opacity: .4; }
.topbar__phone { display: inline-flex; align-items: center; gap: 5px; font-weight: 600; color: #fff; margin-left: auto; }
.topbar__phone:hover { color: var(--brand); }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); }
.header.scrolled { box-shadow: 0 2px 10px rgba(0,0,0,.06); }
.header__inner { display: flex; align-items: center; gap: 20px; height: 78px; }

.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo__img { height: 54px; width: auto; }
.logo__fallback { display: none; align-items: center; gap: 10px; }
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__name { font-weight: 700; font-size: 21px; }
.logo__sub { font-weight: 600; font-size: 12.5px; letter-spacing: .4px; color: var(--grey); }

.nav { display: flex; align-items: center; gap: 4px; margin: 0 auto; }
.nav__item { position: relative; display: flex; align-items: center; }
.nav__link { display: inline-flex; align-items: center; gap: 3px; white-space: nowrap; font-weight: 500; font-size: 15px; color: var(--ink); padding: 10px 12px; border-radius: 6px; }
.nav__link:hover { color: var(--brand); }
.nav__link.is-active { color: var(--brand); }
.nav__caret { font-size: 9px; opacity: .6; }
.dropdown { position: absolute; top: 100%; left: 0; min-width: 230px; background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,.1); padding: 6px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: .15s ease; z-index: 60; }
.nav__item--has-children:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(2px); }
.dropdown__link { display: block; padding: 9px 12px; border-radius: 6px; font-size: 14.5px; color: var(--grey); }
.dropdown__link:hover, .dropdown__link.is-active { background: var(--bg-alt); color: var(--brand); }

.header__actions { display: flex; align-items: center; gap: 12px; }
.header__phone { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); }
.header__phone .ic { color: var(--brand); width: 26px; height: 26px; }
.header__phone span { display: flex; flex-direction: column; line-height: 1.15; }
.header__phone small { font-size: 11px; color: var(--grey); }
.header__phone b { font-size: 15px; white-space: nowrap; }
.iconbtn { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 8px; }
.iconbtn--wa { background: var(--wa); color: #fff; }
.iconbtn--wa:hover { background: var(--wa-dark); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.hamburger span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; transition: .25s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 640px; margin: 0 0 40px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow { display: inline-block; font-weight: 600; font-size: 13px; letter-spacing: .6px; text-transform: uppercase; color: var(--brand); margin-bottom: 10px; }
.section__title { font-size: clamp(1.6rem, 3.4vw, 2.2rem); }
.section__lead { color: var(--grey); font-size: 17px; margin-top: 12px; }

/* ---------- Hero ---------- */
.hero { background: #fff; border-bottom: 1px solid var(--line); }
.hero__inner { padding: 60px 24px 64px; max-width: 760px; }
.hero__kicker { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--brand); margin-bottom: 16px; }
.hero__kicker .ic { width: 17px; height: 17px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; }
.hero p { font-size: 18.5px; color: var(--grey); margin: 18px 0 26px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero__rating { display: inline-flex; align-items: center; gap: 8px; margin-top: 26px; font-size: 15px; color: var(--ink); }
.hero__rating .stars { color: #f5a623; display: inline-flex; }
.hero__rating .stars .ic { width: 18px; height: 18px; }
.hero__rating a { color: var(--brand); font-weight: 600; }
.hero__rating a:hover { text-decoration: underline; }

/* ---------- USP-balk ---------- */
.usp { background: var(--ink); }
.usp__grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.usp__item { display: flex; align-items: center; gap: 11px; padding: 20px 18px; border-right: 1px solid rgba(255,255,255,.08); }
.usp__item:last-child { border-right: 0; }
.usp__item .ic { color: var(--brand); width: 26px; height: 26px; }
.usp__item span { color: #fff; font-size: 14.5px; font-weight: 600; line-height: 1.3; }

/* ---------- Stappen ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; }
.step__num { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 700; font-size: 18px; margin-bottom: 16px; }
.step h3 { font-size: 18px; margin-bottom: 7px; }
.step p { color: var(--grey); font-size: 15px; }

/* ---------- Reparatie-categorieën ---------- */
.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; transition: border-color .15s ease, box-shadow .15s ease; }
.cat:hover { border-color: var(--brand); box-shadow: 0 6px 18px rgba(0,0,0,.06); }
.cat__icon { width: 48px; height: 48px; border-radius: 10px; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.cat__icon .ic { width: 26px; height: 26px; color: var(--brand); }
.cat h3 { font-size: 18px; margin-bottom: 6px; }
.cat p { color: var(--grey); font-size: 14.5px; margin-bottom: 14px; }
.cat__more { display: inline-flex; align-items: center; gap: 6px; color: var(--brand); font-weight: 600; font-size: 14.5px; }
.cat__more .ic { width: 16px; height: 16px; }

/* ---------- Wanneer nodig (symptomen) ---------- */
.symptoms { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.symptom { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 26px; }
.symptom__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.symptom__head .ic { width: 24px; height: 24px; color: var(--brand); }
.symptom__head h3 { font-size: 17px; }
.symptom ul { list-style: none; }
.symptom li { position: relative; padding-left: 24px; color: var(--grey); font-size: 15px; margin-bottom: 8px; }
.symptom li::before { content: ""; position: absolute; left: 3px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }

/* ---------- Prijstabel ---------- */
.pricing { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.pricing__head, .pricing__row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 12px; padding: 14px 22px; align-items: center; }
.pricing__head { background: var(--ink); color: #fff; font-weight: 600; font-size: 14.5px; }
.pricing__row { border-top: 1px solid var(--line); font-size: 15px; }
.pricing__row:nth-child(even) { background: var(--bg-alt); }
.pricing__model { font-weight: 600; }
.pricing__price { font-weight: 700; color: var(--brand); }
.pricing__head span:nth-child(n+2), .pricing__row span:nth-child(n+2) { text-align: right; }
.pricing__note { color: var(--grey-light); font-size: 13.5px; margin-top: 14px; }

/* ---------- Google reviews ---------- */
.greviews { display: flex; align-items: center; justify-content: space-between; gap: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 30px; flex-wrap: wrap; }
.greviews__score { display: flex; align-items: center; gap: 16px; }
.greviews__num { font-size: 42px; font-weight: 800; line-height: 1; }
.greviews__stars { color: #f5a623; display: flex; }
.greviews__stars .ic { width: 20px; height: 20px; }
.greviews__meta { color: var(--grey); font-size: 14.5px; margin-top: 4px; }
.greviews__meta b { color: var(--ink); }

/* ---------- Merken ---------- */
.brands { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 34px; }
.brands span { font-size: 20px; font-weight: 700; color: var(--grey-light); letter-spacing: -.3px; }

/* ---------- Checklist ---------- */
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.checklist li { list-style: none; display: flex; align-items: flex-start; gap: 10px; color: var(--grey); font-size: 15.5px; }
.checklist .ic { width: 20px; height: 20px; color: var(--brand); margin-top: 1px; }

/* ---------- Split (tekst + feiten) ---------- */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.factbox { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.factbox h3 { font-size: 17px; margin-bottom: 18px; }
.factrow { display: grid; grid-template-columns: 24px 1fr; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); align-items: start; }
.factrow:first-of-type { border-top: 0; }
.factrow .ic { color: var(--brand); margin-top: 2px; }
.factrow b { display: block; font-size: 15px; }
.factrow span { color: var(--grey); font-size: 14px; }

/* ---------- Stat-cijfers ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 20px; text-align: center; }
.stat strong { display: block; font-size: 30px; color: var(--brand); }
.stat span { color: var(--grey); font-size: 14px; }

/* ---------- Producten ---------- */
.shop { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.shop--two { grid-template-columns: repeat(2, 1fr); }
.shopcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 26px; }
.shopcard__icon { width: 46px; height: 46px; border-radius: 10px; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.shopcard__icon .ic { color: var(--brand); width: 24px; height: 24px; }
.shopcard h3 { font-size: 17px; margin-bottom: 6px; }
.shopcard p { color: var(--grey); font-size: 14.5px; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; }
.faq__item { border: 1px solid var(--line); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
.faq__q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 22px; cursor: pointer; font-weight: 600; font-size: 16px; }
.faq__q::after { content: "+"; font-size: 22px; color: var(--brand); }
.faq__item.open .faq__q::after { content: "−"; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease; padding: 0 22px; color: var(--grey); font-size: 15.5px; }
.faq__item.open .faq__a { max-height: 300px; padding: 0 22px 20px; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact__block { display: grid; grid-template-columns: 26px 1fr; gap: 12px; padding: 16px 0; border-top: 1px solid var(--line); }
.contact__block:first-child { border-top: 0; padding-top: 0; }
.contact__block .ic { color: var(--brand); margin-top: 2px; }
.contact__block h3 { font-size: 15px; margin-bottom: 3px; }
.contact__block p, .contact__block a { color: var(--grey); font-size: 15px; }
.contact__block a:hover { color: var(--brand); }
.hours { border-collapse: collapse; width: 100%; max-width: 300px; }
.hours td { padding: 3px 0; color: var(--grey); font-size: 15px; }
.hours td:last-child { text-align: right; color: var(--ink); font-weight: 500; }
.contact__cta { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }

.map-frame { width: 100%; height: 380px; border: 1px solid var(--line); border-radius: var(--radius); }

/* ---------- Formulier ---------- */
.form { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.field { margin-bottom: 16px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.field input, .field textarea { width: 100%; font-family: inherit; font-size: 15px; color: var(--ink); padding: 11px 13px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(28,143,201,.14); }
.field textarea { resize: vertical; }
.form__note { margin-top: 12px; color: #178a4c; font-weight: 600; font-size: 15px; }

/* ---------- Subpagina-hero ---------- */
.subhero { background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.subhero__inner { padding: 40px 24px 44px; max-width: 780px; }
.breadcrumb { font-size: 13.5px; color: var(--grey-light); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span { margin: 0 6px; opacity: .6; }
.subhero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; }
.subhero p { font-size: 17.5px; color: var(--grey); margin-top: 14px; }
.subhero__actions { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #9aa2ad; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding: 52px 24px 40px; }
.footer__brand .logo__name { color: #fff; }
.footer__brand p { margin: 16px 0 18px; font-size: 14.5px; max-width: 320px; }
.footer__contactbtns { display: flex; gap: 10px; flex-wrap: wrap; }
.footer__col h4 { color: #fff; font-size: 15px; margin-bottom: 14px; }
.footer__col a, .footer__col span { display: block; font-size: 14.5px; margin-bottom: 9px; color: #9aa2ad; }
.footer__col a:hover { color: #fff; }
.footer__hours { border-collapse: collapse; }
.footer__hours td { font-size: 14px; color: #9aa2ad; padding: 3px 0; }
.footer__hours td:last-child { padding-left: 16px; color: #cfd4da; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); }
.footer__bar-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding: 18px 24px; font-size: 13px; color: #6f7883; }

/* ---------- Sticky mobiele bel/WhatsApp-balk ---------- */
.mobilebar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: none; grid-template-columns: 1fr 1fr; }
.mobilebar__btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px; font-weight: 700; font-size: 15px; color: #fff; }
.mobilebar__btn .ic { width: 19px; height: 19px; }
.mobilebar__btn--call { background: var(--brand); }
.mobilebar__btn--wa { background: var(--wa); }

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 1320px) {
  .header__phone { display: none; }
}
@media (max-width: 1120px) {
  .nav { gap: 0; }
  .nav__link { padding: 10px 8px; font-size: 14.5px; }
}
@media (max-width: 980px) {
  .nav { position: fixed; inset: 116px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; margin: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 8px 0; transform: translateY(-140%); transition: transform .28s ease; box-shadow: 0 12px 24px rgba(0,0,0,.1); max-height: calc(100vh - 116px); overflow-y: auto; }
  .nav.open { transform: translateY(0); }
  .nav__item { flex-direction: column; align-items: stretch; }
  .nav__link { padding: 14px 24px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-left: 2px solid var(--bg-alt); border-radius: 0; margin: 0 24px 8px; padding: 0; max-height: 0; overflow: hidden; transition: max-height .25s ease; }
  .nav__item--has-children.open .dropdown { max-height: 300px; }
  .nav__item--has-children:hover .dropdown { transform: none; }
  .hamburger { display: flex; }
  .header__actions .btn--primary { display: none; }
  .cats { grid-template-columns: 1fr 1fr; }
  .usp__grid { grid-template-columns: 1fr; }
  .usp__item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .steps, .stats, .shop, .shop--two { grid-template-columns: 1fr; }
  .split, .contact { grid-template-columns: 1fr; gap: 30px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .mobilebar { display: grid; }
  body { padding-bottom: 54px; }
}
@media (max-width: 640px) {
  .topbar__item:not(.topbar__phone) { display: none; }
  .topbar__sep { display: none; }
  .topbar__inner { justify-content: flex-end; }
  .cats, .symptoms, .checklist, .field--row, .footer__inner { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .greviews { justify-content: center; text-align: center; }
  .pricing__head, .pricing__row { grid-template-columns: 1.6fr 1fr 1fr; padding-left: 14px; padding-right: 14px; font-size: 13.5px; }
}

/* ===================================================================
   REDESIGN — homepage (clean, betrouwbaar, conversiegericht)
   =================================================================== */

/* Subtiele fade-in (respecteert reduced-motion) */
[data-fade] { opacity: 0; transform: translateY(10px); transition: opacity .55s ease, transform .55s ease; }
[data-fade].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-fade] { opacity: 1; transform: none; transition: none; } }

/* Echte-foto-slot met nette terugval */
.photo { position: relative; background: #F3F4F6; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.photo > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo__ph { position: absolute; inset: 0; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--grey-light); text-align: center; padding: 20px; }
.photo__ph .ic { width: 32px; height: 32px; }
.photo__ph span { font-size: 13px; font-weight: 500; max-width: 220px; }
.photo.is-empty > img { display: none; }
.photo.is-empty .photo__ph { display: flex; }
.photo--hero { aspect-ratio: 4 / 3.3; }
.photo--wide { aspect-ratio: 16 / 10; }
.photo--repair { aspect-ratio: 4 / 3; border-radius: 0; border: 0; border-bottom: 1px solid var(--line); }

/* ---------- Hero (redesign) ---------- */
.hero { background: #fff; border-bottom: 1px solid var(--line); }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 68px 24px 72px; max-width: var(--container); }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--brand); background: #EFF4FF; border: 1px solid #DBE6FF; padding: 6px 12px; border-radius: 999px; margin-bottom: 20px; }
.hero__badge .ic { width: 15px; height: 15px; }
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.1rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }
.hero p { font-size: 18px; color: var(--grey); margin: 20px 0 30px; max-width: 520px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__meta { display: flex; align-items: center; gap: 8px; margin-top: 26px; font-size: 14.5px; color: var(--grey); }
.hero__meta .stars { color: #F59E0B; display: inline-flex; }
.hero__meta .stars .ic { width: 17px; height: 17px; }
.hero__meta b { color: var(--ink); }

/* ---------- Trust bar ---------- */
.trustbar { border-bottom: 1px solid var(--line); background: #fff; }
.trustbar__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0; }
.trustbar__item { display: flex; align-items: center; gap: 9px; padding: 18px 26px; font-size: 14.5px; font-weight: 600; color: var(--ink); border-right: 1px solid var(--line); }
.trustbar__item:last-child { border-right: 0; }
.trustbar__item .ic { width: 19px; height: 19px; color: var(--brand); }
.trustbar__item .stars { color: #F59E0B; display: inline-flex; }
.trustbar__item .stars .ic { width: 16px; height: 16px; color: #F59E0B; }
.trustbar__item small { color: var(--grey); font-weight: 500; }

/* ---------- Merk-selector ---------- */
.selector { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.selector__item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 22px 12px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); font-weight: 600; font-size: 15px; color: var(--ink); transition: border-color .15s ease, box-shadow .15s ease; }
.selector__item:hover { border-color: var(--brand); box-shadow: var(--shadow); }
.selector__item .ic { width: 26px; height: 26px; color: var(--ink); }

/* ---------- Populaire reparaties (fotokaarten) ---------- */
.repairs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.repaircard { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.repaircard__body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.repaircard h3 { font-size: 17px; margin-bottom: 4px; }
.repaircard__sub { font-size: 14px; color: var(--grey); margin-bottom: 14px; }
.repaircard__meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.repaircard__price { font-size: 15px; }
.repaircard__price b { font-size: 19px; font-weight: 800; }
.repaircard__price small { display: block; color: var(--grey); font-size: 12px; }
.repaircard__time { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--grey); background: var(--bg-alt); border: 1px solid var(--line); padding: 6px 10px; border-radius: 999px; }
.repaircard__time .ic { width: 15px; height: 15px; color: var(--brand); }
.repaircard .btn { margin-top: auto; }

/* ---------- Waarom wij (4 voordelen) ---------- */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.benefit { padding: 4px; }
.benefit__ic { width: 46px; height: 46px; border-radius: 10px; background: #EFF4FF; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.benefit__ic .ic { width: 24px; height: 24px; color: var(--brand); }
.benefit h3 { font-size: 16.5px; margin-bottom: 7px; }
.benefit p { color: var(--grey); font-size: 14.5px; }

/* ---------- Hoe het werkt ---------- */
.how { display: flex; align-items: stretch; justify-content: center; gap: 0; }
.how__step { flex: 1; max-width: 250px; text-align: center; padding: 0 14px; }
.how__num { width: 44px; height: 44px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 700; font-size: 17px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.how__step h3 { font-size: 16px; margin-bottom: 6px; }
.how__step p { color: var(--grey); font-size: 14px; }
.how__arrow { display: flex; align-items: flex-start; padding-top: 12px; color: var(--grey-light); }
.how__arrow .ic { width: 22px; height: 22px; }

/* ---------- Google-reviews ---------- */
.revhead { display: flex; align-items: center; gap: 14px; justify-content: center; margin-bottom: 40px; }
.revhead__g { font-size: 26px; font-weight: 700; letter-spacing: -.5px; }
.revhead__g .b { color: #4285F4; } .revhead__g .r { color: #EA4335; } .revhead__g .y { color: #FBBC05; } .revhead__g .g { color: #34A853; }
.revhead__score { font-weight: 700; }
.revhead__stars { color: #F59E0B; display: inline-flex; }
.revhead__stars .ic { width: 18px; height: 18px; }
.revcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.revcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.revcard__top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.revcard__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; overflow: hidden; }
.revcard__avatar img { width: 100%; height: 100%; object-fit: cover; }
.revcard__name { font-weight: 600; font-size: 15px; }
.revcard__date { font-size: 12.5px; color: var(--grey-light); }
.revcard__stars { color: #F59E0B; display: inline-flex; margin-bottom: 10px; }
.revcard__stars .ic { width: 16px; height: 16px; }
.revcard p { font-size: 14.5px; color: #374151; }
.revcard__g { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 12.5px; color: var(--grey); }
.revcard__g b { font-weight: 700; }

/* ---------- Workshop-galerij ---------- */
.gallery { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 232px 232px; gap: 16px; }
.gallery > .photo { min-height: 200px; height: 100%; }
.gallery > .photo:first-child { grid-row: 1 / 3; }
.gallery .cap { position: absolute; left: 0; bottom: 0; background: linear-gradient(transparent, rgba(17,24,39,.72)); color: #fff; font-size: 13px; font-weight: 600; padding: 22px 16px 12px; width: 100%; }

/* ---------- Locaties ---------- */
.loc { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.loc__list { display: grid; gap: 2px; }
.loc__row { display: grid; grid-template-columns: 26px 1fr; gap: 12px; padding: 16px 0; border-top: 1px solid var(--line); }
.loc__row:first-child { border-top: 0; padding-top: 0; }
.loc__row .ic { color: var(--brand); margin-top: 2px; }
.loc__row h3 { font-size: 15px; margin-bottom: 3px; }
.loc__row p, .loc__row a { color: var(--grey); font-size: 15px; }
.loc__row a:hover { color: var(--brand); }
.loc__cta { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }

/* ---------- Footer (versimpeld) ---------- */
.footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__socials { display: flex; gap: 10px; margin-top: 4px; }
.footer__socials a { width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; color: #cfd4da; }
.footer__socials a:hover { border-color: #fff; color: #fff; }
.footer__socials .ic { width: 18px; height: 18px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px 52px; }
  .hero p { max-width: none; }
  .selector { grid-template-columns: repeat(3, 1fr); }
  .repairs, .benefits, .revcards { grid-template-columns: 1fr 1fr; }
  .how { flex-direction: column; align-items: center; gap: 8px; }
  .how__step { max-width: 340px; }
  .how__arrow { transform: rotate(90deg); padding: 0; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery > .photo:first-child { grid-row: auto; }
  .loc { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .selector { grid-template-columns: repeat(2, 1fr); }
  .repairs, .benefits, .revcards { grid-template-columns: 1fr; }
  .trustbar__item { border-right: 0; padding: 12px 16px; }
}

/* Footer-logo iets kleiner */
.logo--footer .logo__img { height: 40px; }

/* ---------- Vestigingen (2 locaties) ---------- */
.locations { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.loccard { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.loccard__map { width: 100%; height: 220px; border: 0; display: block; border-bottom: 1px solid var(--line); }
.loccard__body { padding: 24px; }
.loccard__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.loccard__head h3 { font-size: 20px; }
.loccard__rating { display: inline-flex; align-items: center; gap: 5px; font-size: 13.5px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.loccard__rating .ic { width: 16px; height: 16px; color: #F59E0B; }
.loccard__rating small { color: var(--grey); font-weight: 500; }
.loccard .loc__row { padding: 12px 0; }
.loccard__cta { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
@media (max-width: 860px) { .locations { grid-template-columns: 1fr; } }

/* ===================================================================
   ANIMATIES (today2repair-stijl, in eigen branding)
   Subtiel: fade/rise, marquee, tellers. Geen bounce/parallax.
   =================================================================== */

/* Knoppen: zachte lift bij hover */
.btn { transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease, box-shadow .15s ease; }
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(37,99,235,.28); }
.btn--wa:hover { transform: translateY(-1px); }

/* Hero entrance (alleen bij eerste laden) */
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.hero__text > * { opacity: 0; animation: rise .55s cubic-bezier(.22,.61,.36,1) forwards; }
.hero__text > *:nth-child(1) { animation-delay: .05s; }
.hero__text > *:nth-child(2) { animation-delay: .14s; }
.hero__text > *:nth-child(3) { animation-delay: .23s; }
.hero__text > *:nth-child(4) { animation-delay: .32s; }
.hero__text > *:nth-child(5) { animation-delay: .41s; }
.hero__visual { opacity: 0; animation: fadein .7s ease .35s forwards; }

/* Doorlopende USP-marquee */
.marquee { background: var(--ink); overflow: hidden; padding: 15px 0; }
.marquee__track { display: flex; align-items: center; gap: 44px; width: max-content; animation: marquee 30s linear infinite; will-change: transform; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; font-size: 14.5px; white-space: nowrap; letter-spacing: .3px; text-transform: uppercase; }
.marquee__item .ic { width: 17px; height: 17px; color: #60A5FA; }
.marquee__sep { color: #60A5FA; font-size: 13px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Stagger: kinderen verschijnen één voor één */
[data-stagger] > * { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; transition-delay: calc(var(--i, 0) * 80ms); }
[data-stagger].in > * { opacity: 1; transform: none; }

/* Tellerband */
.statsband { background: var(--ink); padding: 58px 0; }
.statsband__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.statitem strong { display: block; font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -.5px; font-variant-numeric: tabular-nums; }
.statitem strong em { font-style: normal; color: #60A5FA; }
.statitem span { display: block; margin-top: 6px; color: #9aa2ad; font-size: 14.5px; font-weight: 500; }

/* Review-slider op mobiel (scroll-snap + autoplay) */
@media (max-width: 640px) {
  .revcards { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px; padding-bottom: 6px; -ms-overflow-style: none; scrollbar-width: none; }
  .revcards::-webkit-scrollbar { display: none; }
  .revcards .revcard { min-width: 86%; scroll-snap-align: center; }
}

/* Media-responsive marquee/stats */
@media (max-width: 860px) { .statsband__grid { grid-template-columns: 1fr 1fr; gap: 34px 16px; } }

/* Reduced motion: alles direct zichtbaar, geen beweging */
@media (prefers-reduced-motion: reduce) {
  .hero__text > *, .hero__visual { animation: none; opacity: 1; transform: none; }
  .marquee__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  [data-stagger] > * { opacity: 1; transform: none; transition: none; }
  .btn--primary:hover, .btn--wa:hover { transform: none; }
}

/* Galerij met 2 foto's + icoon in reparatiekaart */
.gallery--two { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
.gallery--two > .photo:first-child { grid-row: auto; }
.repaircard__body .cat__icon { margin-bottom: 14px; }

/* ===================================================================
   HERO 2.0 — today2repair-stijl in Phone Store-branding
   =================================================================== */

/* Zwevende header-kaart, alleen op de homepage */
body.home .topbar { display: none; }
body.home .header { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: calc(100% - 32px); max-width: 1240px; border-radius: 16px; box-shadow: 0 12px 32px rgba(10,20,40,.16); border: 0; }
body.home .header.scrolled { box-shadow: 0 12px 32px rgba(10,20,40,.16); }
body.home .header__inner { padding: 0 10px; }
body.home .header__actions .btn--primary { background: #EFF4FF; color: var(--brand); border-radius: 999px; }
body.home .header__actions .btn--primary:hover { background: #dfe9ff; transform: none; box-shadow: none; }
@media (max-width: 980px) { body.home .nav { top: 96px; inset: 96px 16px auto; border-radius: 12px; } }

/* Hero met echte winkelfoto + blauwe overlay */
.hero2 { position: relative; overflow: hidden; background: #0b1526; color: #fff; }
.hero2__bg { position: absolute; inset: 0; background: url("../assets/img/barendrecht-winkel.webp") center 40% / cover no-repeat; }
.hero2__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(8,16,30,.92) 0%, rgba(10,25,50,.78) 42%, rgba(37,99,235,.62) 100%); }
.hero2__inner { position: relative; z-index: 1; padding: 128px 24px 110px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 30px; align-items: center; }

.hero2__strip { position: absolute; top: 112px; left: 0; right: 0; z-index: 1; }
.hero2__strip-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 14.5px; font-weight: 600; color: #fff; }
.hero2__strip-inner .ic { width: 17px; height: 17px; }
.hero2__addr { display: inline-flex; align-items: center; gap: 8px; opacity: .95; }
.hero2__social { display: inline-flex; align-items: center; gap: 12px; }
.hero2__social a { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; border-radius: 8px; color: #fff; background: rgba(255,255,255,.12); transition: background .15s ease; }
.hero2__social a:hover { background: rgba(255,255,255,.24); }
.hero2__social .ic { width: 18px; height: 18px; }

.hero2__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(10,18,32,.55); border: 1px solid rgba(255,255,255,.18); color: #fff; font-size: 13.5px; font-weight: 600; padding: 8px 14px; border-radius: 8px; backdrop-filter: blur(4px); }
.hero2 h1 { font-size: clamp(2.1rem, 4.8vw, 3.4rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.12; color: #fff; margin: 22px 0 6px; }
.hero2__rotate { display: block; min-height: 1.2em; color: #fff; }
.hero2__caret { display: inline-block; width: 3px; height: .95em; background: #7fb0ff; margin-left: 4px; vertical-align: -0.12em; animation: caretblink 1s step-end infinite; }
@keyframes caretblink { 50% { opacity: 0; } }

/* Grote zoekbalk */
.hero2__search { position: relative; margin-top: 34px; max-width: 560px; }
.hero2__search-box { display: flex; align-items: center; background: #fff; border-radius: 999px; padding: 8px 8px 8px 28px; box-shadow: 0 14px 40px rgba(5,15,35,.35); }
.hero2__search-box input { flex: 1; border: 0; outline: none; font-family: inherit; font-size: 17px; color: var(--ink); background: transparent; min-width: 0; }
.hero2__search-box input::placeholder { color: #8a93a0; }
.hero2__search-btn { flex: none; width: 54px; height: 54px; border-radius: 50%; border: 0; background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .15s ease; }
.hero2__search-btn:hover { background: var(--brand-dark); }
.hero2__search-btn .ic { width: 22px; height: 22px; }
.hero2__sugg { position: absolute; top: calc(100% + 10px); left: 0; right: 0; background: #fff; border-radius: 14px; box-shadow: 0 18px 44px rgba(5,15,35,.3); overflow: hidden; display: none; z-index: 5; }
.hero2__sugg.open { display: block; }
.hero2__sugg a { display: flex; align-items: center; gap: 12px; padding: 13px 18px; color: var(--ink); font-weight: 600; font-size: 15px; border-top: 1px solid var(--line); }
.hero2__sugg a:first-child { border-top: 0; }
.hero2__sugg a:hover { background: var(--bg-alt); color: var(--brand); }
.hero2__sugg a small { color: var(--grey-light); font-weight: 500; margin-left: auto; }
.hero2__sugg .ic { width: 18px; height: 18px; color: var(--brand); }

/* Telefoon-mockups rechts */
.hero2__phones { position: relative; height: 560px; z-index: 1; }
.pm { position: absolute; background: #10151d; border: 3px solid #232a35; border-radius: 38px; padding: 10px; box-shadow: 0 30px 70px rgba(0,0,0,.45); }
.pm__screen { background: #fff; border-radius: 28px; overflow: hidden; height: 100%; display: flex; flex-direction: column; }
.pm__notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 96px; height: 20px; background: #10151d; border-radius: 0 0 12px 12px; z-index: 2; }
.pm--1 { width: 264px; height: 540px; left: 8%; top: 0; z-index: 2; }
.pm--2 { width: 240px; height: 470px; right: 0; top: 90px; transform: rotate(7deg); z-index: 3; }

.pm__body { padding: 34px 14px 14px; display: flex; flex-direction: column; gap: 10px; height: 100%; }
.pm__steps { display: flex; align-items: flex-start; justify-content: space-between; padding: 0 6px; }
.pm__step { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 8.5px; color: var(--grey); font-weight: 600; flex: 1; }
.pm__dot { width: 20px; height: 20px; border-radius: 50%; background: #e7ebf1; color: var(--grey); font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.pm__dot--on { background: var(--brand); color: #fff; }
.pm__dot--ok { background: var(--green); color: #fff; }
.pm__row { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 12px; font-weight: 700; color: var(--ink); }
.pm__back { width: 22px; height: 22px; border-radius: 6px; background: #EFF4FF; color: var(--brand); display: flex; align-items: center; justify-content: center; }
.pm__back .ic { width: 13px; height: 13px; transform: rotate(180deg); }
.pm__flag { width: 20px; height: 14px; border-radius: 2px; overflow: hidden; display: inline-block; background: linear-gradient(#ae1c28 33%, #fff 33% 66%, #21468b 66%); }
.pm__search { display: flex; align-items: center; gap: 6px; border: 1px solid var(--line); border-radius: 999px; padding: 7px 12px; font-size: 11px; color: #8a93a0; }
.pm__search .ic { width: 13px; height: 13px; }
.pm__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pm__tile { border: 1px solid var(--line); border-radius: 10px; padding: 10px 8px; text-align: center; }
.pm__phoneicon { width: 26px; height: 44px; border: 2.5px solid #2a3340; border-radius: 7px; margin: 0 auto 7px; position: relative; }
.pm__phoneicon::before { content: ""; position: absolute; top: 3px; left: 50%; transform: translateX(-50%); width: 10px; height: 3px; border-radius: 2px; background: #2a3340; }
.pm__tile b { display: block; font-size: 10.5px; color: var(--ink); }
.pm__tile small { font-size: 8.5px; color: var(--grey-light); }
.pm__logo { display: flex; justify-content: center; padding-top: 2px; }
.pm__logo img { height: 26px; width: auto; }
.pm__thanks { text-align: center; font-size: 13.5px; font-weight: 800; color: var(--ink); line-height: 1.3; }
.pm__thanks small { display: block; font-weight: 500; font-size: 10px; color: var(--green); margin-top: 3px; }
.pm__date { text-align: center; font-size: 10.5px; color: var(--grey); }
.pm__date b { color: var(--ink); }
.pm__card { background: #EFF4FF; border-radius: 10px; padding: 10px; text-align: center; font-size: 10px; color: var(--grey); }
.pm__card b { display: block; font-size: 11px; color: var(--ink); margin-bottom: 2px; }
.pm__mapsbtn { display: inline-block; margin-top: 7px; background: var(--brand); color: #fff; font-size: 9.5px; font-weight: 700; padding: 5px 10px; border-radius: 6px; }
.pm__cal { display: flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 10px; padding: 8px 10px; font-size: 10px; font-weight: 600; color: var(--ink); }
.pm__cal .ic { width: 14px; height: 14px; color: var(--brand); }

/* Golf onderaan de hero */
.hero2__wave { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 1; display: block; width: 100%; height: 70px; }

/* Entrance */
.hero2__content > * { opacity: 0; animation: rise .55s cubic-bezier(.22,.61,.36,1) forwards; }
.hero2__content > *:nth-child(1) { animation-delay: .08s; }
.hero2__content > *:nth-child(2) { animation-delay: .18s; }
.hero2__content > *:nth-child(3) { animation-delay: .28s; }
.hero2__phones { opacity: 0; animation: fadein .8s ease .4s forwards; }

/* Responsive */
@media (max-width: 1140px) { .pm--1 { left: 0; } .pm--2 { right: -10px; } }
@media (max-width: 980px) {
  .hero2__inner { grid-template-columns: 1fr; padding: 118px 24px 84px; }
  .hero2__phones { display: none; }
  .hero2__strip { top: 102px; }
  .hero2__social { display: none; }
  .hero2__strip-inner { font-size: 13px; }
}
@media (max-width: 640px) {
  .hero2__inner { padding: 128px 20px 72px; }
  .hero2__search-box { padding-left: 18px; }
  .hero2__search-box input { font-size: 15px; }
  .hero2__search-btn { width: 46px; height: 46px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero2__content > *, .hero2__phones { animation: none; opacity: 1; }
  .hero2__caret { animation: none; }
}

/* ===================================================================
   V3 — iPhone 17 Pro, categorie-tabs, timeline, verhaal, carrousel
   =================================================================== */

/* ---------- 3D iPhone 17 Pro in de hero ---------- */
.ip17 { position: relative; height: 580px; display: flex; align-items: center; justify-content: center; perspective: 1500px; }
.ip17__float { animation: ipfloat 6.5s ease-in-out infinite; will-change: transform; }
@keyframes ipfloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.ip17__device {
  position: relative; width: 272px; height: 556px; border-radius: 58px;
  transform: rotateY(-14deg) rotateX(4deg); transform-style: preserve-3d;
  transition: transform .25s ease-out; will-change: transform;
  background: linear-gradient(145deg, #4a5058, #15181d 55%, #2a2f36);
  box-shadow: inset 0 0 0 2px #6a7280, inset 0 0 0 7px #07090c, 0 50px 90px rgba(2,8,20,.55);
}
.ip17__screen { position: absolute; inset: 11px; border-radius: 48px; overflow: hidden; background: radial-gradient(120% 90% at 20% 0%, #3b74f2 0%, #1d4ed8 38%, #0d2a6e 72%, #081638 100%); }
.ip17__screen::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 32%, rgba(255,255,255,.16) 46%, transparent 58%); transform: translateX(-120%); animation: ipshine 5.5s ease-in-out infinite; }
@keyframes ipshine { 0%, 55% { transform: translateX(-120%); } 80%, 100% { transform: translateX(120%); } }
.ip17__island { position: absolute; top: 15px; left: 50%; transform: translateX(-50%); width: 94px; height: 27px; background: #000; border-radius: 999px; z-index: 3; box-shadow: 0 0 0 2px rgba(255,255,255,.04); }
.ip17__btn { position: absolute; background: #3a4048; border-radius: 3px; }
.ip17__btn--power { right: -3px; top: 168px; width: 4px; height: 74px; }
.ip17__btn--volup { left: -3px; top: 140px; width: 4px; height: 44px; }
.ip17__btn--voldn { left: -3px; top: 194px; width: 4px; height: 44px; }
.ip17__btn--action { left: -3px; top: 96px; width: 4px; height: 26px; }
.ip17__time { position: absolute; top: 74px; left: 0; right: 0; text-align: center; color: #fff; font-size: 58px; font-weight: 700; letter-spacing: -1px; line-height: 1; }
.ip17__date { position: absolute; top: 52px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.85); font-size: 13px; font-weight: 500; }
.ip17__notifs { position: absolute; left: 12px; right: 12px; top: 170px; display: flex; flex-direction: column; gap: 10px; }
.ip17__notif { display: flex; gap: 10px; align-items: flex-start; background: rgba(255,255,255,.86); backdrop-filter: blur(10px); border-radius: 16px; padding: 11px 13px; opacity: 0; transform: translateY(-14px) scale(.97); animation: notifin .55s cubic-bezier(.22,.61,.36,1) forwards; }
.ip17__notif:nth-child(1) { animation-delay: 1.1s; }
.ip17__notif:nth-child(2) { animation-delay: 1.9s; }
@keyframes notifin { to { opacity: 1; transform: none; } }
.ip17__notif-ic { flex: none; width: 30px; height: 30px; border-radius: 8px; background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; }
.ip17__notif-ic .ic { width: 16px; height: 16px; }
.ip17__notif b { display: block; font-size: 11.5px; color: var(--ink); line-height: 1.3; }
.ip17__notif span { font-size: 10.5px; color: #4b5563; line-height: 1.35; display: block; }
.ip17__notif small { font-size: 9px; color: var(--grey-light); margin-left: auto; flex: none; }
.ip17__shadow { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); width: 300px; height: 36px; background: radial-gradient(50% 50% at 50% 50%, rgba(0,0,0,.4), transparent 70%); animation: ipshadow 6.5s ease-in-out infinite; }
@keyframes ipshadow { 0%,100% { transform: translateX(-50%) scale(1); opacity: .8; } 50% { transform: translateX(-50%) scale(.86); opacity: .55; } }

/* ---------- Welk model heb je? (categorie-tabs) ---------- */
.devtabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.devtab { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; font-family: inherit; font-size: 15px; font-weight: 600; color: var(--ink); cursor: pointer; transition: all .18s ease; }
.devtab .ic { width: 19px; height: 19px; }
.devtab:hover { border-color: var(--brand); color: var(--brand); }
.devtab.is-active { background: var(--brand); border-color: var(--brand); color: #fff; }
.devpanel { display: none; }
.devpanel.is-active { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; animation: fadein .35s ease; }
.brandcard { display: flex; flex-direction: column; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 16px 20px; text-align: center; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.brandcard:hover { border-color: var(--brand); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.brandcard .ic { width: 30px; height: 30px; color: var(--brand); margin-bottom: 6px; }
.brandcard b { font-size: 16px; color: var(--ink); }
.brandcard small { font-size: 12.5px; color: var(--grey-light); }
.brandcard span.go { margin-top: 8px; font-size: 13.5px; font-weight: 600; color: var(--brand); display: inline-flex; align-items: center; gap: 5px; }
.brandcard span.go .ic { width: 14px; height: 14px; margin: 0; }

/* ---------- Timeline (3 stappen) ---------- */
.timeline { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.timeline::before { content: ""; position: absolute; top: 26px; left: 12%; right: 12%; height: 3px; background: var(--line); border-radius: 2px; }
.timeline::after { content: ""; position: absolute; top: 26px; left: 12%; height: 3px; width: 0; background: var(--brand); border-radius: 2px; transition: width 1.4s cubic-bezier(.22,.61,.36,1) .3s; }
.timeline.in::after { width: 76%; }
.tl__step { text-align: center; position: relative; }
.tl__dot { position: relative; z-index: 1; width: 54px; height: 54px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 800; font-size: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 0 0 7px #fff, 0 8px 18px rgba(37,99,235,.35); }
.tl__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 22px; box-shadow: var(--shadow-sm); }
.tl__card .ic { width: 26px; height: 26px; color: var(--brand); margin: 0 auto 12px; }
.tl__card h3 { font-size: 17.5px; margin-bottom: 7px; }
.tl__card p { color: var(--grey); font-size: 14.5px; }

/* ---------- Over ons-verhaal + fotocollage ---------- */
.story { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.story p { color: var(--grey); font-size: 16px; margin-bottom: 16px; }
.story__photos { position: relative; }
.story__photos img { width: 100%; aspect-ratio: 16/11; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.story__badge { position: absolute; right: 16px; bottom: 16px; background: var(--brand); color: #fff; border-radius: 14px; padding: 14px 20px; text-align: center; box-shadow: 0 12px 28px rgba(37,99,235,.4); }
.story__badge strong { display: block; font-size: 26px; font-weight: 800; line-height: 1.1; }
.story__badge span { font-size: 12.5px; opacity: .9; }

/* ---------- Review-carrousel (doorlopend) ---------- */
.revslider { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.revslider__track { display: flex; gap: 20px; width: max-content; animation: revscroll 52s linear infinite; will-change: transform; }
.revslider:hover .revslider__track { animation-play-state: paused; }
.revslider__track.no-anim { animation: none; }
.revslider .revcard { width: 350px; flex: none; }
@keyframes revscroll { to { transform: translateX(-50%); } }

/* ---------- CTA-band ---------- */
.ctaband { background: var(--brand); border-radius: 22px; padding: 54px 48px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; box-shadow: 0 22px 48px rgba(37,99,235,.35); }
.ctaband h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.ctaband p { color: rgba(255,255,255,.88); margin-top: 8px; font-size: 16px; }
.ctaband__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.ctaband .btn--primary { background: #fff; color: var(--brand); }
.ctaband .btn--primary:hover { background: #eef3ff; transform: translateY(-1px); box-shadow: none; }
.ctaband .btn--outline { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.ctaband .btn--outline:hover { border-color: #fff; color: #fff; }

/* ---------- Vestigingen polish ---------- */
.loccard { transition: box-shadow .2s ease, transform .2s ease; }
.loccard:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.loccard__rating { background: #FFF7E6; border: 1px solid #FDE9C3; padding: 5px 11px; border-radius: 999px; }

/* ---------- Responsive V3 ---------- */
@media (max-width: 980px) {
  .ip17 { display: none; }
  .devpanel.is-active { grid-template-columns: repeat(3, 1fr); }
  .timeline { grid-template-columns: 1fr; gap: 18px; }
  .timeline::before, .timeline::after { display: none; }
  .tl__step { display: grid; grid-template-columns: 54px 1fr; gap: 16px; text-align: left; align-items: start; }
  .tl__dot { margin: 0; }
  .tl__card .ic { margin: 0 0 10px; }
  .story { grid-template-columns: 1fr; gap: 40px; }
  .ctaband { padding: 40px 28px; }
}
@media (max-width: 640px) {
  .devpanel.is-active { grid-template-columns: 1fr 1fr; }
  .revslider .revcard { width: 300px; }
  .story__photos img:last-child { left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .ip17__float, .ip17__shadow, .ip17__screen::after { animation: none; }
  .ip17__notif { animation: none; opacity: 1; transform: none; }
  .revslider__track { animation: none; }
  .revslider { -webkit-mask-image: none; mask-image: none; overflow-x: auto; }
  .timeline::after { transition: none; }
}

/* ===================================================================
   Multi-step afspraakformulier (wizard)
   =================================================================== */
.msf { max-width: 780px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-md); overflow: hidden; }
.msf__head { padding: 30px 34px 26px; border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.msf__steps { display: flex; align-items: center; }
.msf__step { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: none; width: 92px; text-align: center; }
.msf__dot { width: 40px; height: 40px; border-radius: 50%; background: #e5e9f0; color: var(--grey); font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; transition: all .25s ease; }
.msf__step span { font-size: 12.5px; font-weight: 600; color: var(--grey); }
.msf__step.is-active .msf__dot { background: var(--brand); color: #fff; box-shadow: 0 6px 16px rgba(37,99,235,.35); }
.msf__step.is-active span { color: var(--ink); }
.msf__step.is-done .msf__dot { background: var(--green); color: #fff; }
.msf__line { flex: 1; height: 3px; background: #e5e9f0; border-radius: 2px; margin: 0 6px 26px; position: relative; overflow: hidden; }
.msf__line::after { content: ""; position: absolute; inset: 0; background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.msf__line.is-done::after { transform: scaleX(1); }

.msf__body { padding: 32px 34px 34px; }
.msf__panel { display: none; }
.msf__panel.is-active { display: block; animation: fadein .3s ease; }
.msf__title { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.msf__sub { color: var(--grey); font-size: 14.5px; margin-bottom: 22px; }

.msf__cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-bottom: 22px; }
.msf__cards--repair { grid-template-columns: repeat(4, 1fr); }
.msf__card { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 18px 10px 14px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; font-family: inherit; font-size: 13.5px; font-weight: 600; color: var(--ink); transition: all .16s ease; }
.msf__card .ic { width: 24px; height: 24px; color: var(--grey); transition: color .16s ease; }
.msf__card:hover { border-color: var(--brand); }
.msf__card.is-selected { border-color: var(--brand); background: #EFF4FF; color: var(--brand); box-shadow: 0 4px 14px rgba(37,99,235,.15); }
.msf__card.is-selected .ic { color: var(--brand); }

.msf__nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 26px; }
.msf__nav .btn--ghostback { background: none; border: 0; color: var(--grey); font-family: inherit; font-size: 14.5px; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; padding: 10px 0; }
.msf__nav .btn--ghostback .ic { width: 16px; height: 16px; transform: rotate(180deg); }
.msf__nav .btn--ghostback:hover { color: var(--ink); }
.msf__err { color: #DC2626; font-size: 13.5px; font-weight: 600; margin-top: 10px; display: none; }
.msf__err.show { display: block; }

.msf__summary { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.msf__chip { display: inline-flex; align-items: center; gap: 6px; background: #EFF4FF; color: var(--brand); font-size: 13px; font-weight: 600; padding: 7px 13px; border-radius: 999px; }
.msf__chip .ic { width: 14px; height: 14px; }

.msf__success { text-align: center; padding: 26px 10px 10px; }
.msf__success-ic { width: 68px; height: 68px; border-radius: 50%; background: #E8F7EE; color: var(--green); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; animation: popin .4s cubic-bezier(.22,.61,.36,1); }
.msf__success-ic .ic { width: 34px; height: 34px; }
@keyframes popin { from { transform: scale(.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.msf__success h3 { font-size: 21px; margin-bottom: 8px; }
.msf__success p { color: var(--grey); font-size: 15px; max-width: 420px; margin: 0 auto 20px; }

@media (max-width: 720px) {
  .msf__head, .msf__body { padding-left: 20px; padding-right: 20px; }
  .msf__cards, .msf__cards--repair { grid-template-columns: repeat(2, 1fr); }
  .msf__step { width: 72px; }
  .msf__step span { font-size: 11px; }
}

/* ===================================================================
   iPhone 17 Pro v2 — levende lockscreen
   =================================================================== */
.ip17__screen { background: linear-gradient(200deg, #4f83ff, #1d4ed8 35%, #0d2a6e 72%, #081638); background-size: 170% 170%; animation: ipwall 16s ease-in-out infinite alternate; }
@keyframes ipwall { from { background-position: 0% 0%; } to { background-position: 100% 100%; } }

.ip17__status { position: absolute; top: 17px; left: 24px; right: 24px; display: flex; justify-content: space-between; align-items: center; z-index: 2; }
.ip17__sig { display: inline-flex; align-items: flex-end; gap: 2px; }
.ip17__sig i { display: block; width: 3px; background: #fff; border-radius: 1px; }
.ip17__sig i:nth-child(1) { height: 4px; } .ip17__sig i:nth-child(2) { height: 6px; }
.ip17__sig i:nth-child(3) { height: 8px; } .ip17__sig i:nth-child(4) { height: 10px; }
.ip17__bat { width: 23px; height: 11px; border: 1.5px solid rgba(255,255,255,.7); border-radius: 3.5px; position: relative; }
.ip17__bat::before { content: ""; position: absolute; inset: 1.5px; right: 5px; background: #fff; border-radius: 1.5px; }
.ip17__bat::after { content: ""; position: absolute; right: -4px; top: 2.5px; width: 2px; height: 4px; background: rgba(255,255,255,.7); border-radius: 1px; }

.ip17__quick { position: absolute; bottom: 24px; left: 0; right: 0; display: flex; justify-content: space-between; padding: 0 28px; z-index: 2; }
.ip17__quick span { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.16); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; color: #fff; }
.ip17__quick .ic { width: 19px; height: 19px; }
.ip17__homebar { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); width: 96px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.85); z-index: 2; }
.ip17__notif--stars { color: #F59E0B; letter-spacing: 1px; font-size: 10px; }

/* Hero trust-vinkjes + open-status chips */
.hero2__checks { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 20px; }
.hero2__checks span { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.92); font-size: 14px; font-weight: 600; }
.hero2__checks .ic { width: 17px; height: 17px; color: #6EE7A0; }
.openchip { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; padding: 5px 11px; border-radius: 999px; margin-top: 2px; }
.openchip--open { background: #E8F7EE; color: #15803D; border: 1px solid #BBE7CC; }
.openchip--open::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #22C55E; animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .35; } }
.openchip--closed { background: #FEF2F2; color: #B91C1C; border: 1px solid #FBD5D5; }
@media (prefers-reduced-motion: reduce) { .openchip--open::before { animation: none; } }

/* ===================================================================
   iPhone 17 Pro v3 — realistisch, donkerblauw aluminium
   =================================================================== */
.ip17__device {
  width: 282px; height: 584px; border-radius: 64px;
  background: linear-gradient(150deg, #2e4a78 0%, #17284a 45%, #0e1c38 75%, #223c68 100%);
  box-shadow: inset 0 0 0 4px #0a1526, inset 0 0 0 10px #04080f,
              0 65px 110px rgba(2, 8, 22, .6), 0 24px 44px rgba(2, 8, 22, .45);
}
/* metalen rail met lichtvangers */
.ip17__device::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 3px;
  background: linear-gradient(160deg, #8aa6d4 0%, #33507f 18%, #131f3a 42%, #7c98c8 68%, #1b2f55 88%, #4a679a 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
.ip17__screen { inset: 14px; border-radius: 51px; box-shadow: 0 0 0 5px #000, 0 0 0 6px #0a1526; }
.ip17__island { top: 16px; width: 100px; height: 28px; box-shadow: inset 0 0 3px rgba(255,255,255,.06); }
.ip17__btn { background: linear-gradient(90deg, #55719f, #24365c); border-radius: 3px; }
.ip17__btn--power { height: 84px; top: 176px; }
.ip17__btn--cam { position: absolute; right: -3px; top: 300px; width: 4px; height: 42px; background: linear-gradient(90deg, #55719f, #24365c); border-radius: 3px; }
/* wallpaper: diepblauw, rustig bewegend */
.ip17__screen {
  background:
    radial-gradient(95% 60% at 82% 6%, rgba(96,149,255,.5), transparent 60%),
    radial-gradient(130% 85% at 12% 96%, rgba(10,47,143,.9), transparent 70%),
    linear-gradient(205deg, #3568e8 0%, #1c3fae 40%, #0c1f5e 75%, #060f30 100%);
  background-size: 150% 150%;
}
.ip17__time { font-size: 62px; top: 76px; text-shadow: 0 2px 18px rgba(0,0,0,.25); }
.ip17__date { top: 54px; }
.ip17__notifs { top: 178px; }

/* Merk-logo's op de kaarten */
.brandcard__logo { height: 34px; width: auto; max-width: 92px; object-fit: contain; margin-bottom: 8px; }
.brandcard .ic { width: 30px; height: 30px; color: var(--ink); margin-bottom: 8px; }

/* Inline wizard in de modelsectie */
.hwiz { margin-top: 4px; }
.hwiz__back { display: inline-flex; align-items: center; gap: 7px; background: none; border: 0; font-family: inherit; font-size: 14px; font-weight: 600; color: var(--grey); cursor: pointer; margin-bottom: 16px; padding: 0; }
.hwiz__back .ic { width: 16px; height: 16px; transform: rotate(180deg); }
.hwiz__back:hover { color: var(--ink); }
.hwiz__stores { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 6px; }
.hwiz__store { display: flex; gap: 10px; align-items: flex-start; background: var(--bg-alt); border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; text-align: left; }
.hwiz__store .ic { width: 18px; height: 18px; color: var(--brand); margin-top: 2px; }
.hwiz__store b { display: block; font-size: 14.5px; }
.hwiz__store div span { display: block; font-size: 13px; color: var(--grey); }

/* ===================================================================
   MOBILE HARDENING — laatste laag, wint van alles hierboven
   =================================================================== */
html, body { overflow-x: clip; }
img, svg, iframe { max-width: 100%; }

@media (max-width: 980px) {
  /* Hero: strip in de flow i.p.v. zwevend, geen overlap meer */
  .hero2__strip { position: static; padding: 112px 20px 0; }
  .hero2__strip-inner { justify-content: center; text-align: center; font-size: 13px; }
  .hero2__addr { flex-wrap: wrap; justify-content: center; row-gap: 2px; }
  .hero2__inner { grid-template-columns: 1fr; gap: 0; padding: 20px 20px 88px; }
  .hero2 h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .hero2__search { max-width: 100%; }
  .hero2__checks { gap: 12px 18px; }
  .ip17 { display: none; }

  /* Revhead + ctaband netjes centreren */
  .revhead { flex-wrap: wrap; text-align: center; }
  .ctaband { flex-direction: column; text-align: center; }
  .ctaband__btns { justify-content: center; }

  /* Grids stapelen */
  .benefits { grid-template-columns: 1fr 1fr; }
  .devpanel.is-active { grid-template-columns: repeat(2, 1fr); }
  .locations { grid-template-columns: 1fr; }
  .story { grid-template-columns: 1fr; gap: 36px; }
  .timeline { grid-template-columns: 1fr; }
  .msf__nav { flex-wrap: wrap; }
}

@media (max-width: 640px) {
  body.home .header { top: 10px; width: calc(100% - 20px); }
  body.home .nav { inset: 88px 10px auto; }
  .hero2__strip { padding-top: 100px; }
  .hero2__strip-inner { font-size: 12px; }
  .hero2__search-box { padding: 6px 6px 6px 18px; }
  .hero2__search-box input { font-size: 15px; }
  .hero2__search-btn { width: 46px; height: 46px; }
  .hero2__checks span { font-size: 12.5px; }
  .hero2__badge { font-size: 12px; }
  .marquee__item { font-size: 12.5px; }
  .marquee__track { gap: 30px; }

  .benefits { grid-template-columns: 1fr; }
  .devtabs { gap: 8px; }
  .devtab { padding: 10px 14px; font-size: 13.5px; }
  .devtab .ic { width: 16px; height: 16px; }
  .devpanel.is-active { grid-template-columns: 1fr 1fr; gap: 10px; }
  .brandcard { padding: 18px 10px 14px; }
  .brandcard b { font-size: 14px; }
  .brandcard small { font-size: 11.5px; }
  .brandcard__logo { height: 26px; max-width: 72px; }
  .brandcard span.go { font-size: 12px; }

  .section { padding: 52px 0; }
  .section__title { font-size: 1.5rem; }
  .revslider .revcard { width: 290px; }
  .revhead__g { font-size: 22px; }
  .hwiz__stores { flex-direction: column; align-items: stretch; }
  .msf__cards, .msf__cards--repair { grid-template-columns: 1fr 1fr; gap: 9px; }
  .msf__card { padding: 14px 8px 12px; font-size: 12.5px; }
  .msf__head { padding: 22px 16px 20px; }
  .msf__body { padding: 24px 16px 26px; }
  .msf__step { width: 68px; }
  .msf__step span { font-size: 10.5px; }
  .msf__dot { width: 34px; height: 34px; font-size: 13.5px; }
  .loccard__cta .btn { flex: 1; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 26px; padding: 40px 20px 30px; }
  .footer__brand { grid-column: 1 / -1; }
  .story__badge { padding: 10px 14px; }
  .story__badge strong { font-size: 20px; }
}

@media (max-width: 400px) {
  .devpanel.is-active, .msf__cards, .msf__cards--repair { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}

/* Reduced motion: ook voor de later toegevoegde animaties */
@media (prefers-reduced-motion: reduce) {
  .ip17__screen, .ip17__float, .ip17__shadow { animation: none; }
  .ip17__screen::after { animation: none; }
  .openchip--open::before { animation: none; }
  .revslider__track { animation: none; }
}

/* Modelkeuze-grid in de wizard */
.hwiz__models { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; max-height: 320px; overflow-y: auto; padding: 2px; margin-bottom: 16px; scrollbar-width: thin; }
.hwiz__model { border: 1.5px solid var(--line); background: #fff; border-radius: 9px; padding: 11px 8px; font-family: inherit; font-size: 13px; font-weight: 600; color: var(--ink); cursor: pointer; transition: all .15s ease; text-align: center; }
.hwiz__model:hover { border-color: var(--brand); color: var(--brand); background: #EFF4FF; }
.hwiz__othermodel { display: flex; gap: 10px; align-items: stretch; }
.hwiz__othermodel input { flex: 1; font-family: inherit; font-size: 15px; color: var(--ink); padding: 11px 13px; border: 1px solid var(--line); border-radius: 8px; background: #fff; min-width: 0; }
.hwiz__othermodel input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(37,99,235,.14); }
@media (max-width: 720px) { .hwiz__models { grid-template-columns: repeat(2, 1fr); max-height: 280px; } }
@media (max-width: 400px) { .hwiz__othermodel { flex-direction: column; } }

/* ===================================================================
   RESPONSIVE FINAL — site-brede eindpass
   =================================================================== */
html, body { overflow-x: hidden; overflow-x: clip; }

/* Mobiele belbalk: veilige zone op iPhones (home-indicator) */
.mobilebar { background: linear-gradient(90deg, var(--brand) 50%, var(--wa) 50%); padding-bottom: env(safe-area-inset-bottom); }
@media (max-width: 860px) { body { padding-bottom: calc(54px + env(safe-area-inset-bottom)); } }

@media (max-width: 980px) {
  /* Home-header blijft in beeld tijdens scrollen (menu altijd bereikbaar) */
  body.home .header { position: fixed; top: 10px; left: 50%; transform: translateX(-50%); width: calc(100% - 20px); }
  .greviews { justify-content: center; text-align: center; }
  .subhero__inner { padding: 32px 20px 38px; }
  .section__head { margin-bottom: 30px; }
  .hero2__strip { padding-top: 116px; }
}

@media (max-width: 640px) {
  .subhero h1 { font-size: 1.65rem; }
  .subhero p { font-size: 15.5px; }
  .subhero__actions .btn { flex: 1; justify-content: center; }
  .pricing__model { font-size: 12.5px; }
  .btn--lg { padding: 13px 22px; font-size: 15px; }
  .msf__title { font-size: 18px; }
  .faq__q { font-size: 15px; padding: 15px 18px; }
  .faq__a { font-size: 14.5px; padding: 0 18px; }
  .faq__item.open .faq__a { padding: 0 18px 18px; }
  .loc__row { grid-template-columns: 22px 1fr; }
  .tl__card { padding: 20px 16px; }
  .story p { font-size: 15px; }
  .ctaband h2 { font-size: 1.35rem; }
  .ctaband p { font-size: 14.5px; }
  .ctaband__btns { width: 100%; }
  .ctaband__btns .btn { flex: 1; }
  .hwiz__back { font-size: 13px; }
  .hero2__sugg a { padding: 12px 14px; font-size: 14px; }
  .hero2__strip { padding-top: 104px; }
  .revhead { gap: 10px; }
  .greviews__num { font-size: 34px; }
  .contact__cta .btn, .loccard__cta .btn { justify-content: center; }
  .checklist li { font-size: 14.5px; }
}

/* ===================================================================
   iPhone 17 Pro — duo-compositie (achterkant + voorkant)
   =================================================================== */
.ip17 { justify-content: flex-end; padding-right: 4px; }
.ip17__float { position: relative; z-index: 2; }

.ip17b {
  position: absolute; left: -6px; top: 44px; z-index: 3;
  width: 252px; height: 520px; border-radius: 56px;
  transform: rotate(-7deg);
  background: linear-gradient(160deg, #24395f 0%, #101d3a 55%, #182b4e 100%);
  box-shadow: inset 0 0 0 2px #45608f, inset 0 0 0 5px #060c18,
              0 50px 90px rgba(2, 8, 22, .55), 0 18px 36px rgba(2, 8, 22, .4);
  animation: ipfloat 7s ease-in-out .6s infinite;
}
.ip17b__glass { position: absolute; inset: 7px; border-radius: 50px;
  background: linear-gradient(165deg, #1c3055 0%, #12213f 60%, #17294a 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06); }

/* Camerablok met 3 lenzen */
.ip17b__cam { position: absolute; top: 16px; left: 16px; width: 122px; height: 122px; border-radius: 34px;
  background: linear-gradient(145deg, #263c64 0%, #0e1a36 70%);
  box-shadow: inset 0 1px 2px rgba(255,255,255,.1), inset 0 -2px 6px rgba(0,0,0,.5), 0 4px 12px rgba(0,0,0,.45); }
.ip17b__lens { position: absolute; width: 46px; height: 46px; border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #6d84b8 0%, #1a2748 32%, #05070f 65%);
  box-shadow: 0 0 0 3px #31497a, 0 0 0 7px #101d3a, inset 0 0 8px #000; }
.ip17b__lens::after { content: ""; position: absolute; inset: 26%; border-radius: 50%;
  background: radial-gradient(circle at 40% 32%, rgba(140,170,255,.95) 0%, rgba(70,50,140,.65) 35%, #000 72%);
  box-shadow: 0 0 4px rgba(120,160,255,.35); }
.ip17b__lens--1 { top: 10px; left: 10px; }
.ip17b__lens--2 { top: 38px; right: 8px; }
.ip17b__lens--3 { bottom: 10px; left: 10px; }
.ip17b__flash { position: absolute; top: 14px; right: 16px; width: 15px; height: 15px; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #fffbe8 0%, #d9d4b8 45%, #7a7660 100%);
  box-shadow: inset 0 0 3px rgba(0,0,0,.35); }
.ip17b__lidar { position: absolute; bottom: 16px; right: 15px; width: 16px; height: 16px; border-radius: 50%;
  background: radial-gradient(circle at 42% 38%, #2b2b33 0%, #08080c 70%);
  box-shadow: inset 0 0 2px #000, 0 0 0 1.5px #1d2c4e; }
.ip17b__mic { position: absolute; top: 52%; right: 21px; width: 5px; height: 5px; border-radius: 50%; background: #05070f; }

/* Apple-logo (via mask, in donker glas) */
.ip17b__logo { position: absolute; top: 46%; left: 50%; transform: translateX(-50%); width: 66px; height: 80px;
  background: #0b1832;
  -webkit-mask: url("../assets/img/brands/apple.svg") center / contain no-repeat;
  mask: url("../assets/img/brands/apple.svg") center / contain no-repeat;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.05)); }

/* Voorkant iets compacter zodat de duo past */
.ip17__device { width: 258px; height: 530px; }
.ip17__time { font-size: 54px; }

@media (max-width: 1200px) { .ip17b { left: -18px; } }
@media (prefers-reduced-motion: reduce) { .ip17b { animation: none; } }

/* Winkelkaart-kop: naam + rating op één regel, open-status eronder */
.loccard__head { display: grid; grid-template-columns: 1fr auto; align-items: center; row-gap: 7px; margin-bottom: 10px; }
.loccard__head .openchip { grid-column: 1 / -1; justify-self: start; white-space: nowrap; margin-top: 0; }
.hwiz__store .openchip { white-space: nowrap; }

/* ===================================================================
   Echte iPhone 17 Pro-render + mobiele hero-fixes
   =================================================================== */
.ip17 { justify-content: center; padding-right: 0; }
.ip17__img { width: 500px; max-width: 100%; height: auto; filter: drop-shadow(0 44px 60px rgba(2,8,22,.55)); transition: transform .25s ease-out; will-change: transform; }
.ip17__shadow { bottom: 60px; width: 340px; }

@media (max-width: 980px) {
  /* strip en golf weg op mobiel */
  .hero2__strip { display: none; }
  .hero2__wave { display: none; }
  .hero2__inner { padding-top: 118px; }
  /* zoekbalk compacter en netter */
  .hero2__search-box { padding: 5px 5px 5px 18px; }
  .hero2__search-box input { font-size: 15px; }
  .hero2__search-btn { width: 46px; height: 46px; }
  /* vinkjes strak onder elkaar */
  .hero2__checks { flex-direction: column; gap: 9px; align-items: flex-start; margin-top: 18px; }
  .hero2__checks span { font-size: 13.5px; }
}

/* Timeline-lijn exact tussen de stap-bolletjes */
.timeline::before { left: 16.6%; right: 16.6%; }
.timeline::after { left: 16.6%; }
.timeline.in::after { width: 66.8%; }

/* Reviews in 2 rijen, tegengesteld scrollend */
.revslider + .revslider { margin-top: 20px; }
.revslider--rev .revslider__track { animation-direction: reverse; }

/* Render groter + Phone Store-menu in het scherm */
.ip17 { height: auto; padding: 6px 0 34px; }
.ip17__stage { position: relative; width: 500px; max-width: 100%; transition: transform .25s ease-out; will-change: transform; transform-style: preserve-3d; }
.ip17__img { width: 100%; height: auto; }
.ip17__ui { position: absolute; left: 60.9%; top: 1.9%; width: 36.4%; bottom: 2.2%; background: #fff; border-radius: 4px 26px 26px 4px; overflow: hidden; }
.ip17__ui-island { position: absolute; top: 11px; left: 50%; transform: translateX(-50%); width: 58px; height: 17px; border-radius: 999px; background: #000; z-index: 2; }
.ip17__ui-body { position: absolute; inset: 0; padding: 38px 11px 12px; display: flex; flex-direction: column; gap: 9px; }
.ip17__ui-logo { height: 18px; width: auto; align-self: center; }
.ip17__ui .pm__step { font-size: 7.5px; }
.ip17__ui .pm__dot { width: 17px; height: 17px; font-size: 9px; }
.ip17__ui .pm__search { font-size: 10px; padding: 6px 10px; }
.ip17__ui .pm__search .ic { width: 11px; height: 11px; }
.ip17__ui .pm__grid { gap: 7px; }
.ip17__ui .pm__tile { padding: 8px 5px; }
.ip17__ui .pm__tile b { font-size: 9px; }
.ip17__ui .pm__tile small { font-size: 7px; }
.ip17__ui .pm__phoneicon { width: 20px; height: 34px; margin-bottom: 5px; border-width: 2px; }
.ip17__ui-btn { margin-top: auto; background: var(--brand); color: #fff; text-align: center; font-size: 11px; font-weight: 700; padding: 9px; border-radius: 10px; }
.ip17__shadow { bottom: 10px; width: 380px; }
@media (max-width: 1140px) { .ip17__stage { width: 440px; } }

/* Hero zonder telefoon: content op één kolom, foto-achtergrond krijgt de ruimte */
.hero2__inner { grid-template-columns: 1fr; }
.hero2__content { max-width: 640px; }

/* Hero desktop: meer ademruimte tussen strip, badge, titel, zoekbalk en vinkjes */
@media (min-width: 981px) {
  .hero2__strip { top: 122px; }
  .hero2__inner { padding: 192px 24px 122px; }
  .hero2 h1 { margin: 28px 0 8px; }
  .hero2__search { margin-top: 40px; }
  .hero2__checks { margin-top: 26px; gap: 28px; }
}

/* Zoekbalk: ruimte tussen tekst en zoekknop */
.hero2__search-box { gap: 12px; }

/* Mobiel menu volledig uit beeld als het dicht is (geen witte rand meer boven de navbar) */
@media (max-width: 980px) {
  .nav { transform: translateY(calc(-100% - 140px)); }
  .nav.open { transform: translateY(0); }
}

/* Rating-badge op winkelkaarten: compact pilletje, niet uitrekken */
.loccard__rating { width: max-content; justify-self: end; align-self: center; display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; font-size: 13px; font-weight: 800; border-radius: 999px; background: #FFF8E7; border: 1px solid #F3E2B8; color: var(--ink); }
.loccard__rating .ic { width: 15px; height: 15px; }
.loccard__rating small { font-size: 12px; font-weight: 600; color: var(--grey); white-space: nowrap; }

/* Rating naast de winkelnaam op dezelfde regel; open-status daaronder */
.loccard__head .loccard__rating { grid-row: 1; grid-column: 2; }
.loccard__head h3 { grid-row: 1; grid-column: 1; }

/* Zoeksuggesties altijd bovenop (vinkjes en golf tekenden erdoorheen) */
.hero2__inner { z-index: 2; }
.hero2__search { z-index: 30; }
.hero2__sugg { z-index: 40; box-shadow: 0 24px 60px rgba(5, 15, 35, .45); }

/* Winkelkaart-kop: alles netjes onder elkaar (naam → rating → open-status) */
.loccard__head { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; margin-bottom: 12px; }
.loccard__head .loccard__rating { order: 2; }
.loccard__head .openchip { order: 3; }

/* Winkelkaart-kop: naam, rating en open-status op één regel van links naar rechts */
.loccard__head { flex-direction: row; align-items: center; flex-wrap: wrap; gap: 10px 12px; }
.loccard__head h3 { order: 0; }
.loccard__head .loccard__rating { order: 1; justify-self: auto; }
.loccard__head .openchip { order: 2; margin-top: 0; }

/* WhatsApp-knop uit de header op mobiel (zit al in de sticky balk onderaan) */
@media (max-width: 980px) {
  .header__actions .iconbtn--wa { display: none; }
}

/* Kop winkelkaart: items links naast elkaar, niet uit elkaar duwen */
.loccard__head { justify-content: flex-start; }

/* Tekstpagina's (voorwaarden, privacy) */
.prose { max-width: 800px; }
.prose h2 { font-size: 20px; margin: 32px 0 10px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--grey); font-size: 15.5px; }
.prose p { margin-bottom: 12px; }
.prose ul { padding-left: 22px; margin-bottom: 14px; }
.prose li { margin-bottom: 7px; }
.prose strong { color: var(--ink); }

/* ===================================================================
   Tim — chatwidget rechtsonder
   =================================================================== */
.tim { position: fixed; right: 18px; bottom: 18px; z-index: 96; font-family: var(--font); }
@media (max-width: 860px) { .tim { bottom: calc(66px + env(safe-area-inset-bottom) + 12px); right: 14px; } }

.tim__fab { position: relative; width: 62px; height: 62px; border-radius: 50%; border: 3px solid #fff; padding: 0; cursor: pointer; overflow: visible; background: none; box-shadow: 0 12px 32px rgba(2, 8, 22, .35); transition: transform .15s ease; }
.tim__fab:hover { transform: scale(1.06); }
.tim__fab img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.tim__fab::after { content: ""; position: absolute; right: 1px; bottom: 1px; width: 14px; height: 14px; border-radius: 50%; background: #22C55E; border: 2.5px solid #fff; }

.tim__teaser { position: absolute; bottom: 74px; right: 0; width: 232px; background: #fff; border: 1px solid var(--line); border-radius: 14px 14px 4px 14px; box-shadow: 0 16px 40px rgba(2, 8, 22, .22); padding: 12px 30px 12px 14px; font-size: 13.5px; font-weight: 600; color: var(--ink); cursor: pointer; animation: rise .4s ease; }
.tim__teaser-x { position: absolute; top: 6px; right: 8px; background: none; border: 0; color: var(--grey-light); font-size: 13px; cursor: pointer; padding: 2px; }

.tim__panel { display: none; position: absolute; bottom: 76px; right: 0; width: 344px; max-width: calc(100vw - 28px); height: 500px; max-height: min(72vh, 560px); background: #fff; border-radius: 16px; box-shadow: 0 28px 70px rgba(2, 8, 22, .35); overflow: hidden; flex-direction: column; }
.tim__panel.open { display: flex; animation: rise .3s ease; }
.tim__head { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: var(--brand); color: #fff; }
.tim__head img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid rgba(255,255,255,.6); object-fit: cover; }
.tim__head b { display: block; font-size: 15px; line-height: 1.2; }
.tim__head small { font-size: 11.5px; opacity: .9; display: inline-flex; align-items: center; gap: 5px; }
.tim__head small::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; }
.tim__close { margin-left: auto; background: rgba(255,255,255,.16); border: 0; color: #fff; width: 30px; height: 30px; border-radius: 8px; cursor: pointer; font-size: 14px; }
.tim__msgs { flex: 1; overflow-y: auto; padding: 14px; background: var(--bg-alt); display: flex; flex-direction: column; gap: 8px; }
.tim__msg { max-width: 84%; padding: 9px 12px; border-radius: 14px; font-size: 13.5px; line-height: 1.5; }
.tim__msg--bot { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 4px; align-self: flex-start; color: var(--ink); }
.tim__msg--user { background: var(--brand); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.tim__btns { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.tim__abtn { display: inline-block; background: #EFF4FF; color: var(--brand); font-size: 12px; font-weight: 700; padding: 6px 11px; border-radius: 999px; }
.tim__abtn:hover { background: #dfe9ff; }
.tim__typing { display: inline-flex; gap: 4px; padding: 11px 13px; }
.tim__typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--grey-light); animation: timblink 1.1s infinite; }
.tim__typing i:nth-child(2) { animation-delay: .18s; }
.tim__typing i:nth-child(3) { animation-delay: .36s; }
@keyframes timblink { 30% { opacity: .25; transform: translateY(-2px); } }
.tim__quick { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 14px 10px; background: var(--bg-alt); }
.tim__chip { border: 1.5px solid var(--line); background: #fff; border-radius: 999px; padding: 7px 11px; font-size: 12px; font-weight: 600; color: var(--ink); cursor: pointer; font-family: inherit; transition: all .15s ease; }
.tim__chip:hover { border-color: var(--brand); color: var(--brand); }
.tim__input { display: flex; gap: 8px; padding: 10px; border-top: 1px solid var(--line); background: #fff; }
.tim__input input { flex: 1; border: 1px solid var(--line); border-radius: 999px; padding: 9px 14px; font-family: inherit; font-size: 13.5px; min-width: 0; }
.tim__input input:focus { outline: none; border-color: var(--brand); }
.tim__input button { flex: none; width: 38px; height: 38px; border-radius: 50%; border: 0; background: var(--brand); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.tim__input button .ic { width: 17px; height: 17px; }
@media (prefers-reduced-motion: reduce) { .tim__teaser, .tim__panel.open { animation: none; } .tim__typing i { animation: none; } }
