:root {
  --orange: #fa9851;
  --orange-deep: #e07d32;
  --ink: #111111;
  --muted: #5b534c;
  --line: rgba(17, 17, 17, 0.1);
  --card: #ffffff;
  --bg: #fff8f1;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(80, 40, 10, 0.14);
  --max: 1080px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 152, 81, 0.94);
  backdrop-filter: saturate(1.2) blur(12px);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  padding: 0.65rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a {
  text-decoration: none;
}

.nav a:not(.badge-link):hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav-extra {
  display: none;
}

.badge-link {
  display: inline-flex;
  line-height: 0;
}

.badge-link img,
.badge-link svg {
  height: 40px;
  width: auto;
}

.hero {
  background: var(--orange);
  padding: 1.4rem 0 6rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.kicker {
  margin: 0 0 0.6rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(2.35rem, 9vw, 4.6rem);
}

h2 {
  font-size: clamp(1.7rem, 5vw, 2.5rem);
}

.lead {
  margin: 0.9rem 0 1.3rem;
  font-size: clamp(1.05rem, 2.6vw, 1.3rem);
  color: #2b221c;
  max-width: 28ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.1rem;
  margin-bottom: 0.4rem;
}

.note {
  margin: 0;
  color: #3d322b;
  font-size: 0.95rem;
}

.hero-visual {
  justify-self: center;
  width: min(320px, 78vw);
}

.phone-frame {
  background: #111;
  border-radius: 36px;
  padding: 10px 10px 14px;
  box-shadow: 0 22px 40px rgba(70, 30, 0, 0.22);
}

.phone-frame img {
  width: 100%;
  border-radius: 26px;
  background: #fff;
}

#hoe,
#faq,
#functies,
#download {
  scroll-margin-top: 76px;
}

@media (max-width: 759px) {
  .site-header .badge-link {
    display: none;
  }

  .hero-visual {
    max-height: 54vh;
    overflow: hidden;
  }

  .phone-frame {
    border-radius: 36px 36px 0 0;
    padding-bottom: 0;
  }

  .phone-frame img {
    border-radius: 26px 26px 0 0;
  }
}

.section {
  padding: 4rem 0;
}

.section.tight {
  padding-top: 3.2rem;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 1.8rem;
}

.section-head p,
.muted {
  color: var(--muted);
}

.steps,
.features,
.faq {
  display: grid;
  gap: 0.9rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.25rem 1.25rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.step-num,
.feature-icon {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--orange);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.shot {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  max-height: 560px;
}

.shot img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: top center;
}

.cta-band {
  background: var(--orange);
  padding: 4rem 0 5.5rem;
  text-align: center;
}

.cta-band p {
  margin: 0.8rem auto 1.3rem;
  max-width: 32rem;
  color: #2b221c;
}

.cta-band .badge-link {
  justify-content: center;
}

.page-main {
  padding: 2rem 0 4rem;
}

.page-main h1 {
  font-size: clamp(2rem, 7vw, 3rem);
  margin-bottom: 0.6rem;
}

.page-main h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.6rem;
}

.page-main p,
.page-main li {
  color: #2f2924;
}

.page-main ul {
  padding-left: 1.15rem;
}

.site-footer {
  padding: 2rem 0 calc(5.5rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  background: var(--bg);
}

.footer-inner {
  display: grid;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
}

.footer-links a {
  font-weight: 600;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.legal {
  margin: 0;
  max-width: 48rem;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(255, 248, 241, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 750;
  font-size: 1.05rem;
}

.btn:hover {
  background: #000;
}

details.card {
  padding: 0;
}

details.card summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.2rem;
  font-weight: 750;
}

details.card summary::-webkit-details-marker {
  display: none;
}

details.card summary::after {
  content: "+";
  float: right;
  font-weight: 500;
  color: var(--muted);
}

details.card[open] summary::after {
  content: "–";
}

details.card p {
  padding: 0 1.2rem 1.15rem;
}

@media (min-width: 760px) {
  .nav-extra {
    display: inline;
  }

  .hero {
    padding: 2.2rem 0 0;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    align-items: start;
  }

  .hero-copy {
    padding-top: 0.35rem;
  }

  .hero-visual {
    width: min(420px, 100%);
    margin-bottom: -2px;
  }

  .steps,
  .features {
    grid-template-columns: repeat(3, 1fr);
  }

  .split {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
  }

  .sticky-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 2.4rem;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
