/* ==============================
   Global Reset & Base Styles
============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: hsl(210, 15%, 15%);
  background-color: hsl(0, 0%, 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ==============================
   Header
============================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: hsla(0, 0%, 100%, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid hsl(214, 32%, 91%);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo {
  height: 2.5rem;
  width: auto;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.875rem;
  color: hsl(215, 15%, 55%);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: hsl(214, 84%, 20%);
}

/* ==============================
   Header actions + CTA buttons
============================== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Both the portal trigger and the "Start Vandaag" button are .cta-button */
.cta-button {
  display: none;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, hsl(214,84%,20%), hsl(214,84%,16%));
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.4;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  font-family: inherit;
  vertical-align: middle;
  box-sizing: border-box;
}
.cta-button:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.1); }

.start-button { display: none; } /* hidden on mobile */

@media (min-width: 768px) {
  .nav { display: flex; }
  .cta-button { display: inline-flex; }
  .start-button { display: inline-flex; }
  .nav-mobile-only { display: none; }
}

/* Mobile nav divider */
.nav-mobile-divider {
  border: none;
  border-top: 1px solid hsl(214,32%,91%);
  margin: 0.35rem 1.25rem;
}

/* ==============================
   Nav Dropdowns (shared by Showcase + Klantportaal)
   — class names match dashboard.css for consistency
============================== */
.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.875rem;
  color: hsl(215,15%,55%);
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-dropdown-trigger:hover,
.nav-dropdown.open .nav-dropdown-trigger { color: hsl(214,84%,20%); }
.nav-dropdown-trigger svg { transition: transform 0.2s; }
.nav-dropdown.open .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: white;
  border: 1px solid hsl(214,32%,91%);
  border-radius: 0.5rem;
  box-shadow: 0 8px 24px -4px hsla(214,84%,20%,.15);
  padding: 0.375rem 0;
  padding-top: calc(0.375rem + 4px);
  z-index: 1001;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  color: hsl(215,15%,55%);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.15s;
  cursor: pointer;
}
a.nav-dropdown-item:hover { background: hsl(214,40%,96%); color: hsl(214,84%,20%); }
.nav-dropdown-item.active { color: hsl(214,84%,20%); font-weight: 600; }
.nav-dropdown-item-disabled { opacity: 0.45; cursor: not-allowed; pointer-events: none; }
.nav-dropdown-item-danger { color: hsl(0,70%,50%); }
a.nav-dropdown-item-danger:hover { background: hsl(0,100%,97%); color: hsl(0,70%,40%); }

.nav-dropdown-separator { height: 1px; background: hsl(214,32%,91%); margin: 0.3rem 0; }
.nav-dropdown-section-label {
  padding: 0.4rem 1rem 0.15rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: hsl(215,15%,55%);
}

.badge-soon {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 700;
  background: hsl(214,40%,93%);
  color: hsl(214,60%,35%);
  padding: 0.1rem 0.4rem;
  border-radius: 9999px;
  letter-spacing: 0.02em;
}

/* ==============================
   Klantportaal Dropdown
============================== */
.nav-portal-dropdown .nav-dropdown-menu {
  left: auto;
  right: 0;
  transform: none;
  min-width: 270px;
  padding: 0;
  overflow: hidden;
}

/* Make portal trigger look like the gradient CTA button */
.nav-portal-trigger {
  background: linear-gradient(135deg, hsl(214,84%,20%), hsl(214,84%,16%)) !important;
  color: white !important;
  border-radius: 0.5rem !important;
  padding: 0.5rem 1rem !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
}
.nav-portal-trigger:hover { color: white !important; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.1); }
.nav-portal-trigger svg:last-child { margin-left: 2px; }
.nav-portal-dropdown.open .nav-portal-trigger svg:last-child { transform: rotate(180deg); }

/* Login form inside dropdown */
.portal-menu-heading {
  padding: 0.875rem 1rem 0.5rem;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: hsl(215,15%,55%);
  border-bottom: 1px solid hsl(214,32%,91%);
}

.portal-login-form {
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.portal-login-form input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid hsl(214,32%,91%);
  border-radius: 0.375rem;
  font-family: inherit;
  font-size: 0.875rem;
  color: hsl(210,15%,15%);
  background: hsl(214,40%,98%);
  transition: border-color 0.2s;
}
.portal-login-form input:focus {
  outline: none;
  border-color: hsl(214,84%,40%);
  background: white;
}
.portal-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.55rem 1rem;
  background: linear-gradient(135deg, hsl(214,84%,20%), hsl(214,84%,16%));
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
  margin-top: 0.25rem;
}
.portal-login-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 10px hsla(214,84%,20%,.2); }

.portal-login-footer {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 1rem 0.875rem;
  border-top: 1px solid hsl(214,32%,91%);
}
.portal-login-footer a {
  font-size: 0.8rem;
  color: hsl(214,84%,40%);
  text-decoration: none;
}
.portal-login-footer a:hover { text-decoration: underline; }

/* Logged-in user info block */
.portal-menu-user {
  padding: 0.875rem 1rem;
  background: hsl(214,40%,98%);
  border-bottom: 1px solid hsl(214,32%,91%);
}
.portal-menu-user-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: hsl(210,15%,15%);
}
.portal-menu-user-email {
  font-size: 0.78rem;
  color: hsl(215,15%,55%);
  margin-top: 1px;
}

/* ==============================
   Portal Shell (clientportal.html)
============================== */
.portal-shell {
  padding-top: 4rem;
  height: 100vh;
  overflow: hidden;
}
.portal-iframe {
  width: 100%;
  height: calc(100vh - 4rem);
  border: none;
  display: block;
}

/* ==============================
   Mobile nav overrides
============================== */
@media (max-width: 767px) {
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    background: hsl(214,25%,97%);
  }
  .nav-dropdown-item {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    border-bottom: 1px solid hsl(214,32%,91%);
    color: hsl(215,15%,55%);
  }
  .nav-dropdown-trigger {
    width: 100%;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid hsl(214,32%,91%);
    justify-content: space-between;
    font-size: 1rem;
  }
  /* Portal dropdown stays hidden on mobile (use mobile nav links instead) */
  .nav-portal-dropdown { display: none; }
}

/* ==============================
   Hero Section
============================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
    hsla(214, 84%, 20%, 0.05) 0%,
    hsla(0, 0%, 100%, 1) 50%,
    hsla(142, 76%, 36%, 0.05) 100%);
  padding-top: 4rem;
}

.hero-content {
  text-align: center;
  max-width: 64rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(142, 25%, 90%);
  color: hsl(210, 15%, 15%);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, hsl(214, 84%, 20%), hsl(142, 76%, 36%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: 1.125rem;
  color: hsl(215, 15%, 55%);
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.button-hero {
  background: linear-gradient(135deg, hsl(214, 84%, 20%), hsl(214, 84%, 16%));
  color: white;
}

.button-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -8px hsla(214, 84%, 20%, 0.25);
}

.button-outline {
  background: transparent;
  color: hsl(214, 84%, 20%);
  border: 2px solid hsl(214, 84%, 20%);
}

.button-outline:hover {
  background: hsl(214, 84%, 20%);
  color: white;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: hsl(0, 0%, 100%);
  border: 1px solid hsl(214, 32%, 91%);
  border-radius: 0.5rem;
  transition: box-shadow 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 4px 16px -4px hsla(214, 84%, 20%, 0.1);
}

.feature-card svg {
  color: hsl(214, 84%, 20%);
  flex-shrink: 0;
}

.feature-card h3 {
  font-weight: 600;
  color: hsl(210, 15%, 15%);
}

.feature-card p {
  font-size: 0.875rem;
  color: hsl(215, 15%, 55%);
}

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

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }

  .hero-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

/* ==============================
   Services Section
============================== */
.services {
  padding: 6rem 0;
  background: hsla(210, 40%, 96%, 0.3);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.section-header p {
  font-size: 1.125rem;
  color: hsl(215, 15%, 55%);
  max-width: 48rem;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: linear-gradient(145deg, hsla(0, 0%, 100%, 0.9), hsl(214, 25%, 97%));
  border: 1px solid hsl(214, 32%, 91%);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px -8px hsla(214, 84%, 20%, 0.15);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon.target {
  background: linear-gradient(135deg, hsl(214, 84%, 20%), hsl(214, 75%, 35%));
}

.service-icon.chart {
  background: linear-gradient(135deg, hsl(142, 76%, 36%), hsl(142, 60%, 45%));
}

.service-icon.pie {
  background: linear-gradient(135deg, hsl(214, 75%, 35%), hsl(214, 84%, 20%));
}

.service-icon.trending {
  background: linear-gradient(135deg, hsl(142, 60%, 45%), hsl(142, 76%, 36%));
}

.service-icon svg {
  color: white;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(210, 15%, 15%);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: hsl(214, 84%, 20%);
}

.service-card p {
  color: hsl(215, 15%, 55%);
  margin-bottom: 1.5rem;
}

.service-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: hsl(215, 15%, 55%);
}

.service-card li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  background: hsl(214, 84%, 20%);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  background: transparent;
  color: hsl(214, 84%, 20%);
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.service-button:hover {
  background: hsla(214, 84%, 20%, 0.1);
}

.cta-section {
  background: linear-gradient(135deg, 
    hsla(214, 84%, 20%, 0.1) 0%, 
    hsla(142, 76%, 36%, 0.1) 100%);
  border: 1px solid hsl(214, 32%, 91%);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.cta-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(210, 15%, 15%);
  margin-bottom: 1rem;
}

.cta-section p {
  color: hsl(215, 15%, 55%);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-header h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .section-header h2 {
    font-size: 3.5rem;
  }
}

/* ==============================
   Packages (Startpakketten)
============================== */
.packages-block {
  margin-bottom: 5rem;
}

.services-sublabel {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.services-sublabel.label-packages {
  background: hsl(142, 25%, 90%);
  color: hsl(142, 60%, 25%);
}

.services-sublabel.label-custom {
  background: hsl(214, 30%, 92%);
  color: hsl(214, 60%, 28%);
}

.services-block-header {
  margin-bottom: 2rem;
}

.services-block-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(210, 15%, 15%);
  margin-bottom: 0.4rem;
}

.services-block-header p {
  font-size: 1rem;
  color: hsl(215, 15%, 55%);
  max-width: 48rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.package-card {
  background: linear-gradient(145deg, hsl(0,0%,100%), hsl(214,40%,97%));
  border: 1px solid hsl(214, 40%, 88%);
  border-radius: 0.75rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.package-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -8px hsla(214, 84%, 20%, 0.15);
  border-color: hsl(214, 60%, 75%);
}

.package-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.package-icon.icon-verkenner {
  background: linear-gradient(135deg, hsl(214, 84%, 20%), hsl(214, 75%, 35%));
}

.package-icon.icon-benchmarker {
  background: linear-gradient(135deg, hsl(142, 76%, 36%), hsl(142, 60%, 45%));
}

.package-icon.icon-regio {
  background: linear-gradient(135deg, hsl(214, 65%, 35%), hsl(142, 76%, 36%));
}

.package-icon svg {
  color: white;
}

.package-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: hsl(210, 15%, 15%);
  margin-bottom: 0.25rem;
}

.package-tagline {
  font-size: 0.875rem;
  color: hsl(214, 84%, 30%);
  font-style: italic;
  margin-bottom: 0.875rem;
}

.package-card > p {
  font-size: 0.925rem;
  color: hsl(215, 15%, 45%);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.package-list {
  list-style: none;
  margin-bottom: 1.75rem;
}

.package-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(215, 15%, 40%);
  margin-bottom: 0.45rem;
}

.package-list li::before {
  content: '';
  width: 0.35rem;
  height: 0.35rem;
  background: hsl(142, 76%, 36%);
  border-radius: 50%;
  flex-shrink: 0;
}

.package-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.65rem 1rem;
  background: linear-gradient(135deg, hsl(214, 84%, 20%), hsl(214, 84%, 16%));
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.package-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px -4px hsla(214, 84%, 20%, 0.35);
  color: white;
}

.package-cta.cta-outline {
  background: transparent;
  color: hsl(214, 84%, 20%);
  border: 1.5px solid hsl(214, 60%, 70%);
}

.package-cta.cta-outline:hover {
  background: hsl(214, 84%, 20%);
  color: white;
  box-shadow: 0 4px 16px -4px hsla(214, 84%, 20%, 0.3);
}

/* Divider between packages and custom services */
.services-section-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 3.5rem 0 3rem;
  color: hsl(215, 15%, 60%);
  font-size: 0.9rem;
}

.services-section-divider::before,
.services-section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: hsl(214, 32%, 88%);
}

.maatwerk-block {
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==============================
   About Section
============================== */
.about {
  padding: 6rem 0;
  background: hsl(0, 0%, 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-content > p {
  font-size: 1.125rem;
  color: hsl(215, 15%, 55%);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.benefits-list {
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.benefit-item svg {
  color: hsl(142, 76%, 36%);
  flex-shrink: 0;
}

.mission-card {
  background: linear-gradient(135deg, 
    hsla(214, 84%, 20%, 0.05) 0%, 
    hsla(142, 76%, 36%, 0.05) 100%);
  border: 1px solid hsl(214, 32%, 91%);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.mission-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(210, 15%, 15%);
  margin-bottom: 0.75rem;
}

.mission-card p {
  color: hsl(215, 15%, 55%);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.value-card {
  background: linear-gradient(145deg, hsla(0, 0%, 100%, 0.9), hsl(214, 25%, 97%));
  border: 1px solid hsl(214, 32%, 91%);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px -8px hsla(214, 84%, 20%, 0.15);
}

.value-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, hsl(214, 84%, 20%), hsl(214, 75%, 35%));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.value-icon svg {
  color: white;
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(210, 15%, 15%);
  margin-bottom: 0.5rem;
}

.value-card p {
  color: hsl(215, 15%, 55%);
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-content h2 {
    font-size: 3rem;
  }
}

/* ==============================
   Contact Section
============================== */
.contact {
  padding: 6rem 0;
  background: hsla(210, 40%, 96%, 0.3);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.form-card {
  background: linear-gradient(145deg, hsla(0, 0%, 100%, 0.9), hsl(214, 25%, 97%));
  border: 1px solid hsl(214, 32%, 91%);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 8px 25px -8px hsla(214, 84%, 20%, 0.15);
}

.form-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(210, 15%, 15%);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: hsl(210, 15%, 15%);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid hsl(214, 32%, 91%);
  border-radius: 0.5rem;
  background: hsl(0, 0%, 100%);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: hsl(214, 84%, 20%);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.full-width {
  width: 100%;
  justify-content: center;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-card {
  background: hsl(0, 0%, 100%);
  border: 1px solid hsl(214, 32%, 91%);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.contact-card:hover {
  box-shadow: 0 4px 16px -4px hsla(214, 84%, 20%, 0.1);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, hsl(214, 84%, 20%), hsl(214, 75%, 35%));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-icon svg {
  color: white;
}

.contact-card h4 {
  font-weight: 600;
  color: hsl(210, 15%, 15%);
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: hsl(215, 15%, 55%);
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 1fr;
  }
}

/* ==============================
   Footer
============================== */
.footer {
  background: hsl(210, 15%, 15%);
  color: hsl(0, 0%, 100%);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo p {
  color: hsla(0, 0%, 100%, 0.7);
  margin-top: 0.5rem;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-section h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: hsla(0, 0%, 100%, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: hsl(0, 0%, 100%);
}

.footer-bottom {
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

.footer-legal a {
  color: hsla(0, 0%, 100%, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: hsl(0, 0%, 100%);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ==============================
   Success Message
============================== */
.success-message {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: hsl(142, 76%, 36%);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  display: none;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 25px -8px hsla(142, 76%, 36%, 0.25);
  z-index: 1001;
}

.success-message.show {
  display: flex;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ==============================
   Dashboard Page Styles
============================== */
.dashboard-section {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background: hsla(210, 40%, 96%, 0.3);
  min-height: 100vh;
}

.dashboard-header {
  text-align: center;
  margin-bottom: 2rem;
}

.dashboard-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(210, 15%, 15%);
  margin-bottom: 0.5rem;
}

.dashboard-header p {
  color: hsl(215, 15%, 55%);
  font-size: 1.125rem;
}

.dashboard-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.iframe-wrapper {
  width: 100%;
  max-width: 1200px;
  height: 80vh;
  background: white;
  border: 1px solid hsl(214, 32%, 91%);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 8px 25px -8px hsla(214, 84%, 20%, 0.15);
}

.iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .iframe-wrapper {
    height: 65vh;
    border-radius: 0.5rem;
  }

  .dashboard-header h1 {
    font-size: 2rem;
  }
}

/* ==============================
   Cookie Banner
============================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: hsla(210, 15%, 15%, 0.95);
  color: white;
  padding: 1rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  z-index: 2000;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-banner button {
  background: hsl(142, 76%, 36%);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.3s ease;
}

.cookie-banner button:hover {
  background: hsl(142, 70%, 30%);
}

/* ==============================
   Mobile Navigation
============================== */

/* Mobile nav toggle button */
.mobile-nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  width: 2rem;
  height: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  z-index: 1100;
}

.mobile-nav-toggle span {
  width: 100%;
  height: 2px;
  background-color: hsl(210, 15%, 15%);
  transition: all 0.3s ease;
  display: block;
}

/* Mobile nav open state */
.mobile-nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile navigation */
.nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: white;
  position: absolute;
  top: 4rem;
  left: 0;
  right: 0;
  border-top: 1px solid hsl(214, 32%, 91%);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 0;
}

.nav.open {
  display: flex;
}

.nav.open .nav-link {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid hsl(214, 32%, 91%);
}

.nav.open .nav-link:last-child {
  border-bottom: none;
}

/* Desktop weergave */
@media (min-width: 768px) {
  .mobile-nav-toggle {
    display: none !important;
  }

  .nav {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    position: static;
    background: transparent;
    padding: 0;
    gap: 1.5rem;
    border: none;
    box-shadow: none;
  }

  .nav .nav-link {
    padding: 0;
    border: none !important;
  }
}

/* ==============================
   Client Portal Page
============================== */
.portal-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
    hsla(214, 84%, 20%, 0.05) 0%,
    hsla(0, 0%, 100%, 1) 50%,
    hsla(142, 76%, 36%, 0.05) 100%);
  padding-top: 4rem;
}

.portal-hero-content {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.portal-login-card {
  margin-top: 3rem;
  background: linear-gradient(145deg, hsla(0, 0%, 100%, 0.95), hsl(214, 25%, 97%));
  border: 1px solid hsl(214, 32%, 91%);
  border-radius: 1rem;
  box-shadow: 0 8px 40px -8px hsla(214, 84%, 20%, 0.15);
  overflow: hidden;
}

.portal-login-inner {
  padding: 2.5rem;
}

.portal-login-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, hsl(214, 84%, 20%), hsl(142, 76%, 36%));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.portal-login-icon svg {
  color: white;
}

.portal-login-inner h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(210, 15%, 15%);
  margin-bottom: 0.75rem;
}

.portal-login-inner p {
  color: hsl(215, 15%, 55%);
  margin-bottom: 1.5rem;
}

.portal-cta {
  width: 100%;
  justify-content: center;
  text-decoration: none;
  display: inline-flex;
  margin-bottom: 1.25rem;
}

.portal-login-sub {
  font-size: 0.875rem;
  color: hsl(215, 15%, 55%);
  margin-bottom: 0 !important;
}

.portal-signup-link {
  background: none;
  border: none;
  color: hsl(214, 84%, 40%);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 2px;
}

.portal-signup-link:hover {
  color: hsl(214, 84%, 20%);
}

/* Portal Features */
.portal-features {
  padding: 6rem 0;
  background: hsla(210, 40%, 96%, 0.3);
}

.portal-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.portal-feature-card {
  background: linear-gradient(145deg, hsla(0, 0%, 100%, 0.9), hsl(214, 25%, 97%));
  border: 1px solid hsl(214, 32%, 91%);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.portal-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px -8px hsla(214, 84%, 20%, 0.15);
}

.portal-feature-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, hsl(214, 84%, 20%), hsl(214, 75%, 35%));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.portal-feature-icon svg {
  color: white;
}

.portal-feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(210, 15%, 15%);
  margin-bottom: 0.5rem;
}

.portal-feature-card p {
  color: hsl(215, 15%, 55%);
  font-size: 0.9375rem;
}

.portal-cta-section {
  padding: 4rem 0 6rem;
}

@media (min-width: 640px) {
  .portal-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .portal-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
