/* ============================================================
   JUWIX — Main Stylesheet
   WCAG 2.1 AA compliant · Mobile-first · Open Sans
   ============================================================ */

/* --- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--bg);
  overflow-x: hidden;
  min-height: 100vh;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { border: 0; background: none; cursor: pointer; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { color: var(--text); font-weight: var(--weight-xbold); line-height: 1.2; letter-spacing: -0.03em; }

/* --- Background blobs ------------------------------------- */
.site-bg {
  position: fixed; inset: 0;
  pointer-events: none; z-index: -1; overflow: hidden;
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: 0.55;
  animation: floatBlob 16s ease-in-out infinite;
}
.blob--a { width: 420px; height: 420px; right: -80px; top: -60px; background: radial-gradient(circle, rgba(199,195,255,0.6), transparent 70%); }
.blob--b { width: 320px; height: 320px; left: -60px; bottom: 20%; background: radial-gradient(circle, rgba(255,235,241,0.7), transparent 70%); }
.blob--c { width: 240px; height: 240px; right: 15%; bottom: 10%; background: radial-gradient(circle, rgba(199,195,255,0.4), rgba(255,235,241,0.4) 60%, transparent 80%); animation-delay: -6s; }
.noise {
  position: absolute; inset: 0; opacity: 0.08;
  background-image: radial-gradient(rgba(255,255,255,0.9) 0.5px, transparent 0.5px);
  background-size: 14px 14px; mix-blend-mode: soft-light;
}
@keyframes floatBlob {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(0,-12px) scale(1.04); }
}

/* --- Skip link (WCAG 2.4.1) ------------------------------- */
.skip-link {
  position: absolute; left: 16px; top: -60px;
  z-index: 9999; padding: 12px 20px;
  background: var(--surface-solid); color: var(--text);
  border: 2px solid var(--pink); border-radius: var(--r-md);
  font-weight: var(--weight-bold); font-size: 0.95rem;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }

/* --- Focus visible (WCAG 2.4.7) --------------------------- */
:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 4px;
}
a:focus-visible, button:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  background: rgba(245,245,245,0.88);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-soft); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto; padding: 16px 0;
}

/* Brand */
.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand__logo { height: 28px; width: auto; }
.brand__icon { height: 28px; width: auto; display: none; }

/* Desktop nav */
.desktop-nav {
  display: flex; align-items: center; gap: 4px;
  padding: 5px; border-radius: var(--r-pill);
  background: var(--surface-mid);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}
.desktop-nav a {
  padding: 9px 18px; border-radius: var(--r-pill);
  font-size: 0.94rem; font-weight: var(--weight-semi);
  color: var(--text-soft);
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.desktop-nav a:hover { background: var(--pink-soft); color: black; transform: translateY(-1px); text-decoration: underline; }
.desktop-nav a[aria-current="page"] { background: var(--pink-soft); color: black; box-shadow: var(--shadow-soft); font-weight: 700;  }

/* CTA pill in nav */
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 20px; border-radius: var(--r-pill);
  background: var(--pink); color: white !important;
  font-weight: var(--weight-bold); font-size: 0.94rem;
  transition: opacity 0.18s, transform 0.18s, box-shadow 0.18s;
}
/* transform + box-shadow are non-color WCAG 1.4.1-compliant indicators */
.nav-cta:hover { opacity: 0.92; transform: translateY(-1px); box-shadow: var(--shadow-pink); }
a.nav-cta:active [aria-current="page"] { background: var(--pink-soft); color: black; box-shadow: var(--shadow-soft); font-weight: 700;  }

/* Mobile hamburger */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px; padding: 8px;
  border-radius: var(--r-sm); background: var(--surface-mid); border: 1px solid var(--border);
}
.nav-toggle span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer — full-frame overlay */
.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  z-index: 200; /* above sticky header (z-index:100); works once JS moves nav to body */
  background: rgba(245,245,245,0.98);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  overflow-y: auto;
  flex-direction: column;
  padding: 0 24px 48px;
}
.mobile-nav.is-open { display: flex; }

/* Top bar (logo + close button) injected by main.js */
.mobile-nav__top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
  flex-shrink: 0;
  position: sticky; top: 0;
  background: rgba(245,245,245,0.98);
  backdrop-filter: blur(12px);
  z-index: 1;
}
.mobile-nav__brand { display: inline-flex; align-items: center; }
.mobile-nav__brand img { height: 28px; width: auto; }

.mobile-nav__close {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  background: var(--surface-mid);
  border: 1.5px solid var(--border-mid);
  color: var(--text); cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.mobile-nav__close:hover { background: var(--pink-soft); color: var(--pink); border-color: var(--pink); }
.mobile-nav__close svg { width: 18px; height: 18px; stroke: currentColor; }

/* Nav links */
.mobile-nav a {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 20px; border-radius: var(--r-lg);
  font-size: 1.5rem; font-weight: var(--weight-xbold); color: var(--text);
  transition: background 0.15s, color 0.15s;
  letter-spacing: -0.02em;
}
.mobile-nav a:hover { background: var(--surface-mid); }
.mobile-nav a[aria-current="page"] { background: var(--surface-mid); color: var(--pink); }
.mobile-nav__cta {
  margin-top: 20px; justify-content: center;
  background: var(--pink) !important; color: white !important;
  border-radius: var(--r-pill) !important;
  font-size: 1.2rem !important;
}
.mobile-nav__cta:hover { opacity: 0.9 !important; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section { padding-block: var(--gap-section); }

.section-header { margin-bottom: clamp(32px, 5vw, 56px); }
.section-header--center { text-align: center; }

.eyebrow-wrap { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.eyebrow-line { width: 3px; height: 26px; border-radius: 10px; background: var(--pink); flex-shrink: 0; }
.eyebrow { font-size: 0.88rem; font-weight: var(--weight-bold); color: var(--pink); text-transform: uppercase; letter-spacing: 0.06em; }

.section-title { font-size: clamp(1.75rem, 3.5vw, 2.6rem); max-width: 680px; }
.section-subtitle { margin-top: 12px; font-size: 1.05rem; color: var(--text-soft); max-width: 560px; }
.section-header--center .section-title,
.section-header--center .section-subtitle { margin-inline: auto; }

/* ============================================================
   BUTTONS & CTA
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; min-height: 48px; padding: 12px 24px;
  border-radius: var(--r-pill); border: 2px solid transparent;
  font-weight: var(--weight-bold); font-size: 1rem;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--pink); color: white;
  box-shadow: var(--shadow-pink);
}
.btn--primary:hover { opacity: 0.92; box-shadow: 0 8px 24px rgba(232,0,78,0.28); }

.btn--outline {
  background: transparent; color: var(--pink);
  border-color: var(--pink);
}
.btn--outline:hover { background: var(--pink-hover); }

.btn--ghost {
  background: var(--surface-mid); color: var(--text);
  border-color: var(--border-mid);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: white; }

.btn--sm { min-height: 40px; padding: 8px 18px; font-size: 0.92rem; }
.btn--lg { min-height: 56px; padding: 14px 32px; font-size: 1.05rem; }

.btn__icon {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  font-style: normal;
}

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero {
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(40px, 6vw, 72px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr min(440px, 45%);
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}

.hero-copy { max-width: 640px; }

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--pink) 0%, #c7006e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-body {
  font-size: 1.08rem; line-height: 1.65;
  color: var(--text-soft); margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }

.hero-trust {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--text-muted); font-weight: var(--weight-semi);
}
.hero-trust-dots { display: flex; gap: 4px; }
.hero-trust-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); opacity: 0.3; }
.hero-trust-dot:first-child { opacity: 1; }
.hero-trust-dot:nth-child(2) { opacity: 0.6; }

/* Phone mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }

.phone-frame {
  position: relative; width: min(280px, 100%);
  background: linear-gradient(160deg, rgba(255,255,255,0.65), rgba(255,255,255,0.35));
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 36px; padding: 16px;
  box-shadow: var(--shadow-float);
  backdrop-filter: blur(16px);
}

.phone-notch {
  width: 60px; height: 6px; background: rgba(41,41,41,0.15);
  border-radius: 10px; margin: 0 auto 16px;
}

.phone-screen {
  background: var(--bg); border-radius: 24px;
  overflow: hidden; min-height: 360px;
  display: flex; flex-direction: column;
}

.phone-screen-bar {
  background: var(--pink); height: 4px; width: 40%; border-radius: 2px; margin: 16px auto 0;
}

.phone-screen-content {
  padding: 20px 16px; flex: 1;
  display: flex; flex-direction: column; gap: 12px;
}

.phone-card {
  background: white; border-radius: 12px; padding: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.phone-card-label {
  font-size: 0.7rem; font-weight: var(--weight-bold);
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-muted); margin-bottom: 6px;
}

.phone-card-value {
  font-size: 1.1rem; font-weight: var(--weight-xbold);
  color: var(--text);
}

.phone-card-sub {
  font-size: 0.75rem; color: var(--text-soft); margin-top: 2px;
}

.phone-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: var(--r-pill);
  background: var(--pink); color: white;
  font-size: 0.8rem; font-weight: var(--weight-bold);
  margin-top: 4px; align-self: flex-start;
}

.hero-badge {
  position: absolute; top: 20px; right: -20px;
  padding: 10px 16px; border-radius: var(--r-lg);
  background: white; box-shadow: var(--shadow-float);
  font-size: 0.82rem; font-weight: var(--weight-bold);
  color: var(--green); border: 1px solid var(--green-border);
  white-space: nowrap;
}

/* ============================================================
   CLIENT LOGOS STRIP
   ============================================================ */
.logos-strip { padding-block: clamp(32px, 5vw, 56px); }

.logos-strip__label {
  text-align: center; font-size: 0.82rem; font-weight: var(--weight-bold);
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-muted); margin-bottom: 28px;
}

.logos-row {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 32px 48px;
}

.logo-item {
  display: flex; align-items: center; justify-content: center;
  height: 60px; opacity: 1; 

}
.logo-item:hover, .logo-item:focus { opacity: 0.6; filter: grayscale(100%); }
.logo-item img { max-height: 60px; width: auto; max-width: 140px; object-fit: contain; }


/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-section .section-header { max-width: 560px; }

/* Filter tabs */
.filter-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.filter-tab {
  padding: 8px 20px; border-radius: var(--r-pill);
  border: 1.5px solid var(--border-mid);
  font-size: 0.92rem; font-weight: var(--weight-semi);
  color: var(--text-soft); background: var(--surface-mid);
  transition: all 0.18s; cursor: pointer;
}
.filter-tab:hover { border-color: var(--pink); color: var(--pink); background: var(--pink-soft); }
.filter-tab.is-active { background: var(--pink); color: white; border-color: var(--pink); }
.filter-tab[aria-pressed="true"] { background: var(--pink); color: white; border-color: var(--pink); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  display: flex; flex-direction: column; gap: 14px;
  padding: 28px; border-radius: var(--r-xl);
  background: linear-gradient(160deg, rgba(255,255,255,0.68), rgba(255,255,255,0.44));
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; color: inherit;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-float); text-decoration: underline; }
.service-card:focus-visible { outline: none; box-shadow: var(--focus-ring); }

.service-card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--pink-soft); border-radius: var(--r-md);
}
.service-card__icon img, .service-card__icon svg { width: 28px; height: 28px; }

.service-card__title {
  font-size: 1.05rem; font-weight: var(--weight-bold);
  color: var(--text); letter-spacing: -0.02em;
}

.service-card__body {
  font-size: 0.93rem; line-height: 1.55; color: var(--text-soft);
  flex: 1;
}

.service-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.9rem; font-weight: var(--weight-bold);
  color: var(--pink); margin-top: auto;
}
.service-card__link svg { width: 14px; height: 14px; }

/* ============================================================
   CTA BAND — "Are you digital inclusive?"
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, #E8004E 0%, #b5003d 100%);
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  position: relative;
}

.cta-band::before {
  content: "";
  position: absolute; right: -60px; top: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
  border-radius: 50%; pointer-events: none;
}

.cta-band__eyebrow {
  font-size: 0.82rem; font-weight: var(--weight-bold);
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.72); margin-bottom: 10px;
}

.cta-band__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: white; margin-bottom: 14px; max-width: 520px;
}

.cta-band__body {
  color: rgba(255,255,255,0.82); max-width: 460px; line-height: 1.6;
  font-size: 1rem; margin-bottom: 0;
}

.cta-band__actions { display: flex; flex-shrink: 0; }

.btn--white {
  background: white; color: var(--pink);
  border-color: transparent; font-weight: var(--weight-bold);
}
.btn--white:hover { background: var(--pink-soft); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

/* ============================================================
   INSIGHTS CARDS
   ============================================================ */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.insight-card {
  display: flex; flex-direction: column;
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, rgba(255,255,255,0.68), rgba(255,255,255,0.44));
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; color: inherit;
}
.insight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-float); }
.insight-card:focus-visible { outline: none; box-shadow: var(--focus-ring); }

.insight-card__thumb {
  aspect-ratio: 16/9; background: linear-gradient(135deg, var(--lilac-soft), var(--pink-soft));
  display: flex; align-items:flex-end; justify-content: center;
  font-size: 2.5rem; color: var(--pink); position: relative; overflow: hidden;
}

.insight-card__thumb img {
  width: 90%; height: 90%; object-fit: contain; position: bottom; inset: 0;
}

.insight-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }

.insight-card__meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: var(--weight-semi); color: var(--text-muted);
}

.tag {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: var(--r-pill);
  font-size: 0.78rem; font-weight: var(--weight-bold);
  background: var(--pink-soft); color: var(--pink);
}
.tag--lilac  { background: var(--lilac-soft); color: #5b52cc; }
.tag--green  { background: var(--green-bg);   color: var(--green); }

.insight-card__title {
  font-size: 1.1rem; font-weight: var(--weight-bold);
  color: var(--text); line-height: 1.3; letter-spacing: -0.02em;
}

.insight-card__excerpt { font-size: 0.92rem; color: var(--text-soft); line-height: 1.55; }

.insight-card__foot {
  padding: 0 24px 24px; display: flex; align-items: center; justify-content: space-between;
  font-size: 0.85rem; font-weight: var(--weight-semi); color: var(--text-muted);
}

.read-more {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--pink); font-weight: var(--weight-bold);
  font-size: 0.88rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  padding: 28px; border-radius: var(--r-xl);
  background: linear-gradient(160deg, rgba(255,255,255,0.68), rgba(255,255,255,0.44));
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 16px;
}

.stars {
  display: flex; gap: 3px; color: var(--orange);
  font-size: 1rem; line-height: 1;
}
.stars[aria-label] { /* screen reader uses aria-label */ }

.testimonial-card__quote {
  font-size: 0.97rem; line-height: 1.65; color: var(--text-body);
  font-style: italic; flex: 1;
}

.testimonial-card__author { display: flex; align-items: center; gap: 12px; }

.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lilac), var(--pink-soft));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; font-weight: var(--weight-bold); color: var(--text); flex-shrink: 0;
  overflow: hidden;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }

.author-name { font-weight: var(--weight-bold); font-size: 0.92rem; color: var(--text); }
.author-role { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-section {
  position: relative;
  overflow: hidden;
}

/* Flowing line — full-width background decoration */
.team-line-deco {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: -10;
  opacity: 0.5;          /* maakt het zwart onzichtbaar, toont alleen de lijn */
}

/* Location row */
.team-locations {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 6px 16px;
  font-size: 0.9rem; color: var(--text-soft);
  margin-top: 14px;
}
.team-loc-item { display: flex; align-items: center; gap: 5px; }
.team-loc-sep  { color: var(--border-mid); user-select: none; }

/* Cards grid — centered */
.team-grid {
  position: relative; z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.team-card {
  text-align: center; padding: 28px 20px;
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, rgba(255,255,255,0.68), rgba(255,255,255,0.44));
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  width: 250px; flex-shrink: 0;
}

.team-photo {
  width: 110px; height: 110px; border-radius: 50%;
  border: 3px solid white; box-shadow: var(--shadow-soft);
  object-fit: cover; object-position: top center;
  overflow: hidden;
}

.team-name { font-size: 1rem; font-weight: var(--weight-bold); color: var(--text); }
.team-role { font-size: 0.88rem; color: var(--text-soft); }
.team-links { display: flex; gap: 10px; }
.team-link {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--surface-mid); border: 1px solid var(--border);
  display: grid; place-items: center;
  font-size: 0.8rem; color: var(--text-soft);
  transition: background 0.15s, color 0.15s;
}
.team-link:hover { background: var(--pink); color: white; border-color: var(--pink); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 760px; }

.faq-item {
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.68), rgba(255,255,255,0.44));
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq-question {
  width: 100%; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 1rem; font-weight: var(--weight-bold); color: var(--text);
  text-align: left; cursor: pointer;
  transition: background 0.15s;
}
.faq-question:hover { background: rgba(255,255,255,0.5); }
.faq-question[aria-expanded="true"] { color: var(--pink); }

.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--surface-mid); border: 1px solid var(--border);
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform 0.25s, background 0.15s;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); background: var(--pink); color: white; border-color: var(--pink); }
.faq-icon svg { width: 14px; height: 14px; }

.faq-answer {
  padding: 0 24px; max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer.is-open {
  max-height: 600px; padding-bottom: 24px;
}
.faq-answer p { font-size: 0.97rem; line-height: 1.7; color: var(--text-soft); }

/* ============================================================
   FOOTER CTA BAND
   ============================================================ */
.footer-cta {
  background: linear-gradient(135deg, #E8004E 0%, #c40040 60%, #9b003a 100%);
  border-radius: var(--r-xl);
  padding: clamp(48px, 8vw, 96px) clamp(28px, 6vw, 72px);
  text-align: center;
  position: relative; overflow: hidden;
  margin-block: var(--gap-section);
}
.footer-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.15), transparent 60%);
  pointer-events: none;
}

.footer-cta__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: white; margin-bottom: 14px; position: relative;
}

.footer-cta__body {
  color: rgba(255,255,255,0.82); font-size: 1.05rem;
  max-width: 480px; margin-inline: auto; margin-bottom: 36px; position: relative;
}

.footer-cta__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; position: relative; }

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding-block: clamp(40px, 6vw, 64px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 40px;
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { height: 24px; width: auto; filter: brightness(10); opacity: 0.9; }
.footer-tagline { font-size: 0.88rem; line-height: 1.6; color: rgba(255,255,255,0.55); max-width: 240px; }

.footer-col-title {
  font-size: 0.8rem; font-weight: var(--weight-bold);
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45); margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.92rem; color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}
/* WCAG 1.4.1: text-decoration underline as non-color indicator on hover */
.footer-links a:hover { color: white; text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px; margin-top: 40px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: white; text-decoration: underline; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px); align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }

.contact-info__intro { font-size: 1.05rem; line-height: 1.7; color: var(--text-soft); max-width: 440px; }

.contact-detail { display: flex; align-items: flex-start; gap: 14px; }
.contact-detail__icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--pink-soft); display: grid; place-items: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail__label { font-size: 0.8rem; color: var(--text-muted); font-weight: var(--weight-semi); margin-bottom: 2px; }
.contact-detail__value { font-size: 0.97rem; font-weight: var(--weight-semi); color: var(--text); }

/* Contact form card */
.form-card {
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, rgba(255,255,255,0.7), rgba(255,255,255,0.5));
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow: var(--shadow-float);
  backdrop-filter: blur(16px);
}

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

.form-label { font-size: 0.9rem; font-weight: var(--weight-semi); color: var(--text); }
.form-label .required { color: var(--pink); margin-left: 2px; }

.form-input, .form-textarea, .form-select {
  width: 100%; padding: 12px 16px;
  border-radius: var(--r-md); border: 1.5px solid var(--border-mid);
  background: rgba(255,255,255,0.7); color: var(--text);
  font-size: 0.97rem; line-height: 1.5;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--pink); box-shadow: var(--focus-ring);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 120px; }

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

.form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 6px; }

.form-submit { width: 100%; margin-top: 8px; }

/* ============================================================
   SOLUTIONS LIST PAGE
   ============================================================ */
.page-hero {
  padding-block: clamp(40px, 6vw, 80px);
}
.page-hero .eyebrow-wrap { margin-bottom: 12px; }
.page-hero-title { font-size: clamp(1.8rem, 4vw, 3rem); max-width: 640px; margin-bottom: 16px; }
.page-hero-body { font-size: 1.05rem; color: var(--text-soft); max-width: 520px; line-height: 1.65; }

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.detail-hero {
  padding-block: clamp(40px, 6vw, 80px);
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}

.detail-hero__left { max-width: 600px; }

.detail-hero__icon {
  width: 100px; height: 100px; border-radius: var(--r-xl);
  background: var(--pink-soft); display: grid; place-items: center;
  flex-shrink: 0;
}
.detail-hero__icon img { width: 52px; height: 52px; }

.detail-title { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 16px; }
.detail-body { font-size: 1.05rem; color: var(--text-soft); line-height: 1.7; margin-bottom: 28px; max-width: 520px; }

.feature-list { display: flex; flex-direction: column; gap: 12px; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; }
.feature-tick {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green-bg); border: 1.5px solid var(--green-border);
  display: grid; place-items: center; flex-shrink: 0; margin-top: 1px;
  font-size: 0.7rem; color: var(--green);
}
.feature-text { font-size: 0.97rem; line-height: 1.55; color: var(--text-body); }

/* Process steps */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex; gap: 24px; padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: 0; }
.process-step__num {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--pink); color: white;
  display: grid; place-items: center;
  font-size: 0.9rem; font-weight: var(--weight-xbold);
}
.process-step__title { font-size: 1.05rem; font-weight: var(--weight-bold); color: var(--text); margin-bottom: 6px; }
.process-step__body { font-size: 0.95rem; color: var(--text-soft); line-height: 1.6; }

/* ============================================================
   ARTICLE / BLOG DETAIL
   ============================================================ */
.article-hero { padding-block: clamp(32px, 5vw, 64px); }

.article-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
  margin-bottom: 20px; font-size: 0.88rem; color: var(--text-muted);
}

.article-title { font-size: clamp(1.75rem, 4vw, 2.8rem); max-width: 800px; margin-bottom: 20px; }
.article-subtitle { font-size: 1.1rem; color: var(--text-soft); max-width: 660px; line-height: 1.65; margin-bottom: 28px; }

.article-author { display: flex; align-items: center; gap: 12px; }
.author-text .name { font-weight: var(--weight-bold); font-size: 0.92rem; color: var(--text); }
.author-text .role { font-size: 0.82rem; color: var(--text-muted); }

.article-content {
  max-width: 720px;
  padding-bottom: var(--gap-section);
}

.article-content h2 { font-size: 1.5rem; margin: 40px 0 14px; }
.article-content h3 { font-size: 1.2rem; margin: 28px 0 10px; }
.article-content p { font-size: 1rem; line-height: 1.8; color: var(--text-body); margin-bottom: 20px; }
.article-content ul, .article-content ol {
  padding-left: 1.4em; margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px;
}
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { font-size: 1rem; line-height: 1.7; color: var(--text-body); }
.article-content a { color: var(--pink); text-decoration: underline; }
.article-content a:hover { opacity: 0.8; }

.article-highlight {
  margin: 32px 0; padding: 24px 28px;
  border-left: 4px solid var(--pink); border-radius: 0 var(--r-md) var(--r-md) 0;
  background: var(--pink-soft);
}
.article-highlight p { color: var(--text); font-weight: var(--weight-semi); margin: 0; }

/* ============================================================
   BREADCRUMBS (WCAG 2.4.8)
   ============================================================ */
.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
  font-size: 0.85rem; color: var(--text-muted); padding-block: 16px;
}
.breadcrumb a { color: var(--text-muted); }
/* WCAG 1.4.1: underline as non-color hover indicator */
.breadcrumb a:hover { color: var(--pink); text-decoration: underline; }
.breadcrumb__sep { color: var(--border-mid); }
.breadcrumb [aria-current="page"] { color: var(--text-body); }

/* ============================================================
   SOLUTION DETAIL PAGES
   ============================================================ */
.detail-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

@media (max-width: 1024px) {
  .detail-body-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr min(380px, 44%);
    gap: clamp(32px, 4vw, 56px);
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .detail-hero { grid-template-columns: 1fr; }
  .detail-hero__icon { display: none; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band__actions { justify-content: flex-start; }
  .cards-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .container { width: calc(100% - 32px); }

  .desktop-nav { display: none; }
  .nav-toggle { display: flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { justify-content: flex-start; }
  .phone-frame { width: min(260px, 100%); }
  .hero-badge { right: auto; left: 70%; top: 10px; }

  .cards-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .logos-row { gap: 20px 32px; }
  .logo-item { height: 32px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }

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

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.75rem; }
  .hero-badge { display: none; }
}

/* ============================================================
   LEGAL PAGES (Privacy Policy, Accessibility Statement)
   ============================================================ */
.legal-body {
  max-width: 720px;
  margin: 0 auto var(--gap-section);
}

.legal-body section {
  margin-bottom: 48px;
}

.legal-body h2 {
  font-size: 1.15rem;
  font-weight: var(--weight-bold);
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.legal-body p {
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-body ul {
  color: var(--text-soft);
  line-height: 1.75;
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-body ul li {
  margin-bottom: 6px;
}

.legal-body a {
  color: var(--pink);
  text-underline-offset: 2px;
}

.legal-body a:hover {
  text-decoration: underline;
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .site-bg, .footer-cta, .nav-toggle { display: none !important; }
  body { background: white; color: black; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; }
}
