/* ============================================================
   ROCKETFARM.NL — STYLESHEET
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* --- Design Tokens --- */
:root {
  --ink:        #111111;
  --ink-2:      #3a3a3a;
  --muted:      #787870;
  --border:     #e8e8e3;
  --surface:    #f7f7f5;
  --white:      #ffffff;
  --accent:     #e84c1e;
  --accent-dk:  #c73d16;

  --font: 'Outfit', sans-serif;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;

  --sh-sm: 0 2px 8px rgba(0,0,0,.06);
  --sh-md: 0 8px 24px rgba(0,0,0,.08);
  --sh-lg: 0 20px 50px rgba(0,0,0,.10);
  --sh-xl: 0 32px 64px rgba(0,0,0,.12);

  --max-w: 1320px;
  --nav-h: 72px;
}

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); color: var(--ink); background: var(--white); line-height: 1.6; }

/* --- Layout --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: var(--r-sm);
  font-size: .9375rem; font-weight: 600; font-family: var(--font);
  white-space: nowrap; border: none; cursor: pointer;
  transition: all .22s cubic-bezier(.16,1,.3,1);
}
.btn:active { transform: scale(.98) translateY(1px); }

.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dk); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(232,76,30,.32); }

.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--ink); transform: translateY(-2px); }

.btn-dark { background: var(--white); color: var(--ink); }
.btn-dark:hover { background: var(--surface); transform: translateY(-2px); }

.btn-whatsapp { background: #25d366; color: var(--white); }
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(37,211,102,.32); }

.btn-lg { padding: 1.125rem 2.25rem; font-size: 1.0625rem; }

/* --- Navigation --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.nav.scrolled { border-color: var(--border); box-shadow: var(--sh-sm); }

.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 2rem; }

.nav__logo {
  font-size: 1.25rem; font-weight: 800; letter-spacing: -.03em; color: var(--ink);
  display: flex; align-items: center; gap: .35rem;
}
.nav__logo-dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; display: inline-block; }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__link {
  font-size: .9375rem; font-weight: 500; color: var(--ink-2);
  transition: color .2s ease; position: relative;
}
.nav__link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s cubic-bezier(.16,1,.3,1);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }

.nav__right { display: flex; align-items: center; gap: 1rem; }
.nav__phone-label { font-size: .875rem; font-weight: 600; color: var(--muted); }

.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s ease; }

.nav__mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem 2rem; z-index: 99;
  flex-direction: column; gap: .875rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link { font-size: 1.125rem; padding: .625rem 0; border-bottom: 1px solid var(--border); }

/* --- Footer --- */
.footer { background: var(--ink); color: rgba(255,255,255,.6); padding: 5rem 0 2.5rem; }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo {
  font-size: 1.25rem; font-weight: 800; color: var(--white);
  letter-spacing: -.03em; margin-bottom: .75rem;
  display: flex; align-items: center; gap: .35rem;
}
.footer__tagline { font-size: .9375rem; line-height: 1.65; max-width: 28ch; margin-bottom: 1.75rem; }
.footer__col-title { font-size: .7rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; }
.footer__links { display: flex; flex-direction: column; gap: .5rem; }
.footer__link { font-size: .9375rem; transition: color .2s ease; }
.footer__link:hover { color: var(--white); }
.footer__contact-item { display: flex; flex-direction: column; gap: .15rem; margin-bottom: .875rem; }
.footer__contact-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.35); margin-bottom: .1rem; }
.footer__contact-value { font-size: .9375rem; color: var(--white); font-weight: 500; }
.footer__contact-value:hover { color: var(--accent); }
.footer__bottom { padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: .8125rem; }

/* --- Scroll Reveal --- */
[data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }
[data-reveal-delay="5"] { transition-delay: .5s; }

/* --- Browser Mockup --- */
.browser-frame {
  background: var(--white); border-radius: 10px; overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,.18), 0 0 0 1px rgba(0,0,0,.06);
}
.browser-chrome {
  background: #efefed; padding: 9px 14px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid #ddddd9;
}
.browser-dots { display: flex; gap: 5px; flex-shrink: 0; }
.browser-dots span { width: 9px; height: 9px; border-radius: 50%; display: block; }
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }
.browser-url {
  flex: 1; background: var(--white); border-radius: 5px;
  padding: 3px 10px; font-size: .6875rem; color: #999;
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}

/* --- Demo Preview Art --- */
.dp-inner {
  display: flex; flex-direction: column;
  width: 100%; height: 100%;
  padding: 1.25rem 1.5rem 1.5rem;
  position: relative; overflow: hidden;
}
.dp--kapper    { background: linear-gradient(135deg, #1c0a08 0%, #3d1510 100%); }
.dp--aannemer  { background: linear-gradient(135deg, #0b1828 0%, #183050 100%); }
.dp--restaurant{ background: linear-gradient(135deg, #1a0d04 0%, #3d1c08 100%); }
.dp--loodgieter{ background: linear-gradient(135deg, #081c30 0%, #143050 100%); }
.dp--salon     { background: linear-gradient(135deg, #180a20 0%, #32103e 100%); }
.dp--tandarts  { background: linear-gradient(135deg, #051828 0%, #0e3040 100%); }
.dp--bakker    { background: linear-gradient(135deg, #220e04 0%, #421c08 100%); }
.dp--garage    { background: linear-gradient(135deg, #181818 0%, #2c2c2c 100%); }
.dp--fysio     { background: linear-gradient(135deg, #081c20 0%, #0e3034 100%); }

.dp-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
.dp-logo-text { font-size: .6rem; font-weight: 700; letter-spacing: .06em; color: #fff; text-transform: uppercase; }
.dp-nav-dots { display: flex; gap: 7px; }
.dp-nav-dot { width: 18px; height: 1.5px; background: rgba(255,255,255,.25); border-radius: 2px; }

.dp-accent-bar { height: 2.5px; width: 28px; border-radius: 2px; margin-bottom: .5rem; }
.dp--kapper     .dp-accent-bar { background: #c9a87c; }
.dp--aannemer   .dp-accent-bar { background: #e84c1e; }
.dp--restaurant .dp-accent-bar { background: #d4a853; }
.dp--loodgieter .dp-accent-bar { background: #4dc0e8; }
.dp--salon      .dp-accent-bar { background: #d4a8e8; }
.dp--tandarts   .dp-accent-bar { background: #4de8d4; }
.dp--bakker     .dp-accent-bar { background: #e8c84d; }
.dp--garage     .dp-accent-bar { background: #e84c4c; }
.dp--fysio      .dp-accent-bar { background: #4de880; }

.dp-label { font-size: .5rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: .35rem; }
.dp-headline { font-size: .875rem; font-weight: 700; line-height: 1.2; color: #fff; letter-spacing: -.01em; margin-bottom: .75rem; }
.dp-cta {
  display: inline-block; padding: .22rem .6rem; border-radius: 3px;
  font-size: .5rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.dp--kapper     .dp-cta { background: #c9a87c; color: #1c0a08; }
.dp--aannemer   .dp-cta { background: #e84c1e; color: #fff; }
.dp--restaurant .dp-cta { background: #d4a853; color: #1a0d04; }
.dp--loodgieter .dp-cta { background: #4dc0e8; color: #081c30; }
.dp--salon      .dp-cta { background: #d4a8e8; color: #180a20; }
.dp--tandarts   .dp-cta { background: #4de8d4; color: #051828; }
.dp--bakker     .dp-cta { background: #e8c84d; color: #220e04; }
.dp--garage     .dp-cta { background: #e84c4c; color: #fff; }
.dp--fysio      .dp-cta { background: #4de880; color: #081c20; }

.dp-lines { display: flex; flex-direction: column; gap: 4px; margin-top: auto; }
.dp-line { height: 1.5px; background: rgba(255,255,255,.07); border-radius: 2px; }
.dp-line:nth-child(1) { width: 65%; }
.dp-line:nth-child(2) { width: 82%; }
.dp-line:nth-child(3) { width: 48%; }

/* ===================================================
   HOMEPAGE
   =================================================== */

/* Hero */
.hero {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 55% 45%;
  padding-top: var(--nav-h);
}
.hero__left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4rem 5rem 2rem;
  max-width: 700px; margin-left: auto;
}
.hero__kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem;
}
.hero__kicker-dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; }
.hero__headline {
  font-size: clamp(2.75rem, 4.5vw, 4.75rem);
  font-weight: 800; line-height: 1.02; letter-spacing: -.035em; color: var(--ink);
  margin-bottom: 1.75rem;
}
.hero__headline em { font-style: normal; color: var(--accent); }
.hero__sub {
  font-size: 1.125rem; line-height: 1.75; color: var(--ink-2);
  max-width: 48ch; margin-bottom: 2.5rem;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.5rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.trust-item { display: flex; align-items: center; gap: .4rem; font-size: .875rem; font-weight: 500; color: var(--ink-2); }
.trust-item svg { color: var(--accent); flex-shrink: 0; }

.hero__right {
  background: var(--surface); display: flex; align-items: center;
  justify-content: center; padding: 4rem 3rem 4rem 4rem;
  position: relative; overflow: hidden;
}
.hero__right::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(232,76,30,.08) 0%, transparent 68%);
  pointer-events: none;
}
.hero__mockup {
  width: 100%; max-width: 560px;
  transform: perspective(1300px) rotateY(-5deg) rotateX(2deg);
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.hero__mockup:hover { transform: perspective(1300px) rotateY(-1deg) rotateX(0deg); }
.hero__mockup .dp-inner { min-height: 300px; }
.hero__mockup .dp-headline { font-size: 1.25rem; }
.hero__mockup .dp-label { font-size: .6rem; }
.hero__mockup .dp-cta { font-size: .6rem; padding: .3rem .75rem; }

/* Pijlers */
.pijlers { padding: 7rem 0; border-top: 1px solid var(--border); }
.pijlers__wrap {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start;
}
.pijlers__intro { padding-top: .5rem; }
.pijlers__intro-kicker {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1rem;
}
.pijlers__intro-title {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem); font-weight: 700;
  line-height: 1.15; letter-spacing: -.025em; color: var(--ink); margin-bottom: 1rem;
}
.pijlers__intro-body { font-size: 1rem; line-height: 1.7; color: var(--muted); max-width: 36ch; }
.pijlers__list { display: flex; flex-direction: column; }
.pijler {
  display: grid; grid-template-columns: 3.5rem 1fr;
  gap: 1.25rem; padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.pijler:first-child { padding-top: 0; }
.pijler:last-child { border-bottom: none; padding-bottom: 0; }
.pijler__num {
  font-size: 2.5rem; font-weight: 800; letter-spacing: -.04em;
  color: var(--accent); opacity: .18; line-height: 1; padding-top: .1rem;
  font-variant-numeric: tabular-nums;
}
.pijler__title { font-size: 1.0625rem; font-weight: 700; color: var(--ink); margin-bottom: .4rem; line-height: 1.25; }
.pijler__body { font-size: .9375rem; line-height: 1.65; color: var(--muted); }

/* Featured Demos */
.demos { padding: 7rem 0; background: var(--surface); }
.demos__header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; }
.demos__header-left .section-kicker {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: .75rem;
}
.demos__header-left .section-title {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem); font-weight: 700;
  line-height: 1.15; letter-spacing: -.025em; color: var(--ink);
}
.demos__grid {
  display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: auto auto; gap: 1.5rem;
}
.demo-card {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow .3s cubic-bezier(.16,1,.3,1), transform .3s cubic-bezier(.16,1,.3,1);
}
.demo-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.demo-card--feat { grid-row: span 2; }
.demo-card--feat .browser-content .dp-inner { min-height: 310px; }
.demo-card--feat .dp-headline { font-size: 1.1rem; }
.demo-card:not(.demo-card--feat) .browser-content .dp-inner { min-height: 170px; }
.demo-card__meta {
  padding: 1.125rem 1.375rem; display: flex; justify-content: space-between;
  align-items: center; border-top: 1px solid var(--border);
}
.demo-card__info { display: flex; flex-direction: column; gap: .15rem; }
.demo-card__name { font-size: .9375rem; font-weight: 600; color: var(--ink); }
.demo-card__branch { font-size: .75rem; color: var(--muted); font-weight: 500; }

.badge {
  font-size: .68rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: .25rem .65rem; border-radius: 100px;
}
.badge--live  { background: #dcfce7; color: #15803d; }
.badge--soon  { background: #fef3c7; color: #b45309; }
.badge--demo  { background: #fee2e2; color: #dc2626; }

/* Testimonials */
.testimonials { padding: 7rem 0; background: var(--white); }
.testimonials .section-header { margin-bottom: 3.5rem; }
.testimonials__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.testimonial-card {
  padding: 2.5rem; border: 1px solid var(--border); border-radius: var(--r-lg);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.testimonial-card:hover { border-color: #c8c8c0; box-shadow: var(--sh-md); }
.testimonial-card:nth-child(2) { margin-top: 2.5rem; }
.testimonial-card:nth-child(3) { margin-top: -2rem; }
.t-quote-mark {
  font-size: 3rem; line-height: .7; color: var(--accent); font-weight: 800;
  display: block; margin-bottom: .875rem;
}
.t-quote { font-size: 1rem; line-height: 1.75; color: var(--ink-2); margin-bottom: 1.75rem; max-width: 52ch; }
.t-author { display: flex; align-items: center; gap: .875rem; }
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%; overflow: hidden;
  background: var(--surface); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; font-weight: 700; color: var(--muted);
}
.t-name { font-size: .9375rem; font-weight: 600; color: var(--ink); }
.t-role { font-size: .8125rem; color: var(--muted); }

/* Section Header utility */
.section-header { }
.section-kicker {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: .75rem; display: block;
}
.section-title {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem); font-weight: 700;
  line-height: 1.15; letter-spacing: -.025em; color: var(--ink);
}
.section-body {
  font-size: 1rem; line-height: 1.7; color: var(--muted); max-width: 52ch; margin-top: .75rem;
}

/* CTA Section */
.cta-section { background: var(--ink); padding: 8rem 0; position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; top: -120px; left: -80px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,76,30,.14) 0%, transparent 65%); pointer-events: none;
}
.cta-section::after {
  content: ''; position: absolute; bottom: -150px; right: -80px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,76,30,.07) 0%, transparent 65%); pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.cta-left .display {
  font-size: clamp(2.25rem, 3.5vw, 3.5rem); font-weight: 800;
  line-height: 1.06; letter-spacing: -.035em; color: var(--white); margin-bottom: 1.25rem;
}
.cta-left p { font-size: 1.0625rem; color: rgba(255,255,255,.55); line-height: 1.7; max-width: 44ch; }
.cta-right { display: flex; flex-direction: column; gap: 1.25rem; }
.cta-phone {
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: -.04em;
  color: var(--white); display: block; line-height: 1; transition: color .2s ease;
}
.cta-phone:hover { color: var(--accent); }
.cta-btns { display: flex; gap: .75rem; flex-wrap: wrap; }
.cta-note { font-size: .875rem; color: rgba(255,255,255,.3); }

/* ===================================================
   PORTFOLIO PAGE
   =================================================== */

.page-hero { padding: 8rem 0 5rem; background: var(--white); border-bottom: 1px solid var(--border); }

.filter-bar { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 2.5rem; }
.filter-btn {
  padding: .5rem 1.25rem; border-radius: 100px;
  font-size: .875rem; font-weight: 600; letter-spacing: .01em;
  border: 1.5px solid var(--border); color: var(--ink-2);
  cursor: pointer; transition: all .2s ease;
  background: var(--white); font-family: var(--font);
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.active { background: var(--ink); border-color: var(--ink); color: var(--white); }

.portfolio-section { padding: 5rem 0 8rem; background: var(--surface); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.pf-card {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow .3s cubic-bezier(.16,1,.3,1), transform .3s cubic-bezier(.16,1,.3,1);
}
.pf-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.pf-card.hidden { display: none; }

.pf-card__preview { }
.pf-card__preview .dp-inner { min-height: 180px; }

.pf-card__meta { padding: 1.25rem 1.375rem; }
.pf-card__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: .875rem; }
.pf-card__name { font-size: .9375rem; font-weight: 600; color: var(--ink); margin-bottom: .2rem; }
.pf-card__location { font-size: .8125rem; color: var(--muted); }
.pf-card__footer { display: flex; justify-content: space-between; align-items: center; padding-top: .875rem; border-top: 1px solid var(--border); }
.branch-tag { font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); }

.portfolio-note { text-align: center; padding: 3rem 0 0; }
.portfolio-note p { font-size: .9375rem; color: var(--muted); }
.portfolio-note strong { color: var(--ink-2); }

.pf-cta { padding: 5rem 0; background: var(--white); border-top: 1px solid var(--border); }
.pf-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.pf-cta-text .section-title { font-size: 1.75rem; }
.pf-cta-text p { font-size: 1rem; color: var(--muted); margin-top: .5rem; }

/* ===================================================
   OVER NICK PAGE
   =================================================== */

.about-hero { padding: 8rem 0; background: var(--white); }
.about-split { display: grid; grid-template-columns: 1fr 1.25fr; gap: 6rem; align-items: start; }

.about-photo-col { position: sticky; top: calc(var(--nav-h) + 2rem); }
.about-photo-frame {
  border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 3/4; background: var(--surface);
  display: flex; align-items: center; justify-content: center;
}
.about-photo-placeholder {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: .75rem; width: 100%; height: 100%;
  background: linear-gradient(135deg, #f0f0ec 0%, #e8e8e2 100%);
}
.about-photo-placeholder svg { color: #c8c8c0; }
.about-photo-placeholder span { font-size: .8125rem; color: var(--muted); font-weight: 500; }
.about-photo-caption { margin-top: 1.25rem; padding-left: .25rem; }
.about-photo-caption strong { display: block; font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: .15rem; }
.about-photo-caption span { font-size: .875rem; color: var(--muted); }

.about-text { padding-top: .5rem; }
.about-intro { font-size: 1.25rem; line-height: 1.75; color: var(--ink-2); margin-bottom: 2.5rem; max-width: 52ch; }
.about-body { font-size: 1rem; line-height: 1.8; color: var(--ink-2); margin-bottom: 1.5rem; max-width: 56ch; }
.about-quote {
  margin: 2.5rem 0; padding: 1.75rem 2.25rem;
  background: var(--surface); border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.about-quote p { font-size: 1.0625rem; font-weight: 600; line-height: 1.65; color: var(--ink); max-width: 50ch; }
.about-values { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.125rem; }
.about-value { display: grid; grid-template-columns: 1.25rem 1fr; gap: .875rem; align-items: start; }
.about-value-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; margin-top: .45rem; }
.about-value strong { display: block; font-size: .9375rem; font-weight: 700; color: var(--ink); margin-bottom: .2rem; }
.about-value p { font-size: .9rem; color: var(--muted); line-height: 1.6; }
.about-cta { margin-top: 3rem; display: flex; gap: .75rem; flex-wrap: wrap; }

/* ===================================================
   CONTACT PAGE
   =================================================== */

.contact-hero { padding: 8rem 0 0; background: var(--white); }
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; padding-bottom: 8rem; }
.contact-left { padding-top: .5rem; }
.contact-headline { font-size: clamp(2rem, 3.5vw, 3.25rem); font-weight: 800; line-height: 1.08; letter-spacing: -.035em; color: var(--ink); margin-bottom: 1.25rem; }
.contact-sub { font-size: 1.0625rem; line-height: 1.75; color: var(--ink-2); max-width: 44ch; margin-bottom: 3rem; }
.contact-methods { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 3rem; }
.contact-method {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.125rem 1.375rem;
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  transition: all .25s cubic-bezier(.16,1,.3,1); color: inherit;
}
.contact-method:hover { border-color: var(--accent); transform: translateX(4px); box-shadow: var(--sh-sm); }
.cm-icon {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cm-icon--phone { background: #fef2ee; color: var(--accent); }
.cm-icon--wa    { background: #dcfce7; color: #15803d; }
.cm-icon--email { background: #eff6ff; color: #2563eb; }
.cm-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: .1rem; }
.cm-value { font-size: 1.0625rem; font-weight: 600; color: var(--ink); }

.contact-right {
  background: var(--surface); border-radius: var(--r-xl);
  padding: 3rem; border: 1px solid var(--border);
}
.form-title { font-size: 1.375rem; font-weight: 700; letter-spacing: -.02em; color: var(--ink); margin-bottom: .4rem; }
.form-sub { font-size: .9375rem; color: var(--muted); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.125rem; }
.form-group label { display: block; font-size: .875rem; font-weight: 600; color: var(--ink); margin-bottom: .375rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: .875rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-size: .9375rem; font-family: var(--font); color: var(--ink);
  background: var(--white); transition: border-color .2s ease, box-shadow .2s ease;
  outline: none; appearance: none; -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #c0c0b8; }
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,76,30,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { margin-top: 1.75rem; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-note { font-size: .8125rem; color: var(--muted); margin-top: .875rem; line-height: 1.5; text-align: center; }

/* ===================================================
   RESPONSIVE
   =================================================== */

@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .pijlers__wrap { gap: 3rem; }
  .about-split { gap: 3.5rem; }
  .contact-split { gap: 3.5rem; }
}

@media (max-width: 900px) {
  :root { --nav-h: 64px; }
  .nav__links, .nav__right .btn { display: none; }
  .nav__hamburger { display: flex; }
  .nav__phone-label { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__left { padding: 4rem 1.5rem 3rem; max-width: 100%; margin: 0; order: 1; }
  .hero__right { order: 2; padding: 2rem 1.5rem 3.5rem; min-height: 320px; }
  .hero__mockup { transform: none; }
  .pijlers__wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .demos__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .demo-card--feat { grid-row: span 1; }
  .demo-card--feat .browser-content .dp-inner { min-height: 200px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonial-card:nth-child(2), .testimonial-card:nth-child(3) { margin-top: 0; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; }
  .about-photo-col { position: static; }
  .about-photo-frame { aspect-ratio: 4/3; }
  .contact-split { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .pf-cta-inner { flex-direction: column; align-items: flex-start; }
  .demos__header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .filter-bar { overflow-x: auto; padding-bottom: .5rem; flex-wrap: nowrap; white-space: nowrap; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .cta-section { padding: 5rem 0; }
  .pijlers, .demos, .testimonials { padding: 4.5rem 0; }
  .page-hero { padding: 6rem 0 3rem; }
  .about-hero, .contact-hero { padding: 6rem 0; }
  .contact-hero { padding-bottom: 0; }
  .contact-split { padding-bottom: 5rem; }
  .contact-right { padding: 2rem 1.5rem; }
}
