/* ============================================================
   OVER ONS PAGE — Webkern
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */
.about-hero {
  position: relative;
  background: linear-gradient(145deg, #00334a 0%, #004d6e 50%, #005f87 100%);
  padding: 128px 0 0;
  overflow: hidden;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.about-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}
.about-hero__orb--1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(0,135,180,0.32) 0%, transparent 70%);
  top: -180px; right: -80px;
}
.about-hero__orb--2 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(0,50,80,0.5) 0%, transparent 70%);
  bottom: 40px; left: -60px;
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  padding-bottom: 64px;
}

/* Text side */
.about-hero__text {
  display: flex;
  flex-direction: column;
}
.about-hero .section-tag {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.1rem;
  display: inline-flex;
  align-self: flex-start;
}
.about-hero__title {
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}
.about-hero__title em {
  font-style: italic;
  background: linear-gradient(90deg, #5fd4f0 0%, #0099cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-hero__sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.72;
  max-width: 440px;
  margin-bottom: 2rem;
}
.about-hero__actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  align-items: center;
}
.about-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: #0a1628;
  font-size: 0.87rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.about-hero__btn:hover {
  background: #e0f5ff;
  transform: translateY(-2px);
}
.about-hero__btn-ghost {
  display: inline-flex;
  align-items: center;
  font-size: 0.87rem;
  font-weight: 600;
  color: rgba(255,255,255,0.70);
  border: 1.5px solid rgba(255,255,255,0.20);
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.about-hero__btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  background: rgba(255,255,255,0.06);
}

/* Photo side */
.about-hero__photo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-hero__photo-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.10),
    0 28px 72px rgba(0,0,0,0.42);
  width: 100%;
  max-width: 340px;
  /* Fixed aspect ratio — portrait */
  aspect-ratio: 3 / 4;
  background: #001e2e;
}
.about-hero__photo-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  /* Crisp high-quality rendering */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.about-hero__photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,20,40,0.18) 0%,
    transparent 45%
  );
  pointer-events: none;
}

.about-hero__photo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-top: 1rem;
  letter-spacing: 0.01em;
}
.about-hero__photo-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.7);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

/* Wave */
.about-hero__wave {
  position: relative;
  z-index: 2;
  line-height: 0;
  margin-top: -1px;
}
.about-hero__wave svg {
  display: block;
  width: 100%;
  height: 72px;
}


/* ============================================================
   VERHAAL
   ============================================================ */
.about-story {
  background: #f8fafc;
  padding: 96px 0 100px;
}
.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

/* Left — tag + title + quote */
.about-story__left {
  position: sticky;
  top: 100px;
}
.about-story__left .section-tag {
  margin-bottom: 1rem;
  display: inline-flex;
}
.about-story__title {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: #0d1b2a;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 2rem;
}
.about-story__title span { color: #0087b4; }

/* Blockquote */
.about-story__quote {
  padding: 1.6rem 1.8rem;
  background: #f8fafc;
  border-left: 3px solid #0087b4;
  border-radius: 0 14px 14px 0;
  position: relative;
}
.about-story__quote-mark {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 20px;
  height: 15px;
  color: #cde8f4;
}
blockquote {
  font-size: 1rem;
  font-weight: 600;
  color: #0d1b2a;
  line-height: 1.55;
  margin: 0 0 0.6rem;
  font-style: normal;
}
cite {
  font-size: 0.8rem;
  color: #0087b4;
  font-style: normal;
  font-weight: 600;
}

/* Right — body text */
.about-story__right {
  padding-top: 0.25rem;
}
.about-story__right p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.85;
  margin-bottom: 1.4rem;
}
.about-story__right p:last-child { margin-bottom: 0; }
.about-story__right p:first-child {
  font-size: 1.08rem;
  color: #1e3a50;
  font-weight: 500;
}


/* ============================================================
   WAARDEN
   ============================================================ */
.about-values {
  background: #fff;
  padding: 100px 0 110px;
}

/* Centered header */
.about-values__head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}
.about-values__head .section-tag {
  margin-bottom: 14px;
}
.about-values__head h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 800;
  color: #0d1b2a;
  letter-spacing: -0.028em;
  line-height: 1.13;
  margin: 0 0 16px;
}
.about-values__em { color: #0087b4; }
.about-values__head p {
  font-size: 0.975rem;
  color: #64748b;
  line-height: 1.72;
  margin: 0;
}

/* 3-column editorial grid — numbered rows, no icons, clean dividers */
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.about-value-card {
  padding: 44px 36px;
  border-right: 1px solid rgba(10,22,40,0.07);
  border-bottom: 1px solid rgba(10,22,40,0.07);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: background 0.2s;
  cursor: default;
}
.about-value-card:nth-child(3n) { border-right: none; }
.about-value-card:nth-last-child(-n+3) { border-bottom: none; }
.about-value-card:hover { background: rgba(0,135,180,0.025); }

/* Number + auto-extending teal line */
.about-value-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.about-value-card__top::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(0,135,180,0.3), transparent);
}
.about-value-card__num {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #0087b4;
  flex-shrink: 0;
}

/* Icon removed — no icons in this section */
.about-value-card__icon { display: none; }

.about-value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0d1b2a;
  margin: 0 0 10px;
  letter-spacing: -0.015em;
}
.about-value-card p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.72;
  margin: 0;
}

@media (max-width: 860px) {
  .about-values__grid { grid-template-columns: repeat(2, 1fr); }
  .about-value-card:nth-child(3n) { border-right: 1px solid rgba(10,22,40,0.07); }
  .about-value-card:nth-child(2n) { border-right: none; }
  .about-value-card:nth-last-child(-n+3) { border-bottom: 1px solid rgba(10,22,40,0.07); }
  .about-value-card:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 520px) {
  .about-values__grid { grid-template-columns: 1fr; }
  .about-value-card { border-right: none; border-bottom: 1px solid rgba(10,22,40,0.07); padding: 32px 0; }
  .about-value-card:last-child { border-bottom: none; }
  .about-values__head { margin-bottom: 40px; }
}


/* ============================================================
   EXPERTISE
   ============================================================ */
.expertise {
  padding: 120px 0;
  background: #f8fafc;
}
.expertise__wrap {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 6rem;
  align-items: center;
}

/* Image column */
.expertise__img-col {
  position: relative;
}
.expertise__img-col::before {
  content: '';
  position: absolute;
  inset: -24px;
  background: linear-gradient(145deg, #00334a 0%, #004d6e 60%, #005f87 100%);
  border-radius: 28px;
  z-index: 0;
  opacity: 0.08;
}
.expertise__img-frame {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 32px 72px rgba(10,22,40,0.18), 0 4px 16px rgba(10,22,40,0.08);
}
.expertise__img {
  width: 100%;
  height: 560px;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.expertise__img-pill {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0d1b2a;
  box-shadow: 0 8px 28px rgba(0,52,74,0.18);
}
.expertise__img-pill svg {
  width: 18px;
  height: 18px;
  background: #0087b4;
  color: #fff;
  border-radius: 50%;
  padding: 2px;
  flex-shrink: 0;
}

/* Content column */
.expertise__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.expertise__title {
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  color: #0d1b2a;
  margin: 0.65rem 0 0.9rem;
  letter-spacing: -0.02em;
}
.expertise__em { color: #0087b4; }
.expertise__intro {
  font-size: 0.975rem;
  line-height: 1.75;
  color: #4b5563;
  margin: 0 0 2rem;
  max-width: 480px;
}

/* Expertise rows — clean numbered stacked list, no icons */
.expertise__cats {
  width: 100%;
  margin-bottom: 2rem;
  counter-reset: expertise-counter;
  border-top: 1px solid rgba(10,22,40,0.07);
}
.expertise__cat {
  counter-increment: expertise-counter;
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  padding: 1.9rem 0;
  border-bottom: 1px solid rgba(10,22,40,0.07);
  cursor: default;
  transition: padding-left 0.25s ease;
  position: relative;
}
.expertise__cat:hover {
  padding-left: 10px;
}

/* Auto-generated number */
.expertise__cat::before {
  content: "0" counter(expertise-counter);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(0,135,180,0.5);
  flex-shrink: 0;
  width: 20px;
  padding-top: 5px;
  line-height: 1;
}

/* Accent line on hover — left edge */
.expertise__cat::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #0087b4;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.25s ease;
  border-radius: 2px;
}
.expertise__cat:hover::after {
  transform: scaleY(1);
}

/* Icon fully removed */
.expertise__cat-icon {
  display: none !important;
}

/* Title + skills stacked vertically */
.expertise__cat > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.expertise__cat strong {
  font-size: 1rem;
  font-weight: 700;
  color: #0d1b2a;
  letter-spacing: -0.012em;
  line-height: 1.3;
  display: block;
}
.expertise__cat span {
  font-size: 0.83rem;
  color: #64748b;
  line-height: 1.6;
  display: block;
}

/* CTA link */
.expertise__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0087b4;
  text-decoration: none;
  transition: color 0.2s, gap 0.25s;
}
.expertise__link:hover {
  color: #005f87;
  gap: 0.7rem;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .about-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 48px;
  }
  .about-hero__photo-frame {
    max-width: 300px;
    margin: 0 auto;
    aspect-ratio: 3 / 4;
  }

  .about-story__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-story__left { position: static; }
  .expertise__wrap { grid-template-columns: 1fr; gap: 3.5rem; }
  .expertise__img-col::before { display: none; }
  .expertise__img { height: 340px; }
}

.annot--about-photo {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(12px) rotate(4deg);
  z-index: 10;
  pointer-events: none;
}

@media (max-width: 640px) {
  .about-hero { padding: 108px 0 0; }
  .about-hero__photo-frame { max-width: 260px; aspect-ratio: 3 / 4; }
  .about-hero__actions { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   MOBILE FIXES — 390px (iPhone 14)
   ============================================================ */

@media (max-width: 480px) {
  /* About hero */
  .about-hero { padding: 96px 0 0; }
  .about-hero__inner { gap: 2rem; padding-bottom: 40px; }
  .about-hero__title { font-size: clamp(1.75rem, 7.5vw, 2.4rem); }
  .about-hero__sub { font-size: 0.9rem; }
  .about-hero__actions { gap: 0.75rem; }
  .about-hero__btn,
  .about-hero__btn-ghost { padding: 0.7rem 1.25rem; font-size: 0.85rem; width: 100%; justify-content: center; }
  .about-hero__photo-frame { max-width: 220px; }
  .about-hero__photo-badge { font-size: 0.7rem; padding: 0.45rem 0.85rem; }

  /* Story section */
  .about-story { padding: 64px 0 72px; }
  .about-story__inner { gap: 2rem; }
  .about-story__title { font-size: clamp(1.6rem, 6.5vw, 2rem); }
  .about-story__quote { padding: 1.2rem 1.4rem; }
  blockquote { font-size: 0.95rem; }
  .about-story__right p { font-size: 0.92rem; }

  /* Values section */
  .about-values { padding: 64px 0 72px; }
  .about-values__head { margin-bottom: 32px; }
  .about-value-card { padding: 28px 0; }

  /* Expertise section */
  .expertise { padding: 64px 0 72px; }
  .expertise__wrap { gap: 2.5rem; }
  .expertise__img { height: 240px; }
  .expertise__title { font-size: clamp(1.6rem, 6.5vw, 2rem); }
  .expertise__intro { font-size: 0.92rem; }
  .expertise__cat { gap: 1.2rem; padding: 1.5rem 0; }
  .expertise__cat strong { font-size: 0.95rem; }
}
