/*
Theme Name: Twentyfour Digital
Theme URI: https://twentyfourdigital.nl
Author: Twentyfour Digital
Author URI: https://twentyfourdigital.nl
Description: Custom WordPress-thema voor Twentyfour Digital — full-funnel landingspagina (Touch–Tell–Sell) rond advertising, marketing automation en leadgeneratie.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentyfour-digital
*/

:root{
  --bg:#0E0F13;
  --bg-alt:#15171E;
  --card:#1B1E27;
  --card-border:#2A2D38;
  --text:#F5F5F2;
  --text-dim:#9A9DA8;
  --accent:#C6FF3D;
  --accent-dim:#8FCF1A;
  --violet:#7C5CFC;
  --touch:#4ADE80;
  --tell:#FACC15;
  --sell:#F87171;
  --radius:16px;
  --max:1120px;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--bg);
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Inter,Roboto,Helvetica,Arial,sans-serif;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
img,svg{display:block; max-width:100%;}
a{color:inherit; text-decoration:none;}
ul{list-style:none;}
.wrap{max-width:var(--max); margin:0 auto; padding:0 24px;}
::selection{background:var(--accent); color:#0E0F13;}
.screen-reader-text{
  position:absolute !important; clip:rect(1px,1px,1px,1px); width:1px; height:1px; overflow:hidden;
}

/* ---------- Nav ---------- */
header.site{
  position:sticky; top:0; z-index:50;
  background:rgba(14,15,19,0.85);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--card-border);
}
nav.wrap{
  display:flex; align-items:center; justify-content:space-between;
  height:72px;
}
.logo{
  display:flex; align-items:center; gap:10px;
  font-weight:800; font-size:19px; letter-spacing:-0.02em;
}
.logo-mark{
  width:34px; height:34px; border-radius:9px;
  background:linear-gradient(135deg, var(--accent), var(--violet));
  color:#0E0F13; display:flex; align-items:center; justify-content:center;
  font-weight:900; font-size:14px; flex-shrink:0;
}
.logo small{color:var(--text-dim); font-weight:500; font-size:12px; display:block; margin-top:-2px;}
.navlinks{display:flex; gap:22px;}
.navlinks a{font-size:14px; font-weight:600; color:var(--text-dim); transition:.2s;}
.navlinks a:hover{color:var(--text);}
.nav-cta{
  background:var(--accent); color:#0E0F13; font-weight:700; font-size:14px;
  padding:11px 20px; border-radius:999px; white-space:nowrap;
}
@media (max-width:780px){ .navlinks{display:none;} }

/* ---------- Generic ---------- */
section{padding:88px 0;}
section.tight{padding:64px 0;}
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:700; color:var(--accent);
  background:rgba(198,255,61,0.08); border:1px solid rgba(198,255,61,0.25);
  padding:6px 14px; border-radius:999px; margin-bottom:22px;
}
.eyebrow .dot{width:6px; height:6px; border-radius:50%; background:var(--accent);}
h1{font-size:56px; font-weight:800; letter-spacing:-0.03em; line-height:1.05;}
h2{font-size:36px; font-weight:800; letter-spacing:-0.02em; line-height:1.15;}
h3{font-size:20px; font-weight:700;}
.lede{font-size:19px; color:var(--text-dim); max-width:680px; margin-top:18px;}
@media (max-width:700px){ h1{font-size:36px;} h2{font-size:27px;} }

.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:700; font-size:15px; padding:14px 26px; border-radius:999px;
  cursor:pointer; border:none; font-family:inherit;
}
.btn-primary{background:var(--accent); color:#0E0F13;}
.btn-ghost{background:transparent; color:var(--text); border:1px solid var(--card-border);}
.btn-row{display:flex; gap:14px; margin-top:34px; flex-wrap:wrap;}

.grid{display:grid; gap:20px;}
.grid-2{grid-template-columns:1fr 1fr;}
.grid-3{grid-template-columns:repeat(3,1fr);}
.grid-4{grid-template-columns:repeat(4,1fr);}
@media (max-width:900px){ .grid-3,.grid-4{grid-template-columns:1fr 1fr;} }
@media (max-width:620px){ .grid-2,.grid-3,.grid-4{grid-template-columns:1fr;} }

.card{
  background:var(--card); border:1px solid var(--card-border); border-radius:var(--radius);
  padding:28px;
}
.card p{color:var(--text-dim); margin-top:10px; font-size:15px;}
.icon{
  width:44px; height:44px; border-radius:12px; background:rgba(198,255,61,0.1);
  display:flex; align-items:center; justify-content:center; margin-bottom:16px;
  font-size:20px;
}

.band{
  background:linear-gradient(120deg, #1a1d27, #14161d);
  border:1px solid var(--card-border); border-radius:24px;
  padding:56px; display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap;
}
.band h2{font-size:30px;}

/* ---------- Hero ---------- */
.hero{padding:80px 0 40px; position:relative; overflow:hidden;}
.blob{
  position:absolute; width:520px; height:520px; border-radius:50%;
  background:radial-gradient(circle at 30% 30%, rgba(198,255,61,0.25), transparent 60%);
  top:-160px; right:-160px; filter:blur(10px); pointer-events:none;
}

/* ---------- Herkenbaar list ---------- */
.problem-list{margin-top:32px; display:grid; gap:14px; max-width:720px;}
.problem-list li{
  display:flex; gap:12px; align-items:flex-start; color:var(--text-dim); font-size:16px;
  background:var(--card); border:1px solid var(--card-border); border-radius:12px; padding:16px 18px;
}
.problem-list li::before{content:"—"; color:var(--sell); font-weight:800; flex-shrink:0;}

/* ---------- Funnel phases ---------- */
.funnel-phase{
  border-radius:var(--radius); border:1px solid var(--card-border); padding:36px; margin-bottom:20px;
  background:var(--card); position:relative; overflow:hidden;
}
.funnel-phase::before{
  content:""; position:absolute; left:0; top:0; bottom:0; width:5px;
}
.funnel-phase.touch::before{background:var(--touch);}
.funnel-phase.tell::before{background:var(--tell);}
.funnel-phase.sell::before{background:var(--sell);}
.funnel-tag{
  display:inline-flex; align-items:center; gap:8px; font-size:13px; font-weight:800;
  padding:6px 14px; border-radius:999px; margin-bottom:16px; letter-spacing:.04em;
}
.funnel-phase.touch .funnel-tag{background:rgba(74,222,128,0.12); color:var(--touch);}
.funnel-phase.tell .funnel-tag{background:rgba(250,204,21,0.12); color:var(--tell);}
.funnel-phase.sell .funnel-tag{background:rgba(248,113,113,0.12); color:var(--sell);}
.funnel-phase h3{font-size:24px; margin-bottom:8px;}
.funnel-phase .sub{color:var(--text-dim); font-style:italic; margin-bottom:14px;}
.funnel-phase .what{
  margin-top:18px; font-size:14px; color:var(--text-dim); border-top:1px solid var(--card-border); padding-top:16px;
}
.funnel-phase .what b{color:var(--text);}

/* ---------- Steps ---------- */
.steps{position:relative; margin-top:40px;}
.step{display:flex; gap:24px; padding-bottom:44px; position:relative;}
.step:last-child{padding-bottom:0;}
.step::before{
  content:""; position:absolute; left:23px; top:50px; bottom:-4px; width:2px; background:var(--card-border);
}
.step:last-child::before{display:none;}
.step-num{
  width:48px; height:48px; border-radius:50%; background:var(--card); border:1px solid var(--card-border);
  display:flex; align-items:center; justify-content:center; font-weight:800; color:var(--accent); flex-shrink:0;
}
.step-body p{color:var(--text-dim); font-size:15px; max-width:560px; margin-top:6px;}

/* ---------- FAQ ---------- */
.faq-item{border-bottom:1px solid var(--card-border); padding:22px 0;}
.faq-item h3{font-size:17px; margin-bottom:8px;}
.faq-item p{color:var(--text-dim); font-size:15px;}

/* ---------- Contact ---------- */
.contact-grid{display:grid; grid-template-columns:1fr 1.2fr; gap:32px;}
@media (max-width:800px){ .contact-grid{grid-template-columns:1fr;} }
.form-field{margin-bottom:16px;}
.form-field label{display:block; font-size:13px; color:var(--text-dim); margin-bottom:6px; font-weight:600;}
.form-field input, .form-field select, .form-field textarea{
  width:100%; background:var(--bg-alt); border:1px solid var(--card-border); border-radius:10px;
  padding:13px 14px; color:var(--text); font-family:inherit; font-size:14px;
}
.form-field .optional{color:var(--text-dim); font-weight:400;}
.contact-info-item{display:flex; gap:14px; align-items:flex-start; margin-bottom:22px;}
.contact-info-item .icon{margin-bottom:0; flex-shrink:0;}
.note{
  background:rgba(124,92,252,0.08); border:1px solid rgba(124,92,252,0.25); border-radius:12px;
  padding:14px 16px; font-size:13px; color:var(--text-dim); margin-top:24px;
}
.form-message{
  border-radius:12px; padding:14px 16px; font-size:14px; margin-bottom:20px;
}
.form-message.success{background:rgba(74,222,128,0.1); border:1px solid rgba(74,222,128,0.35); color:var(--touch);}
.form-message.error{background:rgba(248,113,113,0.1); border:1px solid rgba(248,113,113,0.35); color:var(--sell);}
/* honeypot field, hidden from real visitors */
.hp-field{position:absolute !important; left:-9999px !important; top:-9999px !important;}

/* ---------- Footer ---------- */
footer.site{border-top:1px solid var(--card-border); padding:48px 0 32px; margin-top:20px;}
.foot-grid{display:flex; justify-content:space-between; gap:24px; flex-wrap:wrap;}
.foot-cols{display:flex; gap:64px; flex-wrap:wrap;}
.foot-cols h4{font-size:13px; color:var(--text-dim); margin-bottom:12px; font-weight:700; text-transform:uppercase; letter-spacing:.06em;}
.foot-cols a{display:block; color:var(--text-dim); font-size:14px; margin-bottom:8px;}
.foot-cols a:hover{color:var(--accent);}
.foot-bottom{color:var(--text-dim); font-size:13px; margin-top:40px; border-top:1px solid var(--card-border); padding-top:20px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;}

/* ---------- Generic page fallback (page.php) ---------- */
.generic-page{padding:90px 0; min-height:50vh;}
.generic-page .entry-content{max-width:760px; color:var(--text-dim); font-size:16px;}
.generic-page .entry-content h2,.generic-page .entry-content h3{color:var(--text); margin:28px 0 10px;}
.generic-page .entry-content p{margin-bottom:16px;}
