/* marketpro.nl, statische site, huisstijl MarketPRO */
:root {
  --ink: #2e3440;
  --ink-soft: #5b6270;
  --navy: #2f2956;
  --navy-deep: #1f1a3d;
  --coral: #ee776e;
  --coral-dark: #d9605a;
  --coral-soft: #fdeceb;
  --bg: #ffffff;
  --bg-soft: #f6f6f9;
  --line: #e4e6ec;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(46, 52, 64, 0.08);
  --shadow-lg: 0 24px 60px rgba(31, 26, 61, 0.22);
  --font: "Roboto", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--coral-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { line-height: 1.15; font-weight: 700; color: var(--navy); letter-spacing: -0.012em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: 0.6rem; }
h3 { font-size: 1.3rem; }
p { color: var(--ink-soft); }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; scroll-margin-top: 76px; }
.section-soft { background: var(--bg-soft); }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.8rem;
}
.kicker::before { content: ""; width: 22px; height: 3px; background: var(--coral); border-radius: 2px; }
.section-intro { max-width: 640px; margin-bottom: 2.6rem; font-size: 1.08rem; }
.center { text-align: center; }
.center .kicker::before { display: none; }
.center .section-intro { margin-left: auto; margin-right: auto; }

/* knoppen */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.97rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  cursor: pointer;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { background: var(--coral-dark); }
.btn-ink { background: var(--navy); color: #fff; }
.btn-ink:hover { background: var(--navy-deep); }
.btn-ghost { border-color: var(--line); color: var(--navy); background: #fff; }
.btn-ghost:hover { background: var(--bg-soft); }
.btn-outline-light { border-color: rgba(255, 255, 255, 0.4); color: #fff; background: transparent; }
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.1); }
.btn svg { width: 18px; height: 18px; }

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo img { height: 40px; width: auto; }
.nav { display: flex; gap: 1.8rem; align-items: center; }
.nav a { color: var(--ink-soft); font-weight: 500; font-size: 0.96rem; position: relative; }
.nav a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--coral); transform: scaleX(0); transition: transform 0.2s; transform-origin: left; }
.nav a:not(.btn):hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a:hover { color: var(--navy); text-decoration: none; }
.nav .lang { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; }
.nav .btn { padding: 0.6rem 1.1rem; font-size: 0.9rem; color: #fff; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; }

/* hero */
.hero {
  position: relative;
  color: #fff;
  background: radial-gradient(900px 500px at 90% 0%, rgba(238, 119, 110, 0.28), transparent 60%),
              linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 88px 0 80px;
}
.hero .container { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: center; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  margin: 1rem 0 1.3rem;
}
.hero h1 .mark { color: var(--coral); }
.hero .lead { color: rgba(255, 255, 255, 0.84); font-size: 1.15rem; max-width: 560px; }
.hero .actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}
.pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }

/* bedrijfskaart in hero */
.factcard {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.6rem 1.8rem;
}
.factcard h2 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--coral); margin-bottom: 0.8rem; }
.factcard dl { display: grid; grid-template-columns: auto 1fr; gap: 0.55rem 1.2rem; font-size: 0.95rem; }
.factcard dt { color: var(--ink-soft); }
.factcard dd { font-weight: 700; color: var(--navy); }
.factcard .logos { display: flex; gap: 0.5rem; margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.factcard .logos img { width: 34px; height: 34px; border-radius: 9px; object-fit: cover; }
.factcard .logos .shopje { width: auto; height: 34px; border-radius: 0; object-fit: contain; }

/* marketplaces-strip */
.strip { position: relative; margin-top: -40px; }
.strip .card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 1.3rem 1.8rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.6rem;
  align-items: center;
}
.strip .label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); max-width: 190px; line-height: 1.4; }
.strip ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0.45rem 0.55rem; }
.strip li { font-weight: 700; color: var(--navy); font-size: 0.92rem; padding: 0.3rem 0.75rem; border-radius: 999px; background: var(--bg-soft); border: 1px solid var(--line); }

/* browser-frame */
.frame {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(31, 26, 61, 0.12);
}
.frame .bar { height: 28px; background: #eef0f4; display: flex; align-items: center; gap: 6px; padding: 0 12px; border-bottom: 1px solid #e1e4ea; }
.frame .bar i { width: 9px; height: 9px; border-radius: 50%; background: #d3d7df; }
.frame .bar b { margin-left: 8px; flex: 1; height: 14px; border-radius: 7px; background: #fff; font-size: 0.62rem; font-weight: 500; color: #9aa1ad; display: flex; align-items: center; padding: 0 8px; }
.frame img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top; }

/* merken */
.brand-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.6rem;
  align-items: center;
  padding: 3.2rem 0;
  border-top: 1px solid var(--line);
}
.brand-row:first-of-type { border-top: 0; padding-top: 0.6rem; }
.brand-row.flip .media { order: 2; }
.brand-row .brand-logo { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1rem; }
.brand-row .brand-logo img { height: 44px; width: auto; border-radius: 11px; }
.brand-row .brand-logo .tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent, var(--coral)); }
.brand-row h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin-bottom: 0.6rem; }
.brand-row p { font-size: 1.02rem; margin-bottom: 1.1rem; }
.brand-row ul { list-style: none; margin: 0 0 1.5rem; display: grid; gap: 0.45rem; }
.brand-row li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--ink); font-size: 0.98rem; }
.brand-row li svg { width: 20px; height: 20px; flex: none; color: var(--accent, var(--coral)); margin-top: 3px; }
.brand-row .meta { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.4rem; }
.brand-row .meta span { font-size: 0.8rem; font-weight: 700; color: var(--ink-soft); background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; padding: 0.2rem 0.65rem; }
.brand-row .btn-brand { background: var(--accent, var(--coral)); color: #fff; }
.brand-row .btn-brand:hover { filter: brightness(0.92); }

/* wat we doen */
.two-col { display: grid; grid-template-columns: 1fr 1.25fr; gap: 3.5rem; align-items: start; }
.two-col p + p { margin-top: 1rem; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: 3rem; }
.pillar { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow); }
.pillar .icon { width: 46px; height: 46px; border-radius: 13px; background: var(--coral-soft); color: var(--coral-dark); display: grid; place-items: center; margin-bottom: 1rem; }
.pillar .icon svg { width: 23px; height: 23px; }
.pillar h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.pillar p { font-size: 0.96rem; }
.photo-band { margin-top: 3rem; display: grid; grid-template-columns: 1.25fr 1fr; gap: 1.6rem; align-items: stretch; }
.photo-band img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); min-height: 300px; }
.photo-band .principles { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 2rem; }
.photo-band .principles h3 { color: #fff; font-size: 1.1rem; margin-bottom: 1rem; }
.photo-band .principles ol { list-style: none; display: grid; gap: 0.9rem; counter-reset: p; }
.photo-band .principles li { display: flex; gap: 0.8rem; color: rgba(255, 255, 255, 0.85); font-size: 0.97rem; counter-increment: p; }
.photo-band .principles li::before { content: counter(p, decimal-leading-zero); color: var(--coral); font-weight: 900; flex: none; width: 30px; }
.photo-band .principles li strong { color: #fff; display: block; }

/* oprichter */
.founder { display: grid; grid-template-columns: 300px 1fr; gap: 3rem; align-items: center; }
.founder .portrait { position: relative; }
.founder .portrait::before { content: ""; position: absolute; inset: 14% -6% -4% 10%; background: var(--coral-soft); border-radius: 26px; }
.founder .portrait img { position: relative; border-radius: 22px; width: 100%; filter: grayscale(100%); }
.founder p + p { margin-top: 0.9rem; }
.founder .links { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.5rem; }
.founder .role { font-weight: 700; color: var(--navy); font-size: 0.95rem; margin-bottom: 0.9rem; }

/* tijdlijn */
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; margin-top: 2.8rem; }
.timeline::before { content: ""; position: absolute; left: 0; right: 0; top: 9px; height: 2px; background: var(--line); }
.tl { position: relative; padding-top: 1.6rem; }
.tl::before { content: ""; position: absolute; top: 0; left: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--coral); border: 4px solid #fff; box-shadow: 0 0 0 2px var(--coral); }
.tl .year { font-weight: 900; color: var(--coral); font-size: 1.1rem; }
.tl h3 { font-size: 1.05rem; margin: 0.2rem 0 0.4rem; }
.tl p { font-size: 0.95rem; }

/* bedrijfsgegevens + contact */
.company { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: stretch; }
.details-table { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.8rem 2rem; }
.details-table h3 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--coral); margin-bottom: 1rem; }
.details-table dl { display: grid; grid-template-columns: auto 1fr; gap: 0.6rem 1.4rem; font-size: 0.96rem; }
.details-table dt { color: var(--ink-soft); }
.details-table dd { font-weight: 500; color: var(--ink); }
.contact-card {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; justify-content: center;
}
.contact-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 0.6rem; }
.contact-card p { color: rgba(255, 255, 255, 0.82); margin-bottom: 1.4rem; }
.contact-card .details { display: grid; gap: 0.9rem; }
.contact-card .details a { color: #fff; font-weight: 700; font-size: 1.02rem; display: inline-flex; align-items: center; gap: 0.7rem; }
.contact-card .details svg { width: 22px; height: 22px; color: var(--coral); flex: none; }

/* footer */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.75); padding: 3.2rem 0 2rem; font-size: 0.93rem; }
.site-footer .container { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.site-footer .flogo { height: 38px; width: auto; margin-bottom: 1rem; }
.site-footer h4 { color: #fff; font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.9rem; }
.site-footer ul { list-style: none; display: grid; gap: 0.55rem; }
.site-footer a { color: rgba(255, 255, 255, 0.75); }
.site-footer a:hover { color: #fff; }
.site-footer .brand-links li a { display: inline-flex; align-items: center; gap: 0.6rem; }
.site-footer .brand-links img { width: 22px; height: 22px; border-radius: 6px; }
.site-footer .bottom { grid-column: 1 / -1; border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 1.2rem; margin-top: 0.5rem; font-size: 0.85rem; opacity: 0.7; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }

/* responsive */
@media (max-width: 1000px) {
  .hero .container, .two-col, .photo-band, .company, .founder { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 72px; }
  .founder .portrait { max-width: 260px; }
  .brand-row { grid-template-columns: 1fr; gap: 2rem; }
  .brand-row.flip .media { order: 0; }
  .pillars, .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .site-footer .container { grid-template-columns: 1fr 1fr; }
  .strip .card { grid-template-columns: 1fr; gap: 0.9rem; }
}
@media (max-width: 720px) {
  section { padding: 64px 0; }
  .pillars, .timeline { grid-template-columns: 1fr; }
  .factcard dl, .details-table dl { grid-template-columns: 1fr; gap: 0.15rem 0; }
  .factcard dt, .details-table dt { margin-top: 0.5rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; }
  .contact-card, .details-table { padding: 1.6rem 1.3rem; }
  .site-footer .container { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 24px 1rem;
  }
  .nav.open { display: flex; }
  .nav a { padding: 0.75rem 0; border-bottom: 1px solid var(--line); }
  .nav a:not(.btn)::after { display: none; }
  .nav .btn { margin-top: 0.8rem; justify-content: center; border-bottom: 0; }
}
