*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #0f172a;
  background: #f3f4f8;
}

/* Layout helpers */

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f7ae5, #19b7ff);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
}

.logo-text {
  font-weight: 600;
  font-size: 0.98rem;
  color: #0f172a;
}

/* Navigation */

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav-link,
.nav-parent {
  border: none;
  background: transparent;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
  color: #4b5563;
  position: relative;
  padding-bottom: 0.2rem;
}

.nav-link::after,
.nav-parent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #0f7ae5;
  transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-parent:hover::after {
  width: 100%;
}

.nav-group {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 130%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border-radius: 0.6rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.15);
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.nav-group:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.45rem 0.9rem;
  font-size: 0.88rem;
  color: #4b5563;
  text-decoration: none;
}

.nav-dropdown a:hover {
  background: #eff6ff;
  color: #0f172a;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-phone {
  font-size: 0.86rem;
  color: #0f172a;
  text-decoration: none;
}

.header-phone:hover {
  color: #0f7ae5;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  background: linear-gradient(135deg, #0f7ae5, #19b7ff);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 122, 229, 0.26);
  transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.1s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 12px 26px rgba(15, 122, 229, 0.35);
}

.btn-outline {
  background: #ffffff;
  color: #0f7ae5;
  border-color: #0f7ae5;
  box-shadow: none;
}

.btn-outline:hover {
  background: #eff6ff;
}

.btn-ghost {
  background: transparent;
  color: #0f7ae5;
  border-color: #cbd5f5;
  box-shadow: none;
}

.btn-small {
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
}

/* Breadcrumb */

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 1.3rem;
}

.breadcrumb a {
  color: #6b7280;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #0f7ae5;
}

/* Hero */

.hero {
  padding: 2.6rem 0 3.1rem;
  background: linear-gradient(to bottom, #e5f1ff 0%, #f3f4f8 50%, #f3f4f8 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 3.2vw, 2.7rem);
  line-height: 1.1;
  margin-bottom: 0.8rem;
  color: #0f172a;
}

.hero-lead {
  font-size: 1.02rem;
  color: #111827;
  margin-bottom: 0.5rem;
}

.hero-text {
  font-size: 0.96rem;
  color: #4b5563;
  margin-bottom: 0.9rem;
}

.hero-list {
  margin: 0 0 1.2rem;
  padding-left: 1.1rem;
  font-size: 0.94rem;
  color: #374151;
}

.hero-list li {
  margin-bottom: 0.3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.78rem;
}

.badge {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: #0f7ae5;
  color: #ffffff;
}

.badge-soft {
  background: #e0f2fe;
  color: #0369a1;
}

/* Hero panel */

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.09);
  border: 1px solid #e5e7eb;
  max-width: 360px;
  width: 100%;
}

.hero-card-title {
  font-size: 1.02rem;
  margin-bottom: 0.4rem;
  color: #0f172a;
}

.hero-card-text {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.1rem;
  margin-bottom: 1rem;
}

.metric {
  font-size: 0.8rem;
}

.metric-label {
  color: #6b7280;
  margin-bottom: 0.1rem;
}

.metric-value {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0f172a;
}

.metric-sub {
  font-size: 0.78rem;
  color: #9ca3af;
}

.meter {
  grid-column: span 2;
}

.meter-bar {
  position: relative;
  width: 100%;
  height: 0.4rem;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
  margin: 0.2rem 0 0.15rem;
}

.meter-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #22c55e, #a3e635);
}

.meter-sec span {
  background: linear-gradient(90deg, #0f7ae5, #19b7ff);
}

.hero-card-list {
  margin-top: 0.2rem;
  padding-left: 1.1rem;
  font-size: 0.86rem;
  color: #4b5563;
}

.hero-card-list li {
  margin-bottom: 0.25rem;
}

/* Sections */

.section {
  padding: 3.1rem 0;
}

.section-light {
  background: #ffffff;
}

.section-header {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  color: #0f172a;
}

.section-intro {
  font-size: 0.95rem;
  color: #4b5563;
}

/* Feature grid */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.feature-card {
  background: #f9fafb;
  border-radius: 1rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid #e5e7eb;
}

.feature-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.45rem;
  color: #0f172a;
}

.feature-card p {
  font-size: 0.9rem;
  color: #4b5563;
}

/* Waarom Shock */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.why-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid #e5e7eb;
}

.why-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
  color: #0f172a;
}

.why-card p {
  font-size: 0.9rem;
  color: #4b5563;
}

/* Steps */

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 1.8rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.step-index {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #0f7ae5;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-body h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #0f172a;
}

.step-body p {
  font-size: 0.9rem;
  color: #4b5563;
}

/* Reference card */

.reference-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  max-width: 620px;
}

.reference-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b7280;
  margin-bottom: 0.3rem;
}

.reference-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: #0f172a;
}

.reference-quote {
  font-size: 0.92rem;
  color: #4b5563;
  margin-bottom: 0.7rem;
}

.reference-link {
  font-size: 0.88rem;
  color: #0f7ae5;
  text-decoration: none;
  font-weight: 500;
}

.reference-link:hover {
  text-decoration: underline;
}

/* Contact CTA */

.contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
}

.contact-text h2 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  color: #0f172a;
}

.contact-text p {
  font-size: 0.95rem;
  color: #4b5563;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* Footer */

.site-footer {
  background: #0b1120;
  color: #e5e7eb;
  padding: 2.4rem 0 2rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}

.footer-logo .logo-mark {
  background: #ffffff;
  color: #0b1120;
}

.footer-logo .logo-text {
  color: #ffffff;
}

.footer-text {
  max-width: 22rem;
  font-size: 0.9rem;
  color: #9ca3af;
  margin-top: 0.7rem;
}

.footer-columns {
  display: flex;
  gap: 2.6rem;
  flex-wrap: wrap;
}

.footer-column h4 {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  color: #e5e7eb;
}

.footer-column a {
  display: block;
  font-size: 0.86rem;
  color: #9ca3af;
  text-decoration: none;
  margin-bottom: 0.25rem;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #6b7280;
}

.footer-muted {
  color: #6b7280;
}

/* Responsive */

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    justify-content: flex-start;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .why-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    flex-direction: column;
  }

  .hero {
    padding-top: 2.1rem;
  }
}
