/*
Theme Name: Novelco Bedrijfsorganisatie
Theme URI: https://novelco.be
Author: Novelco
Description: Een professionele one-page WordPress-homepage voor het bedrijfsorganisatorische luik van Novelco.
Version: 1.1
License: Private
Text Domain: novelco-bedrijfsorganisatie
*/

:root {
  --navy-950: #061a3d;
  --navy-900: #0b2f75;
  --navy-850: #103d92;
  --navy-800: #1455c8;
  --navy-700: #2f7fe3;
  --gold-500: #f3ba1b;
  --gold-400: #ffd13b;
  --gold-300: #ffe37a;
  --green-600: #009a56;
  --green-500: #00b873;
  --green-300: #7ee0b0;
  --cream-100: #fff9df;
  --slate-100: #eef6ff;
  --slate-200: #d8e9ff;
  --slate-300: #b4cbe8;
  --slate-700: #40516e;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 16px 42px rgba(2, 13, 30, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy-900);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  background: #f4f9ff;
}

body.admin-bar .site-header {
  top: 32px;
}

a {
  color: inherit;
}

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

.container {
  width: min(var(--max), calc(100% - 42px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gold-400);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

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

h1 {
  max-width: 970px;
  color: var(--white);
  font-size: clamp(2.7rem, 7vw, 6.65rem);
  font-weight: 900;
}

h2 {
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3.85rem);
  font-weight: 900;
}

h3 {
  color: var(--navy-950);
  font-size: 1.22rem;
  font-weight: 850;
}

p {
  margin: 0;
}

.lead {
  max-width: 805px;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.section-lead {
  max-width: 780px;
  margin-top: 22px;
  color: var(--slate-700);
  font-size: 1.08rem;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(20, 85, 200, 0.12);
  box-shadow: 0 12px 38px rgba(6, 26, 61, 0.08);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  color: var(--navy-800);
  text-decoration: none;
}

.brand-logo {
  width: clamp(220px, 25vw, 345px);
  max-height: 62px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(6, 26, 61, 0.72);
  font-size: 0.92rem;
  font-weight: 760;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--navy-800);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-400), var(--green-500));
  box-shadow: 0 18px 35px rgba(255, 209, 59, 0.25);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.btn-light {
  color: var(--navy-950);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 84px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 209, 59, 0.24), transparent 28%),
    radial-gradient(circle at 0% 14%, rgba(47, 127, 227, 0.34), transparent 34%),
    radial-gradient(circle at 98% 72%, rgba(0, 184, 115, 0.24), transparent 30%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 45%, #071f4f 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -220px 0;
  height: 460px;
  background: radial-gradient(ellipse at 48% 0%, rgba(0, 184, 115, 0.16), transparent 62%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.55fr);
  gap: 48px;
  align-items: center;
}

.hero-content {
  display: grid;
  gap: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.proof-card {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
}

.proof-card strong {
  display: block;
  color: var(--gold-300);
  font-size: 1.05rem;
  line-height: 1.1;
}

.proof-card span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.hero-panel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-top {
  padding: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.panel-logo-wrap {
  margin-bottom: 22px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 36px rgba(6, 26, 61, 0.18);
}

.panel-logo {
  width: 100%;
  height: auto;
}

.panel-title {
  color: var(--white);
  font-size: 1.35rem;
}

.panel-text {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.panel-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.panel-list li {
  padding: 18px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 720;
}

.panel-list li:last-child {
  border-bottom: 0;
}

.section {
  padding: 92px 0;
}

.section.compact {
  padding: 70px 0;
}

.white-section {
  background: #ffffff;
}

.soft-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 209, 59, 0.14), transparent 28%),
    #f6f8fb;
}

.dark-section {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 209, 59, 0.16), transparent 24%),
    linear-gradient(135deg, var(--navy-950), var(--navy-850));
}

.dark-section h2,
.dark-section h3 {
  color: var(--white);
}

.dark-section .section-lead,
.dark-section p {
  color: rgba(255, 255, 255, 0.75);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  align-items: end;
  margin-bottom: 44px;
}

.section-head > div:first-child {
  max-width: 790px;
}

.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 209, 59, 0.42);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--navy-800);
  background: rgba(255, 209, 59, 0.12);
  font-size: 0.82rem;
  font-weight: 850;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card, .method-card, .profile-card, .outcome-card, .contact-card {
  border: 1px solid rgba(11, 23, 40, 0.08);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  min-height: 260px;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 56px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--navy-800), var(--green-500));
}

.card-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 14px;
  color: var(--navy-950);
  background: var(--cream-100);
  font-weight: 900;
}

.service-card p, .method-card p, .profile-card p, .outcome-card p, .contact-card p {
  margin-top: 14px;
  color: var(--slate-700);
}

.link-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.link-list li {
  position: relative;
  padding-left: 23px;
  color: var(--slate-700);
}

.link-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-500);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.statement {
  position: sticky;
  top: 108px;
  padding: 34px;
  border: 1px solid rgba(255, 209, 59, 0.18);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #ffffff, #eef6ff);
  box-shadow: var(--shadow-soft);
}

.statement strong {
  color: var(--navy-950);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.statement p {
  margin-top: 18px;
  color: var(--slate-700);
  font-size: 1.04rem;
}

.method-list {
  display: grid;
  gap: 18px;
}

.method-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  padding: 26px;
}

.method-step {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-400), var(--green-500));
  font-weight: 900;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.outcome-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.outcome-card h3 {
  font-size: 1.05rem;
}

.outcome-card p {
  color: rgba(255, 255, 255, 0.7);
}

.profile-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
}

.profile-card {
  padding: 30px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(11, 23, 40, 0.1);
  border-radius: 999px;
  color: var(--navy-800);
  background: #eef6ff;
  font-size: 0.86rem;
  font-weight: 760;
}

.signature {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(241, 220, 150, 0.17), transparent 26%),
    linear-gradient(135deg, var(--navy-950), #172a44);
  border-color: rgba(255, 255, 255, 0.1);
}

.signature h3 {
  color: var(--white);
}

.signature p {
  color: rgba(255, 255, 255, 0.76);
}

.quote {
  margin-top: 24px;
  padding-left: 18px;
  border-left: 3px solid var(--green-500);
  color: var(--cream-100) !important;
  font-size: 1.12rem;
  font-weight: 800;
}

.table-wrap {
  overflow: auto;
  border: 1px solid rgba(11, 23, 40, 0.08);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.matrix {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.matrix th, .matrix td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(11, 23, 40, 0.07);
  text-align: left;
  vertical-align: top;
}

.matrix th {
  color: var(--navy-950);
  background: #eaf4ff;
  font-size: 0.88rem;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.matrix tr:last-child td {
  border-bottom: 0;
}

.matrix td:first-child {
  color: var(--navy-950);
  font-weight: 850;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 48px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at 86% 12%, rgba(241, 220, 150, 0.19), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow);
}

.final-cta h2 {
  color: var(--white);
  max-width: 820px;
}

.final-cta p {
  max-width: 780px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
}

.contact-card {
  padding: 24px;
}

.contact-card a {
  color: var(--navy-950);
  font-weight: 850;
  text-decoration: none;
}

.footer {
  padding: 32px 0;
  color: rgba(255, 255, 255, 0.62);
  background: var(--navy-950);
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}

.disclaimer {
  max-width: 850px;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .brand-logo {
    width: 250px;
  }

  .hero-grid,
  .split-grid,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .proof-row,
  .cards-grid,
  .outcomes-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .statement {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .hero {
    padding: 72px 0 58px;
  }

  .section {
    padding: 66px 0;
  }

  .section-head {
    display: block;
  }

  .proof-row,
  .cards-grid,
  .outcomes-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .method-card {
    grid-template-columns: 1fr;
  }

  .final-cta {
    padding: 30px;
  }

  .brand-logo {
    width: 210px;
    max-height: 54px;
  }

  .site-header .btn {
    display: none;
  }
}
