/* ==========================================================================
   Gieselaar FM Soft Services — onepager
   Palette and type sampled from the approved design.
   ========================================================================== */

:root {
  --navy: #0f2f5a;
  --navy-soft: #133865;
  --navy-line: #27446b;
  --green: #3e9142;
  --green-dark: #34793a;
  --green-light: #eaf3eb;
  --green-on-dark: #5cc98c;
  --tint: #f3f8fc;
  --white: #fff;
  --ink: #0f2f5a;
  --body: #5f6e8c;
  --body-soft: #6b7695;
  --hair: #e3ecf5;

  --font-display: "Outfit", "Segoe UI", system-ui, sans-serif;
  --font-body: "Lato", "Segoe UI", system-ui, sans-serif;

  --shell: 1180px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --shadow-card: 0 18px 40px -28px rgba(15, 47, 90, 0.28);
  --shadow-panel: 0 30px 70px -40px rgba(15, 47, 90, 0.45);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; }

h1, h2, h3, .panel-title, .profile-name, .contact-title {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  z-index: 100;
  border-radius: 0 0 10px 0;
  font-family: var(--font-display);
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ── Header ─────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hair);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: 13px;
  padding: 4px;
  box-shadow: 0 6px 16px -12px rgba(15, 47, 90, 0.5);
}

.brand-mark img { width: 100%; height: 100%; object-fit: contain; }

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.brand-sub {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.site-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.18s ease;
}

.site-nav a:not(.btn):hover { color: var(--green); }

.nav-toggle,
.nav-burger { display: none; }

/* ── Buttons ────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 15px 30px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.18s ease, background-color 0.18s ease,
    box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-navy {
  background: var(--navy);
  color: #fff !important;
  padding: 14px 28px;
  box-shadow: 0 12px 26px -18px rgba(15, 47, 90, 0.9);
}
.btn-navy:hover { background: #0c2547; }

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 30px -18px rgba(62, 145, 66, 0.9);
}
.btn-green:hover { background: var(--green-dark); }

.btn-ghost {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--hair);
  box-shadow: var(--shadow-card);
}
.btn-ghost:hover { border-color: #c9dbec; }

/* ── Shared section pieces ──────────────────────────────────── */

.section { padding: 92px 0; }
.section-white { background: var(--white); }
.section-tint { background: var(--tint); }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 16px;
}

.eyebrow-on-dark { color: var(--green-on-dark); }

h1 {
  font-weight: 800;
  font-size: clamp(2.5rem, 5.1vw, 4rem);
  line-height: 1.09;
  margin-bottom: 26px;
}

h2 {
  font-weight: 700;
  font-size: clamp(1.85rem, 3.1vw, 2.4rem);
  line-height: 1.18;
}

.h2-tight { line-height: 1.16; }

h3 {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
}

.lead,
.body-text {
  margin: 0 0 22px;
  color: var(--body);
  font-size: 17px;
  line-height: 1.78;
}

.body-text:last-child { margin-bottom: 0; }

.section-head-center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

/* ── Hero ───────────────────────────────────────────────────── */

.hero {
  background: var(--tint);
  padding: 104px 0 108px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: center;
}

.hero-copy { max-width: 560px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 34px 0 40px;
}

.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 0;
  padding: 0;
}

.pill-list li {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}

.pill-list li + li { padding-left: 20px; }

.pill-list li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(155deg, var(--navy-soft) 0%, var(--navy) 62%);
  box-shadow: var(--shadow-panel);
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 46px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.orb-a { width: 300px; height: 300px; top: -84px; right: -66px; }
.orb-b { width: 340px; height: 340px; bottom: -96px; right: 8%; }

.welcome-frame {
  position: relative;
  margin: 0;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 26px 60px -30px rgba(0, 0, 0, 0.55);
}

.welcome-frame img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* ── Intro ──────────────────────────────────────────────────── */

.intro { padding: 84px 0; }

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 68px;
  align-items: start;
}

.intro-grid .body-text { margin: 0; padding-top: 34px; }

/* ── Expertise cards ────────────────────────────────────────── */

.card-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 46px;
  align-items: start;
}

.card {
  border-radius: var(--radius-lg);
  padding: 38px 34px 34px;
}

.card-light {
  background: var(--white);
  border: 1px solid var(--hair);
  box-shadow: var(--shadow-card);
}

.card-navy {
  background: var(--navy);
  box-shadow: var(--shadow-panel);
}

.card-navy h3 { color: #fff; }

.card-intro {
  margin: 10px 0 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15.5px;
}

.icon-chip {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  margin-bottom: 26px;
}

.icon-chip svg { width: 21px; height: 21px; }

.icon-chip-light { background: var(--green-light); color: var(--green); }
.icon-chip-green { background: var(--green); color: #fff; border-radius: 50%; }

.card h3 { margin-bottom: 6px; }

.check-rows {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.check-rows li {
  position: relative;
  padding: 14px 0 14px 30px;
  border-bottom: 1px solid var(--hair);
  color: var(--body);
  font-size: 16px;
  line-height: 1.55;
}

.check-rows li:last-child { border-bottom: 0; padding-bottom: 4px; }

.check-rows li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 20px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.check-rows-inverse li {
  border-bottom-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
}

.check-rows-inverse li::before {
  border-left-color: var(--green-on-dark);
  border-bottom-color: var(--green-on-dark);
}

/* ── Waarom samenwerken ─────────────────────────────────────── */

.about-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 66px;
  align-items: start;
}

.profile-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--tint);
  border: 1px solid var(--hair);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-bottom: 30px;
}

.profile-mark {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  flex: 0 0 auto;
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius-sm);
  padding: 8px;
}

.profile-mark img { width: 100%; height: 100%; object-fit: contain; }

/* Same 84px chip, but a photo fills it edge to edge instead of being inset
   like the transparent logo. */
.profile-mark-photo { padding: 0; overflow: hidden; }
.profile-mark-photo img { object-fit: cover; border-radius: inherit; }

.profile-name {
  font-weight: 700;
  font-size: 1.02rem;
  margin: 0 0 4px;
}

.profile-role {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--body-soft);
}

.about-right h2 { margin-bottom: 34px; }

.tick-grid,
.tick-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  margin-bottom: 40px;
}

.tick-grid li,
.tick-list li {
  position: relative;
  padding-left: 34px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.55;
}

.tick-list li + li { margin-top: 16px; }

.tick-grid li::before,
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--green);
}

.tick-grid li::after,
.tick-list li::after {
  content: "";
  position: absolute;
  left: 5.5px;
  top: 9px;
  width: 8px;
  height: 4px;
  border-left: 1.8px solid #fff;
  border-bottom: 1.8px solid #fff;
  transform: rotate(-45deg);
}

.quote {
  margin: 0;
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 30px 32px;
  box-shadow: var(--shadow-panel);
}

.quote p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.5;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.quote cite {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-on-dark);
}

/* ── Werkwijze ──────────────────────────────────────────────── */

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 0 0 44px;
  padding: 0;
}

.step {
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius-md);
  padding: 22px 22px 26px;
  box-shadow: var(--shadow-card);
  min-height: 128px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step-num {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
}

.step p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.35;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.panel-card {
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 46px 44px;
  box-shadow: var(--shadow-card);
}

.panel-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}

.panel-title {
  font-weight: 700;
  font-size: clamp(1.5rem, 2.3vw, 1.85rem);
  line-height: 1.22;
  margin-bottom: 20px;
}

/* ── Contact ────────────────────────────────────────────────── */

.contact-card {
  background: var(--navy);
  border-radius: 26px;
  padding: 58px 56px;
  box-shadow: var(--shadow-panel);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-title {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.75rem, 2.9vw, 2.25rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.72;
}

.contact-links { display: grid; gap: 14px; }

.contact-pill {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 16px;
  background: var(--navy-line);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  padding: 17px 22px;
  text-decoration: none;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.contact-pill:hover {
  background: #2f5080;
  transform: translateX(3px);
}

.pill-icon { color: var(--green-on-dark); display: grid; place-items: center; }
.pill-icon svg { width: 20px; height: 20px; }

.pill-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  color: #fff;
}

.pill-arrow { color: rgba(255, 255, 255, 0.5); font-size: 17px; }

/* ── Footer ─────────────────────────────────────────────────── */

.site-footer {
  background: var(--white);
  border-top: 1px solid var(--hair);
  padding: 62px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.footer-legal-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--navy);
  margin: 26px 0 0;
}

.footer-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 6px 0 0;
}

.footer-meta > div { padding-left: 18px; border-left: 1px solid var(--hair); }

.footer-meta dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.footer-meta dd {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  word-break: break-word;
}

.footer-meta dd a { text-decoration: none; transition: color 0.18s ease; }
.footer-meta dd a:hover { color: var(--green); }

.footer-bottom {
  margin: 44px 0 0;
  padding-top: 26px;
  border-top: 1px solid var(--hair);
  text-align: center;
  font-size: 14.5px;
  color: var(--body-soft);
}

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 1080px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .tick-grid { gap: 18px 28px; }
}

@media (max-width: 940px) {
  .section { padding: 72px 0; }
  .hero { padding: 76px 0 84px; }

  .hero-grid,
  .intro-grid,
  .card-duo,
  .about-grid,
  .panel-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-copy { max-width: none; }
  .hero-panel { min-height: 0; padding: 34px; }
  .intro-grid .body-text { padding-top: 0; }
  .footer-meta { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* Collapsed navigation */
  .nav-burger {
    display: grid;
    gap: 5px;
    padding: 10px;
    cursor: pointer;
    margin-left: auto;
  }
  .nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--white);
    border-bottom: 1px solid var(--hair);
    padding: 18px 24px 26px;
    box-shadow: var(--shadow-card);
  }
  .site-nav a { padding: 12px 0; }
  .site-nav .btn { margin-top: 10px; align-self: flex-start; }
  .nav-toggle:checked ~ .site-nav { display: flex; }
  .header-inner { position: relative; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 58px 0; }
  .hero { padding: 56px 0 66px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .tick-grid { grid-template-columns: 1fr; }
  .card { padding: 30px 24px; }
  .panel-card { padding: 32px 24px; }
  .contact-card { padding: 38px 26px; }
  .footer-meta { grid-template-columns: 1fr; }
  .profile-card { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { flex: 1 1 auto; }
}

@media (max-width: 420px) {
  .steps { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
