/*
Theme Name: NEKZ
Theme URI: https://nekz.nl
Author: NEKZ
Author URI: https://nekz.nl
Description: Custom WordPress theme voor NEKZ — Behandeling van nek- en hoofdpijn in Roosendaal
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nekz
*/

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; line-height: 1.7; }

/* ── PALETTE ── */
:root {
  --primary: #2e4a62;
  --primary-light: #3e6080;
  --primary-dark: #1c3347;
  --accent: #c27a4f;
  --accent-light: #d4956e;
  --bg: #f4f1ec;
  --bg-alt: #f9f8f6;
  --bg-warm: #e8e3db;
  --text: #152535;
  --text-light: #5a6570;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
}

/* ── NAV (Home) ── */
nav#nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem 3rem; border-bottom: 2px solid rgba(46,74,98,0.08);
  background: #fff; position: sticky; top: 0; z-index: 100;
  transition: box-shadow 0.3s;
}
nav#nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.nav-logo { display: inline-flex; align-items: baseline; text-decoration: none; }
.logo-nekz { font-family: 'Raleway', sans-serif; font-weight: 900; font-size: 26px; letter-spacing: 6px; color: var(--primary-dark); }
.logo-z { color: #5a8fb4; }
.logo-org { font-family: 'Raleway', sans-serif; font-weight: 600; font-size: 18px; letter-spacing: 1px; color: #5a8fb4; margin-left: -2px; align-self: flex-start; position: relative; top: 2px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 13px; color: var(--text-light); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-links a.active-link { color: var(--primary); font-weight: 600; }
.nav-cta { font-size: 13px; padding: 10px 24px; background: var(--primary); color: var(--accent) !important; border-radius: 8px; border: none; cursor: pointer; font-weight: 600; text-decoration: none; transition: background 0.2s; }
.nav-cta:hover { background: var(--primary-light); color: var(--accent-light) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); transition: 0.3s; }

/* ── NAV (Subpages) ── */
.nav-sub { display: flex; align-items: center; justify-content: space-between; padding: 1.6rem 3rem; border-bottom: 2px solid rgba(46,74,98,0.08); background: #fff; position: sticky; top: 0; z-index: 100; transition: box-shadow 0.3s; }
.nav-sub.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.nav-sub .nav-cta { background: var(--primary); color: var(--accent) !important; border-radius: 8px; }
.nav-sub .nav-cta:hover { background: var(--primary-light); color: var(--accent-light) !important; }

/* ── MOBILE MENU ── */
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 99; padding: 90px 2rem 2rem; flex-direction: column; gap: 12px; overflow-y: auto; }
.mobile-menu.active { display: flex; }
.mobile-menu a { font-size: 17px; font-weight: 600; color: var(--text); text-decoration: none; padding: 10px 0; border-bottom: 1px solid #eee; }

/* ── HERO (Home) ── */
.hero {
  min-height: 85vh; display: flex; align-items: center; justify-content: center;
  padding: 100px 3rem 60px; text-align: center;
  background-image: linear-gradient(160deg, rgba(244,241,235,0.55) 0%, rgba(232,227,219,0.45) 40%, rgba(46,74,98,0.6) 100%), var(--hero-bg);
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; right: -150px; top: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(194,122,79,0.06) 0%, transparent 70%);
}
.hero-content {
  position: relative; z-index: 1; max-width: 720px;
  background: rgba(28,51,71,0.45);
  padding: 48px 56px; border-radius: var(--radius-lg);
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
}
.hero-tag {
  display: inline-block; font-size: 11px; letter-spacing: 2px; font-weight: 700;
  color: #fff; background: rgba(255,255,255,0.15);
  padding: 6px 16px; border-radius: 20px; margin-bottom: 24px;
}
.hero h1 { color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,0.3); }
.hero h1 em { color: var(--accent-light); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.9); line-height: 1.8; max-width: 560px; margin: 0 auto 32px; }
.hero .btn-s { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.35); }
.hero .btn-s:hover { background: rgba(255,255,255,0.25); border-color: #fff; color: #fff; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-p { padding: 14px 30px; background: var(--primary); color: #fff; border-radius: 8px; font-size: 15px; border: none; cursor: pointer; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; box-shadow: 0 4px 16px rgba(46,74,98,0.2); }
.btn-p:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(46,74,98,0.25); }
.btn-s { padding: 14px 30px; background: var(--white); color: var(--text); border-radius: 8px; font-size: 15px; border: 1px solid #ddd; cursor: pointer; text-decoration: none; font-weight: 500; transition: all 0.2s; }
.btn-s:hover { border-color: var(--primary); color: var(--primary); }
.btn { display: inline-block; padding: 14px 32px; border-radius: 4px; font-weight: 600; font-size: 15px; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--accent-light); transform: translateY(-1px); }

/* ── TRUST BAR ── */
.trust-bar { background: var(--white); border-top: 1px solid rgba(0,0,0,0.04); border-bottom: 1px solid rgba(0,0,0,0.04); padding: 28px 3rem; }
.trust-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; color: var(--text-light); }
.trust-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(46,74,98,0.06); display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }

/* ── SECTIONS ── */
.section { padding: 5rem 3rem; }
.section-alt { background: var(--white); }
.section-dark { background: var(--primary-dark); color: #fff; }
.stag { font-size: 11px; letter-spacing: 2.5px; font-weight: 700; color: var(--text-light); margin-bottom: 0.5rem; text-transform: uppercase; }
.section-dark .stag { color: var(--accent-light); }
h2 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; margin-bottom: 0.6rem; color: var(--primary-dark); }
.section-dark h2 { color: #fff; }
.sub { font-size: 15px; color: var(--text-light); line-height: 1.75; max-width: 560px; margin-bottom: 2.5rem; }
.section-dark .sub { color: rgba(255,255,255,0.6); }
.inner { max-width: 1100px; margin: 0 auto; }

/* ── SUBPAGE SHARED ── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 100px 32px; }
.section-label { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--primary); margin-bottom: 16px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 42px); color: var(--primary-dark); margin-bottom: 16px; line-height: 1.2; }
.section-subtitle { font-size: 17px; color: var(--text-light); max-width: 680px; line-height: 1.7; margin-bottom: 48px; }
.section-divider { border: none; border-top: 1px solid rgba(0,0,0,0.06); max-width: 1200px; margin: 0 auto; }

/* ── PAGE HERO (Subpages) ── */
.page-hero {
  padding: 160px 32px 80px;
  background-image: linear-gradient(135deg, rgba(28,51,71,0.82) 0%, rgba(46,74,98,0.75) 50%, rgba(62,96,128,0.7) 100%), var(--hero-bg);
  background-size: cover; background-position: center;
  color: var(--white); text-align: center;
}
.page-hero .section-label { color: var(--accent); }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 56px); line-height: 1.15; max-width: 800px; margin: 0 auto 24px; color: #fff; }
.page-hero p { font-size: 18px; line-height: 1.7; opacity: 0.85; max-width: 700px; margin: 0 auto; color: #fff; }

/* ── CARDS ── */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.card { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 1.75rem; transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,0,0,0.06); }
.cicon { width: 40px; height: 40px; border-radius: 8px; background: rgba(46,74,98,0.06); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.ctitle { font-size: 15px; font-weight: 700; margin-bottom: 0.4rem; color: var(--primary-dark); }
.ctext { font-size: 13px; color: var(--text-light); line-height: 1.65; }

/* ── STEPS ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); }
.step { padding: 2rem 1.75rem; border-right: 1px solid #e0ddd8; }
.step:last-child { border-right: none; }
.snum { font-size: 11px; letter-spacing: 2px; color: var(--accent); font-weight: 700; margin-bottom: 1rem; }
.stitle { font-size: 15px; font-weight: 700; margin-bottom: 0.5rem; color: var(--primary-dark); }
.stext { font-size: 13px; color: var(--text-light); line-height: 1.65; }

/* ── OCCIFLEX SPLIT ── */
.occiflex { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.occ-l { padding: 4rem 3rem; display: flex; flex-direction: column; justify-content: center; gap: 1rem; background: var(--bg-alt); }
.occ-image { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 0.5rem; }
.occ-image img { width: 100%; height: auto; display: block; }
.occ-r { background: var(--primary); padding: 4rem 3rem; display: flex; flex-direction: column; justify-content: center; gap: 1.25rem; }
.occ-h { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 0.25rem; }
.obullet { display: flex; gap: 14px; align-items: flex-start; }
.odot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-light); margin-top: 6px; flex-shrink: 0; }
.otext { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; }

/* ── SAFETY CARDS ── */
.safety-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.scard { background: var(--bg-alt); border: 1px solid #eee; border-radius: 12px; padding: 1.75rem; transition: transform 0.2s; }
.scard:hover { transform: translateY(-3px); }
.scard .cicon { background: rgba(46,74,98,0.06); }
.scard .ctitle { color: var(--primary-dark); }

/* ── KLACHTEN (dark) ── */
.condition-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cond-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 1.75rem; transition: all 0.2s; }
.cond-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.cond-card svg { color: var(--accent-light); margin-bottom: 12px; }
.cond-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.cond-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ── QUOTES ── */
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.qcard { background: var(--bg-alt); border: 1px solid #eee; border-radius: 12px; padding: 1.75rem; border-left: 3px solid var(--accent); }
.stars { color: var(--accent); font-size: 14px; margin-bottom: 0.75rem; letter-spacing: 2px; }
.qtext { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.qname { font-size: 13px; font-weight: 700; color: var(--primary-dark); }
.qhighlight { font-size: 12px; color: var(--primary); font-weight: 600; margin-top: 4px; }

/* ── TARIEVEN ── */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 700px; }
.pcard { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 2rem; position: relative; overflow: hidden; }
.pcard.featured { border: 2px solid var(--primary); }
.pcard.featured::before { content: 'Behandeling'; position: absolute; top: 14px; right: -30px; background: var(--primary); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 34px; transform: rotate(45deg); text-transform: uppercase; letter-spacing: 0.5px; }
.pcard h3 { font-size: 18px; font-weight: 700; color: var(--primary-dark); margin-bottom: 6px; }
.price { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; color: var(--primary); margin: 12px 0; }
.price small { font-size: 15px; color: var(--text-light); font-family: 'Inter', sans-serif; font-weight: 400; }
.pcard ul { list-style: none; margin-top: 16px; }
.pcard ul li { font-size: 14px; color: var(--text-light); padding: 7px 0; border-bottom: 1px solid #f0eeea; display: flex; align-items: center; gap: 10px; }
.pcard ul li svg { color: var(--primary); flex-shrink: 0; }
.pcard .ins { margin-top: 16px; padding: 12px; background: rgba(194,122,79,0.08); border-radius: 6px; font-size: 13px; color: var(--text); line-height: 1.5; }

/* ── VESTIGING ── */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.loc-details { display: flex; flex-direction: column; gap: 20px; }
.loc-item { display: flex; gap: 14px; align-items: flex-start; }
.loc-item .li-icon { width: 42px; height: 42px; border-radius: 8px; background: rgba(46,74,98,0.06); display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.loc-item h4 { font-size: 14px; font-weight: 700; color: var(--primary-dark); margin-bottom: 2px; }
.loc-item p, .loc-item a { font-size: 14px; color: var(--text-light); text-decoration: none; line-height: 1.5; }
.loc-item a:hover { color: var(--primary); }
.praktijk-sfeer { border-radius: var(--radius-lg); overflow: hidden; margin-top: 24px; }
.praktijk-sfeer img { width: 100%; height: auto; display: block; }
.route-box { background: var(--bg-alt); border-radius: 8px; padding: 20px; border-left: 3px solid var(--accent); margin-top: 24px; }
.route-box h4 { font-size: 14px; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.route-box p { font-size: 13px; color: var(--text-light); line-height: 1.65; }
.map-embed { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid #eee; min-height: 380px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 380px; border: none; }

/* ── CTA BAR ── */
.cta-bar { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 3.5rem; display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.cta-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: #fff; }
.cta-sub { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 8px; }
.cta-btn { padding: 14px 32px; background: #fff; color: var(--primary); border-radius: 8px; font-size: 14px; font-weight: 700; border: none; cursor: pointer; white-space: nowrap; text-decoration: none; transition: all 0.2s; }
.cta-btn:hover { background: var(--bg); transform: translateY(-1px); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.ct-items { display: flex; flex-direction: column; gap: 24px; padding-top: 8px; }
.ct-item { display: flex; gap: 14px; align-items: flex-start; }
.ct-item .ci-icon { width: 42px; height: 42px; border-radius: 8px; background: rgba(46,74,98,0.06); display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.ct-item h4 { font-size: 14px; font-weight: 700; color: var(--primary-dark); margin-bottom: 2px; }
.ct-item p, .ct-item a { font-size: 14px; color: var(--text-light); text-decoration: none; }
.ct-item a:hover { color: var(--primary); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: 6px; font-size: 14px; font-family: inherit; transition: border-color 0.2s; background: var(--bg-alt); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); background: #fff; }
.contact-form textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ── */
footer.site-footer { padding: 2.5rem 3rem; border-top: 2px solid rgba(46,74,98,0.08); background: var(--white); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.flogo { display: inline-flex; align-items: baseline; }
.flogo .logo-nekz { font-size: 22px; letter-spacing: 5px; }
.flogo .logo-org { font-size: 15px; }
.flinks { display: flex; gap: 24px; flex-wrap: wrap; }
.flinks a { font-size: 13px; color: var(--text-light); text-decoration: none; font-weight: 500; }
.flinks a:hover { color: var(--primary); }
.finfo { font-size: 13px; color: var(--text-light); text-align: right; line-height: 1.8; }

/* ── FOOTER (Subpages dark) ── */
footer.site-footer-dark { background: var(--primary-dark); color: rgba(255,255,255,0.7); padding: 48px 32px; text-align: center; }
.footer-bottom { font-size: 13px; }

/* ── TEAM ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.team-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; text-align: center; box-shadow: var(--shadow); transition: transform 0.3s; }
.team-card:hover { transform: translateY(-4px); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; color: var(--white); font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; margin: 0 auto 20px; }
.team-photo { width: 140px; height: 140px; border-radius: 50%; overflow: hidden; margin: 0 auto 20px; box-shadow: 0 4px 20px rgba(46,74,98,0.15); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-card h3 { font-size: 19px; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.team-card .role { font-size: 13px; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.team-card p { font-size: 15px; color: var(--text-light); line-height: 1.7; }

/* ── CURSUSSEN ── */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-bottom: 64px; }
.location-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 20px; transition: transform 0.2s, box-shadow 0.2s; }
.location-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.location-icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(46,74,98,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.location-icon svg { color: var(--primary); }
.location-card h3 { font-size: 17px; font-weight: 700; color: var(--primary-dark); margin-bottom: 4px; }
.location-card span { font-size: 14px; color: var(--text-light); }
.cta-box { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); border-radius: var(--radius-lg); padding: 56px; color: var(--white); text-align: center; }
.cta-box h3 { font-family: 'Playfair Display', serif; font-size: 28px; margin-bottom: 16px; }
.cta-box p { font-size: 16px; opacity: 0.85; line-height: 1.7; max-width: 600px; margin: 0 auto 32px; }

/* ── OCCIFLEX PAGE ── */
.occiflex-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 48px; justify-content: center; }
.occ-tab { padding: 12px 28px; border-radius: 4px; font-size: 14px; font-weight: 600; cursor: pointer; border: 1px solid #ddd; background: var(--white); color: var(--text); transition: all 0.2s; }
.occ-tab:hover, .occ-tab.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.occ-panel { display: none; animation: fadePanel 0.4s ease; }
.occ-panel.active { display: block; }
@keyframes fadePanel { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.occ-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.occ-feature-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); margin-bottom: 24px; }
.occ-feature-card h4 { font-size: 18px; font-weight: 700; color: var(--primary-dark); margin-bottom: 12px; }
.occ-feature-card p { font-size: 15px; color: var(--text-light); line-height: 1.7; }
.occ-highlight { background: var(--primary); color: var(--white); border-radius: var(--radius-lg); padding: 40px; }
.occ-highlight h4 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.occ-highlight p { font-size: 15px; line-height: 1.7; opacity: 0.85; }
.research-abstract { background: var(--white); border-radius: var(--radius); padding: 28px; margin-bottom: 20px; border-left: 4px solid var(--primary); }
.research-abstract h4 { font-size: 16px; font-weight: 700; color: var(--primary-dark); margin-bottom: 10px; }
.research-abstract p { font-size: 14px; color: var(--text-light); line-height: 1.7; }
.research-abstract .result-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(46,74,98,0.08); color: var(--primary); padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 600; margin-top: 12px; }
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.partner-logo { background: var(--white); border-radius: var(--radius); padding: 32px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); min-height: 100px; }
.partner-logo img { max-width: 160px; max-height: 60px; object-fit: contain; }
.partner-logo span { font-size: 16px; font-weight: 700; color: var(--text-light); }
.brochure-card { background: var(--white); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow); max-width: 800px; }
.brochure-card h4 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--primary-dark); margin-bottom: 16px; }
.brochure-card p { font-size: 15px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.case-box { background: var(--bg); border-radius: var(--radius); padding: 28px; margin-top: 24px; border-left: 4px solid var(--accent); }
.case-box h5 { font-size: 16px; font-weight: 700; color: var(--primary-dark); margin-bottom: 12px; }
.case-box p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 10px; }

/* ── BLOG ── */
.blog-article { background: var(--white); border-radius: var(--radius-lg); padding: 56px; box-shadow: var(--shadow); max-width: 800px; margin-bottom: 40px; }
.blog-article h2 { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--primary-dark); margin-bottom: 24px; line-height: 1.3; }
.blog-article p { font-size: 16px; color: var(--text-light); line-height: 1.85; margin-bottom: 20px; }
.blog-article p:last-of-type { margin-bottom: 0; }
.blog-author { display: inline-flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; color: var(--primary); margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.06); }
.blog-author svg { opacity: 0.6; }

/* ── BACK LINK ── */
.back-bar { text-align: center; padding: 0 32px 80px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--primary); font-weight: 600; font-size: 15px; transition: gap 0.2s; }
.back-link:hover { gap: 12px; }

/* ── RESPONSIVE ── */
@media (max-width: 968px) {
  nav#nav, .nav-sub { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 80px 1.5rem 48px; min-height: auto; }
  .hero-content { padding: 32px 24px; }
  .trust-inner { gap: 20px; }
  .section { padding: 3.5rem 1.5rem; }
  .cards, .safety-cards, .condition-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-right: none; border-bottom: 1px solid #e0ddd8; }
  .step:last-child { border-bottom: none; }
  .occiflex { grid-template-columns: 1fr; }
  .occ-l, .occ-r { padding: 2.5rem 1.5rem; }
  .quotes { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .loc-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-bar { flex-direction: column; text-align: center; padding: 2.5rem 1.5rem; }
  footer.site-footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .finfo { text-align: center; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 40px 24px; }
  .occ-2col { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 140px 24px 60px; }
  .blog-article { padding: 32px; }
}
@media (max-width: 640px) {
  .cards, .safety-cards, .condition-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  .grid-3 { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .occ-tab { padding: 8px 16px; font-size: 13px; }
}
