/* ===========================================================
   CAUGIA CONSULTING — PRODUCTION CSS v4.0
   Calm • Professional • Systematic • Enterprise-grade
   =========================================================== */


/* -----------------------------------------------------------
   ROOT VARIABLES
   ----------------------------------------------------------- */

:root {
  --ink: #0b132b;
  --blue: #0046A5;
  --navy: #002A5C;
  --accent: #F36C21;
  --accent-soft: #FFD9C2;
  --silver: #E6E9EF;

  --bg-light: #f9fafc;
  --border: rgba(0, 0, 0, 0.08);

  --header-h: 64px;
  --maxw: 1180px;

  --radius: 12px;
  --transition: 0.22s ease;
}


/* -----------------------------------------------------------
   RESET
   ----------------------------------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  overflow-y: scroll;
}

body {
  min-height: 100%;
  background: #fff;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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


/* -----------------------------------------------------------
   LAYOUT HELPERS
   ----------------------------------------------------------- */

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px;
}

main {
  min-height: calc(100vh - var(--header-h));
}

main .wrap {
  padding: 96px 24px 80px;
}

section {
  margin-bottom: 64px;
}


/* -----------------------------------------------------------
   HEADER
   ----------------------------------------------------------- */

header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

header.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

header .inner {
  max-width: var(--maxw);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
}


/* -----------------------------------------------------------
   BRAND / LOGO
   ----------------------------------------------------------- */

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

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.brand span {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}


/* -----------------------------------------------------------
   DESKTOP NAV
   ----------------------------------------------------------- */

nav.nav-desktop {
  display: flex;
  align-items: center;
  gap: 22px;
}

nav.nav-desktop a {
  position: relative;
  font-size: 0.95rem;
  text-decoration: none;
  color: rgba(15, 23, 42, 0.78);
  padding: 6px 2px;
  transition: color var(--transition);
}

nav.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 999px;
  transition: width var(--transition);
}

nav.nav-desktop a:hover {
  color: var(--ink);
}

nav.nav-desktop a:hover::after,
nav.nav-desktop a.active::after {
  width: 100%;
}

.nav-desktop .cta {
  margin-left: 8px;
}


/* -----------------------------------------------------------
   CTA BUTTONS
   ----------------------------------------------------------- */

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              box-shadow var(--transition), transform var(--transition),
              border-color var(--transition);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.cta:hover {
  background: #003986;
  border-color: #003986;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}

.cta--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: none;
}

.cta--ghost:hover {
  background: #f3f4f6;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

/* Header CTA must stay white */
.nav-desktop .cta,
.nav-desktop .cta:hover {
  color: #fff !important;
}


/* -----------------------------------------------------------
   MOBILE NAV
   ----------------------------------------------------------- */

.menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #111827;
  display: block;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #111827;
}

.menu-toggle span::before {
  top: -5px;
}

.menu-toggle span::after {
  top: 5px;
}

nav.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(15, 23, 42, 0.04);
  padding: 16px 18px 20px;
  flex-direction: column;
  gap: 12px;
}

nav.nav-mobile a {
  text-decoration: none;
  font-size: 1rem;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

nav.nav-mobile.open {
  display: flex;
}

@media (max-width: 768px) {
  nav.nav-desktop {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
}
/* ===========================================================
   BLOCK 2 — GENERIC COMPONENTS / CARDS / SECTIONS / GRIDS
   Calm • Professional • Modern • Caugia Style
   =========================================================== */


/* -----------------------------------------------------------
   TYPOGRAPHY
   ----------------------------------------------------------- */

h1 {
  font-size: 2.9rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 18px;
  line-height: 1.08;
}

h2 {
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--blue);
  line-height: 1.25;
}

p {
  font-size: 1.06rem;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.88);
}

.page-intro {
  max-width: 720px;
  margin-bottom: 32px;
}

.page-intro p {
  color: rgba(15, 23, 42, 0.78);
}

.section-heading {
  margin-bottom: 16px;
}

.section-body {
  max-width: 760px;
  color: rgba(15, 23, 42, 0.84);
}


/* -----------------------------------------------------------
   GENERIC CARD
   ----------------------------------------------------------- */

.card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 22px 22px 20px;

  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition:
    box-shadow var(--transition),
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.card p {
  font-size: 0.98rem;
  color: rgba(15, 23, 42, 0.85);
}


/* -----------------------------------------------------------
   GENERIC HOMEPAGE SECTIONS
   ----------------------------------------------------------- */

.home-section {
  margin-bottom: 72px;
}

.home-section-line {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: 40px;
  margin-top: 20px;
}

.home-split {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 40px;
  align-items: flex-start;
}


/* -----------------------------------------------------------
   GRIP EXAMPLE CARD (SIDE CARD)
   ----------------------------------------------------------- */

.home-grip-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 20px 20px 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.home-grip-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(15, 23, 42, 0.7);
  margin-bottom: 6px;
}

.home-grip-score {
  font-weight: 700;
  margin-bottom: 6px;
}

.home-grip-note {
  font-size: 0.9rem;
  color: rgba(75, 85, 99, 1);
}


/* -----------------------------------------------------------
   PRODUCT LADDER (3 COLUMNS)
   ----------------------------------------------------------- */

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

.service-label {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.7);
  margin-bottom: 8px;
}

.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.service-body {
  margin-bottom: 14px;
  color: rgba(15, 23, 42, 0.86);
}

.service-features {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}

.service-features li {
  font-size: 0.92rem;
  margin-bottom: 6px;
  color: rgba(15, 23, 42, 0.9);
}

.service-price {
  margin-bottom: 12px;
  font-size: 0.98rem;
  color: rgba(15, 23, 42, 0.9);
}

.service-price span {
  font-weight: 700;
}


/* -----------------------------------------------------------
   MODULES GRID
   ----------------------------------------------------------- */

.home-modules-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 22px;
}

.home-module {
  text-decoration: none;
}

.home-module h3 {
  font-size: 1.04rem;
  margin-bottom: 4px;
  color: var(--ink);
}

.home-module p {
  font-size: 0.9rem;
  color: rgba(75, 85, 99, 1);
}

.module-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(15, 23, 42, 0.7);
  margin-bottom: 4px;
}

.home-modules-cta {
  margin-top: 20px;
}


/* -----------------------------------------------------------
   RESOURCES (BOTTOM CARDS)
   ----------------------------------------------------------- */

.home-resource h3 {
  margin-bottom: 6px;
  font-size: 1.12rem;
  color: var(--ink);
}

.home-resource p {
  font-size: 0.95rem;
  color: rgba(75, 85, 99, 1);
}


/* -----------------------------------------------------------
   INLINE READ MORE
   ----------------------------------------------------------- */

.readmore {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  font-size: 0.94rem;
  text-decoration: none;
  color: var(--blue);
}

.readmore:hover {
  text-decoration: underline;
}


/* -----------------------------------------------------------
   CLEAN LISTS (NO BULLETS)
   ----------------------------------------------------------- */

.plain-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.plain-list li {
  font-size: 0.95rem;
  margin-bottom: 4px;
}


/* -----------------------------------------------------------
   IMAGE ROUNDING FOR CLARITY + DIAMOND SECTIONS
   ----------------------------------------------------------- */

.clarity-split {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 48px;
  align-items: center;
}

.clarity-image img,
.diamond-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.08);
  display: block;
}

/* Two-column layout for GRIP Diamond section */
.diamond-split {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 48px;
  align-items: center;
}

/* ============================================
   MOBILE FIX — Clarity + Diamond sections
   ============================================ */

@media (max-width: 860px) {

  .clarity-split,
  .diamond-split {
    grid-template-columns: 1fr;   /* tekst en beeld onder elkaar */
    gap: 32px;
  }

  .clarity-image,
  .diamond-image {
    order: 2;                     /* foto NA de tekst op mobiel */
  }

  .clarity-text,
  .diamond-text {
    order: 1;
  }

  .clarity-image img,
  .diamond-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
  }
}

/* ===========================================================
   BLOCK 3 — HOMEPAGE HERO + GRIP DIAMOND (Enterprise v4.3)
   =========================================================== */

/* ---------- HERO LAYOUT (Refined) ---------- */

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 44px; /* was 48 — subtiel rustiger */
  align-items: center;
}

.home-hero-copy {
  margin-top: -32px; /* was -38 — minder floaty */
}

.home-hero-copy h1 {
  margin-bottom: 14px; /* was 16 — iets compacter */
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px; /* was 12 — iets luxer spacing */
  margin-bottom: 12px;
}

.hero-footnote {
  margin-top: 10px; /* +2px extra breathing room */
}

/* ---------- RIGHT COLUMN WRAPPER (Refined) ---------- */

.home-hero-visual {
  width: 108%;                /* was 125% — veel beter in balans */
  transform-origin: left center;
  transform: translateX(-10%); /* was -20% — beter gecentreerd */

  border-radius: 22px;
  padding: 24px 26px 36px;

  /* subtielere gradient */
  background: linear-gradient(135deg, #f9fafc 0%, #f3f6ff 100%);

  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 12px 38px rgba(15, 23, 42, 0.06);
}

.hero-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.75fr);
  gap: 22px; /* was 26px — strakker, minder lucht */
  align-items: center;
}


/* ===========================================================
   BLOCK 3 — HOMEPAGE HERO + GRIP DIAMOND (Enterprise v5.2)
   Calm • Professional • Systematic • Caugia Style
   =========================================================== */


/* ---------- HERO LAYOUT ---------- */

.home-hero {
  margin-bottom: 96px;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 48px;
  align-items: center;
}

.home-hero-copy {
  margin-top: -38px;
}

.home-hero-copy .kicker {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.65);
  margin-bottom: 12px;
}

.home-hero-copy h1 {
  font-size: 2.85rem;
  line-height: 1.08;
  margin-bottom: 16px;
}

.hero-lead {
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.86);
  max-width: 34rem;
  margin-bottom: 20px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.hero-footnote {
  font-size: 0.9rem;
  color: rgba(75, 85, 99, 1);
}


/* ---------- RIGHT COLUMN WRAPPER ---------- */

.home-hero-visual {
  width: 125%;
  transform-origin: left center;
  transform: translateX(-20%);
  border-radius: 22px;
  padding: 26px 26px 40px;
  background: linear-gradient(135deg, #f9fafc, #f0f4ff);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.07);
}

.hero-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.8fr);
  gap: 26px;
  align-items: center;
}


/* ===========================================================
   HEALTH CARD — Clean Enterprise v2
   =========================================================== */

.hero-health {
  border-radius: 14px;
  padding: 16px 18px 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.hero-health-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}

.hero-health-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: rgba(15, 23, 42, 0.65);
}

.hero-health-score {
  font-size: 1.42rem;
  font-weight: 700;
}

.hero-health-score span:last-child {
  font-size: 0.88rem;
  margin-left: 2px;
  color: rgba(75, 85, 99, 1);
}


/* ---------- HEALTH BARS ---------- */

.hero-health-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.hero-health-row {
  display: grid;
  grid-template-columns: 1.4fr 3fr auto;
  gap: 10px;
  align-items: center;
  font-size: 0.9rem;
}

.hero-health-name {
  color: rgba(55, 65, 81, 1);
}

/* NEW — Caugia Gradient with calm distribution */
.hero-health-bar {
  position: relative;
  width: 100%;
  height: 6px;
  background: #E5E7EB;
  border-radius: 999px;
  overflow: hidden;
}

.hero-health-bar span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: inherit;

  /* ★ Calm Caugia gradient v2 (blue → accent subtle) */
  background: linear-gradient(90deg,
    var(--blue) 0%,
    var(--blue) 55%,
    var(--accent) 100%
  );

  transition: width 0.3s ease;
}

.hero-health-value {
  font-variant-numeric: tabular-nums;
  font-size: 0.82rem;
  color: rgba(31, 41, 55, 1);
}


/* ---------- SLIDERS (clean, smaller) ---------- */

.hero-health-sliders {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}

.hero-health-slider {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
}

.hero-health-slider label {
  color: rgba(75, 85, 99, 1);
}

.hero-health-slider input[type="range"] {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: #E5E7EB;
  appearance: none;
  cursor: pointer;
}

/* smaller thumb */
.hero-health-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 2px rgba(0, 70, 165, 0.20);
}

.hero-health-slider input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 2px rgba(0, 70, 165, 0.20);
}


/* ===========================================================
   SVG DIAMOND — Enterprise v4
   =========================================================== */

.diamond-card {
  position: relative;
  border-radius: 16px;
  padding: 20px 20px 26px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.diamond-title {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  text-align: center;
  color: rgba(15, 23, 42, 0.55);
}

.diamond-canvas {
  position: relative;
  height: 260px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diamond-svg {
  width: 100%;
  max-width: 260px;
  height: auto;
}

/* diamond labels clean */

.diamond-label {
  position: absolute;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.9);
  background: transparent;
  padding: 0;
}

.diamond-label-top    { top: 4px; left: 50%; transform: translateX(-50%); }
.diamond-label-bottom { bottom: 4px; left: 50%; transform: translateX(-50%); }

.diamond-label-right  {
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
}

.diamond-label-left   {
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}


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

@media (max-width: 1024px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .home-hero-copy {
    margin-top: -8px;
  }

  .home-hero-copy h1 {
    font-size: 2.45rem;
  }

  .hero-visual-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .home-hero-visual {
    width: 100%;
    transform: none;
  }
}

@media (max-width: 840px) {
  .diamond-canvas {
    height: 240px;
  }
}

@media (max-width: 520px) {
  .hero-cta-row {
    flex-direction: column;
  }

  .diamond-canvas {
    height: 220px;
  }

  .diamond-label-right { right: -4px; }
  .diamond-label-left  { left: -4px; }
}



/* ===========================================================
   BLOCK 4 — RESPONSIVE RULES v4.3
   =========================================================== */


/* -----------------------------------------------------------
   LARGE TABLETS (max-width: 1180px)
   ----------------------------------------------------------- */

@media (max-width: 1180px) {
  main .wrap {
    padding: 72px 20px 72px;
  }

  .home-hero-grid {
    gap: 40px;
  }

  .home-hero-visual {
    padding: 22px 22px;
  }

  .diamond-shell {
    width: 360px;
    height: 360px;
  }

  .home-modules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* -----------------------------------------------------------
   TABLETS (max-width: 1024px)
   ----------------------------------------------------------- */

@media (max-width: 1024px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .home-hero-copy {
    margin-top: -8px;
  }

  .home-hero-copy h1 {
    font-size: 2.45rem;
  }

  /* Grid binnen hero visual wordt automatisch 1 kolom */
  .hero-visual-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .diamond-shell {
    width: 320px;
    height: 320px;
  }

  .home-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* -----------------------------------------------------------
   SMALL TABLETS / LARGE PHONES (max-width: 840px)
   ----------------------------------------------------------- */

@media (max-width: 840px) {
  header .inner {
    padding: 14px 18px;
  }

  .home-hero {
    margin-bottom: 80px;
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-copy {
    margin-top: 0;
  }

  .diamond-shell {
    width: 300px;
    height: 300px;
  }

  .home-grid-3,
  .home-modules-grid {
    grid-template-columns: 1fr;
  }
}


/* -----------------------------------------------------------
   NAVIGATION (max-width: 780px)
   ----------------------------------------------------------- */

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

  .menu-toggle {
    display: flex;
  }

  .nav-mobile {
    display: flex;
  }
}


/* -----------------------------------------------------------
   SMALL PHONES (max-width: 520px)
   ----------------------------------------------------------- */

@media (max-width: 520px) {
  main .wrap {
    padding: 64px 16px 64px;
  }

  .home-hero {
    margin-bottom: 64px;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .home-hero-visual {
    padding: 18px 16px 20px;
  }

  .diamond-shell {
    width: 250px;
    height: 250px;
  }

  /* Labels iets dichterbij */
  .diamond-label-right {
    right: -22px;
  }

    .diamond-label-left {
    left: -22px;
  }
}  /* ← deze sluit de @media (max-width: 520px) af */

/* ===========================================================
   FOOTER — ENTERPRISE STYLE
   =========================================================== */


footer {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: #ffffff;
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 0.9rem;
  color: rgba(15, 23, 42, 0.7);
}

/* linker kant: tekst */

.footer-left p {
  margin: 0;
}

/* rechter kant: links als rustige horizontale rij */

.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-right a {
  color: rgba(15, 23, 42, 0.75);
  text-decoration: none;
}

.footer-right a:visited {
  color: rgba(15, 23, 42, 0.75);
}

.footer-right a:hover {
  color: var(--blue);
  text-decoration: underline;
}

/* mobiel: alles onder elkaar, maar nog steeds netjes */

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    gap: 8px 12px;
  }
}
