:root {
  --navy-950: #04111f;
  --navy-900: #071a2c;
  --navy-800: #0b2942;
  --blue-600: #087bc1;
  --blue-500: #00a6e8;
  --blue-100: #dff5ff;
  --orange-500: #ff6b2c;
  --orange-400: #ff8a4c;
  --sand-50: #f7fafc;
  --white: #fff;
  --slate-900: #172230;
  --slate-700: #405163;
  --slate-500: #6d7e8e;
  --slate-200: #dce5eb;
  --slate-100: #edf3f6;
  --success: #0b7a51;
  --danger: #b02a37;
  --shadow: 0 22px 60px rgba(4, 17, 31, .14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 11px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--slate-900);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 104px 0; }
.section-tight { padding: 68px 0; }
.section-dark { color: var(--white); background: var(--navy-950); }
.section-soft { background: var(--sand-50); }
.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2,
.story-copy h2,
.form-intro h2 {
  margin: 8px 0 18px;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.06;
  letter-spacing: -.04em;
}
.section-heading p,
.story-copy > p,
.form-intro > p { margin: 0; color: var(--slate-700); font-size: 1.08rem; }
.section-dark .section-heading p,
.section-dark .story-copy > p { color: rgba(255,255,255,.72); }
.eyebrow {
  color: var(--blue-600);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section-dark .eyebrow { color: #67d4ff; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  box-shadow: 0 14px 28px rgba(255, 107, 44, .28);
}
.button-secondary { color: var(--navy-950); background: var(--white); border-color: var(--slate-200); }
.button-dark { color: var(--white); background: var(--navy-950); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.06); }
.button-block { width: 100%; }
.button svg { width: 18px; height: 18px; }

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  color: var(--white);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { background: rgba(4,17,31,.94); box-shadow: 0 10px 30px rgba(0,0,0,.18); backdrop-filter: blur(16px); }
.nav { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--white); font-weight: 900; letter-spacing: -.03em; text-decoration: none; }
.brand-mark { display: grid; width: 42px; height: 42px; place-items: center; background: var(--orange-500); border-radius: 13px; transform: rotate(-4deg); }
.brand-mark svg { width: 26px; height: 26px; transform: rotate(4deg); }
.brand span span { color: var(--blue-500); }
.nav-links { display: flex; align-items: center; gap: 5px; }
.nav-links > a:not(.button) { padding: 12px 13px; color: rgba(255,255,255,.82); font-size: .93rem; font-weight: 700; text-decoration: none; }
.nav-links > a:hover { color: var(--white); }
.nav-toggle { display: none; width: 45px; height: 45px; padding: 10px; color: var(--white); border: 0; background: transparent; }
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: currentColor; border-radius: 4px; }

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  align-items: end;
  color: var(--white);
  background: var(--navy-950) url("../img/hero-avontuur.webp") center / cover no-repeat;
  isolation: isolate;
}
.hero::before {
  position: absolute;
  z-index: -1;
  content: "";
  inset: 0;
  background: linear-gradient(90deg, rgba(2,13,24,.94) 0%, rgba(2,13,24,.75) 35%, rgba(2,13,24,.18) 72%), linear-gradient(0deg, rgba(2,13,24,.82), transparent 45%);
}
.hero-content { max-width: 710px; padding: 190px 0 92px; }
.hero-kicker { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 20px; color: #a5e7ff; font-size: .88rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero-kicker::before { width: 28px; height: 2px; content: ""; background: var(--orange-500); }
.hero h1 { margin: 0; max-width: 680px; font-size: clamp(3.25rem, 7.5vw, 6.2rem); line-height: .92; letter-spacing: -.065em; }
.hero h1 span { color: var(--orange-400); }
.hero-lead { max-width: 600px; margin: 26px 0 32px; color: rgba(255,255,255,.82); font-size: clamp(1.06rem, 2vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 22px; margin: 34px 0 0; padding: 0; list-style: none; }
.hero-proof li { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.78); font-size: .9rem; font-weight: 700; }
.hero-proof li::before { display: grid; width: 22px; height: 22px; place-items: center; content: "✓"; color: var(--white); background: rgba(0,166,232,.4); border: 1px solid rgba(103,212,255,.45); border-radius: 50%; }

.trust-strip { position: relative; z-index: 2; margin-top: -28px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; background: var(--white); border: 1px solid var(--slate-100); border-radius: var(--radius-md); box-shadow: var(--shadow); }
.trust-grid .trust-item { display: flex; min-height: 112px; align-items: center; justify-content: center; flex-direction: row; gap: 14px; padding: 23px; text-align: left; }
.trust-grid .trust-item > div { flex: 0 1 auto; }
.trust-item + .trust-item { border-left: 1px solid var(--slate-100); }
.trust-grid .trust-icon { display: grid; flex: 0 0 42px; width: 42px; height: 42px; place-items: center; color: var(--blue-600); background: var(--blue-100); border-radius: 13px; }
.trust-grid .trust-icon svg { display: block; width: 22px; height: 22px; margin: auto; }
.trust-item strong { display: block; font-size: .96rem; }
.trust-item span { display: block; color: var(--slate-500); font-size: .82rem; }

.camera-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.camera-card { display: flex; overflow: hidden; flex-direction: column; background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius-lg); box-shadow: 0 14px 40px rgba(4,17,31,.06); transition: transform .25s ease, box-shadow .25s ease; }
.camera-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.camera-visual { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--navy-950); }
.camera-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.camera-card:hover .camera-visual img { transform: scale(1.035); }
.card-badge { position: absolute; top: 18px; left: 18px; padding: 7px 11px; color: var(--white); background: rgba(4,17,31,.82); border: 1px solid rgba(255,255,255,.16); border-radius: 999px; font-size: .72rem; font-weight: 800; backdrop-filter: blur(10px); }
.visual-note { position: absolute; right: 10px; bottom: 8px; color: rgba(255,255,255,.58); font-size: .63rem; }
.camera-body { display: flex; flex: 1; flex-direction: column; padding: 27px; }
.camera-body h3 { margin: 0 0 6px; font-size: 1.5rem; letter-spacing: -.03em; }
.camera-tagline { margin: 0 0 20px; color: var(--blue-600); font-weight: 800; }
.feature-list { display: grid; gap: 9px; margin: 0 0 26px; padding: 0; color: var(--slate-700); list-style: none; }
.feature-list li { position: relative; padding-left: 24px; }
.feature-list li::before { position: absolute; top: .55em; left: 2px; width: 8px; height: 8px; content: ""; background: var(--orange-500); border-radius: 50%; box-shadow: 0 0 0 4px #fff0e8; }
.card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--slate-100); }
.card-price small { display: block; color: var(--slate-500); font-size: .75rem; }
.card-price strong { font-size: 1.35rem; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 29px; color: var(--white); background: rgba(255,255,255,.065); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); counter-increment: step; }
.step::before { display: grid; width: 42px; height: 42px; margin-bottom: 32px; place-items: center; content: "0" counter(step); color: var(--navy-950); background: var(--orange-400); border-radius: 50%; font-size: .82rem; font-weight: 900; }
.step h3 { margin: 0 0 8px; font-size: 1.16rem; }
.step p { margin: 0; color: rgba(255,255,255,.64); font-size: .92rem; }

.compare-wrap { overflow-x: auto; border: 1px solid var(--slate-200); border-radius: var(--radius-md); box-shadow: 0 12px 36px rgba(4,17,31,.06); }
.compare-table { width: 100%; min-width: 760px; border-collapse: collapse; background: var(--white); }
.compare-table th, .compare-table td { padding: 18px 22px; text-align: left; border-bottom: 1px solid var(--slate-100); }
.compare-table thead th { color: var(--white); background: var(--navy-900); }
.compare-table thead th:first-child { color: rgba(255,255,255,.66); }
.compare-table tbody th { width: 24%; color: var(--slate-500); font-size: .88rem; }
.compare-table tr:last-child th, .compare-table tr:last-child td { border-bottom: 0; }
.best-for { display: inline-flex; padding: 5px 9px; color: var(--blue-600); background: var(--blue-100); border-radius: 999px; font-size: .75rem; font-weight: 800; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 22px; }
.price-card { display: flex; flex-direction: column; padding: 30px; background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius-lg); }
.price-card.featured { border-color: var(--blue-500); box-shadow: 0 18px 48px rgba(0,166,232,.12); }
.price-card h3 { margin: 8px 0 2px; font-size: 1.42rem; }
.price-from { margin: 0 0 22px; color: var(--slate-500); }
.price-from strong { color: var(--slate-900); font-size: 1.7rem; }
.price-list { margin: 0 0 26px; }
.price-list div { display: flex; justify-content: space-between; padding: 12px 0; border-top: 1px solid var(--slate-100); }
.price-list dt { color: var(--slate-600); }
.price-list dd { margin: 0; font-weight: 900; }
.price-card .button { margin-top: auto; }
.included-box { display: grid; grid-template-columns: 1fr 1.4fr; gap: 34px; margin-top: 30px; padding: 30px; color: var(--white); background: var(--navy-900); border-radius: var(--radius-md); }
.included-box h3 { margin: 0; font-size: 1.5rem; }
.included-list { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 20px; margin: 0; padding: 0; list-style: none; }
.included-list li::before { margin-right: 8px; content: "✓"; color: #67d4ff; font-weight: 900; }
.pricing-note { margin: 16px 0 0; color: var(--slate-500); font-size: .82rem; text-align: center; }

.story-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.story-panel { position: relative; overflow: hidden; min-height: 490px; background: url("../img/hero-avontuur.webp") 76% center / cover; border-radius: var(--radius-lg); }
.story-panel::after { position: absolute; content: ""; inset: 0; background: linear-gradient(20deg, rgba(4,17,31,.8), transparent 66%); }
.story-quote { position: absolute; z-index: 1; right: 25px; bottom: 25px; left: 25px; padding: 23px; color: var(--white); background: rgba(4,17,31,.68); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-md); backdrop-filter: blur(12px); }
.story-quote strong { display: block; font-size: 1.17rem; }
.story-quote span { color: rgba(255,255,255,.66); font-size: .87rem; }
.story-points { display: grid; gap: 16px; margin-top: 30px; }
.story-point { display: flex; gap: 15px; }
.story-point span { display: grid; flex: 0 0 39px; width: 39px; height: 39px; place-items: center; color: var(--white); background: var(--blue-600); border-radius: 12px; font-weight: 900; }
.story-point h3 { margin: 0 0 2px; font-size: 1rem; }
.story-point p { margin: 0; color: var(--slate-700); font-size: .9rem; }

.faq-list { display: grid; max-width: 850px; margin: 0 auto; gap: 12px; }
.faq-list details { padding: 0 22px; background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius-sm); }
.faq-list summary { position: relative; padding: 20px 42px 20px 0; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 19px; right: 0; content: "+"; color: var(--blue-600); font-size: 1.4rem; line-height: 1; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0 0 21px; color: var(--slate-700); }

.rental-section { overflow: hidden; color: var(--white); background: radial-gradient(circle at 10% 0%, #0b4266, transparent 42%), var(--navy-950); }
.rental-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 70px; }
.form-intro { position: sticky; top: 120px; }
.form-intro > p { color: rgba(255,255,255,.7); }
.contact-card { display: grid; gap: 11px; margin-top: 30px; padding: 21px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); }
.contact-card a { color: var(--white); font-weight: 800; text-decoration: none; }
.contact-card small { color: rgba(255,255,255,.55); }
.rental-form { padding: 34px; color: var(--slate-900); background: var(--white); border-radius: var(--radius-lg); box-shadow: 0 28px 70px rgba(0,0,0,.24); }
.form-notice { margin-bottom: 20px; padding: 15px 17px; border-radius: var(--radius-sm); }
.form-notice.success { color: #075f40; background: #def7ec; border: 1px solid #92e5c3; }
.form-notice.error { color: #86202b; background: #fde8eb; border: 1px solid #f5aeba; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label, .field legend { font-size: .86rem; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  color: var(--slate-900);
  background: var(--sand-50);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  outline: none;
}
.field textarea { min-height: 112px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(0,166,232,.12); }
.field.has-error input:not([type="checkbox"]), .field.has-error select, .field.has-error textarea {
  border-color: #c93645;
  background: #fff8f8;
  box-shadow: 0 0 0 4px rgba(201,54,69,.12);
}
.field.has-error .check { padding: 10px 12px; border: 1px solid #c93645; border-radius: 10px; background: #fff8f8; }
.field-error { margin: 0; color: #a51f2d; font-size: .8rem; font-weight: 700; }
.checkbox-group { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 16px; margin: 0; padding: 0; border: 0; }
.accessory-note { grid-column: 1 / -1; margin: 0 0 3px; color: var(--slate-500); font-size: .8rem; }
.check { display: flex; align-items: flex-start; gap: 9px; color: var(--slate-700); font-size: .86rem; }
.check input { width: 17px; height: 17px; min-height: 0; margin-top: 3px; accent-color: var(--blue-600); }
.estimate { display: grid; margin: 3px 0; padding: 17px 19px; background: var(--blue-100); border: 1px solid #addff3; border-radius: var(--radius-sm); }
.estimate span { color: var(--blue-600); font-size: .74rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.estimate strong { font-size: 1.7rem; line-height: 1.2; }
.estimate small { color: var(--slate-700); }
.form-actions { display: grid; grid-template-columns: 1.2fr .8fr; gap: 10px; }
.form-fineprint { margin: 10px 0 0; color: var(--slate-500); font-size: .75rem; text-align: center; }
.form-fineprint a { color: var(--blue-600); }
.hp-field { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px, 1px, 1px, 1px) !important; }

.site-footer { padding: 58px 0 28px; color: var(--white); background: #020b13; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; }
.footer-intro p { max-width: 390px; color: rgba(255,255,255,.56); }
.footer-title { margin: 0 0 15px; color: rgba(255,255,255,.5); font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.8); text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 22px; color: rgba(255,255,255,.42); border-top: 1px solid rgba(255,255,255,.09); font-size: .78rem; }
.mobile-cta { display: none; }

.legal-page { padding: 150px 0 90px; }
.legal-content { max-width: 850px; }
.legal-content h1 { margin: 0 0 20px; font-size: clamp(2.5rem, 6vw, 4.4rem); line-height: 1; letter-spacing: -.05em; }
.legal-content h2 { margin-top: 38px; }
.legal-note { padding: 16px 18px; color: #704115; background: #fff5db; border: 1px solid #f2d596; border-radius: 10px; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links { position: fixed; inset: 82px 0 auto; display: none; max-height: calc(100vh - 82px); padding: 20px; flex-direction: column; align-items: stretch; background: rgba(4,17,31,.98); }
  .nav-links.is-open { display: flex; }
  .nav-links > a:not(.button) { padding: 14px; }
  .camera-grid, .price-grid { grid-template-columns: 1fr; max-width: 680px; margin-inline: auto; }
  .camera-card { display: grid; grid-template-columns: .9fr 1.1fr; }
  .camera-visual { height: 100%; min-height: 380px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--slate-100); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--slate-100); }
  .story-grid, .rental-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-intro { position: static; }
  .story-panel { min-height: 420px; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .site-header { background: rgba(4,17,31,.92); }
  .nav { min-height: 72px; }
  .nav-links { inset: 72px 0 auto; }
  .hero { min-height: 700px; background-position: 66% center; }
  .hero::before { background: linear-gradient(90deg, rgba(2,13,24,.94), rgba(2,13,24,.58)), linear-gradient(0deg, rgba(2,13,24,.86), transparent 55%); }
  .hero-content { padding: 150px 0 74px; }
  .hero h1 { font-size: clamp(3.1rem, 16vw, 5rem); }
  .hero-actions .button { width: 100%; }
  .trust-strip { margin-top: 0; }
  .trust-grid { grid-template-columns: 1fr; border-radius: 0; }
  .trust-item + .trust-item { border-top: 1px solid var(--slate-100); border-left: 0; }
  .camera-card { display: block; }
  .camera-visual { min-height: auto; }
  .steps-grid, .form-grid, .checkbox-group, .form-actions, .included-box, .included-list, .footer-grid { grid-template-columns: 1fr; }
  .card-footer { align-items: flex-start; flex-direction: column; }
  .card-footer .button { width: 100%; }
  .rental-form { padding: 24px 18px; border-radius: var(--radius-md); }
  .footer-grid { gap: 32px; }
  .footer-bottom { padding-bottom: 58px; flex-direction: column; }
  .mobile-cta { position: fixed; z-index: 900; right: 12px; bottom: 12px; left: 12px; display: flex; padding: 10px; gap: 8px; background: rgba(4,17,31,.92); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; box-shadow: 0 10px 35px rgba(0,0,0,.3); backdrop-filter: blur(12px); }
  .mobile-cta .button { min-height: 45px; flex: 1; padding: 9px 12px; font-size: .83rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
