:root{
  --bg:#e4e4e4;
  --text:#0b1b3b;
  --muted:#667085;
  --card:#ffffff;
  --border:#e6e1d8;
  --shadow:0 12px 30px rgba(13,28,54,.08);

  --accent:#dc3a4e;
  --accent2:#c43244;

  --blue:#4969ed;
  --blue2:#2f4ed8;

  --dark:#0f1117;
  --dark2:#171a22;
  --darkBorder:rgba(255,255,255,.10);

  --radius:8px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial;
  color:var(--text);
  background:#fff;
}

a{color:inherit; text-decoration:none}
.wrap{max-width:1600px; margin:0 auto; padding:0 18px;}
.grid{display:grid; gap:16px;}
.muted{color:var(--muted)}

.mbiv-row{display:flex; align-items:center; gap:12px;}
.divider{height:1px; background:var(--border); margin:14px 0;}
.pill{display:inline-flex; padding:6px 10px; border:1px solid var(--border); border-radius:999px; background:#fff; font-size:12px; color:var(--muted);}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:8px; border:1px solid var(--border);
  background:#fff; cursor:pointer; font-weight:500;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover{box-shadow:var(--shadow); transform:translateY(-1px)}
.btn-primary{background:var(--accent); border-color:var(--accent); color:#111;}
.btn-primary:hover{background: #1c1c33; border-color:var(--accent2)}
.btn-ghost{background:transparent}
.btn-outline{background:transparent; border-color:rgba(255,255,255,.22); color:#fff;}
.btn-outline:hover{border-color:rgba(255,255,255,.35); background:rgba(255,255,255,.06)}
.btn-dark{background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.14); color:#fff;}
.btn-dark:hover{background:rgba(255,255,255,.10); border-color:rgba(255,255,255,.18)}

.icon-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;

  width:34px; height:34px; border-radius:8px;
  display:inline-flex; align-items:center; justify-content:center;
  font-size:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  position:relative;
  color:#fff;
}
.icon-btn:hover{background:rgba(255,255,255,.10)}
.badge{
  position:absolute; top:-6px; right:-6px;
  background:#ff3b30; color:#fff; font-size:11px; font-weight:800;
  min-width:18px; height:18px; border-radius:999px;
  display:flex; align-items:center; justify-content:center;
  padding:0 6px; border:2px solid #1c1c33;
}

/* Nav font override */
.site-header, .site-header .nav-shell, .site-header .site-nav, .site-header .nav-link, .site-header .header-actions, .site-header .btn, .site-header .lang-pill, .site-header .vat-pill{
  font-family: 'Montserrat', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial;
}
.site-header .nav-link{font-weight:500; font-size:14px; padding:14px 20px; color:#111827; display:flex; align-items:center; line-height:1;}
.site-header .btn{font-weight:600;}
/* Header (Domainbase-like) */
.site-header{
  position:sticky; top:0; z-index:999;
  background:#ffffff;
  padding:0;
}
.nav-shell{
  position:relative;
  overflow:visible;
  background:transparent;
  border-bottom:0;
  border:0;
  border-radius:0;
  box-shadow:none;
  padding:8px 0;
  display:flex; align-items:center; gap:12px;

  justify-content:space-between;
}
.brand{display:flex; align-items:center; gap:10px; padding:0;}
.brand img{height:48px; width:auto; display:block; filter:brightness(1.05);}
.nav-toggle{
  display:none;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  border-radius:8px;
  width:44px; height:44px;
  align-items:center; justify-content:center;
  cursor:pointer;
  color:#fff;
}
.site-nav{display:flex; align-items:center; gap:6px; flex:1; justify-content:center;}
.nav-link{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px; border-radius:8px;
  color:rgba(255,255,255,.88);
  font-weight:500;
  letter-spacing:.01em;
}
.nav-link:hover{background:rgba(255,255,255,.06); color:#fff}
.nav-item{position:relative;}
.site-header .nav-item{position:static;}
.nav-item.has-mega > .nav-link:after{
  content:"";
  width:8px;
  height:8px;
  display:inline-block;
  border-right:1.5px solid currentColor;
  border-bottom:1.5px solid currentColor;
  transform:translateY(-1px) rotate(45deg);
  margin-left:6px;
  opacity:.55;
  transition:transform .15s ease, opacity .15s ease;
}
.nav-item.has-mega:hover > .nav-link:after,
.nav-item.has-mega:focus-within > .nav-link:after{
  transform:translateY(-1px) rotate(-135deg);
  opacity:.85;
}

.mega{
  position:absolute;
  left:20px;
  right:20px;
  top:100%;
  width:auto;
  z-index:1000;

  background:#fff;
  border:1px solid rgba(15,17,23,.10);
  border-top:0;
  border-radius:0 0 8px 8px;
  box-shadow:0 20px 60px rgba(0,0,0,.18);
  padding:18px;
  display:none;
}

.mega-layout{
  display:grid;
  grid-template-columns: 360px 1fr;
  gap:20px;
}
.mega-aside{
  padding:18px;
  border-right:1px solid rgba(15,17,23,.08);
}
.mega-kicker{
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
  color:#6b7280;
}
.mega-head{
  margin-top:10px;
  font-size:20px;
  font-weight:600;
  color:#111827;
}
.mega-desc{
  margin-top:10px;
  color:#6b7280;
  line-height:1.5;
  font-size:14px;
}
.mega-more{
  display:inline-flex;
  margin-top:14px;
  color:var(--accent);
  font-weight:600;
  font-size:14px;
}
.mega-panels{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:18px;
  padding:18px;
}
.mega-group .mega-title{
  margin:0 0 10px;
}
.mega-card{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 14px;
  border:1px solid rgba(17,24,39,.14);
  border-radius:8px;
  background:#fff;
  color:#111827;
  font-weight:500;
  font-size:14px;
  margin-bottom:10px;
  transition: box-shadow .2s ease, border-color .2s ease, transform .08s ease;
}
.mega-card:hover{
  border-color:rgba(220,58,78,.55);
  box-shadow:0 10px 26px rgba(0,0,0,.12);
  transform: translateY(-1px);
}
.mc-ico{
  width:32px;
  height:32px;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(220,58,78,.10);
  border:1px solid rgba(220,58,78,.18);
}
.mc-text{white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}

.mega-grid{display:grid; gap:18px; grid-template-columns:repeat(3, minmax(0, 1fr));}
.mega-title{font-weight:900; font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:#6b7280; margin-bottom:10px;}
.mega a:not(.mega-card):not(.mega-more){
  display:block;
  padding:8px 10px;
  border-radius:8px;
  color:#0f172a;
  font-weight:500;
  font-size:14px;
}
.mega a:not(.mega-card):not(.mega-more):hover{
  background:rgba(220,58,78,.12);
  color:#111827;
}
.lang-pill{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 12px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:#fff;
  font-weight:800;
  min-width:44px;
}
.vat-pill{
  padding:8px 10px;

  display:flex; align-items:center; gap:10px;
  padding:8px 10px; border:1px solid rgba(255,255,255,.14);
  border-radius:8px; background:rgba(255,255,255,.06);
  font-weight:800; color:#fff;
}

/* Toggle switch */
.switch{position:relative; width:40px; height:22px; display:inline-block;}
.switch input{opacity:0; width:0; height:0;}
.slider{
  position:absolute; inset:0; background:rgba(255,255,255,.20);
  border-radius:999px;
  transition:.2s;
}
.slider:before{
  content:""; position:absolute; height:16px; width:16px; left:3px; top:3px;
  background:#fff; border-radius:50%; transition:.2s;
  box-shadow:0 6px 14px rgba(0,0,0,.25);
}
.switch input:checked + .slider{background:rgba(220,58,78,.55)}
.switch input:checked + .slider:before{transform:translateX(20px);}

/* Hero */
.hero{
  background: radial-gradient(1200px 400px at 20% 0%, rgba(255,255,255,.18), transparent 60%), linear-gradient(90deg, #dc3a4e, rgba(196,50,68,.92));
  padding:24px 0 24px;
  position:relative;
  overflow:visible;
}
.hero .wrap{position:relative}
/* Allow heroes to align with Bootstrap containers as well */
.hero .container-xxl{position:relative}

.hero-box{
  background:transparent;
  border-radius:0;
  padding:22px;
  position:relative;
  overflow:visible;
  box-shadow:none;
}

.hero h1{font-size:48px; line-height:1.05; margin:0 0 12px; color:#ffffff;}
.hero p{margin:0; max-width:720px; font-size:18px; color:rgba(255,255,255,.85);}
.hero-card{
  margin-top:28px;
  background:#fff;
  border:1px solid rgba(255,255,255,.4);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 22px 50px rgba(11,27,59,.15);
}
.domain-bar{display:flex; gap:12px; align-items:center;}
.domain-input{
  flex:1;
  display:flex; align-items:center; gap:12px;
  border:1px solid var(--border);
  background:#f7f7f9;
  border-radius:8px;
  padding:14px 16px;
}
.domain-input input{
  border:none; outline:none; background:transparent;
  font-size:16px; width:100%;
}
.tld-row{
  display:flex; flex-wrap:wrap; gap:18px;
  padding:12px 8px 0;
  color:#8a8f9a; font-weight:750;
}
.promo{
  margin-top:18px;
  background:#fff4df;
  border:1px solid rgba(0,0,0,.04);
  border-radius:var(--radius);
  padding:16px 18px;
  display:flex; justify-content:space-between; align-items:center; gap:16px;
}

/* Sections */
.section{padding:46px 0;}
.section h2{margin:0 0 18px; text-align:center; font-size:22px; letter-spacing:.02em;}
.cards{grid-template-columns:repeat(5, minmax(0, 1fr));}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}
.card.center{text-align:center}
.icon{
  width:54px; height:54px; border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(220,58,78,.22);
  background:rgba(220,58,78,.10);
  margin:0 auto 10px;
}
.card .label{font-weight:900; margin-top:6px;}

/* Content pages */
.content{padding:26px 0 44px;}
.page-head{display:flex; justify-content:space-between; align-items:flex-end; gap:18px; margin-bottom:16px;}
.page-head h1{margin:0}
.table{width:100%; border-collapse:collapse; overflow:visible; border-radius:8px; border:1px solid var(--border); background:#fff;}
.table th,.table td{padding:12px 12px; border-bottom:1px solid var(--border); text-align:left; font-size:14px;}
.table th{background:#fafafa; color:var(--muted); font-weight:900; letter-spacing:.02em;}
.table tr:last-child td{border-bottom:none}

input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:8px;
  border:1px solid var(--border);
  outline:none;
  background:#fff;
}
button{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:8px; border:1px solid var(--accent);
  background:var(--accent); color:#111;
  font-weight:900; cursor:pointer;
}
button:hover{background:var(--accent2); border-color:var(--accent2)}

/* VAT visibility */
.price-incl{display:none}
body[data-vat="on"] .price-incl{display:inline}
body[data-vat="on"] .price-excl{display:none}

/* Product listing */
.product-grid{grid-template-columns:repeat(3, minmax(0, 1fr));}
.product-card h3{margin:0 0 6px;}
.product-price{margin:10px 0 14px;}
.product-actions{display:flex; gap:10px; align-items:center; justify-content:space-between; flex-wrap:wrap;}
@media (max-width: 980px){ .product-grid{grid-template-columns:repeat(2, minmax(0, 1fr));} }
@media (max-width: 520px){ .product-grid{grid-template-columns:1fr;} }

/* Footer */
.site-footer{
  margin-top:40px;
  background:#1c1c33;
  color:#ffffff;
  padding:34px 0;
}

.footer-box{
  background:transparent;
  border-radius:0;
  box-shadow:none;
}

.footer-inner{padding:46px 0;}
.footer-grid{display:grid; grid-template-columns: 1.2fr repeat(4, 1fr); gap:26px;}
.footer-title{font-weight:900; margin-bottom:12px;}
.footer a{display:block; padding:6px 0; color:#ffffff; opacity:.92;}
.footer a:hover{opacity:1; text-decoration:underline;}
.footer-meta{margin-top:18px; font-size:13px; color:rgba(255,255,255,.85); opacity:.92;}
.social{display:flex; gap:10px; margin-top:12px;}
.social a{width:36px;height:36px;border-radius:8px;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,.35);border:1px solid rgba(255,255,255,.35)}

/* Responsive */
@media (max-width: 980px){
  .nav-toggle{display:inline-flex}
  .site-nav{
    display:none;
    position:absolute;
    left:22px; right:22px; top:calc(100% + 10px);
    background: linear-gradient(180deg, #1c1c33, #151528);
    border:1px solid rgba(255,255,255,.10);
    border-radius:8px;
    padding:12px;
    flex-direction:column; align-items:stretch;
    box-shadow:0 22px 60px rgba(0,0,0,.25);
  }
  body.nav-open .site-nav{display:flex}
  .mega{position:static; min-width:unset; box-shadow:none; border-radius:8px; margin-top:8px;}
  .mega-grid{grid-template-columns:1fr}
  .nav-shell{
  overflow:visible;position:relative
  justify-content:space-between;
}
  .cards{grid-template-columns:repeat(2, minmax(0, 1fr));}
  .footer-grid{grid-template-columns:1fr 1fr}
  .hero h1{font-size:36px}
}
@media (max-width: 520px){
  .header-actions .lang-pill{display:none}
  .cards{grid-template-columns:1fr}
}

/* Ensure mega cards are horizontal (icon + label in one line) */
.mega .mega-card{
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:12px;
}
.mega .mc-ico{flex:0 0 32px}
.mega .mc-text{flex:1; min-width:0; line-height:1.2;}

/* Feature sections (like screenshots) */
.feature-section{padding:40px 0; background:#f2f0eb;}
.section-box{
  background:transparent;
  border:0;
  border-radius:0;
  /* Keep vertical breathing room, but align left/right with header */
  padding:22px 0;
  box-shadow:none;
}
.feature-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:64px;
  align-items:center;
}
.feature-grid.reverse{grid-template-columns: .95fr 1.05fr;}
.feature-kicker{
  display:inline-flex;
  padding:8px 12px;
  border:1px solid rgba(220,58,78,.18);
  background:rgba(220,58,78,.10);
  border-radius:999px;
  font-weight:600;
  color:#111827;
  font-size:12px;
  margin-bottom:12px;
}
.feature-title{
  font-size:40px;
  line-height:1.1;
  margin:0 0 14px;
  color:#0b1b3b;
}
.feature-text{
  color:#1f2937;
  line-height:1.7;
  font-size:15px;
  margin:0 0 14px;
}
.feature-list{margin:0 0 18px; padding-left:18px; color:#1f2937; line-height:1.7; font-size:15px;}
.feature-media{
  border-radius:8px;
  overflow:hidden;
  border:1px solid rgba(15,17,23,.10);
  background:#fff;
}
.feature-media img{display:block; width:100%; height:auto;}

/* Feature placeholder (gradient image block) */
.feature-media.feature-placeholder{
  position:relative;
  min-height:380px;
  padding:44px;
  border-radius:14px;
  border:0;
  background:linear-gradient(135deg,#161528,#cc3149);
  overflow:hidden;
}
.feature-media.feature-placeholder .ph-text{
  position:relative;
  z-index:2;
  color:#fff;
}
.feature-media.feature-placeholder .ph-title{
  font-size:28px;
  font-weight:700;
  margin:0 0 6px;
}
.feature-media.feature-placeholder .ph-sub{
  font-size:14px;
  opacity:.9;
}
.feature-media.feature-placeholder::before{
  content:"";
  position:absolute;
  width:360px;
  height:360px;
  border-radius:50%;
  background:rgba(255,255,255,.16);
  right:52px;
  top:34px;
}
.feature-media.feature-placeholder::after{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  border-radius:50%;
  background:rgba(255,255,255,.14);
  right:165px;
  top:188px;
}
.feature-media.feature-placeholder .ph-bubble.ph-b3{
  position:absolute;
  width:300px;
  height:300px;
  border-radius:50%;
  background:rgba(255,255,255,.10);
  right:88px;
  bottom:-140px;
}
@media (max-width: 980px){
  .feature-media.feature-placeholder{
    min-height:260px;
    padding:28px;
  }
  .feature-media.feature-placeholder .ph-title{font-size:22px;}
  .feature-media.feature-placeholder::before{width:260px; height:260px; right:22px; top:20px;}
  .feature-media.feature-placeholder::after{width:170px; height:170px; right:92px; top:120px;}
  .feature-media.feature-placeholder .ph-bubble.ph-b3{width:220px; height:220px; right:38px; bottom:-110px;}
}

.feature-actions{margin-top:18px;}
@media (max-width: 980px){
  .section-box{padding:22px 0;}
  .feature-grid, .feature-grid.reverse{grid-template-columns:1fr; gap:26px;}
  .feature-title{font-size:28px;}
}

/* Steps section */
.steps-section{padding:34px 0; background:#f2f0eb;}
.steps-title{
  text-align:center;
  font-size:32px;
  margin:0 0 22px;
  color:#0b1b3b;
}
.steps-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:22px;
  align-items:stretch;
}
.step-card{
  background:#f2f0eb;
  border:1px solid rgba(15,17,23,.08);
  border-radius:8px;
  padding:22px;
  text-align:center;
  box-shadow:0 12px 34px rgba(0,0,0,.06);
  position:relative;
}
.step-num{
  width:40px;
  height:40px;
  border-radius:999px;
  background:#111827;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  margin:0 auto 14px;
}
.step-card h3{
  margin:0 0 8px;
  font-size:18px;
  color:#111827;
}
.step-card p{
  margin:0;
  color:#374151;
  font-size:14px;
  line-height:1.6;
}
.step-card a{
  color:var(--accent);
  text-decoration:underline;
  font-weight:600;
}
@media (max-width: 980px){
  .steps-title{font-size:24px;}
  .steps-grid{grid-template-columns:1fr; gap:14px;}
}


/* Security intro */
.security-intro{
  padding:46px 0 18px;
  background:#f8fafc;
}
.security-intro-content{
  max-width:900px;
  margin:0 auto;
  text-align:center;
}
.security-intro-title{
  font-size:34px;
  margin:0 0 6px;
  color:#0b1b3b;
}
.security-intro-subtitle{
  font-size:18px;
  font-weight:700;
  margin:0 0 12px;
  color:#111827;
}
.security-intro-content p{
  margin:0 0 10px;
  color:#374151;
  font-size:14px;
  line-height:1.7;
}
.security-intro-content p:last-child{margin-bottom:0;}

@media (max-width: 980px){
  .security-intro-title{font-size:26px;}
}


/* Security section */
.security-section{
  /* Extra bottom spacing so the CTA buttons don't sit too close to the next section */
  padding:46px 0 60px;
  background:#fff;
}
.security-head{
  text-align:center;
  margin:0 auto 18px;
  max-width:860px;
}
.security-kicker{
  display:inline-block;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--accent);
  background:rgba(220,58,78,.10);
  padding:6px 10px;
  border-radius:999px;
  margin-bottom:10px;
}
.security-title{
  text-align:center;
  font-size:32px;
  margin:0 0 6px;
  color:#0b1b3b;
}
.security-sub{
  margin:0;
  color:#4b5563;
  font-size:14px;
}
.security-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
  margin-top:22px;
  align-items:stretch;
}
.security-card{
  background:#fff;
  border:1px solid rgba(15,17,23,.10);
  border-radius:8px;
  padding:20px;
  box-shadow:0 12px 34px rgba(0,0,0,.06);
  position:relative;
}
.security-card:before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:3px;
  background:linear-gradient(90deg, var(--accent), rgba(11,27,59,0));
  border-top-left-radius:8px;
  border-top-right-radius:8px;
  opacity:.95;
}
.security-ico{
  width:42px;
  height:42px;
  border-radius:10px;
  background:rgba(220,58,78,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  margin-bottom:12px;
}
.security-card h3{
  margin:0 0 8px;
  font-size:18px;
  color:#111827;
}
.security-card p{
  margin:0;
  color:#374151;
  font-size:14px;
  line-height:1.6;
}
.security-actions{
  display:flex;
  gap:12px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  margin-top:18px;
}

@media (max-width: 980px){
  .security-title{font-size:24px;}
  .security-grid{grid-template-columns:1fr; gap:14px;}
}


/* Packages section */
.packages-section{padding:0px 0px 40px 0px; background:#fff;}
.packages-title{
  text-align:center;
  font-size:34px;
  margin:0 0 8px;
  color:#0b1b3b;
}
.packages-sub{
  text-align:center;
  margin:0 0 24px;
  color:#4b5563;
  font-size:14px;
}

/* New package cards (Vimexx-like layout) */
.packages-grid-4{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:18px;
  align-items:stretch;
}

.pkg-card{
  background:#fff;
  border:1px solid rgba(15,17,23,.10);
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 8px 18px rgba(0,0,0,.06);
  display:flex;
  flex-direction:column;
  position:relative;
}

.pkg-top{
  padding:18px 18px 14px;
  text-align:center;
  background:rgba(220,58,78,.06);
  border-bottom:1px solid rgba(15,17,23,.08);
}
.pkg-kicker{
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#0b1b3b;
  opacity:.85;
  margin-bottom:4px;
}
.pkg-name{
  font-size:34px;
  line-height:1.1;
  font-weight:500;
  color:var(--accent);
  margin:0;
}

.pkg-price{
  padding:16px 18px 0;
  text-align:center;
  display:flex;
  justify-content:center;
  align-items:baseline;
  gap:10px;
}
.pkg-euro{
  font-size:36px;
  font-weight:800;
  color:#374151;
}
.pkg-per{
  font-size:13px;
  color:#6b7280;
}

.pkg-renew{
  text-align:center;
  padding:0 18px 12px;
  color:#9ca3af;
  font-size:13px;
}

.btn.btn-accent{
  background:var(--accent);
  border-color:var(--accent);
  color:#fff;
}
.btn.btn-accent:hover{
  background:#1c1c33;
  border-color:#1c1c33;
  color:#fff;
}

.pkg-cta{
  margin:0 18px 14px;
  padding:12px 14px;
  font-weight:700;
  border-radius:8px;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.pkg-divider{
  height:1px;
  background:rgba(15,17,23,.08);
  margin:0 0 6px;
}

.pkg-specs{
  padding:14px 18px 10px;
  display:flex;
  flex-direction:column;
  gap:12px;
  flex:1;
}

.spec-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.spec-label{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.05em;
  color:#6b7280;
  line-height:1.2;
  max-width:62%;
}
.spec-value{
  font-size:13px;
  color:#0b1b3b;
  text-align:right;
  line-height:1.2;
  min-width:36%;
}

/* speed bar (chevron-like) */
.speed-bar{
  --p:60%;
  position:relative;
  display:block;
  width:120px;
  height:10px;
  border-radius:999px;
  background:rgba(11,27,59,.08);
  overflow:hidden;
  box-shadow:inset 0 0 0 1px rgba(11,27,59,.10);
}
.speed-bar:before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:var(--p);
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,.0) 0 8px,
      rgba(255,255,255,.45) 8px 12px
    ),
    linear-gradient(90deg, #f6b100, #f59e0b);
}

/* yes/no values */
.val-yes{
  font-weight:700;
  color:#0b1b3b;
}
.val-yes:before{
  content:"✓";
  color:#22c55e;
  font-weight:900;
  margin-right:6px;
}

/* Tooltip */
.spec-label{position:relative;}
.tip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:18px;
  height:18px;
  margin-left:6px;
  border-radius:999px;
  background:rgba(11,27,59,.10);
  color:#0b1b3b;
  font-size:12px;
  font-weight:800;
  cursor:help;
}
.tip-pop{
  position:absolute;
  left:0;
  top:22px;
  width:min(260px, 80vw);
  background:#111827;
  color:#fff;
  padding:10px 12px;
  border-radius:8px;
  font-size:12px;
  line-height:1.4;
  box-shadow:0 16px 40px rgba(0,0,0,.25);
  opacity:0;
  visibility:hidden;
  transform:translateY(-4px);
  transition:opacity .15s ease, transform .15s ease, visibility .15s ease;
  z-index:5;
}
.tip:hover + .tip-pop,
.tip:focus + .tip-pop{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* Addons */
.pkg-addons{
  padding:10px 12px 14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.pkg-addon{
  border-radius:8px;
  padding:10px 12px;
  font-size:13px;
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid rgba(15,17,23,.10);
}
.pkg-addon-ssl{
  background:rgba(245,158,11,.10);
  border-color:rgba(245,158,11,.35);
  color:#374151;
}
.pkg-addon-backup{
  background:rgba(34,197,94,.16);
  border-color:rgba(34,197,94,.35);
  color:#374151;
}
.addon-ico{font-size:16px; line-height:1;}

/* Featured */
.pkg-featured{
  /* Featured card, but no blue outline */
  border:1px solid rgba(15,17,23,.10);
  box-shadow:0 26px 70px rgba(0,0,0,.12);
}
.pkg-badge{
  position:absolute;
  top:10px;
  left:12px;
  background:var(--accent);
  color:#fff;
  font-weight:800;
  font-size:11px;
  padding:6px 10px;
  border-radius:999px;
  box-shadow:0 14px 36px rgba(0,0,0,.18);
  z-index:2;
}

@media (max-width: 1300px){
  .packages-grid-4{grid-template-columns: repeat(2, minmax(0, 1fr));}
}
@media (max-width: 768px){
  .packages-grid-4{grid-template-columns: 1fr;}
  .spec-label{max-width:58%;}
  .speed-bar{width:110px;}
}

.packages-title{font-size:26px;}
}

/* Topbar */
.topbar{background:#1c1c33 !important; color:#fff; font-size:13px; border-bottom:1px solid rgba(255,255,255,.12); width:100%;}
.topbar-inner{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  padding-top:8px; padding-bottom:8px; }
.topbar-center{font-weight:600; letter-spacing:.01em;}
.topbar-highlight{color:var(--accent); font-weight:700;}
.topbar-link{color:rgba(255,255,255,.9); font-weight:500; font-size:14px;}
.topbar-link:hover{color:#fff;}
.topbar-btn:hover{filter:brightness(.95);}

/* Header main wrapper */
.header-main{background:#ffffff;
  border-bottom:1px solid rgba(15,17,23,.10);}
.header-actions .icon-btn{
  background:#ffffff;
  border:1px solid rgba(15,17,23,.16);
  color:#111827;
}
.header-actions .vat-pill{
  padding:8px 10px;

  background:#ffffff;
  border:1px solid rgba(15,17,23,.16);
  color:#111827;
}
.header-actions .btn.btn-primary{background:var(--accent); color:#fff;}
.header-actions .btn.btn-primary:hover{filter:brightness(.95);}

@media (max-width: 980px){
  .topbar-inner{grid-template-columns:1fr; gap:8px; text-align:center;}
  }

/* Compact header actions */
.header-actions .icon-btn{
  width:32px;
  height:32px;
  font-size:13px;
}
.header-actions .btn{
  padding:9px 14px;
}
.vat-pill{
  height:32px;
  display:flex;
  align-items:center;
  gap:10px;
}

/* Header hover color */
.header-main .site-nav .nav-link:hover,
.header-main .site-nav .nav-link:focus,
.header-main .site-nav .nav-link:focus-visible{
  color:#0b1b3b;
}

/* Topbar contact alignment + icons (aligned with header brand padding) */
.topbar-left{
  display:flex;
  gap:0;
  align-items:center;
  justify-content:flex-start;
  white-space:nowrap;
  
}
.topbar-contact{display:inline-flex; align-items:center; gap:8px;}
.tb-ico{width:14px; height:14px; opacity:.92; flex:0 0 auto;}
.topbar-left .topbar-contact{padding:0 12px;}
.topbar-left .topbar-contact:first-child{padding-left:0;}
.topbar-left .topbar-contact:last-child{padding-right:0;}
.topbar-left .topbar-contact + .topbar-contact{border-left:1px solid rgba(255,255,255,.25);}
.topbar-right{
  display:flex;
  gap:0;
  justify-content:flex-end;
  align-items:center;
  white-space:nowrap;

  
}
.topbar-right .topbar-link{padding:0 12px;}
.topbar-right .topbar-link:first-child{padding-left:0;}
.topbar-right .topbar-link:last-of-type{padding-right:0;}
.topbar-right .topbar-link + .topbar-link{border-left:1px solid rgba(255,255,255,.25);}
.topbar-right .topbar-btn{margin-left:16px;}
.topbar-btn{
  background:var(--accent);
  color:#fff;
  font-weight:700;
  height:32px;
  padding:0 14px;
  line-height:32px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
}
.topbar-btn:hover{filter:brightness(.95);}

/* Mega menu open states */
.has-mega:hover .mega,
.has-mega:focus-within .mega,
.has-mega.open .mega{display:block;}

/* Hover-bridge: prevents accidental close when moving into the mega panel */
.has-mega{position:relative;}
.has-mega::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:100%;
  height:10px;
}

/* Header actions layout (prevents wrapping/stacking) */
.header-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  flex:0 0 auto;
  margin-left:auto;
  flex-wrap:nowrap;
  white-space:nowrap;
}
.header-actions > *{flex:0 0 auto;}
.header-actions .btn{white-space:nowrap;}

.vat-pill{
  height:32px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:0 10px;
  border-radius:8px;
  flex:0 0 auto;
}

/* ===== Domain tools (buttons + bulk) ===== */
.btn{
  appearance:none;
  border:1px solid rgba(15,17,23,.12);
  background:#fff;
  color:#0f1117;
  border-radius:8px;
  padding:10px 14px;
  font-weight:600;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  transition:background .15s ease, border-color .15s ease, transform .05s ease, box-shadow .15s ease;
}
.btn:hover{background:rgba(220,58,78,.06); border-color:rgba(220,58,78,.25);}
.btn:active{transform:translateY(1px);}
.btn-primary{
  background:var(--accent);
  border-color:transparent;
  color:#fff;
}
.btn-primary:hover{filter:brightness(.95);}
.btn:disabled, button:disabled{
  opacity:.55;
  cursor:not-allowed;
}

.btn-lg{height:52px; padding:0 18px; font-size:14px; border-radius:8px;}

.domain-tool{padding:18px;}
.domain-tabs{
  display:flex;
  gap:10px;
  margin-bottom:14px;
  border-bottom:1px solid rgba(15,17,23,.08);
  padding-bottom:12px;
}
.domain-tab{
  border:1px solid rgba(15,17,23,.10);
  background:#fff;
  color:#0f1117;
  border-radius:8px;
  padding:10px 12px;
  font-weight:700;
  font-size:13px;
  cursor:pointer;
}
.domain-tab.is-active{
  background:rgba(220,58,78,.10);
  border-color:rgba(220,58,78,.35);
  color:#0b1b3b;
}
.domain-panel{display:none;}
.domain-panel.is-active{display:block;}

.domain-bar{
  display:flex;
  gap:12px;
  align-items:stretch;
}
.domain-input{
  flex:1;
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid rgba(15,17,23,.12);
  background:#fbfbfd;
  border-radius:8px;
  padding:0 14px;
  height:52px;
}
.domain-input input{
  border:0;
  outline:0;
  background:transparent;
  width:100%;
  font-size:15px;
}
.domain-ico{opacity:.7;}

.domain-result{margin-top:12px;}

.bulk-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:16px;
}
@media (max-width: 980px){
  .bulk-grid{grid-template-columns:1fr;}
}
.form-label{display:block; font-weight:700; font-size:12px; letter-spacing:.06em; text-transform:uppercase; color:rgba(15,17,23,.65); margin:6px 0 8px;}
.form-select{
  width:100%;
  height:44px;
  border-radius:8px;
  border:1px solid rgba(15,17,23,.12);
  background:#fff;
  padding:0 12px;
}
.bulk-textarea{
  width:100%;
  border-radius:8px;
  border:1px solid rgba(15,17,23,.12);
  background:#fff;
  padding:12px 12px;
  font-size:14px;
  resize:vertical;
}
.bulk-textarea.is-error{border-color:rgba(220,58,78,.55); box-shadow:0 0 0 3px rgba(220,58,78,.10);}
.bulk-meta{display:flex; align-items:center; justify-content:space-between; margin-top:8px;}
.bulk-count{font-weight:800; color:#0b1b3b;}
.bulk-side{display:flex; flex-direction:column;}
.bulk-submit{margin-top:14px;}

.product-actions{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:14px;
}
.product-actions .btn{height:42px; padding:0 14px;}

/* Button hover color */
.btn:hover,
.btn:focus-visible{
  background:#1c1c33;
  border-color:#1c1c33;
  color:#fff;
}
.btn-primary:hover,
.btn-primary:focus-visible{
  background:#1c1c33;
  border-color:#1c1c33;
  color:#fff;
  filter:none;
}
.btn-outline:hover,
.btn-outline:focus-visible{
  background:#1c1c33;
  border-color:#1c1c33;
  color:#fff;
}
.btn-dark:hover,
.btn-dark:focus-visible{
  background:#1c1c33;
  border-color:#1c1c33;
  color:#fff;
}
.topbar-btn:hover{
  background:#1c1c33;
}

/* Home bulk domain section */
.bulk-home{
  margin-top:14px;
  border:1px solid rgba(15,17,23,.08);
  background:#fbfbfd;
  border-radius:8px;
  padding:14px;
}
.bulk-home-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.bulk-home-title{font-weight:900; font-size:14px; color:#0b1b3b; margin-bottom:2px;}
.bulk-home-badge{
  background:rgba(28,28,51,.10);
  color:#1c1c33;
  border:1px solid rgba(28,28,51,.18);
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  padding:6px 10px;
  white-space:nowrap;
}
.bulk-home-foot{
  display:flex;
  align-items:center;
  gap:12px;
  justify-content:flex-end;
  margin-top:10px;
}
.bulk-home-foot .muted{margin-right:auto;}
.bulk-home textarea{background:#fff;}
@media (max-width: 980px){
  .bulk-home-foot{flex-wrap:wrap;}
  .bulk-home-foot .muted{width:100%;}
}

/* Modal */
.modal{position:fixed; inset:0; display:none; z-index:9999;}
.modal.is-open{display:block;}
.modal-backdrop{position:absolute; inset:0; background:rgba(15,17,23,.55); backdrop-filter: blur(2px);}
.modal-dialog{
  position:relative;
  max-width:760px;
  margin:80px auto;
  background:#fff;
  border-radius:8px;
  box-shadow:0 24px 70px rgba(0,0,0,.35);
  padding:18px;
}
@media (max-width: 820px){
  .modal-dialog{margin:60px 16px;}
}
.modal-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}
.modal-title{font-weight:900; font-size:16px; color:#0b1b3b; margin-bottom:2px;}
.modal-foot{
  display:flex;
  align-items:center;
  gap:12px;
  justify-content:flex-end;
  margin-top:12px;
}
.modal-foot .muted{margin-right:auto;}

/* Hero domain buttons */
.domain-bar .btn{ text-transform:uppercase; letter-spacing:.02em; }
.domain-bar .bulk-open{
  background:#0b1b3b;
  border-color:#0b1b3b;
  color:#fff;
}
.domain-bar .bulk-open:hover,
.domain-bar .bulk-open:focus-visible{
  background:#1c1c33;
  border-color:#1c1c33;
  color:#fff;
}

/* Button icons */
.btn-ico{
  display:inline-flex;
  width:16px;
  height:16px;
  align-items:center;
  justify-content:center;
  opacity:.92;
}
.btn-ico svg{display:block;}
.btn span{line-height:1;}

/* Domain bar: TRANSFER button */
.domain-bar .transfer-open{
  background:#fff;
  border-color:#0b1b3b;
  color:#0b1b3b;
}
.domain-bar .transfer-open:hover,
.domain-bar .transfer-open:focus-visible{
  background:#1c1c33;
  border-color:#1c1c33;
  color:#fff;
}

.form-input{
  width:100%;
  height:44px;
  border-radius:8px;
  border:1px solid rgba(15,17,23,.12);
  background:#fff;
  padding:0 12px;
  font-size:14px;
}
.transfer-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width: 820px){
  .transfer-grid{grid-template-columns:1fr;}
}

/* TLD carousel */
.tld-carousel{ margin-top:10px; }
.tld-track{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding:10px 0 2px;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
}
.tld-track::-webkit-scrollbar{ display:none; }
.tld-item{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:10px;
  height:44px;
  padding:0 12px;
  background:#fff;
  border:1px solid rgba(15,17,23,.12);
  border-radius:8px;
  color:#0b1b3b;
  font-weight:800;
  text-decoration:none;
  scroll-snap-align:start;
  cursor:pointer;
}
.tld-item:hover{
  background:#f6f7fb;
  border-color:rgba(11,27,59,.28);
}
.tld-icon{
  width:26px; height:26px;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:11px;
  color:#fff;
  letter-spacing:.02em;
  background:#0b1b3b;
}
.tld-text{ font-size:13px; }
/* Per-TLD icon colors (subtle variation) */
.tld-item[data-tld=".nl"] .tld-icon{ background:linear-gradient(135deg,#dc3a4e,#1c1c33); }
.tld-item[data-tld=".com"] .tld-icon{ background:linear-gradient(135deg,#0b1b3b,#1c1c33); }
.tld-item[data-tld=".be"] .tld-icon{ background:linear-gradient(135deg,#dc3a4e,#0b1b3b); }
.tld-item[data-tld=".eu"] .tld-icon{ background:linear-gradient(135deg,#1c1c33,#0b1b3b); }
.tld-item[data-tld=".de"] .tld-icon{ background:linear-gradient(135deg,#dc3a4e,#1c1c33); }
.tld-item[data-tld=".nu"] .tld-icon{ background:linear-gradient(135deg,#0b1b3b,#dc3a4e); }
.tld-item[data-tld=".net"] .tld-icon{ background:linear-gradient(135deg,#1c1c33,#dc3a4e); }
.tld-item[data-tld=".org"] .tld-icon{ background:linear-gradient(135deg,#0b1b3b,#1c1c33); }
.tld-item[data-tld=".shop"] .tld-icon{ background:linear-gradient(135deg,#dc3a4e,#0b1b3b); }
.tld-item[data-tld=".co.nl"] .tld-icon{ background:linear-gradient(135deg,#1c1c33,#0b1b3b); }
.tld-item[data-tld=".amsterdam"] .tld-icon{ background:linear-gradient(135deg,#dc3a4e,#1c1c33); }
.tld-item[data-tld=".online"] .tld-icon{ background:linear-gradient(135deg,#0b1b3b,#dc3a4e); }

/* --- Home hero (website) --- */
.hero-web{
  position: relative;
  background: linear-gradient(90deg, #0b1b3b 0%, #2157a6 100%);
  color: #fff;
  padding: 58px 0 74px;
  overflow: hidden;
}
.hero-web .hero-web-inner{
  display:flex;
  gap: 32px;
  align-items:center;
  justify-content:space-between;
}
.hero-web .hero-web-content{ max-width: 780px; }
.hero-web h1{ font-size: 44px; line-height:1.05; margin: 0 0 14px; }
.hero-web h1 span{ color: #fff; opacity:.92; }
.hero-web p{ max-width: 640px; opacity:.92; margin: 0 0 18px; }
.hero-web-actions{ display:flex; gap: 12px; }
.hero-web-visual{ display:flex; justify-content:flex-end; flex:1; }
.phone-mock{
  width: 240px;
  height: 420px;
  border-radius: 26px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
  padding: 12px;
  transform: rotate(3deg);
}
.phone-screen{
  width:100%; height:100%;
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  position: relative;
  overflow:hidden;
}
.phone-bar{ height: 28px; background: rgba(255,255,255,.14); }
.phone-block{ height: 56px; margin: 12px; border-radius: 12px; background: rgba(255,255,255,.14); }
.phone-block.small{ height: 38px; opacity:.9; }

.hero-web-diagonal{
  position:absolute;
  left:0; right:0; bottom:-1px;
  height: 70px;
  background: #fff;
  clip-path: polygon(0 55%, 100% 100%, 100% 100%, 0 100%);
}

/* --- Domain hero + buttons --- */
.domain-actions{ display:flex; gap: 10px; align-items:center; }
.btn .btn-ico{ margin-right: 8px; font-size: 14px; line-height: 1; }

/* --- Modal --- */
.modal{ position:fixed; inset:0; display:none; z-index: 9999; }
.modal.is-open{ display:block; }
.modal-backdrop{ position:absolute; inset:0; background: rgba(0,0,0,.45); }
.modal-card{
  position:relative;
  width: min(920px, calc(100% - 32px));
  margin: 80px auto;
  background:#fff;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
  padding: 18px 18px 16px;
}
.modal-close{
  position:absolute;
  top: 10px; right: 10px;
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  background:#fff;
  cursor:pointer;
}
.modal-head{ display:flex; align-items:center; justify-content:space-between; gap: 12px; margin-bottom: 8px; }
.badge{ display:inline-flex; align-items:center; height: 24px; padding: 0 10px; border-radius: 999px; font-size: 12px; }
.badge-ok{ background:#e9fff2; color:#0c6b2f; border: 1px solid #bff0cf; }
.badge-bad{ background:#fff0f0; color:#8a1b1b; border: 1px solid #f1bcbc; }
.modal-actions{ display:flex; gap: 10px; margin: 14px 0 6px; }
.modal-loading{ display:flex; align-items:center; gap: 10px; padding: 14px 0; color:#333; }
.spinner{
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid #ddd;
  border-top-color: #dc3a4e;
  animation: spin .9s linear infinite;
}
@keyframes spin{ to { transform: rotate(360deg); } }

.alert{ padding: 10px 12px; border-radius: 8px; border: 1px solid transparent; }
.alert-danger{ background:#fff0f0; border-color:#f1bcbc; color:#8a1b1b; }

.modal-suggestions{ margin-top: 14px; }
.suggest-grid{ display:flex; flex-wrap:wrap; gap: 10px; }
.suggest-pill{
  border: 1px solid #e6e6e6;
  background:#fafafa;
  border-radius: 999px;
  padding: 8px 12px;
  cursor:pointer;
}
.suggest-pill:hover{ background:#1c1c33; color:#fff; border-color:#1c1c33; }

.bulk-textarea{ width:100%; border-radius: 8px; border: 1px solid #e6e6e6; padding: 10px; }
.bulk-results{ margin-top: 12px; }
.bulk-table{ display:flex; flex-direction:column; gap: 8px; }
.bulk-row{ display:flex; justify-content:space-between; border: 1px solid #eee; border-radius: 8px; padding: 10px 12px; }
.bulk-status.ok{ color:#0c6b2f; }
.bulk-status.bad{ color:#8a1b1b; }

/* =========================================================
   Promo hero (home)
   ========================================================= */
.promo-hero{
  position:relative;
  width:100%;
  overflow:hidden;
  background:linear-gradient(90deg, rgba(11,27,59,.95), rgba(11,27,59,.85));
}
.promo-hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 500px at 18% 45%, rgba(255,255,255,.12), transparent 55%),
    radial-gradient(700px 420px at 65% 30%, rgba(220,58,78,.20), transparent 55%);
  opacity:1;
  pointer-events:none;
}

/* Subtle Breda photo overlay (CC BY-SA 3.0: Evangelidis, Wikimedia Commons) */
.promo-hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:url("/theme/frontend/assets/img/breda.jpg") center/cover no-repeat;
  opacity:.07;
  filter:grayscale(100%) contrast(1.05);
  transform:scale(1.03);
  pointer-events:none;
}
.promo-hero-wrap{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:36px;
  padding:52px 0 74px;
  min-height:360px;
}
.promo-hero-content{
  max-width: 1000px;
  color:#fff;
}
.promo-hero-content h1{
  color:#fff;
  font-size:40px;
  line-height:1.08;
  margin:0 0 14px;
}
.promo-hero-content p{
  color:rgba(255,255,255,.88);
  max-width:720px;
  margin:0 0 22px;
}
.promo-hero-actions{
  display:flex;
  gap:12px;
  align-items:center;
}
.promo-hero-media{
  flex:0 0 450px;
  max-width:450px;
  width:450px;
  display:flex;
  justify-content:flex-end;
  align-items:center;
}

.phone-mock{
  width:260px;
  height:520px;
  border-radius:34px;
  background:linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.08));
  box-shadow:0 22px 70px rgba(0,0,0,.35);
  border:2px solid rgba(255,255,255,.18);
  position:relative;
  transform:rotate(2deg);
}
.phone-mock:before{
  content:"";
  position:absolute;
  top:14px;
  left:50%;
  transform:translateX(-50%);
  width:120px;
  height:18px;
  border-radius:12px;
  background:rgba(0,0,0,.22);
}
.phone-screen{
  position:absolute;
  inset:40px 16px 18px 16px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(0,0,0,.10));
  border:1px solid rgba(255,255,255,.14);
}
.promo-hero-slope{
position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:130px;
clip-path:polygon(0 70%, 100% 42%, 100% 100%, 0 100%);
}

/* =========================================================
   Domain hero tweaks (carousel + actions)
   ========================================================= */
.hero.hero-domain{
  /* More premium domain hero */
  padding:64px 0 54px;
  overflow:hidden;
}
.hero.hero-domain:before,
.hero.hero-domain:after{
  content:"";
  position:absolute;
  inset:-120px;
  pointer-events:none;
}
.hero.hero-domain:before{
  background:
    radial-gradient(620px 340px at 18% 12%, rgba(255,255,255,.22), transparent 60%),
    radial-gradient(520px 320px at 72% 18%, rgba(255,255,255,.14), transparent 62%);
  opacity:.9;
}
.hero.hero-domain:after{
  background: radial-gradient(800px 420px at 60% 70%, rgba(11,27,59,.18), transparent 62%);
  opacity:.9;
}

.hero-domain .hero-box{
  padding:0;
  border-radius:0;
}
.hero-domain .hero-copy{
  /* Align to the same container edges as the rest of the site (logo ↔ cart)
     and avoid the 'centered/narrow' look on large screens. */
  max-width:100%;
  margin:0;
}
.hero-domain h1{
  font-size:clamp(34px, 3.2vw, 54px);
  letter-spacing:-.02em;
  margin:0 0 12px;
}
.hero-domain p{
  font-size:18px;
  line-height:1.55;
  opacity:.92;
  margin:0;
}
.domain-input-icon{
  color:rgba(11,27,59,.45);
}
.domain-actions{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}
.btn.btn-solid-dark{
  background:#0b1b3b;
  color:#fff;
  border:1px solid rgba(11,27,59,.25);
}
.btn.btn-solid-dark:hover{
  background:#1c1c33;
  border-color:#1c1c33;
  color:#fff;
}
/* Buttons used in domain actions */
.btn.btn-outline-dark:hover{
  background:#1c1c33;
  border-color:#1c1c33;
  color:#fff;
}
.btn-action .btn-ico{
  display:inline-flex;
  margin-right:8px;
  opacity:.95;
}

/* Domain search bar */
.hero-domain .domain-bar{
  margin-top:18px;
  background:rgba(255,255,255,.95);
  border:1px solid rgba(255,255,255,.40);
  border-radius:16px;
  padding:10px;
  box-shadow:0 26px 70px rgba(11,27,59,.22);
  gap:10px;
}
.hero-domain .domain-input{
  background:transparent;
  border:none;
  padding:0 10px;
  min-height:48px;
}
.hero-domain .domain-input input{
  font-size:16px;
  font-weight:800;
  color:#0b1b3b;
}
.hero-domain .domain-actions{
  flex:0 0 auto;
  gap:8px;
}
.hero-domain .domain-actions .btn{
  height:48px;
  padding:0 14px;
  border-radius:12px;
  font-weight:900;
}
.hero-domain .domain-actions .btn-action{white-space:nowrap;}

.tld-item{
  gap:10px;
  padding:0 14px;
  min-width:86px;
}
.tld-item .tld-img{
  display:none;
}
.tld-item .tld-text{
  display:block;
  font-size:12px;
  letter-spacing:.08em;
}

/* TLD carousel: overlay arrows + subtle fade edges */
.hero-domain .tld-carousel{
  position:relative;
  margin-top:16px;
  padding:0 44px;
}
.hero-domain .tld-carousel:before,
.hero-domain .tld-carousel:after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:50px;
  pointer-events:none;
}
.hero-domain .tld-carousel:before{
  left:0;
  background:linear-gradient(90deg, rgba(220,58,78,.98), rgba(220,58,78,0));
}
.hero-domain .tld-carousel:after{
  right:0;
  background:linear-gradient(270deg, rgba(220,58,78,.98), rgba(220,58,78,0));
}
.hero-domain .tld-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:36px;
  height:36px;
  border-radius:999px;
  background:rgba(255,255,255,.20);
  border:1px solid rgba(255,255,255,.30);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
}
.hero-domain .tld-arrow:hover,
.hero-domain .tld-arrow:focus-visible{
  background:rgba(255,255,255,.28);
  border-color:rgba(255,255,255,.40);
}
.hero-domain .tld-arrow[data-tld-nav="-1"]{left:0;}
.hero-domain .tld-arrow[data-tld-nav="1"]{right:0;}
.hero-domain .tld-track{padding:8px 0 2px;}
.hero-domain .tld-item{
  height:42px;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.26);
  color:#fff;
}
.hero-domain .tld-item:hover{background:rgba(255,255,255,.22); border-color:rgba(255,255,255,.36);}

/* Hero note: slightly calmer */
.hero-domain .hero-note{
  margin-top:16px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(11,27,59,.14);
  border:1px solid rgba(255,255,255,.20);
}
.hero-domain .hero-note strong{color:#fff;}
.hero-domain .hero-note .muted{color:rgba(255,255,255,.86);}

/* Inline domain result (instead of the modal for normal checks) */
.domain-inline-result{
  margin: -18px 0 22px;
  background:#fff;
  border:1px solid rgba(11,27,59,.10);
  border-radius:16px;
  padding:16px 16px;
  box-shadow:0 18px 50px rgba(11,27,59,.14);
}
.domain-inline-result .result-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.domain-inline-result .result-title{font-weight:900; font-size:16px; margin:0; color:#0b1b3b;}
.domain-inline-result .result-message{margin:0 0 12px; color:rgba(17,17,17,.82);}
.domain-inline-result .result-actions{display:flex; gap:10px; flex-wrap:wrap;}
.domain-inline-result .result-actions .btn{border-radius:12px; font-weight:900;}
.domain-inline-result .result-suggestions{margin-top:12px;}
.domain-inline-result .result-suggestions h4{font-size:13px; font-weight:900; margin:0 0 8px; color:#0b1b3b;}
.domain-inline-result .result-suggestions .suggest-grid{display:flex; flex-wrap:wrap; gap:8px;}
.domain-inline-result .result-suggestions .suggest-pill{
  border-radius:999px;
  padding:8px 12px;
  border:1px solid rgba(11,27,59,.14);
  background:#fff;
  font-weight:800;
  font-size:12px;
}
.domain-inline-result .result-suggestions .suggest-pill:hover{border-color:rgba(220,58,78,.50);}

@media (max-width: 992px){
  .hero.hero-domain{padding:54px 0 44px;}
  .hero-domain .domain-bar{flex-direction:column; align-items:stretch;}
  .hero-domain .domain-actions{width:100%;}
  .hero-domain .domain-actions .btn{flex:1;}
  .hero-domain .tld-carousel{padding:0 0;}
  .hero-domain .tld-carousel:before,
  .hero-domain .tld-carousel:after{display:none;}
  .hero-domain .tld-arrow{display:none;}
}

/* Modal additions */
.modal-backdrop{
  -webkit-backdrop-filter:none !important;
  backdrop-filter:none !important;
  background: rgba(10,12,18,.60) !important;
}
.modal-dialog{
  filter:none;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  box-shadow:0 30px 90px rgba(0,0,0,.38);
}
.modal-x{
  position:absolute;
  top:10px;
  right:12px;
  width:32px;
  height:32px;
  border-radius:8px;
  background:rgba(0,0,0,.04);
  border:1px solid rgba(0,0,0,.08);
  font-size:18px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
}
.modal-x:hover{
  background:rgba(0,0,0,.06);
}
.modal-message{
  margin:10px 0 14px;
  color:rgba(17,17,17,.82);
}
.badge{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.02em;
}
.badge-ok{background:rgba(16,185,129,.12); color:#0f766e; border:1px solid rgba(16,185,129,.22);}
.badge-bad{background:rgba(239,68,68,.10); color:#b91c1c; border:1px solid rgba(239,68,68,.22);}
.modal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.modal-actions{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:12px;
}
.suggest-grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}
.suggest-pill{
  border:1px solid rgba(11,27,59,.18);
  background:#fff;
  color:#0b1b3b;
  border-radius:999px;
  padding:8px 12px;
  font-weight:600;
}
.suggest-pill:hover{
  background:#1c1c33;
  border-color:#1c1c33;
  color:#fff;
}

.hero-note{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:14px;
  padding:14px 14px;
  border-radius:8px;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.22);
  color:#fff;
}
.hero-domain .hero-note{
  background:rgba(255,255,255,.18);
}
.pill-soft{
  background:rgba(255,255,255,.18);
  border-color:rgba(255,255,255,.28);
  color:#fff;
}
.pill-dot{
  display:inline-flex;
  width:18px;
  height:18px;
  align-items:center;
  justify-content:center;
  font-size:12px;
}
.muted{ color: var(--muted); }

.wp-card{
  flex-direction:row;
  align-items:flex-start;
  gap:10px;
  min-height:78px;
}
.wp-card-ico{
  width:34px;
  height:34px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(220,58,78,.10);
  border:1px solid rgba(220,58,78,.18);
  font-size:16px;
  line-height:1;
  flex:0 0 auto;
  margin-top:2px;
}
.wp-card-txt h4{
  margin:0;
  font-size:13px;
  color:#1c1c33;
  line-height:1.2;
}
.wp-card-txt p{
  margin:4px 0 0;
  font-size:12px;
  color:rgba(28,28,51,.75);
  line-height:1.35;
}

.wp-list{
  margin:12px 0 14px;
  padding:0 0 0 18px;
  color:rgba(28,28,51,.80);
  font-size:12.5px;
  line-height:1.45;
}
.wp-list li{ margin:6px 0; }

/* Home services */
.home-services{
  padding:52px 0;
  background: transparent;
}
.home-services-head{
  text-align:center;
  max-width:900px;
  margin:0 auto 22px auto;
}
.home-services-head h2{
  margin:0 0 8px 0;
  font-size:34px;
  letter-spacing:-.02em;
}
.home-services-head p{margin:0; color:var(--muted);}
.service-card{
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:var(--card);
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:22px;
}
.service-card h3{margin:0; font-size:18px;}
.service-card p{margin:0; color:var(--muted); line-height:1.45;}
.service-icon{
  width:44px; height:44px;
  border-radius:12px;
  background:rgba(220,58,78,.12);
  color:var(--accent);
  display:flex;
  align-items:center;
  justify-content:center;
}
.service-icon svg{width:22px;height:22px;}
.service-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  margin-top:8px;
}

/* =========================================================
   Home promo hero polish
   ========================================================= */
.promo-hero{
  background:linear-gradient(115deg, rgba(11,27,59,.98) 0%, rgba(28,28,51,.92) 48%, rgba(11,27,59,.95) 100%);
}
.promo-hero-bg{
  background:
    radial-gradient(900px 520px at 18% 42%, rgba(255,255,255,.13), transparent 58%),
    radial-gradient(760px 520px at 70% 35%, rgba(220,58,78,.20), transparent 60%),
    radial-gradient(520px 520px at 82% 80%, rgba(255,255,255,.06), transparent 60%);
}
.promo-hero-bg::after{
  opacity:.085;
  filter:grayscale(100%) contrast(1.05) blur(.2px);
}
.promo-hero-wrap{
  gap:56px;
  padding:64px 0 92px;
  min-height:420px;
}
.promo-hero-content{
  max-width:720px;
}
.promo-hero-content h1{
  font-size:44px;
  line-height:1.06;
  letter-spacing:-.03em;
  margin:0 0 14px;
}
.promo-hero-content p{
  font-size:15px;
  line-height:1.6;
  max-width:600px;
  margin:0 0 22px;
}
.promo-hero-actions .btn{
  padding:10px 16px;
  border-radius:8px;
  font-weight:700;
}
.promo-hero-media{
  flex:0 0 450px;
  width:450px;
  max-width:450px;
}
.promo-hero-slope{
  background:#fff;

height:140px;
  clip-path:polygon(0 72%, 100% 45%, 100% 100%, 0 100%);
}
@media (max-width: 992px){
  .promo-hero-wrap{padding:52px 0 78px; min-height:auto;}
  .promo-hero-content h1{font-size:38px;}
}
@media (max-width: 520px){
  .promo-hero-content h1{font-size:32px;}
}



/* Home: blog / vacatures / projecten */
.home-section{
  padding:40px 0;
  background:#fff;
}

/* Vacatures: match Werkplekbeheer (feature-section) background */
.home-section.home-jobs{
  background:#f2f0eb;
}

/* Match projects section styling */
.home-projects{
  padding:40px 0;
  background:#fff;
}
.home-section + .home-section{
  border-top:1px solid rgba(15,17,23,.06);
}
.home-section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:16px;
}
.home-section-title{
  margin:0;
  font-size:30px;
  letter-spacing:-.02em;
  color:#0b1b3b;
}
.home-section-sub{
  margin:6px 0 0;
  color:var(--muted);
  font-size:14px;
}

.home-card{
  text-decoration:none;
  color:inherit;
  padding:0;
  overflow:hidden;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.home-card:hover{
  transform:translateY(-2px);
  border-color:rgba(15,17,23,.16);
  box-shadow:0 22px 60px rgba(0,0,0,.10);
}
.home-card-body{
  padding:18px;
}
.home-card-thumb{
  height:160px;
  background:
    radial-gradient(420px 220px at 20% 30%, rgba(220,58,78,.38), transparent 58%),
    radial-gradient(520px 240px at 70% 60%, rgba(11,27,59,.32), transparent 62%),
    linear-gradient(135deg, rgba(28,28,51,.92), rgba(11,27,59,.96));
}
.home-card-thumb.thumb-2{
  background:
    radial-gradient(420px 240px at 70% 35%, rgba(220,58,78,.36), transparent 58%),
    radial-gradient(520px 260px at 25% 70%, rgba(255,255,255,.10), transparent 62%),
    linear-gradient(135deg, rgba(11,27,59,.96), rgba(28,28,51,.92));
}
.home-card-thumb.thumb-3{
  background:
    radial-gradient(420px 240px at 40% 30%, rgba(255,255,255,.12), transparent 58%),
    radial-gradient(520px 260px at 78% 70%, rgba(220,58,78,.30), transparent 62%),
    linear-gradient(135deg, rgba(28,28,51,.92), rgba(11,27,59,.96));
}
.home-card-meta{
  font-size:12px;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:rgba(11,27,59,.70);
  margin-bottom:8px;
}
.home-card-title{
  margin:0 0 8px;
  font-size:16px;
  color:#1c1c33;
  line-height:1.35;
}
.home-card-text{
  margin:0;
  color:rgba(28,28,51,.72);
  line-height:1.5;
  font-size:13.5px;
}

/* Vacatures cards */
.job-card{
  text-decoration:none;
  color:inherit;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.job-card:hover{
  transform:translateY(-2px);
  border-color:rgba(15,17,23,.16);
  box-shadow:0 22px 60px rgba(0,0,0,.10);
}
.job-title{
  font-weight:800;
  font-size:16px;
  margin-bottom:10px;
  color:#1c1c33;
}
.job-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:10px;
}
.job-chip{
  display:inline-flex;
  align-items:center;
  height:26px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(11,27,59,.08);
  color:#0b1b3b;
  font-size:12px;
  font-weight:700;
}
.job-text{
  margin:0 0 10px;
  color:rgba(28,28,51,.72);
  font-size:13.5px;
  line-height:1.5;
}
.job-cta{
  font-weight:800;
  color:var(--accent);
}
.job-card:hover .job-cta{
  color:#1c1c33;
}


/* Home: blog/vacatures cards */
.info-card{border:1px solid rgba(0,0,0,.08);border-radius:8px;box-shadow:0 10px 30px rgba(0,0,0,.06);}
.info-card .card-body{padding:22px;}
.info-card-meta{font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:rgba(28,28,51,.65);margin-bottom:10px;}
.info-card-title{font-size:20px;margin:0 0 10px;color:#0b1b3b;}
.info-card-text{color:rgba(28,28,51,.75);margin:0;}

/* Home: "Waarom kiezen" */
.home-section + .home-projects{border-top:1px solid rgba(15,17,23,.06);}
.why-card .why-ico{
  width:46px;
  height:46px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(220,58,78,.10);
  border:1px solid rgba(220,58,78,.18);
  color:var(--accent);
  font-size:20px;
}
.why-card .why-ico i{line-height:1;}

/* Buttons */
.btn-outline-primary{border-color:#dc3a4e;color:#dc3a4e;}
.btn-outline-primary:hover{background:#1c1c33;border-color:#1c1c33;color:#fff;}


/* v89: Nicer "Recente projecten" cards */
.home-card{
  border:1px solid rgba(28,28,51,.10);
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 12px 34px rgba(0,0,0,.08);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.home-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 44px rgba(0,0,0,.12);
  border-color:rgba(220,58,78,.28);
}
.home-card-thumb{
  height:180px;
  background:
    radial-gradient(1200px 260px at 20% 0%, rgba(220,58,78,.45), transparent 60%),
    radial-gradient(1000px 260px at 80% 10%, rgba(11,27,59,.55), transparent 65%),
    linear-gradient(135deg,#1c1c33 0%, #0b1b3b 100%);
}
.home-card-thumb--alt{
  background:
    radial-gradient(1200px 260px at 20% 0%, rgba(220,58,78,.55), transparent 60%),
    radial-gradient(1000px 260px at 80% 10%, rgba(28,28,51,.55), transparent 65%),
    linear-gradient(135deg,#dc3a4e 0%, #1c1c33 100%);
}
.home-card-thumb--dark{
  background:
    radial-gradient(1200px 260px at 20% 0%, rgba(220,58,78,.40), transparent 60%),
    radial-gradient(1000px 260px at 80% 10%, rgba(11,27,59,.60), transparent 65%),
    linear-gradient(135deg,#0b1b3b 0%, #1c1c33 100%);
}
.home-card-body{padding:22px;}
.home-card-badge{
  display:inline-block;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(28,28,51,.75);
  background:rgba(28,28,51,.06);
  border:1px solid rgba(28,28,51,.10);
  border-radius:999px;
  padding:6px 10px;
}
.home-card-title{
  font-size:20px;
  margin:14px 0 10px;
  color:#0b1b3b;
}
.home-card-text{color:rgba(28,28,51,.78);}



/* --- Home: Recente projecten carousel --- */
.btn-icon{
  width:40px;
  height:40px;
  padding:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:8px;
}
.btn-icon i{ font-size:16px; line-height:1; }

.projects-carousel{ position:relative; }
.projects-track{
  display:flex;
  gap:22px;
  overflow-x:auto;

  scroll-snap-type:x mandatory;
  scroll-padding-left:0;
  -webkit-overflow-scrolling:touch;
  /* Align carousel content with container edges */
  padding: 10px 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */

}
.projects-track::-webkit-scrollbar{ width:0; height:0; }
.project-slide{
  flex:0 0 86%;
  max-width:86%;
  scroll-snap-align:start;
}
@media (min-width: 768px){
  .project-slide{ flex-basis: calc((100% - 22px)/2); max-width: calc((100% - 22px)/2); }
}
@media (min-width: 1200px){
  .project-slide{ flex-basis: calc((100% - 44px)/3); max-width: calc((100% - 44px)/3); }
}

/* Variaties voor thumbs */
.home-card-thumb.gradient-a{
  background:
    radial-gradient(520px 240px at 20% 20%, rgba(220,58,78,.48), transparent 58%),
    radial-gradient(520px 260px at 80% 70%, rgba(11,27,59,.34), transparent 62%),
    linear-gradient(135deg, rgba(28,28,51,.94), rgba(11,27,59,.96));
}
.home-card-thumb.gradient-b{
  background:
    radial-gradient(520px 240px at 70% 25%, rgba(220,58,78,.42), transparent 58%),
    radial-gradient(520px 260px at 25% 75%, rgba(11,27,59,.30), transparent 62%),
    linear-gradient(135deg, rgba(11,27,59,.96), rgba(28,28,51,.92));
}
.home-card-thumb.gradient-c{
  background:
    radial-gradient(520px 240px at 35% 35%, rgba(220,58,78,.40), transparent 58%),
    radial-gradient(520px 260px at 85% 80%, rgba(28,28,51,.34), transparent 62%),
    linear-gradient(135deg, rgba(28,28,51,.92), rgba(11,27,59,.96));
}
.home-card-thumb.gradient-d{
  background:
    radial-gradient(520px 240px at 25% 30%, rgba(220,58,78,.50), transparent 58%),
    radial-gradient(520px 260px at 75% 60%, rgba(28,28,51,.34), transparent 62%),
    linear-gradient(135deg, rgba(11,27,59,.96), rgba(28,28,51,.92));
}


/* Ensure projects carousel has no grey track/background */
.projects-carousel, .projects-viewport, .projects-track{ background: transparent !important; }

/* Remove the grey "block" look: make the project cards themselves solid and shadowless */
.projects-carousel .home-card{
  background:#fff !important;
  box-shadow:none !important;
}
.projects-carousel .home-card:hover{
  box-shadow:none !important;
}

/* Projects carousel nav buttons in brand red */
.home-projects .projects-nav.btn-icon{
  border-color: var(--accent) !important;
  color: var(--accent) !important;
  background: transparent !important;
}


/* --- Home: Partners logo carousel (onder vacatures) --- */
.partners-block{
  margin-top:0;
  padding-top:0;
  border-top:0;
}
.partners-carousel{
  position:relative;
  overflow:hidden;
  padding:6px 0;
}
.partners-carousel::before,
.partners-carousel::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:56px;
  pointer-events:none;
  z-index:2;
}
.partners-carousel::before{
  left:0;
  background:linear-gradient(90deg, #fff 0%, rgba(255,255,255,0) 100%);
}
.partners-carousel::after{
  right:0;
  background:linear-gradient(270deg, #fff 0%, rgba(255,255,255,0) 100%);
}
.partners-track{
  display:flex;
  align-items:center;
  gap:16px;
  width:max-content;
  animation: partners-scroll 26s linear infinite;
  will-change: transform;
}
.partners-carousel:hover .partners-track{
  animation-play-state: paused;
}
.partner-logo{
  flex:0 0 auto;
  width:200px;
  height:80px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:16px;
  background:#fff;
  border:1px solid rgba(15,17,23,.10);
  user-select:none;
}
.partner-logo img{
  display:block;
  max-height:44px;
  max-width:160px;
  width:auto;
  height:auto;
  object-fit:contain;
}

@keyframes partners-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

@media (max-width: 768px){
  .partners-carousel{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }
  .partners-carousel::before,
  .partners-carousel::after{ display:none; }
  .partners-track{ animation:none; padding-bottom:6px; }
  .partner-logo{ width:150px; height:64px; }
  .partners-carousel::-webkit-scrollbar{ width:0; height:0; }
}

@media (prefers-reduced-motion: reduce){
  .partners-track{ animation:none; }
  .partners-carousel{ overflow-x:auto; }
  .partners-carousel::before,
  .partners-carousel::after{ display:none; }
}
.home-projects .projects-nav.btn-icon:hover,
.home-projects .projects-nav.btn-icon:focus{
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color:#fff !important;
}

/* =========================================================
   Domains page (pricing grid)
   ========================================================= */
.domain-highlights{
  padding:44px 0 18px;
  background:#fff;
}

/* Populaire extensies: 1 rij (horizontaal scrollbaar) */
.domain-tld-row{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:minmax(240px, 1fr);
  gap:18px;
  overflow-x:auto;
  padding:2px 2px 12px;
  scroll-snap-type:x mandatory;
}
.domain-tld-row::-webkit-scrollbar{ height:0; }
.domain-tld-row{ scrollbar-width:none; }

.domain-tld-item{
  text-align:left;
  background:#fff;
  border-radius:18px;
  border:1px solid rgba(15,17,23,.10);
  box-shadow:0 14px 40px rgba(11,27,59,.08);
  padding:22px;
  min-height:200px;
  scroll-snap-align:start;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.domain-tld-item:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 48px rgba(11,27,59,.10);
  border-color:rgba(15,17,23,.16);
}
.domain-tld-item:focus-visible{
  outline:none;
  box-shadow:0 18px 48px rgba(11,27,59,.10), 0 0 0 4px rgba(15,17,23,.12);
}

.domain-tld-meta{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(17,17,17,.55);
}
.domain-tld-big{
  font-size:42px;
  font-weight:900;
  letter-spacing:-.03em;
  line-height:1;
  color:#0b1b3b;
  margin:10px 0 8px;
}
.domain-tld-price{
  color:rgba(17,17,17,.78);
  font-size:14px;
}
.domain-tld-price strong{color:#0b1b3b;}

.domain-tld-hint{
  margin-top:14px;
  color:rgba(17,17,17,.58);
  font-size:13px;
}

.domain-products{
  padding:56px 0;
  background:#fff;
}

.domain-products-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.domain-product-card{
  background:#fff;
  border:1px solid rgba(15,17,23,.10);
  border-radius:18px;
  padding:18px;
  box-shadow:0 14px 40px rgba(11,27,59,.08);
  display:flex;
  flex-direction:column;
  min-height:260px;
}

.domain-product-top{margin-bottom:14px;}
.domain-product-tld{
  font-size:28px;
  font-weight:900;
  color:#0b1b3b;
  letter-spacing:-.02em;
  line-height:1;
}
.domain-product-name{
  margin-top:8px;
  font-weight:800;
  color:#1c1c33;
}
.domain-product-desc{
  margin-top:6px;
  color:rgba(17,17,17,.70);
  font-size:14px;
}

.domain-product-prices{
  margin-top:auto;
  margin-bottom:12px;
}
.domain-product-prices .price-line{
  display:flex;
  gap:10px;
  align-items:baseline;
}
.domain-product-prices .price-line strong{font-size:18px;}

.domain-add-form .domain-add-hint{
  font-size:12px;
  margin-top:8px;
}

.domain-help-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  border-radius:18px;
  padding:18px;
  background:rgba(220,58,78,.06);
  border:1px solid rgba(220,58,78,.12);
}
.domain-help-ico{
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border:1px solid rgba(220,58,78,.18);
  font-size:18px;
}
.domain-help-title{font-weight:900; color:#1c1c33;}
.domain-help-text{color:rgba(17,17,17,.72); font-size:14px;}

@media (max-width: 1200px){
  .domain-products-grid{grid-template-columns:repeat(3, minmax(0, 1fr));}
}
@media (max-width: 980px){
  .domain-products-grid{grid-template-columns:repeat(2, minmax(0, 1fr));}
}
@media (max-width: 520px){
  .domain-products-grid{grid-template-columns:1fr;}
  .domain-help-card{flex-direction:column; align-items:flex-start;}
}
