/*!
 * Goivo Digital Business Theme v1.0.0
 * Copyright (c) 2026 Goivo Digital
 * Website: https://goivo.nl
 * All Rights Reserved.
 *
 * This stylesheet is part of proprietary software owned by Goivo Digital.
 * Unauthorized copying, resale, redistribution or publication is prohibited.
 */

:root {
  --primary: #2563eb;
  --dark: #0f172a;
  --muted: #64748b;
  --soft: #f8fafc;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  padding-top: 76px;
}

.navbar-brand { color: var(--dark); }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 8px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
}

.nav-link { font-weight: 500; color: var(--dark); }
.nav-link:hover { color: var(--primary); }

.hero-section {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 80px 0;
  background:
    radial-gradient(circle at top left, rgba(37,99,235,.14), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.section-padding { padding: 90px 0; }
.section-title { font-weight: 800; letter-spacing: -0.04em; }

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 12px 25px rgba(37, 99, 235, .22);
}

.stats strong { display: block; font-size: 1.6rem; }
.stats span { color: var(--muted); font-size: .9rem; }

.hero-card {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
}
.hero-card-top {
  display: flex;
  gap: 8px;
  padding: 16px;
  background: #0f172a;
}
.hero-card-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e2e8f0;
}
.dashboard-card, .mini-card, .feature-box, .service-card, .reference-card, .pricing-card, .contact-form {
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--radius);
  background: #fff;
}
.dashboard-card { padding: 24px; }
.dashboard-card small { color: var(--muted); }
.mini-card { padding: 20px; min-height: 112px; }
.mini-card span { display: block; color: var(--muted); margin-top: 8px; }

.feature-box, .service-card, .reference-card, .pricing-card { padding: 28px; height: 100%; transition: .25s ease; }
.feature-box:hover, .service-card:hover, .reference-card:hover, .pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, .08);
}
.service-card .icon { font-size: 2rem; margin-bottom: 18px; }
.service-card p, .reference-card p, .pricing-card p, .feature-box p { color: var(--muted); margin-bottom: 0; }
.reference-card span { display: inline-block; color: var(--primary); font-weight: 800; margin-bottom: 18px; }

.pricing-card { position: relative; }
.pricing-card.popular { border: 2px solid var(--primary); }
.popular-badge {
  position: absolute;
  right: 22px;
  top: 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: .8rem;
  font-weight: 700;
}
.price { font-size: 2.4rem; font-weight: 800; margin: 16px 0 10px; }
.pricing-card ul { padding-left: 20px; margin: 24px 0; color: var(--muted); }
.pricing-card li { margin-bottom: 10px; }

.contact-form { padding: 32px; }
.form-control, .form-select { border-radius: 14px; padding: 12px 14px; }
.contact-info p { margin-bottom: 10px; color: var(--muted); }
.footer { background: #fff; color: var(--muted); }

@media (max-width: 991px) {
  .hero-section { padding: 50px 0; }
  .section-padding { padding: 65px 0; }
}

.language-switcher .dropdown-menu {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, .08);
  min-width: 150px;
}
.language-switcher .dropdown-item {
  font-weight: 600;
  border-radius: 10px;
  margin: 3px 6px;
  width: calc(100% - 12px);
}
.reference-link { color: inherit; text-decoration: none; }
.reference-url { color: var(--primary); font-weight: 600; }
.reference-link:hover { color: var(--primary); text-decoration: underline; }

.cookie-consent {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1080;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: 20px;
  background: #fff;
}
.cookie-consent p { color: var(--muted); font-size: .94rem; margin-top: 4px; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
@media (max-width: 767px) {
  .cookie-consent { flex-direction: column; align-items: flex-start; left: 14px; right: 14px; bottom: 14px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}
