/*
Theme Name: LinkedInSupport
Theme URI: https://linkedinsupport.nl
Author: LinkedInSupport
Author URI: https://linkedinsupport.nl
Description: Kant-en-klaar WordPress-thema voor LinkedInSupport.nl — landingspagina met pakketten, aanpak en reviews. Geïnspireerd op de opzet van masteryoursales.nl, met een eigen visuele identiteit.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: linkedinsupport
*/

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root{
  --ink:        #0B1220;
  --ink-soft:   #16213D;
  --paper:      #EEF1F6;
  --white:      #FFFFFF;
  --cobalt:     #2554FF;
  --cobalt-dk:  #173BBF;
  --amber:      #FFB020;
  --amber-dk:   #E0980A;
  --line:       #D8DEEA;
  --line-dark:  #2A3558;
  --muted:      #5B6B8C;
  --muted-lt:   #93A0C2;
  --ok:         #17B26A;

  --font-display: 'Space Grotesk', 'Arial Narrow', sans-serif;
  --font-body:    'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'IBM Plex Mono', 'Courier New', monospace;

  --radius: 14px;
  --radius-sm: 8px;
  --max: 1180px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family: var(--font-display); margin:0 0 .5em; line-height:1.12; font-weight:600; letter-spacing:-0.01em; }
p{ margin:0 0 1em; }
button{ font-family: inherit; }

.container{ max-width: var(--max); margin:0 auto; padding: 0 24px; }
.eyebrow{
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12.5px;
  color: var(--cobalt);
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom: 16px;
}
.eyebrow::before{
  content:"";
  width:7px; height:7px; border-radius:50%;
  background: var(--amber);
  display:inline-block;
}
.section{ padding: 96px 0; }
.section--tight{ padding: 64px 0; }
.section-head{ max-width: 640px; margin-bottom: 56px; }
.section-head h2{ font-size: clamp(28px, 4vw, 42px); }
.section-head p{ color: var(--muted); font-size: 18px; }
.section--dark{ background: var(--ink); color: var(--white); }
.section--dark .muted{ color: var(--muted-lt); }
.section--white{ background: var(--white); }

a.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family: var(--font-body);
  font-weight:600;
  font-size:15.5px;
  padding: 14px 26px;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
a.btn-primary{ background: var(--cobalt); color:#fff; box-shadow: 0 8px 20px -8px rgba(37,84,255,.55); }
a.btn-primary:hover{ background: var(--cobalt-dk); transform: translateY(-1px); }
a.btn-ghost{ background: transparent; color: var(--ink); border:1.5px solid var(--line-dark); }
a.btn-ghost:hover{ border-color: var(--cobalt); color: var(--cobalt); }
.section--dark a.btn-ghost{ border-color: rgba(255,255,255,.25); color:#fff; }
.section--dark a.btn-ghost:hover{ border-color: var(--amber); color: var(--amber); }
a.btn-amber{ background: var(--amber); color: var(--ink); box-shadow: 0 8px 20px -8px rgba(255,176,32,.55); }
a.btn-amber:hover{ background: var(--amber-dk); transform: translateY(-1px); }

/* node bullet — signature motif reused across lists */
.node-list li{
  display:flex; gap:12px; align-items:flex-start;
  padding: 10px 0;
  font-size: 16px;
}
.node-list li::before{
  content:"";
  flex:0 0 auto;
  width:9px; height:9px; border-radius:50%;
  background: var(--cobalt);
  margin-top: 8px;
  box-shadow: 0 0 0 3px rgba(37,84,255,.15);
}
.node-list--check li::before{ background: var(--ok); box-shadow: 0 0 0 3px rgba(23,177,106,.15); }

/* ============================================================
   3. HEADER / NAV
   ============================================================ */
.site-header{
  position: sticky; top:0; z-index: 50;
  background: rgba(238,241,246,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container{
  display:flex; align-items:center; justify-content:space-between;
  height: 82px;
}
.logo{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  display:flex; align-items:center; gap:9px;
  color: var(--ink);
}
.logo .dot{
  width:9px; height:9px; border-radius:50%;
  background: var(--cobalt);
  box-shadow: 0 0 0 4px rgba(37,84,255,.18);
}
.logo img{ max-height: 34px; width:auto; }
.logo span.support{ color: var(--cobalt); }

.main-nav ul{ display:flex; gap:34px; }
.main-nav a{
  font-size: 15px; font-weight:500; color: var(--ink);
  position: relative; padding: 4px 0;
}
.main-nav a:hover{ color: var(--cobalt); }

.header-actions{ display:flex; align-items:center; gap:18px; }
.nav-toggle{ display:none; }

@media (max-width: 880px){
  .main-nav{
    position: fixed; inset: 82px 0 0 0;
    background: var(--paper);
    transform: translateY(-8px);
    opacity:0; pointer-events:none;
    transition: opacity .2s ease, transform .2s ease;
    padding: 30px 24px;
    overflow-y:auto;
  }
  .main-nav ul{ flex-direction:column; gap:4px; }
  .main-nav a{ display:block; padding: 14px 4px; font-size:19px; border-bottom:1px solid var(--line); }
  body.nav-open .main-nav{ opacity:1; pointer-events:auto; transform:none; }
  .header-actions .btn-primary{ display:none; }
  .nav-toggle{
    display:flex; flex-direction:column; gap:5px; justify-content:center;
    width:38px; height:38px; background:none; border:none; cursor:pointer;
  }
  .nav-toggle span{ height:2px; background:var(--ink); border-radius:2px; transition:.2s; }
  body.nav-open .nav-toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2){ opacity:0; }
  body.nav-open .nav-toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
}
@media (min-width: 881px){ .nav-toggle{ display:none; } }

/* ============================================================
   4. HERO
   ============================================================ */
.hero{ padding: 84px 0 60px; overflow:hidden; }
.hero .container{
  display:grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items:center;
}
.hero h1{
  font-size: clamp(38px, 5.6vw, 64px);
  max-width: 12ch;
}
.hero h1 .accent{ color: var(--cobalt); }
.hero p.lead{ font-size: 19px; color: var(--muted); max-width: 46ch; margin-bottom: 32px; }
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom: 44px; }

.stat-bar{ display:flex; gap:40px; flex-wrap:wrap; border-top:1px solid var(--line); padding-top: 26px; }
.stat-bar div{ display:flex; flex-direction:column; }
.stat-bar b{ font-family: var(--font-mono); font-size: 24px; color: var(--ink); }
.stat-bar span{ font-size: 13px; color: var(--muted); }

.hero-graphic{ position:relative; }
.hero-graphic svg{ width:100%; height:auto; }

/* ============================================================
   5. INTRO / "WAT WE DOEN"
   ============================================================ */
.intro-grid{
  display:grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items:start;
}
.intro-grid h2{ font-size: clamp(26px,3.4vw,36px); }
.intro-grid .col-text p{ font-size: 17.5px; color: var(--ink-soft); }
.pillar{ display:flex; gap:16px; padding: 20px 0; border-top:1px solid var(--line); }
.pillar:last-child{ border-bottom:1px solid var(--line); }
.pillar .num{ font-family: var(--font-mono); color: var(--cobalt); font-size:14px; padding-top:2px; }
.pillar h4{ font-size:17px; margin-bottom:4px; }
.pillar p{ color: var(--muted); font-size:15px; margin:0; }

/* ============================================================
   6. HOE HET WERKT — connection path
   ============================================================ */
.path-wrap{ position:relative; }
.path-line{
  position:absolute; top:26px; left:0; right:0; height:2px;
  background: repeating-linear-gradient(90deg, var(--line-dark) 0 8px, transparent 8px 16px);
  display:none;
}
@media(min-width:900px){ .path-line{ display:block; } }
.steps{
  display:grid; grid-template-columns: repeat(4,1fr); gap: 32px; position:relative;
}
.step .marker{
  width:54px; height:54px; border-radius:50%;
  background: var(--ink-soft);
  border: 2px solid var(--cobalt);
  color:#fff; font-family: var(--font-mono); font-size:17px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 20px; position:relative; z-index:2;
}
.step h4{ font-size:18px; margin-bottom:8px; color:#fff; }
.step p{ color: var(--muted-lt); font-size:14.5px; }
@media (max-width: 780px){ .steps{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .steps{ grid-template-columns: 1fr; } }

/* ============================================================
   7. PACKAGES / PRICING
   ============================================================ */
.pricing-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items:stretch;
}
@media (max-width: 980px){ .pricing-grid{ grid-template-columns: 1fr; max-width:460px; margin:0 auto; } }

.price-card{
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  display:flex; flex-direction:column;
  position:relative;
  transition: transform .18s ease, box-shadow .18s ease;
}
.price-card:hover{ transform: translateY(-4px); box-shadow: 0 20px 40px -22px rgba(11,18,32,.25); }
.price-card.featured{
  background: var(--ink);
  border-color: var(--ink);
  color:#fff;
  transform: scale(1.035);
}
.price-card.featured:hover{ transform: scale(1.035) translateY(-4px); }
.price-card.featured .node-list li::before{ background: var(--amber); box-shadow:0 0 0 3px rgba(255,176,32,.2); }
.price-card.featured .price small{ color: var(--muted-lt); }
.price-card.featured p{ color: var(--muted-lt); }

.badge-popular{
  position:absolute; top:-13px; right:28px;
  background: var(--amber); color: var(--ink);
  font-family: var(--font-mono); font-size:11.5px; text-transform:uppercase; letter-spacing:.08em;
  padding: 5px 12px; border-radius: 999px; font-weight:700;
}
.price-card h3{ font-size:22px; margin-bottom:6px; }
.price-card .tagline{ color: var(--muted); font-size:14.5px; margin-bottom:22px; }
.price-card.featured .tagline{ color: var(--muted-lt); }
.price{ font-family: var(--font-display); font-size: 38px; font-weight:700; margin-bottom: 4px; }
.price small{ font-family: var(--font-body); font-size:14px; font-weight:500; color: var(--muted); }
.price-note{ font-size:13px; color: var(--muted-lt); margin-bottom:24px; }
.price-card.featured .price-note{ color: var(--muted-lt); }
.price-card .node-list{ flex:1; margin-bottom: 26px; }
.price-card .btn{ width:100%; justify-content:center; }

/* ============================================================
   8. WAAROM — reasons grid
   ============================================================ */
.reasons-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
@media(max-width:880px){ .reasons-grid{ grid-template-columns: 1fr 1fr; } }
@media(max-width:560px){ .reasons-grid{ grid-template-columns: 1fr; } }
.reason{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  background: var(--white);
}
.reason .icon{
  width:40px; height:40px; border-radius:10px;
  background: rgba(37,84,255,.09);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.reason .icon svg{ width:20px; height:20px; }
.reason h4{ font-size:16.5px; margin-bottom:6px; }
.reason p{ font-size:14.5px; color: var(--muted); margin:0; }

/* ============================================================
   9. REVIEWS
   ============================================================ */
.reviews-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }
@media(max-width:940px){ .reviews-grid{ grid-template-columns:1fr; max-width:560px; margin:0 auto; } }
.review-card{
  background: var(--white); border:1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px;
}
.review-card .quote-mark{ font-family: var(--font-display); font-size:40px; color: var(--cobalt); line-height:1; margin-bottom:8px; }
.review-card p.text{ font-size:15.5px; color: var(--ink-soft); margin-bottom:22px; }
.review-person{ display:flex; align-items:center; gap:12px; }
.avatar{
  width:42px; height:42px; border-radius:50%;
  background: var(--ink); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-mono); font-size:14px; font-weight:600;
  flex:0 0 auto;
}
.review-person b{ display:block; font-size:14.5px; }
.review-person span{ display:block; font-size:13px; color: var(--muted); }

/* ============================================================
   10. FINAL CTA
   ============================================================ */
.cta-final{
  background: var(--ink);
  color:#fff;
  border-radius: 24px;
  padding: 70px 50px;
  text-align:center;
  position:relative;
  overflow:hidden;
  margin: 0 24px;
}
.cta-final h2{ font-size: clamp(28px,4vw,44px); max-width:18ch; margin:0 auto 16px; }
.cta-final p{ color: var(--muted-lt); font-size:17px; max-width:50ch; margin:0 auto 34px; }
.cta-final .hero-ctas{ justify-content:center; margin-bottom:0; }

/* ============================================================
   11. FOOTER
   ============================================================ */
.site-footer{ background: var(--ink); color: var(--muted-lt); padding: 64px 0 28px; }
.footer-top{
  display:grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px;
  padding-bottom: 44px; border-bottom: 1px solid var(--line-dark);
}
@media(max-width:780px){ .footer-top{ grid-template-columns:1fr; gap:30px; } }
.footer-top .logo{ color:#fff; margin-bottom:14px; }
.footer-top p{ font-size:14.5px; max-width:34ch; }
.footer-col h5{
  font-family: var(--font-mono); text-transform:uppercase; letter-spacing:.1em;
  font-size:12px; color:#fff; margin-bottom:16px;
}
.footer-col li{ margin-bottom:10px; font-size:14.5px; }
.footer-col a:hover{ color: var(--amber); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
  padding-top: 26px; font-size:13px;
}
.footer-bottom a:hover{ color: var(--amber); }
.social-link{ display:inline-flex; align-items:center; gap:8px; }

/* ============================================================
   12. GENERIC PAGE / BLOG (page.php, single.php, index.php)
   ============================================================ */
.page-content{ padding: 70px 0 100px; }
.page-content article{ max-width: 780px; margin: 0 auto; }
.page-content h1{ font-size: clamp(30px,4vw,46px); margin-bottom: 24px; }
.page-content .entry-content p{ font-size:17px; color: var(--ink-soft); }
.blog-list{ display:grid; gap:26px; max-width:780px; margin:0 auto; }
.blog-list .post-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:26px; }
.blog-list .post-card h2{ font-size:22px; margin-bottom:8px; }
.blog-list .post-card .meta{ font-family:var(--font-mono); font-size:12.5px; color:var(--muted); margin-bottom:12px; }

/* ============================================================
   13. RESPONSIVE
   ============================================================ */
@media (max-width: 980px){
  .hero .container{ grid-template-columns: 1fr; }
  .hero-graphic{ order:-1; max-width:420px; margin:0 auto; }
  .intro-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 600px){
  .section{ padding: 64px 0; }
  .cta-final{ padding: 48px 26px; margin:0 16px; }
}

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