/*
Theme Name: 2S Digital
Theme URI: https://2sdigital.nl
Author: 2S Digital
Description: Minimal, modern WordPress theme for 2S Digital (webhosting voor het MKB).
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 2sdigital
Tags: one-column, custom-logo, custom-menu, featured-images, rtl-language-support
*/

:root{
  --bg:#F5F7FA;
  --white:#FFFFFF;
  --text:#0B1220;
  --muted:#5B667A;
  --midnight:#0F1A2B;
  --primary:#1E5EFF;
  --primary2:#3B82F6;
  --border: rgba(15,26,43,.10);
  --shadow: 0 10px 25px rgba(0,0,0,.06);
  --radius: 16px;
  --radius2: 12px;
  --container: 1160px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
a{color:inherit; text-decoration:none;}
a:hover{opacity:.92;}
img{max-width:100%; height:auto; display:block;}
.container{max-width:var(--container); margin:0 auto; padding:0 20px;}
.section{padding:72px 0;}
.section-sm{padding:48px 0;}
.card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.grid{display:grid; gap:20px;}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr));}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr));}
.grid-4{grid-template-columns:repeat(4,minmax(0,1fr));}
@media (max-width: 900px){
  .grid-2,.grid-3,.grid-4{grid-template-columns:1fr;}
  .section{padding:56px 0;}
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(245,247,250,.82);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand img{width:44px; height:44px;}
.brand .brand-text{display:flex; flex-direction:column; line-height:1.1;}
.brand .brand-text strong{font-size:15px; letter-spacing:.06em;}
.brand .brand-text span{font-size:12px; color:var(--muted);}
.nav{
  display:flex; align-items:center; gap:14px;
}
.nav ul{
  list-style:none; padding:0; margin:0;
  display:flex; align-items:center; gap:14px;
}
.nav li a{
  padding:10px 10px;
  border-radius:10px;
  color:rgba(11,18,32,.86);
  font-weight:600;
  font-size:14px;
}
.nav li.current-menu-item a,
.nav li a:hover{
  background:rgba(30,94,255,.08);
  color:var(--text);
}
.header-actions{display:flex; align-items:center; gap:10px;}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 18px;
  border-radius:var(--radius2);
  font-weight:700;
  font-size:14px;
  border:1px solid transparent;
  cursor:pointer;
  white-space:nowrap;
}
.btn-primary{background:var(--primary); color:#fff;}
.btn-primary:hover{background:var(--primary2);}
.btn-ghost{background:transparent; border-color:rgba(255,255,255,.35); color:#fff;}
.btn-outline{background:transparent; border-color:rgba(30,94,255,.35); color:var(--text);}
.btn-outline:hover{background:rgba(30,94,255,.08);}
.mobile-toggle{
  display:none;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:var(--white);
}
@media (max-width: 980px){
  .nav ul{display:none;}
  .mobile-toggle{display:inline-flex;}
  .nav.open ul{
    display:flex;
    position:absolute;
    top:64px;
    right:20px;
    left:20px;
    flex-direction:column;
    background:var(--white);
    border:1px solid var(--border);
    border-radius:16px;
    padding:12px;
    box-shadow:var(--shadow);
  }
  .header-actions{gap:8px;}
}

/* Hero */
.hero{
  position:relative;
  background: radial-gradient(1200px 600px at 70% 30%, rgba(30,94,255,.35), transparent 60%),
              radial-gradient(900px 500px at 20% 10%, rgba(59,130,246,.22), transparent 55%),
              linear-gradient(180deg, #0F1A2B 0%, #0B1322 100%);
  color:#fff;
  overflow:hidden;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  align-items:center;
  padding:74px 0;
}
@media (max-width: 900px){ .hero-inner{grid-template-columns:1fr; padding:58px 0;} }
.h-eyebrow{
  display:inline-flex; gap:10px; align-items:center;
  font-weight:700; font-size:13px;
  letter-spacing:.08em;
  color:rgba(255,255,255,.75);
}
.badge{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  padding:6px 10px;
}
.hero h1{
  margin:14px 0 10px;
  font-size:44px;
  line-height:1.08;
  letter-spacing:-.02em;
}
@media (max-width: 520px){ .hero h1{font-size:36px;} }
.hero p{margin:0 0 22px; color:rgba(255,255,255,.82); font-size:16px;}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap;}
.hero-mock{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  padding:18px;
}
.mock-panel{
  background:#0B1220;
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.mock-top{
  display:flex; justify-content:space-between; align-items:center;
  margin-bottom:12px;
}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 10px;
  background:rgba(30,94,255,.18);
  border:1px solid rgba(30,94,255,.25);
  border-radius:999px;
  font-weight:700;
  font-size:12px;
}
.dot{width:8px; height:8px; border-radius:999px; background:#22c55e;}
.mock-line{height:10px; border-radius:999px; background:rgba(255,255,255,.08); margin:10px 0;}
.mock-chart{height:160px; border-radius:14px; background:linear-gradient(180deg, rgba(30,94,255,.22), rgba(255,255,255,.02)); border:1px solid rgba(255,255,255,.10);}
.mock-stats{display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:12px;}
.stat{background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius:14px; padding:10px;}
.stat strong{display:block; font-size:13px;}
.stat span{font-size:12px; color:rgba(255,255,255,.72);}

/* Feature row */
.feature{
  padding:22px;
}
.feature h3{margin:12px 0 6px; font-size:16px;}
.feature p{margin:0; color:var(--muted); font-size:14px;}
.icon{
  width:42px; height:42px; border-radius:14px;
  display:grid; place-items:center;
  background:rgba(30,94,255,.10);
  border:1px solid rgba(30,94,255,.18);
}
.icon svg{width:22px; height:22px;}

/* Pricing */
.pricing-head{text-align:center; margin-bottom:22px;}
.pricing-head h2{margin:0 0 8px; font-size:30px;}
.pricing-head p{margin:0; color:var(--muted);}
.plan{
  padding:26px;
  position:relative;
}
.plan .tag{
  position:absolute; top:18px; right:18px;
  background:rgba(30,94,255,.10);
  border:1px solid rgba(30,94,255,.18);
  color:var(--text);
  border-radius:999px;
  padding:6px 10px;
  font-weight:800;
  font-size:12px;
}
.plan h3{margin:0 0 6px; font-size:20px;}
.price{display:flex; align-items:baseline; gap:6px; margin:10px 0 14px;}
.price strong{font-size:34px;}
.price span{color:var(--muted); font-weight:700;}
.ul{
  list-style:none; padding:0; margin:0 0 18px;
  display:flex; flex-direction:column; gap:10px;
}
.ul li{display:flex; gap:10px; align-items:flex-start; color:rgba(11,18,32,.90);}
.check{
  width:18px; height:18px; border-radius:6px;
  background:rgba(34,197,94,.14);
  border:1px solid rgba(34,197,94,.28);
  display:grid; place-items:center;
  margin-top:2px;
}
.check svg{width:12px; height:12px;}
.plan .btn{width:100%;}

/* Content pages */
.page-hero{
  padding:52px 0;
  background: linear-gradient(180deg, rgba(30,94,255,.10), transparent 58%);
  border-bottom:1px solid var(--border);
}
.page-hero h1{margin:0 0 8px; font-size:36px;}
.page-hero p{margin:0; color:var(--muted); max-width:70ch;}
.content{padding:46px 0;}
.prose{max-width:78ch;}
.prose h2{margin-top:26px;}
.prose p, .prose li{color:rgba(11,18,32,.88);}
.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:18px;
  background:var(--white);
  box-shadow:var(--shadow);
}
.table th, .table td{
  padding:14px 14px;
  border-bottom:1px solid var(--border);
  text-align:left;
  font-size:14px;
}
.table th{background:rgba(15,26,43,.03); font-size:13px; letter-spacing:.03em; text-transform:uppercase;}
.table tr:last-child td{border-bottom:none;}
.kicker{color:var(--muted); font-weight:800; letter-spacing:.08em; font-size:12px; text-transform:uppercase;}
.faq{display:flex; flex-direction:column; gap:12px; margin-top:14px;}
.faq details{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px 16px;
  box-shadow:var(--shadow);
}
.faq summary{cursor:pointer; font-weight:800;}
.faq p{margin:10px 0 0; color:var(--muted);}

/* Footer */
.site-footer{
  background:var(--midnight);
  color:rgba(255,255,255,.82);
}
.footer-inner{padding:42px 0;}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap:22px;
}
@media (max-width: 900px){.footer-grid{grid-template-columns:1fr;}}
.footer-title{color:#fff; font-weight:900; margin:0 0 10px;}
.footer-links{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px;}
.footer-links a{color:rgba(255,255,255,.82);}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.10);
  padding:14px 0;
  font-size:13px;
  color:rgba(255,255,255,.65);
}
