/**
 * STRAK ICT BEDRIJF DESIGN - Speedy ICT
 * Modern, professional corporate ICT website
 * 
 * Geen indie developer look meer - puur business!
 */

/* ============================================
   MODERN CORPORATE MENU - COMPLETE NIEUW
   ============================================ */

body[data-theme="premium_business"] .zp-nav {
  background: #ffffff;
  border-bottom: 2px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

body[data-theme="premium_business"] .zp-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 80px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

/* Brand - strak en professioneel */
body[data-theme="premium_business"] .zp-nav__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #111827;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

body[data-theme="premium_business"] .zp-nav__mark {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

body[data-theme="premium_business"] .zp-nav__mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

body[data-theme="premium_business"] .zp-nav__word {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: #111827;
}

body[data-theme="premium_business"] .zp-nav__word--accent {
  color: #dc2626;
}

/* Desktop navigatie - strakke tabs */
body[data-theme="premium_business"] .zp-nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

body[data-theme="premium_business"] .zp-nav__link {
  position: relative;
  padding: 10px 20px;
  color: #374151;
  font-size: 0.938rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 8px;
  transition: all 200ms ease;
}

body[data-theme="premium_business"] .zp-nav__link:hover {
  color: #dc2626;
  background: #f3f4f6;
}

body[data-theme="premium_business"] .zp-nav__link.is-active {
  color: #dc2626;
  background: #fef2f2;
}

body[data-theme="premium_business"] .zp-nav__link.is-active::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: #dc2626;
  border-radius: 2px;
}

/* Indicator verbergen - gebruiken active state */
body[data-theme="premium_business"] .zp-nav__indicator {
  display: none;
}

/* Actions rechts */
body[data-theme="premium_business"] .zp-nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Theme switch minimaliseren */
body[data-theme="premium_business"] .zp-theme-switch {
  display: none;
}

/* Contact button in menu */
body[data-theme="premium_business"] .zp-nav__contact-btn {
  background: #dc2626;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.938rem;
  text-decoration: none;
  transition: all 200ms ease;
  border: none;
  cursor: pointer;
}

body[data-theme="premium_business"] .zp-nav__contact-btn:hover {
  background: #b91c1c;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Mobile hamburger - strakker */
body[data-theme="premium_business"] .zp-nav__hamburger {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

body[data-theme="premium_business"] .zp-nav__hamburgerBox {
  width: 24px;
  height: 24px;
  position: relative;
}

body[data-theme="premium_business"] .zp-nav__hamburgerInner,
body[data-theme="premium_business"] .zp-nav__hamburgerInner::before,
body[data-theme="premium_business"] .zp-nav__hamburgerInner::after {
  width: 24px;
  height: 2px;
  background: #111827;
  border-radius: 2px;
  transition: all 200ms ease;
}

body[data-theme="premium_business"] .zp-nav__hamburger[aria-expanded="true"] .zp-nav__hamburgerInner {
  background: transparent;
}

body[data-theme="premium_business"] .zp-nav__hamburger[aria-expanded="true"] .zp-nav__hamburgerInner::before {
  transform: rotate(45deg) translate(6px, 6px);
}

body[data-theme="premium_business"] .zp-nav__hamburger[aria-expanded="true"] .zp-nav__hamburgerInner::after {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive - clean mobile menu */
@media (max-width: 1024px) {
  body[data-theme="premium_business"] .zp-desktop-only {
    display: none;
  }
  
  body[data-theme="premium_business"] .zp-nav__hamburger {
    display: block;
  }
  
  body[data-theme="premium_business"] .zp-nav__inner {
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  body[data-theme="premium_business"] .zp-nav__inner {
    height: 70px !important;
    padding: 0 20px;
  }
  
  body[data-theme="premium_business"] .zp-nav__brand {
    font-size: 1rem;
  }
  
  body[data-theme="premium_business"] .zp-nav__mark {
    width: 40px;
    height: 40px;
  }
  
  body[data-theme="premium_business"] .zp-nav__word {
    font-size: 0.95rem;
  }
}


/* ============================================
   HERO - ZAKELIJK & HELDER
   ============================================ */

body[data-theme="premium_business"] .zp-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  padding: 100px 0 80px;
  border-bottom: 1px solid #e5e7eb;
}

body[data-theme="premium_business"] .zp-hero__bg {
  display: none;
}

body[data-theme="premium_business"] .zp-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

body[data-theme="premium_business"] .zp-kicker {
  color: #dc2626;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.813rem;
  margin-bottom: 16px;
  display: block;
}

body[data-theme="premium_business"] .zp-h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: #111827;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

body[data-theme="premium_business"] .zp-hero__p {
  color: #6b7280;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

body[data-theme="premium_business"] .zp-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

body[data-theme="premium_business"] .zp-hero__poster {
  display: flex;
  justify-content: center;
  align-items: center;
}

body[data-theme="premium_business"] .zp-hero__frame {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  max-width: 480px;
  width: 100%;
}

body[data-theme="premium_business"] .zp-hero__logo {
  width: 100%;
  height: auto;
  filter: none;
}

body[data-theme="premium_business"] .zp-hero__note {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-top: 16px;
  text-align: center;
}

body[data-theme="premium_business"] .zp-hero__tag {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  color: #6b7280;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
}

@media (max-width: 1024px) {
  body[data-theme="premium_business"] .zp-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  body[data-theme="premium_business"] .zp-hero__poster {
    order: -1;
  }
}


/* ============================================
   SECTIONS - ZAKELIJK GESTRUCTUREERD
   ============================================ */

body[data-theme="premium_business"] .zp-container.zp-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px;
}

body[data-theme="premium_business"] .zp-sectionHeader {
  margin-bottom: 60px;
}

body[data-theme="premium_business"] .zp-sectionHeader.is-center {
  text-align: center;
}

body[data-theme="premium_business"] .zp-sectionHeader.is-center .zp-kicker {
  justify-content: center;
  display: flex;
}

body[data-theme="premium_business"] .zp-sectionHeader.is-center .zp-h2 {
  justify-content: center;
  display: flex;
  text-align: center;
}

body[data-theme="premium_business"] .zp-sectionHeader.is-center .zp-sectionHeader__p {
  margin-left: auto;
  margin-right: auto;
}

body[data-theme="premium_business"] .zp-sectionHeader.is-center .zp-sectionHeader__rule {
  margin-left: auto;
  margin-right: auto;
}

body[data-theme="premium_business"] .zp-h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

body[data-theme="premium_business"] .zp-sectionHeader__p {
  color: #6b7280;
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 680px;
}

body[data-theme="premium_business"] .zp-sectionHeader__rule {
  background: #dc2626;
  height: 4px;
  width: 60px;
  margin-top: 24px;
  border-radius: 2px;
}


/* ============================================
   STATS - PROFESSIONELE CIJFERS
   ============================================ */

body[data-theme="premium_business"] .zp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

body[data-theme="premium_business"] .zp-stats__item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 200ms ease;
}

body[data-theme="premium_business"] .zp-stats__item:hover {
  border-color: #dc2626;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

body[data-theme="premium_business"] .zp-stats__v {
  color: #dc2626;
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

body[data-theme="premium_business"] .zp-stats__k {
  color: #111827;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

body[data-theme="premium_business"] .zp-stats__d {
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.938rem;
  margin-top: 12px;
}

@media (max-width: 1024px) {
  body[data-theme="premium_business"] .zp-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  body[data-theme="premium_business"] .zp-stats {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   CARDS - ZAKELIJKE PRESENTATIE
   ============================================ */

body[data-theme="premium_business"] .zp-grid.zp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) {
  body[data-theme="premium_business"] .zp-grid.zp-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  body[data-theme="premium_business"] .zp-grid.zp-grid-3 {
    grid-template-columns: 1fr;
  }
}

body[data-theme="premium_business"] .zp-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  transition: all 200ms ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

body[data-theme="premium_business"] .zp-card:hover {
  transform: translateY(-4px);
  border-color: #dc2626;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body[data-theme="premium_business"] .zp-card__img--placeholder {
  height: 240px;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

body[data-theme="premium_business"] .zp-card__glow {
  display: none;
}

body[data-theme="premium_business"] .zp-card__body {
  padding: 28px;
}

body[data-theme="premium_business"] .zp-card__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

body[data-theme="premium_business"] .zp-card__chip {
  background: #f3f4f6;
  color: #6b7280;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid #e5e7eb;
}

body[data-theme="premium_business"] .zp-card__titleRow {
  margin-bottom: 12px;
}

body[data-theme="premium_business"] .zp-h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

body[data-theme="premium_business"] .zp-card__sub {
  color: #6b7280;
  font-size: 0.875rem;
}

body[data-theme="premium_business"] .zp-card__p {
  color: #6b7280;
  line-height: 1.7;
  font-size: 0.938rem;
}


/* ============================================
   FOOTER - ZAKELIJK & COMPLEET
   ============================================ */

body[data-theme="premium_business"] .zp-footer {
  background: #111827;
  color: #ffffff;
  margin-top: 100px;
}

body[data-theme="premium_business"] .zp-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px 60px;
}

body[data-theme="premium_business"] .zp-footer__brand {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 60px;
}

body[data-theme="premium_business"] .zp-footer__mark {
  width: 56px;
  height: 56px;
  background: transparent;
}

body[data-theme="premium_business"] .zp-footer__name {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

body[data-theme="premium_business"] .zp-footer__tag {
  color: #9ca3af;
  margin-top: 8px;
  font-size: 1rem;
}

body[data-theme="premium_business"] .zp-footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

body[data-theme="premium_business"] .zp-footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body[data-theme="premium_business"] .zp-footer__h {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

body[data-theme="premium_business"] .zp-footer__a {
  color: #9ca3af;
  text-decoration: none;
  padding: 6px 0;
  transition: color 200ms ease;
  font-size: 0.938rem;
}

body[data-theme="premium_business"] .zp-footer__a:hover {
  color: #ffffff;
}

body[data-theme="premium_business"] .zp-footer__top {
  background: transparent;
  border: 1px solid #374151;
  color: #9ca3af;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 200ms ease;
}

body[data-theme="premium_business"] .zp-footer__top:hover {
  border-color: #ffffff;
  color: #ffffff;
}

body[data-theme="premium_business"] .zp-footer__bar {
  background: #030712;
  border-top: 1px solid #1f2937;
  padding: 24px 0;
}

body[data-theme="premium_business"] .zp-footer__barInner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body[data-theme="premium_business"] .zp-footer__fine {
  color: #6b7280;
  font-size: 0.875rem;
}

@media (max-width: 1024px) {
  body[data-theme="premium_business"] .zp-footer__cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 640px) {
  body[data-theme="premium_business"] .zp-footer__cols {
    grid-template-columns: 1fr;
  }
  
  body[data-theme="premium_business"] .zp-footer__barInner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
