/*
Theme Name: Fineaid
Theme URI: https://fineaid.nl
Author: Fineaid
Author URI: https://fineaid.nl
Description: Custom theme for Fineaid, dossierbeheer-software voor beschermingsbewindvoerders, WSNP-bewindvoerders, faillissementscuratoren en schuldhulpverleners.
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 8.0
Text Domain: fineaid
License: GNU General Public License v2 or later
License URI: LICENSE
*/

:root{
  --green:#5FA646;
  --green-deep:#4A8536;
  --green-pale:#EAF4E4;
  --slate:#8FA6B2;
  --slate-pale:#EFF3F5;
  --coral:#FF7A52;
  --coral-deep:#E8632F;
  --ink:#20302A;
  --text-soft:#5B6B63;
  --white:#FFFFFF;
  --bg:#FBFCFA;
  --line:rgba(32,48,42,0.10);
  --shadow: 0 16px 40px rgba(32,48,42,0.08);
  --radius: 20px;
  --display: "Sora", sans-serif;
  --sans: "Inter", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --section-pad: clamp(56px, 9vw, 96px);
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth; -webkit-text-size-adjust:100%;}
body{
  font-family:var(--sans);
  color:var(--ink);
  background:var(--bg);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%; display:block; height:auto;}
a{color:inherit; text-decoration:none;}
ul{list-style:none;}
button{font-family:inherit;}
:focus-visible{outline:2px solid var(--coral); outline-offset:3px;}
.screen-reader-text{
  position:absolute !important; width:1px; height:1px; overflow:hidden;
  clip:rect(1px,1px,1px,1px); white-space:nowrap; border:0; padding:0; margin:-1px;
}
.screen-reader-text:focus{
  position:fixed; left:16px; top:16px; width:auto; height:auto; z-index:100000;
  background:var(--ink); color:var(--white); padding:12px 18px; border-radius:10px;
  clip:auto; white-space:normal;
}
.skip-link{ z-index:100000; }

.wrap{ max-width:1180px; margin:0 auto; padding:0 32px; }
@media(max-width:640px){ .wrap{padding:0 20px;} }
@media(max-width:400px){ .wrap{padding:0 16px;} }

.eyebrow{
  font-family:var(--mono);
  font-size:11.5px;
  letter-spacing:0.07em;
  text-transform:uppercase;
  color:var(--green-deep);
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--green-pale);
  padding:6px 14px 6px 10px;
  border-radius:999px;
  max-width:100%;
}
@media(min-width:640px){ .eyebrow{ font-size:12.5px; } }
.eyebrow::before{
  content:"";
  width:6px; height:6px;
  border-radius:50%;
  background:var(--coral);
  display:inline-block;
  flex-shrink:0;
}

h1,h2,h3,h4{
  font-family:var(--display);
  color:var(--ink);
  font-weight:700;
  letter-spacing:-0.02em;
  line-height:1.15;
  text-wrap:balance;
}
p{ text-wrap:pretty; }

/* ============ ADMIN BAR OFFSET ============ */
body.admin-bar header{ top:32px; }
@media (max-width:782px){ body.admin-bar header{ top:46px; } }

/* ============ HEADER ============ */
header{
  position:sticky; top:0; z-index:100;
  background:rgba(251,252,250,0.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:12px; }
.logo{ display:flex; align-items:center; gap:9px; flex-shrink:0; }
.logo.custom-logo-wrap{ line-height:0; }
.custom-logo-link{ display:flex; align-items:center; }
.custom-logo-link img{ max-height:36px; width:auto; }
.logo-mark{
  width:34px; height:34px;
  border-radius:50%;
  background:conic-gradient(from 200deg, var(--green), var(--slate) 60%, var(--coral) 100%);
  position:relative;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.logo-mark::after{
  content:"";
  width:15px; height:15px;
  background:var(--bg);
  border-radius:50%;
}
.logo-word{
  font-family:var(--display); font-size:19px; font-weight:800; color:var(--ink);
  white-space:nowrap;
}
@media(min-width:480px){ .logo-mark{width:36px;height:36px;} .logo-mark::after{width:16px;height:16px;} .logo-word{font-size:21px;} }
.logo-word span{ color:var(--green); }

.nav-links{ display:flex; align-items:center; gap:26px; }
.nav-links a{ font-size:14.5px; font-weight:500; color:var(--ink); position:relative; padding:4px 0; }
.nav-links a:not(.nav-cta)::after{
  content:""; position:absolute; left:0; right:0; bottom:-2px; height:2px;
  background:var(--coral); border-radius:2px;
  transform:scaleX(0); transform-origin:left; transition:transform .25s ease;
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).current-menu-item::after{ transform:scaleX(1); }
.nav-cta{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--green);
  color:var(--white) !important;
  padding:12px 22px !important;
  border-radius:999px;
  font-size:14px; font-weight:600;
  box-shadow:0 8px 20px rgba(95,166,70,0.28);
  transition:background .2s ease, transform .2s ease;
  white-space:nowrap;
}
.nav-cta:hover{ background:var(--green-deep); transform:translateY(-2px); }
.menu-toggle{ display:none; }
.nav-overlay{ display:none; }

@media(max-width:960px){
  .nav-links{
    position:fixed; top:0; right:0; bottom:0;
    height:100dvh; height:100vh;
    background:var(--bg); width:82%; max-width:340px;
    flex-direction:column; align-items:stretch; gap:0;
    padding:88px 28px 32px; border-left:1px solid var(--line);
    transform:translateX(100%); transition:transform .3s ease;
    overflow-y:auto;
    z-index:120;
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-links a{ width:100%; padding:16px 2px; border-bottom:1px solid var(--line); font-size:16px; }
  .nav-links .nav-cta{ margin-top:22px; text-align:center; justify-content:center; border-bottom:none; padding:15px 22px; }
  .menu-toggle{
    display:flex; flex-direction:column; justify-content:center; gap:5px;
    background:none; border:none; cursor:pointer;
    width:44px; height:44px; padding:8px; flex-shrink:0;
    position:relative; z-index:130;
  }
  .menu-toggle span{
    width:22px; height:2px; background:var(--ink); display:block; border-radius:2px;
    transition:transform .25s ease, opacity .25s ease;
  }
  .menu-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2){ opacity:0; }
  .menu-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
  .nav-overlay{
    display:block; position:fixed; inset:0; background:rgba(32,48,42,0.35);
    z-index:110; opacity:0; pointer-events:none; transition:opacity .3s ease;
  }
  .nav-overlay.open{ opacity:1; pointer-events:auto; }
  body.menu-open{ overflow:hidden; }
}

/* ============ HERO ============ */
.hero{ padding:clamp(48px,9vw,88px) 0 clamp(40px,7vw,70px); position:relative; overflow:hidden; }
.blob{
  position:absolute; border-radius:50%;
  z-index:0;
  pointer-events:none;
}
.blob-1{ width:420px; height:420px; background:var(--green-pale); top:-160px; right:-120px; }
.blob-2{ width:180px; height:180px; background:var(--slate-pale); bottom:20px; right:220px; }

.hero-grid{
  display:grid; grid-template-columns:1.1fr 0.9fr; gap:clamp(32px,6vw,56px); align-items:center;
  position:relative; z-index:2;
}
.hero h1{ font-size:clamp(30px, 6vw, 54px); margin:16px 0 18px; }
.hero h1 .accent{ color:var(--green); }
.hero p.lead{ font-size:clamp(15.5px,2.2vw,18px); color:var(--text-soft); max-width:500px; margin-bottom:28px; }
.hero-actions{ display:flex; align-items:center; gap:16px; flex-wrap:wrap; }

.btn-primary{
  background:var(--green);
  color:var(--white);
  padding:15px 26px;
  border-radius:999px;
  font-weight:700;
  font-size:14.5px;
  display:inline-flex; align-items:center; gap:10px;
  box-shadow:0 10px 26px rgba(95,166,70,0.32);
  transition:background .2s ease, transform .2s ease;
  justify-content:center;
  width:100%;
  border:none; cursor:pointer;
}
.btn-primary:hover{ background:var(--green-deep); transform:translateY(-2px); }
.btn-ghost{
  font-weight:600; font-size:15px; color:var(--ink);
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 4px;
}
.btn-ghost .arrow{
  width:32px; height:32px; border-radius:50%; background:var(--slate-pale);
  display:flex; align-items:center; justify-content:center; color:var(--slate);
  transition:background .2s ease; flex-shrink:0;
}
.btn-ghost:hover .arrow{ background:var(--green-pale); color:var(--green-deep); }

@media(min-width:520px){
  .btn-primary{ width:auto; }
  .hero-actions{ flex-wrap:nowrap; }
}

.trust-row{ display:flex; align-items:center; gap:14px; margin-top:32px; flex-wrap:wrap; }
.trust-row .avatars{ display:flex; flex-shrink:0; }
.trust-row .avatars span{
  width:32px; height:32px; border-radius:50%; border:2px solid var(--bg);
  margin-left:-10px; display:flex; align-items:center; justify-content:center;
  font-family:var(--mono); font-size:10.5px; font-weight:600; color:var(--white);
}
.trust-row .avatars span:nth-child(1){ background:var(--green); margin-left:0; }
.trust-row .avatars span:nth-child(2){ background:var(--slate); }
.trust-row .avatars span:nth-child(3){ background:var(--coral); }
.trust-row small{ font-size:13px; color:var(--text-soft); line-height:1.4; }
.trust-row strong{ color:var(--ink); }

.card-cluster{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:20px;
  max-width:420px;
  margin:0 auto;
  padding-top:8px;
}
.float-card{
  position:relative;
  background:var(--white); border:1px solid var(--line);
  border-radius:18px; box-shadow:var(--shadow); padding:22px;
  width:100%;
}
.fc-main{ z-index:2; }
.fc-main .chip{
  display:inline-flex; align-items:center; gap:6px; font-family:var(--mono); font-size:10.5px;
  background:var(--green-pale); color:var(--green-deep); padding:5px 12px; border-radius:999px; margin-bottom:13px;
}
.fc-main h4{ font-size:16px; margin-bottom:14px; line-height:1.3; }
.progress-ring{ display:flex; align-items:center; gap:14px; }
.ring{
  width:58px; height:58px; border-radius:50%;
  background:conic-gradient(var(--green) 0% 78%, var(--slate-pale) 78% 100%);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.ring::after{
  content:attr(data-label); width:42px; height:42px; background:var(--white); border-radius:50%;
  display:flex; align-items:center; justify-content:center; font-family:var(--mono); font-size:11px; font-weight:600; color:var(--ink);
}
.progress-ring p{ font-size:12.5px; color:var(--text-soft); line-height:1.4; margin:0; }

.fc-note{ z-index:1; margin-left:auto; width:88%; }
.fc-note .tag-sm{ font-family:var(--mono); font-size:10px; color:var(--coral-deep); text-transform:uppercase; letter-spacing:0.05em; }
.fc-note h5{ font-family:var(--display); font-size:14.5px; margin:8px 0 6px; line-height:1.3; }
.fc-note p{ font-size:12.5px; color:var(--text-soft); line-height:1.45; margin:0; }
.fc-note .status-dot{ display:inline-flex; align-items:center; gap:6px; font-family:var(--mono); font-size:10.5px; font-weight:600; color:var(--green-deep); margin-top:10px; }
.fc-note .status-dot::before{ content:""; width:7px; height:7px; border-radius:50%; background:var(--coral); flex-shrink:0; }

@media(max-width:960px){
  .hero-grid{ grid-template-columns:1fr; text-align:left; }
  .card-cluster{ max-width:440px; margin-top:8px; margin-left:0; }
  .blob-1{ width:300px; height:300px; }
}
@media(max-width:420px){
  .float-card{ padding:18px; }
  .fc-note{ width:92%; }
}

/* ============ AUDIENCE PILLS ============ */
.audience{ padding:var(--section-pad) 0; }
.section-head{ max-width:640px; margin-bottom:clamp(32px,5vw,48px); }
.section-head h2{ font-size:clamp(26px,3.4vw,38px); margin-top:14px; }
.section-head p{ color:var(--text-soft); font-size:clamp(15px,2vw,16.5px); margin-top:12px; }

.pill-tabs{
  display:flex; gap:8px; flex-wrap:nowrap; margin-bottom:0;
  overflow-x:auto; -webkit-overflow-scrolling:touch; scrollbar-width:none;
  padding-bottom:2px;
  scroll-snap-type:x proximity;
}
.pill-tabs::-webkit-scrollbar{ display:none; }
.pill-btn{
  font-family:var(--sans); font-size:13.5px; font-weight:600;
  padding:11px 18px; border-radius:999px; border:1.5px solid var(--line);
  background:var(--white); color:var(--text-soft); cursor:pointer;
  transition:all .2s ease; white-space:nowrap; flex-shrink:0;
  scroll-snap-align:center;
}
.pill-btn.active{ background:var(--ink); color:var(--white); border-color:var(--ink); }
.pill-btn:not(.active):hover{ border-color:var(--green); color:var(--green-deep); }

@media(min-width:700px){
  .pill-tabs{ flex-wrap:wrap; overflow-x:visible; margin-bottom:36px; }
}
@media(max-width:699px){
  .pill-tabs{ margin-bottom:24px; }
}

.panel-box{
  background:var(--white); border:1px solid var(--line); border-radius:24px;
  padding:clamp(22px,4vw,44px); box-shadow:var(--shadow);
}
.tab-panel{ display:none; grid-template-columns:1fr 1fr; gap:36px; align-items:center; }
.tab-panel.active{ display:grid; }
.tab-panel .icon-badge{
  width:48px; height:48px; border-radius:16px; background:var(--green-pale);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
  font-size:20px;
}
.tab-panel h3{ font-size:clamp(20px,3vw,25px); margin-bottom:12px; }
.tab-panel p{ color:var(--text-soft); margin-bottom:18px; font-size:15px; }
.tab-panel ul li{
  display:flex; gap:10px; align-items:flex-start; font-size:14px; padding:7px 0;
}
.tab-panel ul li::before{
  content:"\2713"; color:var(--white); background:var(--green); border-radius:50%;
  width:18px; height:18px; flex-shrink:0; display:flex; align-items:center; justify-content:center;
  font-size:10px; margin-top:2px; font-weight:700;
}
.tab-visual{ background:var(--slate-pale); border-radius:18px; padding:22px 24px; }
.tab-visual .stat-row{ display:flex; justify-content:space-between; align-items:center; gap:12px; padding:13px 0; border-bottom:1px solid rgba(32,48,42,0.08); }
.tab-visual .stat-row:last-child{ border-bottom:none; }
.tab-visual .stat-label{ font-size:13px; color:var(--text-soft); }
.tab-visual .stat-val{ font-family:var(--mono); font-size:13.5px; font-weight:600; color:var(--ink); white-space:nowrap; }

@media(max-width:760px){
  .tab-panel, .tab-panel.active{ grid-template-columns:1fr; gap:24px; }
}

/* ============ WHY ============ */
.why{ padding:var(--section-pad) 0; background:var(--green-pale); border-radius:40px; margin:0 20px; }
@media(max-width:640px){ .why{ margin:0 12px; border-radius:24px; } }
@media(max-width:400px){ .why{ margin:0; border-radius:0; } }
.why-inner{ max-width:1180px; margin:0 auto; padding:0 32px; }
@media(max-width:640px){ .why-inner{ padding:0 20px; } }
.why-head{ text-align:center; max-width:600px; margin:0 auto clamp(34px,6vw,50px); }
.why-head h2{ font-size:clamp(24px,3.4vw,38px); margin-top:14px; }
.why-head p{ color:var(--text-soft); margin-top:12px; font-size:15px; }
.why-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.why-card{
  background:var(--white); border-radius:20px; padding:26px 22px;
  box-shadow:0 10px 24px rgba(32,48,42,0.06);
}
.why-card .wc-icon{
  width:44px; height:44px; border-radius:12px; background:var(--coral); opacity:0.14;
  position:relative; margin-bottom:16px;
}
.why-card .wc-icon::after{
  content:""; position:absolute; inset:0; border-radius:12px; background:var(--coral); opacity:1;
  -webkit-mask: radial-gradient(circle 8px at 14px 14px, transparent 98%, black 100%);
  mask: radial-gradient(circle 8px at 14px 14px, transparent 98%, black 100%);
}
.why-card h4{ font-size:16.5px; margin-bottom:8px; }
.why-card p{ font-size:13.5px; color:var(--text-soft); }
@media(max-width:760px){ .why-cards{ grid-template-columns:1fr; gap:14px; } }

.stat-strip{
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
  margin-top:clamp(30px,6vw,50px);
  padding-top:clamp(24px,5vw,40px); border-top:1px solid rgba(32,48,42,0.14);
}
.stat-strip .s{ text-align:center; }
.stat-strip .s .n{ font-family:var(--display); font-size:clamp(24px,4vw,36px); font-weight:800; color:var(--green-deep); }
.stat-strip .s .l{ font-size:11.5px; color:var(--text-soft); margin-top:4px; line-height:1.3; }
@media(max-width:560px){
  .stat-strip{ grid-template-columns:repeat(2,1fr); gap:24px 16px; }
}

/* ============ PORTAL ============ */
.portal{ padding:var(--section-pad) 0; }
.portal-grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(36px,6vw,64px); align-items:center; }
.portal h2{ font-size:clamp(24px,3.4vw,36px); margin:14px 0 16px; }
.portal p.lead{ color:var(--text-soft); font-size:clamp(15px,2vw,16.5px); margin-bottom:22px; max-width:480px; }
.integration-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top:22px; }
.integration-chip{
  font-family:var(--mono); font-size:11.5px; padding:8px 14px;
  border:1px solid var(--line); border-radius:999px; background:var(--white); color:var(--text-soft);
}
.portal-mock{
  background:var(--white); border:1px solid var(--line); border-radius:24px;
  box-shadow:var(--shadow); overflow:hidden;
}
.portal-mock .pm-bar{ display:flex; align-items:center; gap:10px; padding:14px 18px; border-bottom:1px solid var(--line); background:var(--slate-pale); }
.portal-mock .pm-bar span{ width:9px; height:9px; border-radius:50%; background:var(--slate); opacity:0.5; flex-shrink:0; }
.portal-mock .pm-bar .pm-title{ font-family:var(--mono); font-size:10.5px; color:var(--text-soft); margin-left:8px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.portal-mock .pm-body{ padding:20px 22px; }
.pm-msg{ display:flex; gap:12px; padding:14px 0; border-bottom:1px solid var(--green-pale); align-items:flex-start; flex-wrap:wrap; }
.pm-msg:last-child{ border-bottom:none; }
.pm-avatar{
  width:36px; height:36px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--mono); font-size:11.5px; color:var(--white); font-weight:600;
}
.pm-avatar.a1{ background:var(--green); }
.pm-avatar.a2{ background:var(--slate); }
.pm-avatar.a3{ background:var(--coral); }
.pm-msg > div:not(.pm-avatar){ flex:1; min-width:0; }
.pm-msg h5{ font-size:13.5px; color:var(--ink); margin-bottom:3px; font-weight:600; }
.pm-msg p{ font-size:12.5px; color:var(--text-soft); line-height:1.4; }
.pm-msg .time{ font-family:var(--mono); font-size:10px; color:var(--coral-deep); margin-left:auto; white-space:nowrap; flex-shrink:0; }

@media(max-width:900px){ .portal-grid{ grid-template-columns:1fr; } }
@media(max-width:400px){
  .pm-msg .time{ margin-left:48px; }
}

/* ============ CTA ============ */
.cta{
  padding:clamp(60px,10vw,100px) 0; text-align:center; position:relative;
  background:var(--ink); border-radius:40px; margin:0 20px; overflow:hidden;
}
@media(max-width:640px){ .cta{ margin:0 12px; border-radius:24px; } }
@media(max-width:400px){ .cta{ margin:0; border-radius:0; } }
.cta::before{
  content:""; position:absolute; width:400px; height:400px; border-radius:50%;
  background:radial-gradient(circle, rgba(95,166,70,0.25), transparent 70%);
  top:-150px; left:-100px;
}
.cta::after{
  content:""; position:absolute; width:300px; height:300px; border-radius:50%;
  background:radial-gradient(circle, rgba(255,122,82,0.2), transparent 70%);
  bottom:-120px; right:-60px;
}
.cta-inner{ position:relative; z-index:2; }
.cta .eyebrow{ background:rgba(255,255,255,0.08); color:var(--green); justify-content:center; }
.cta .eyebrow::before{ background:var(--coral); }
.cta h2{ color:var(--white); font-size:clamp(26px,4.2vw,46px); max-width:680px; margin:16px auto 16px; }
.cta p{ color:rgba(255,255,255,0.65); font-size:clamp(14.5px,2vw,16.5px); max-width:500px; margin:0 auto 30px; }
.cta .btn-primary{ display:inline-flex; width:auto; }

/* ============ FOOTER ============ */
footer{ padding:clamp(48px,8vw,70px) 0 26px; }
.footer-grid{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:clamp(28px,5vw,40px);
  padding-bottom:clamp(30px,5vw,44px); border-bottom:1px solid var(--line);
}
.footer-logo{ display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.footer-logo .custom-logo-link img{ max-height:26px; }
.footer-grid p{ font-size:14px; color:var(--text-soft); max-width:280px; }
.footer-col h5{
  font-family:var(--mono); font-size:11.5px; letter-spacing:0.06em; text-transform:uppercase;
  color:var(--green-deep); margin-bottom:14px;
}
.footer-col a{ display:block; font-size:14px; padding:6px 0; color:var(--text-soft); transition:color .2s ease; }
.footer-col a:hover{ color:var(--ink); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center; padding-top:22px;
  font-size:12.5px; color:var(--text-soft); flex-wrap:wrap; gap:10px; text-align:center;
}
@media(max-width:800px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:560px){
  .footer-grid{ grid-template-columns:1fr; gap:30px; }
  .footer-bottom{ justify-content:center; flex-direction:column; }
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero{ padding:clamp(40px,7vw,64px) 0 clamp(32px,5vw,48px); position:relative; overflow:hidden; }
.page-hero .wrap{ position:relative; z-index:2; max-width:760px; }
.page-hero h1{ font-size:clamp(28px,5vw,46px); margin:16px 0 14px; }
.page-hero p.lead{ font-size:clamp(15px,2vw,17px); color:var(--text-soft); max-width:560px; }
.breadcrumbs{ font-size:13px; color:var(--text-soft); margin-bottom:14px; display:flex; flex-wrap:wrap; gap:6px; align-items:center; }
.breadcrumbs a{ color:var(--text-soft); }
.breadcrumbs a:hover{ color:var(--green-deep); }
.breadcrumbs .sep{ opacity:0.5; }
.breadcrumbs [aria-current="page"]{ color:var(--ink); font-weight:600; }

/* ============ FEATURE LIST SECTION (audience pages) ============ */
.feature-section{ padding:0 0 var(--section-pad); }
.feature-grid{ display:grid; grid-template-columns:1fr 1fr; gap:36px; align-items:start; }
.feature-list li{
  display:flex; gap:12px; align-items:flex-start; font-size:15px; padding:10px 0;
  border-bottom:1px solid var(--line);
}
.feature-list li:last-child{ border-bottom:none; }
.feature-list li::before{
  content:"\2713"; color:var(--white); background:var(--green); border-radius:50%;
  width:20px; height:20px; flex-shrink:0; display:flex; align-items:center; justify-content:center;
  font-size:11px; margin-top:2px; font-weight:700;
}
@media(max-width:760px){ .feature-grid{ grid-template-columns:1fr; } }

/* ============ PRICING ============ */
.pricing{ padding:var(--section-pad) 0; }
.pricing-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; align-items:stretch; }
.price-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:32px 26px; box-shadow:0 10px 24px rgba(32,48,42,0.06);
  display:flex; flex-direction:column;
  position:relative;
}
.price-card.featured{
  border-color:var(--green); box-shadow:var(--shadow); transform:translateY(-8px);
}
.price-card.featured::before{
  content:attr(data-badge); position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background:var(--coral); color:var(--white); font-family:var(--mono); font-size:10.5px;
  font-weight:600; padding:6px 14px; border-radius:999px; white-space:nowrap;
}
.price-name{ font-family:var(--mono); font-size:12px; text-transform:uppercase; letter-spacing:0.06em; color:var(--green-deep); font-weight:600; margin-bottom:14px; }
.price-amount{ font-family:var(--display); font-size:clamp(28px,4vw,38px); font-weight:800; margin-bottom:2px; }
.price-amount .period{ font-family:var(--sans); font-size:14px; font-weight:500; color:var(--text-soft); }
.price-desc{ font-size:13.5px; color:var(--text-soft); margin-bottom:22px; }
.price-features{ flex:1; margin-bottom:26px; }
.price-features li{ display:flex; gap:10px; align-items:flex-start; font-size:14px; padding:8px 0; }
.price-features li::before{
  content:"\2713"; color:var(--white); background:var(--green); border-radius:50%;
  width:18px; height:18px; flex-shrink:0; display:flex; align-items:center; justify-content:center;
  font-size:10px; margin-top:2px; font-weight:700;
}
.price-card .btn-primary{ width:100%; }
.price-card:not(.featured) .btn-primary{ background:var(--ink); box-shadow:none; }
.price-card:not(.featured) .btn-primary:hover{ background:var(--green-deep); }
@media(max-width:900px){ .pricing-grid{ grid-template-columns:1fr; } .price-card.featured{ transform:none; } }

/* ============ FAQ ============ */
.faq{ padding:0 0 var(--section-pad); }
.faq-list{ max-width:760px; margin:0 auto; }
.faq-item{
  border:1px solid var(--line); border-radius:16px; margin-bottom:12px; overflow:hidden;
  background:var(--white);
}
.faq-item summary{
  cursor:pointer; list-style:none; font-family:var(--display); font-weight:600; font-size:15.5px;
  padding:18px 22px; display:flex; justify-content:space-between; align-items:center; gap:14px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:"+"; font-size:20px; color:var(--green-deep); flex-shrink:0; transition:transform .2s ease; font-weight:400;
}
.faq-item[open] summary::after{ transform:rotate(45deg); }
.faq-item p{ padding:0 22px 20px; color:var(--text-soft); font-size:14.5px; }

/* ============ BLOG GRID ============ */
.blog-section{ padding:var(--section-pad) 0; }
.blog-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.blog-card{
  background:var(--white); border-radius:20px; overflow:hidden;
  box-shadow:0 10px 24px rgba(32,48,42,0.06); border:1px solid var(--line);
  display:flex; flex-direction:column;
}
.blog-card .bc-thumb{ aspect-ratio:16/10; overflow:hidden; background:var(--slate-pale); }
.blog-card .bc-thumb img{ width:100%; height:100%; object-fit:cover; }
.blog-card .bc-body{ padding:22px; display:flex; flex-direction:column; flex:1; }
.blog-card .bc-meta{ font-family:var(--mono); font-size:11px; color:var(--text-soft); margin-bottom:10px; display:flex; gap:10px; flex-wrap:wrap; }
.blog-card h3{ font-size:17px; margin-bottom:10px; line-height:1.3; }
.blog-card h3 a:hover{ color:var(--green-deep); }
.blog-card p{ font-size:13.5px; color:var(--text-soft); flex:1; }
.blog-card .bc-more{ margin-top:14px; font-size:13px; font-weight:600; color:var(--green-deep); }
@media(max-width:900px){ .blog-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:600px){ .blog-grid{ grid-template-columns:1fr; } }

.pagination{ display:flex; justify-content:center; gap:8px; margin-top:clamp(30px,5vw,48px); flex-wrap:wrap; }
.pagination a, .pagination span{
  font-family:var(--mono); font-size:13px; padding:10px 16px; border-radius:999px;
  border:1.5px solid var(--line); color:var(--text-soft);
}
.pagination .current{ background:var(--ink); color:var(--white); border-color:var(--ink); }
.pagination a:hover{ border-color:var(--green); color:var(--green-deep); }

/* ============ SINGLE POST ============ */
.single-post{ padding:var(--section-pad) 0; }
.post-header{ max-width:760px; margin:0 auto clamp(28px,5vw,40px); }
.post-header h1{ font-size:clamp(28px,5vw,44px); margin:14px 0 16px; }
.post-meta{ display:flex; gap:16px; flex-wrap:wrap; font-family:var(--mono); font-size:12.5px; color:var(--text-soft); align-items:center; }
.post-meta .dot{ opacity:0.5; }
.post-thumb{ max-width:900px; margin:0 auto clamp(28px,5vw,44px); border-radius:20px; overflow:hidden; box-shadow:var(--shadow); }
.post-content{ max-width:760px; margin:0 auto; font-size:16.5px; color:var(--ink); }
.post-content > * + *{ margin-top:1.3em; }
.post-content h2{ font-size:clamp(22px,3vw,30px); margin-top:1.6em; }
.post-content h3{ font-size:clamp(18px,2.4vw,22px); margin-top:1.4em; }
.post-content ul, .post-content ol{ padding-left:1.4em; list-style:revert; }
.post-content a{ color:var(--green-deep); text-decoration:underline; text-underline-offset:2px; }
.post-content blockquote{
  border-left:3px solid var(--green); padding:4px 0 4px 20px; color:var(--text-soft); font-style:italic;
}
.post-content img{ border-radius:16px; }
.post-tags{ max-width:760px; margin:36px auto 0; display:flex; gap:8px; flex-wrap:wrap; }
.post-tags a{ font-family:var(--mono); font-size:11.5px; padding:6px 14px; border-radius:999px; background:var(--slate-pale); color:var(--text-soft); }

.related-posts{ padding:var(--section-pad) 0; background:var(--green-pale); border-radius:40px; margin:clamp(40px,6vw,64px) 20px 0; }
@media(max-width:640px){ .related-posts{ margin-left:12px; margin-right:12px; border-radius:24px; } }
@media(max-width:400px){ .related-posts{ margin-left:0; margin-right:0; border-radius:0; } }
.related-posts h2{ font-size:clamp(22px,3vw,28px); margin-bottom:26px; }

/* ============ CONTACT ============ */
.contact-section{ padding:var(--section-pad) 0; }
.contact-grid{ display:grid; grid-template-columns:1fr 1.1fr; gap:clamp(32px,5vw,56px); align-items:start; }
.contact-info h2{ font-size:clamp(22px,3vw,30px); margin:14px 0 14px; }
.contact-info p{ color:var(--text-soft); margin-bottom:22px; }
.contact-detail{ display:flex; gap:12px; align-items:flex-start; padding:12px 0; border-top:1px solid var(--line); }
.contact-detail:first-of-type{ border-top:none; }
.contact-detail .cd-label{ font-family:var(--mono); font-size:11px; text-transform:uppercase; letter-spacing:0.05em; color:var(--green-deep); min-width:90px; flex-shrink:0; }
.contact-detail .cd-val{ font-size:14.5px; }
.contact-form-box{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius); padding:clamp(24px,4vw,36px); box-shadow:var(--shadow); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group{ margin-bottom:18px; }
.form-group label{ display:block; font-size:13px; font-weight:600; margin-bottom:7px; color:var(--ink); }
.form-group input, .form-group select, .form-group textarea{
  width:100%; padding:13px 16px; border-radius:12px; border:1.5px solid var(--line);
  font-family:var(--sans); font-size:14.5px; color:var(--ink); background:var(--white);
  transition:border-color .2s ease;
}
.form-group textarea{ min-height:130px; resize:vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{
  outline:none; border-color:var(--coral);
}
.form-note{ font-size:12px; color:var(--text-soft); margin-top:10px; }
.form-success{ background:var(--green-pale); color:var(--green-deep); padding:16px 18px; border-radius:12px; font-size:14.5px; margin-bottom:18px; }
.form-error{ background:#FDEDE7; color:var(--coral-deep); padding:16px 18px; border-radius:12px; font-size:14.5px; margin-bottom:18px; }
@media(max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }
@media(max-width:560px){ .form-row{ grid-template-columns:1fr; } }

/* ============ 404 / SEARCH ============ */
.error-404{ padding:clamp(70px,12vw,120px) 0; text-align:center; }
.error-404 .code{ font-family:var(--mono); font-size:13px; color:var(--coral-deep); text-transform:uppercase; letter-spacing:0.08em; }
.error-404 h1{ font-size:clamp(28px,5vw,44px); margin:16px 0 14px; }
.error-404 p{ color:var(--text-soft); max-width:480px; margin:0 auto 30px; }
.search-form-box{ max-width:480px; margin:0 auto 30px; display:flex; gap:10px; }
.search-form-box input[type="search"]{
  flex:1; padding:14px 20px; border-radius:999px; border:1.5px solid var(--line); font-size:14.5px;
}
.search-form-box input[type="search"]:focus{ outline:none; border-color:var(--coral); }
.search-form-box button{
  background:var(--green); color:var(--white); border:none; padding:14px 22px; border-radius:999px;
  font-weight:700; font-size:14px; cursor:pointer;
}
.search-form-box button:hover{ background:var(--green-deep); }
.error-links{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.error-links a{
  font-size:14px; font-weight:600; padding:10px 18px; border-radius:999px; border:1.5px solid var(--line); color:var(--ink);
}
.error-links a:hover{ border-color:var(--green); color:var(--green-deep); }
.search-results-head{ padding:clamp(40px,7vw,56px) 0 0; }
.search-results-head h1{ font-size:clamp(24px,4vw,36px); }

/* ============ WP CORE / MISC ============ */
.alignwide{ max-width:1000px; margin-left:auto; margin-right:auto; }
.alignfull{ max-width:none; width:100%; }
.wp-caption-text{ font-size:12.5px; color:var(--text-soft); margin-top:8px; text-align:center; }
.gallery{ display:grid; grid-template-columns:repeat(auto-fit,minmax(140px,1fr)); gap:10px; }

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

@media(max-width:700px){
  a, button{ -webkit-tap-highlight-color: rgba(95,166,70,0.15); }
}
