/* ═══════════════════════════════════════════
   🦊 HEADER
   ═══════════════════════════════════════════ */

.header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: #171923;
  box-shadow: var(--shadow-sm);
}

.header-top {
  display: none;
  padding: var(--space-2) 0;
  background: #171923;
  border-bottom: 1px solid #2d3748;
}

@media (min-width: 1024px) {
  .header-top { display: block; }
}

.header-contact a {
  font-size: 0.9375rem;
  font-weight: 600;
}

.header-main {
  padding: var(--space-2) 0;
  background: #171923;
  border-bottom: 2px solid #2d3748;
  box-shadow: var(--shadow-md);
}

@media (max-width: 900px) {
  #main-nav { gap: 1rem; }
  #main-nav a { font-size: 0.9rem; padding: 0.5rem; }
  .header-main .btn { font-size: 0.85rem; padding: 0.5rem 1rem; }
}

@media (max-width: 700px) {
  #main-nav { gap: 0.5rem; }
  #main-nav a { font-size: 0.8rem; padding: 0.4rem; }
}

.logo-text {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav-link {
  font-size: 1rem;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--color-white);
  border-radius: var(--radius-full);
  transition: transform var(--transition-fast);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: translateX(-50%) scaleX(1);
}

/* ═══════════════════════════════════════════
   🐾 HERO
   ═══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-8) 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-gray-900) 0%, var(--color-primary-dark) 50%, var(--color-gray-900) 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cdefs%3E%3Cpattern id='grid' width='50' height='50' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 50 0 L 0 50' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23grid)'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(49, 130, 206, 0.15) 0%, transparent 70%),
              radial-gradient(ellipse at 80% 20%, rgba(236, 201, 75, 0.08) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    min-height: 85vh;
  }
}

.hero-badge {
  margin-bottom: var(--space-6);
  font-size: 1rem;
  padding: var(--space-3) var(--space-5);
}

.hero-title {
  color: var(--color-white);
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

.text-accent {
  color: var(--color-accent-light);
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  color: var(--color-gray-400);
  font-size: 1.125rem;
  margin-bottom: var(--space-8);
  max-width: 540px;
}

@media (min-width: 640px) {
  .hero-actions { flex-direction: row; }
}

.hero-actions .btn-outline {
  color: var(--color-white);
  border-color: var(--color-gray-400);
}

.hero-actions .btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary-dark);
  border-color: var(--color-white);
}

.hero-visual {
  display: none;
}

@media (min-width: 1024px) {
  .hero-visual { display: block; }
}

.hero-illustration {
  position: relative;
  height: 400px;
}

.floating-card {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.floating-card.card-2 {
  top: 40%;
  right: 10%;
  animation-delay: 2s;
}

.floating-card.card-3 {
  bottom: 15%;
  left: 30%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-16px) rotate(2deg); }
  66% { transform: translateY(8px) rotate(-1deg); }
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0.6;
}

/* ═══════════════════════════════════════════
   🐾 TRUST BAR
   ═══════════════════════════════════════════ */

.trust-bar {
  padding: var(--space-12) 0;
  background: var(--color-gray-50);
  border-bottom: 1px solid var(--color-gray-100);
}

/* ═══════════════════════════════════════════
   🐾 SERVICES
   ═══════════════════════════════════════════ */

.services {
  background: var(--color-white);
}

.service-card {
  position: relative;
  overflow: visible;
  transition: all var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--color-gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -28px auto 0;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-200);
}

.service-card .card-body {
  padding-top: var(--space-8);
  text-align: center;
}

.service-card h3 {
  margin-bottom: var(--space-3);
  font-size: 1.5rem;
}

.service-card p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   🐾 STATS
   ═══════════════════════════════════════════ */

.stats {
  position: relative;
  background: var(--color-primary-dark);
  padding: var(--space-20) 0;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 30%, rgba(236, 201, 75, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 90% 70%, rgba(49, 130, 206, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.stat-number {
  position: relative;
  display: inline-block;
}

/* ═══════════════════════════════════════════
   🐾 PROCESS
   ═══════════════════════════════════════════ */

.process {
  background: var(--color-gray-50);
}

.process-steps {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 80px;
  bottom: 80px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-primary-light));
  opacity: 0.3;
}

@media (min-width: 768px) {
  .process-steps::before {
    left: 32px;
  }
}

.process-step {
  position: relative;
  padding-bottom: var(--space-8);
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step p {
  font-size: 1.1rem;
  line-height: 1.85;
}

.step-number {
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}

/* ═══════════════════════════════════════════
   🐾 TESTIMONIALS
   ═══════════════════════════════════════════ */

.testimonials {
  background: var(--color-white);
}

.testimonial-card {
  text-align: center;
}

.testimonial-card p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.stars {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════
   🐾 CTA
   ═══════════════════════════════════════════ */

.cta {
  background: var(--color-gray-50);
}

.cta-card p {
  font-size: 1.2rem;
  line-height: 1.9;
}

.cta-card .btn-outline {
  border-width: 2px;
}

.cta-card .btn-outline:hover {
  border-color: var(--color-white);
}

/* ═══════════════════════════════════════════
   🦊 FOOTER
   ═══════════════════════════════════════════ */

.footer {
  background: var(--color-gray-900);
  color: var(--color-gray-400);
}

.footer-main {
  padding: var(--space-16) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

@media (min-width: 768px) {
  .footer-main { padding: var(--space-20) 0; }
}

.footer .footer-heading {
  color: var(--color-white);
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer a {
  color: var(--color-gray-400);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

.footer a:hover {
  color: var(--color-accent-light);
}

.footer address {
  font-size: 0.9375rem;
}

.footer-bottom {
  padding: var(--space-4) 0;
}

/* ═══════════════════════════════════════════
   🐾 DIENSTEN PAGE
   ═══════════════════════════════════════════ */

.page-header {
  position: relative;
  padding: var(--space-24) 0 var(--space-20);
  background: var(--color-gray-100);
  text-align: center;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(49, 130, 206, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(236, 201, 75, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-header h1 {
  color: var(--color-white);
  position: relative;
  z-index: 1;
}

.page-header p {
  color: #000;
  position: relative;
  z-index: 1;
  margin: var(--space-6) auto 0;
  font-size: 1.25rem;
  line-height: 1.8;
  max-width: 640px;
}

.dienst-detail {
  background: var(--color-white);
  transition: all var(--transition-normal);
}

.dienst-detail:hover {
  box-shadow: var(--shadow-2xl);
}

.dienst-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dienst-detail ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  position: absolute;
  left: 0;
  top: 10px;
}

.dienst-detail p {
  font-size: 1.1rem;
  line-height: 1.85;
}

.dienst-detail ul li {
  position: relative;
  padding-left: var(--space-4);
}

/* ═══════════════════════════════════════════
   🐾 OVER ONS PAGE
   ═══════════════════════════════════════════ */

.team-card {
  text-align: center;
  transition: all var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-card .team-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto -40px;
  position: relative;
  z-index: 1;
  border: 4px solid var(--color-white);
  box-shadow: var(--shadow-lg);
}

.team-card p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.team-card .card-body {
  padding-top: 60px;
}

/* ═══════════════════════════════════════════
   🐾 CONTACT PAGE
   ═══════════════════════════════════════════ */

.contact-form .form-group {
  margin-bottom: var(--space-5);
}

.contact-form label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: var(--space-2);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  font-size: 1rem;
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  background: var(--color-white);
  color: #000;
  font-family: var(--font-sans);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input.error,
.contact-form textarea.error {
  border-color: var(--color-error);
}

.contact-info-card {
  height: 100%;
}

.contact-info-card .info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-info-card .info-item + .info-item {
  padding-top: var(--space-6);
  margin-top: var(--space-6);
  border-top: 1px solid var(--color-gray-200);
}

/* ═══════════════════════════════════════════
   🐾 REFERENTIES PAGE
   ═══════════════════════════════════════════ */

.portfolio-card {
  position: relative;
  overflow: hidden;
}

.portfolio-card .card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--color-gray-100);
}

.portfolio-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  align-items: flex-end;
  padding: var(--space-6);
}

.portfolio-card:hover .card-overlay {
  opacity: 1;
}

/* ═══════════════════════════════════════════
   🐾 PAGE NAVIGATION TABS
   ═══════════════════════════════════════════ */

.page-tabs {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
  position: sticky;
  top: 80px;
  z-index: calc(var(--z-sticky) - 1);
}

.page-tabs .tab-list {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.page-tabs .tab-list::-webkit-scrollbar {
  display: none;
}

.page-tabs .tab-item {
  white-space: nowrap;
  padding: var(--space-5) var(--space-6);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gray-500);
  border-bottom: 3px solid transparent;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.page-tabs .tab-item:hover {
  color: var(--color-gray-800);
}

.page-tabs .tab-item.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

/* ═══════════════════════════════════════════
   🐾 SUCCESS / NOTIFICATION
   ═══════════════════════════════════════════ */

.alert {
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 500;
}

.alert-success {
  background: #f0fff4;
  color: #22543d;
  border: 1px solid #c6f6d5;
}

.alert-error {
  background: #fff5f5;
  color: #9b2c2c;
  border: 1px solid #fed7d7;
}

/* ═══════════════════════════════════════════
   🐾 BACK TO TOP
   ═══════════════════════════════════════════ */

.back-to-top {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: var(--z-fixed);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   🐾 ANIMATIONS
   ═══════════════════════════════════════════ */

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }

  [data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
  }

  [data-reveal][data-reveal-delay="100"] { transition-delay: 0.1s; }
  [data-reveal][data-reveal-delay="200"] { transition-delay: 0.2s; }
  [data-reveal][data-reveal-delay="300"] { transition-delay: 0.3s; }
  [data-reveal][data-reveal-delay="400"] { transition-delay: 0.4s; }
}

/* ═══════════════════════════════════════════
   🐾 RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 639px) {
  .hero-title { font-size: 2.25rem; }
  .hero-scroll { display: none; }
  .process-steps::before { display: none; }
  .process-step { flex-direction: column; align-items: center; text-align: center; }
  .page-tabs { top: 76px; }
  .footer-main .grid { gap: var(--space-8); }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

@media (min-width: 1024px) {
  .header-main { padding: var(--space-1) 0; }
}

/* ═══════════════════════════════════════════
   🐾 UTILITY CLASSES
   ═══════════════════════════════════════════ */

.hidden { display: none !important; }

.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-24 { width: 6rem; }

.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-80 { height: 20rem; }

.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-full { max-width: 100%; }

.min-h-screen { min-height: 100vh; }

.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }

.text-sm { font-size: 0.9375rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.35rem; }
.text-2xl { font-size: 1.65rem; }
.text-3xl { font-size: 2rem; }
.text-4xl { font-size: 2.5rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.text-white { color: #fff; }
.text-gray-200 { color: var(--color-gray-200); }
.text-gray-300 { color: var(--color-gray-300); }
.text-gray-400 { color: var(--color-gray-400); }
.text-gray-500 { color: var(--color-gray-500); }
.text-gray-600 { color: var(--color-gray-600); }
.text-gray-700 { color: var(--color-gray-700); }
.text-gray-800 { color: var(--color-gray-800); }
.text-gray-900 { color: var(--color-gray-900); }
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-accent { color: var(--color-accent-light); }

.bg-white { background: #fff; }
.bg-gray-50 { background: var(--color-gray-50); }
.bg-gray-100 { background: var(--color-gray-100); }
.bg-gray-900 { background: var(--color-gray-900); }
.bg-primary { background: var(--color-primary); }
.bg-primary\/10 { background: rgba(26, 54, 93, 0.1); }
.bg-blue-50 { background: #eff6ff; }

.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }

.border { border: 1px solid var(--color-gray-200); }
.border-t { border-top: 1px solid var(--color-gray-200); }
.border-b { border-bottom: 1px solid var(--color-gray-200); }
.border-white { border-color: #fff; }
.border-gray-200 { border-color: var(--color-gray-200); }
.border-gray-300 { border-color: var(--color-gray-300); }

.mx-auto { margin-left: auto; margin-right: auto; }

.overflow-hidden { overflow: hidden; }

.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.tracking-wider { letter-spacing: 0.05em; }

.cursor-pointer { cursor: pointer; }

.not-italic { font-style: normal; }

.flex-shrink-0 { flex-shrink: 0; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }

.grayscale { filter: grayscale(100%); }
.hover\:grayscale-0:hover { filter: grayscale(0); }

.hover\:text-primary:hover { color: var(--color-primary); }
.hover\:text-white:hover { color: #fff; }
.hover\:bg-primary:hover { background: var(--color-primary); }
.hover\:bg-gray-100:hover { background: var(--color-gray-100); }
.hover\:bg-white:hover { background: #fff; }

.transition-all { transition: all var(--transition-fast); }
.transition-colors { transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast); }

.nav-link.active {
  color: var(--color-secondary) !important;
}

.nav-link.active::after {
  transform: translateX(-50%) scaleX(1) !important;
  background: var(--color-secondary) !important;
}

/* ═══════════════════════════════════════════
   🐾 PROSE (voor juridische pagina's)
   ═══════════════════════════════════════════ */

.prose h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-gray-900);
}

.prose h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-gray-900);
}

.prose p {
  margin-bottom: 1rem;
  color: var(--color-gray-600);
  line-height: 1.75;
}

.prose ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.prose ul li {
  position: relative;
  padding-left: 0.5rem;
  margin-bottom: 0.25rem;
  color: var(--color-gray-600);
  list-style: disc;
}

/* ═══════════════════════════════════════════
   🐾 GRADIENT HELPERS
   ═══════════════════════════════════════════ */

.bg-gradient-to-br { background: linear-gradient(to bottom right, var(--color-primary), var(--color-primary-dark)); }

.bg-gradient-to-br.from-primary { --from: var(--color-primary); }
.bg-gradient-to-br.to-primary-dark { --to: var(--color-primary-dark); }

/* ═══════════════════════════════════════════
   🐾 CHECKBOX STYLING
   ═══════════════════════════════════════════ */

input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--color-primary);
}

/* ═══════════════════════════════════════════
   🐾 ALL TEXT BLACK READABLE
   ═══════════════════════════════════════════ */

.hero-title,
.hero-description,
.hero-badge,
.hero-actions .btn,
.hero-actions .btn-outline,
.hero-scroll svg,
.hero-badge.badge-secondary {
  color: #000 !important;
}

.hero-actions .btn-outline {
  border-color: #000 !important;
}

.hero-actions .btn-outline:hover {
  background: #000 !important;
  color: #fff !important;
  border-color: #000 !important;
}

.hero-bg {
  background: var(--color-gray-100) !important;
}

.stats {
  background: var(--color-gray-50) !important;
}

.stat-number,
.stat-label {
  color: #000 !important;
}

.stats-bg {
  display: none !important;
}

.page-header {
  background: var(--color-gray-100) !important;
}

.page-header h1,
.page-header p,
.page-header .badge {
  color: #000 !important;
}

.page-header-bg {
  display: none !important;
}

.cta-card {
  background: var(--color-gray-100) !important;
}

.cta-card h2,
.cta-card p,
.cta-card .btn-outline {
  color: #000 !important;
}

.cta-card .btn-outline {
  border-color: #000 !important;
}

.cta-card .btn-outline:hover {
  background: #000 !important;
  color: #fff !important;
}

.cta-card .btn-secondary {
  background: var(--color-primary) !important;
  color: #fff !important;
}

.footer {
  background: var(--color-white) !important;
  color: #000 !important;
}

.footer .footer-heading {
  color: #000 !important;
}

.footer a {
  color: #000 !important;
}

.footer a:hover {
  color: var(--color-primary) !important;
}

.footer address,
.footer p,
.footer .text-gray-500 {
  color: #000 !important;
}

.footer-bottom {
  border-top: 1px solid var(--color-gray-200) !important;
}

.footer-main {
  border-bottom: 1px solid var(--color-gray-200) !important;
}

.text-gray-600,
.text-gray-500,
.text-gray-400,
.text-gray-700,
.text-gray-200,
.text-gray-300,
p {
  color: #000 !important;
}

.hero-description {
  color: #000 !important;
}

.footer .text-gray-500,
.footer .text-gray-600,
.footer .text-gray-400,
.footer a span {
  color: #000 !important;
}
