/* ============================================
   Rij-Klaar — Stylesheet
   Speels, vriendelijk, modern
============================================ */

:root {
  --bg: #FFFFFF;
  --bg-soft: #E8F4FD;
  --bg-soft-deeper: #DCEBF8;
  --text: #1A1A2E;
  --text-soft: #4a4a6a;
  --text-quiet: #6b6b85;
  --accent: #1B6CA8;
  --accent-dark: #145A8A;
  --accent-light: #E8F4FD;
  --accent-glow: rgba(27, 108, 168, 0.14);
  --whatsapp: #25D366;

  /* Layered shadow system — navy-tinted, never pure black */
  --shadow-xs: 0 1px 2px rgba(26, 26, 46, 0.04);
  --shadow-sm:
    0 1px 2px rgba(26, 26, 46, 0.04),
    0 2px 6px rgba(26, 26, 46, 0.05);
  --shadow-card:
    0 1px 2px rgba(26, 26, 46, 0.04),
    0 4px 12px rgba(26, 26, 46, 0.06),
    0 12px 28px rgba(26, 26, 46, 0.06);
  --shadow-hover:
    0 2px 4px rgba(26, 26, 46, 0.05),
    0 10px 22px rgba(26, 26, 46, 0.08),
    0 24px 48px rgba(26, 26, 46, 0.10);
  --shadow-lg:
    0 2px 6px rgba(26, 26, 46, 0.06),
    0 16px 36px rgba(26, 26, 46, 0.09),
    0 36px 70px rgba(26, 26, 46, 0.10);
  --shadow-featured:
    0 4px 10px rgba(27, 108, 168, 0.10),
    0 18px 42px rgba(27, 108, 168, 0.14),
    0 40px 80px rgba(27, 108, 168, 0.12);
  --shadow-inset-top: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  --shadow-inset-soft: inset 0 1px 0 rgba(255, 255, 255, 0.7);

  --radius-card: 20px;
  --radius-soft: 14px;
  --radius-btn: 50px;
  --max-width: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --transition: 0.35s var(--ease);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

/* No native smooth-scroll: JS lerp in main.js drives the desktop scroll.
   Leaving this on causes the browser to animate each scrollTo() call,
   which fights the JS smoother and produces visible jitter. */
html { scroll-behavior: auto; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.95rem, 4.2vw, 2.85rem); letter-spacing: -0.024em; }
h3 { font-size: clamp(1.3rem, 2.6vw, 1.6rem); letter-spacing: -0.014em; }

p { color: var(--text-soft); }

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-dark); }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: clamp(72px, 9vw, 120px) 0; }
.section-soft {
  background: var(--bg-soft);
  background-image:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.7), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(220, 235, 248, 0.6), transparent 55%);
}

/* ---------- Page fade ---------- */
body { animation: pageFadeIn 0.45s ease-out; }
body.is-leaving { animation: pageFadeOut 0.3s ease-in forwards; }
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pageFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-8px); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 2px solid transparent;
  border-radius: var(--radius-btn);
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), background-color var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition);
  white-space: nowrap;
  position: relative;
}
/* Subtle arrow nudge on hover when the label ends with "→" */
.btn { will-change: transform; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); transition-duration: 0.12s; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 4px 10px rgba(27, 108, 168, 0.22),
    0 10px 24px rgba(27, 108, 168, 0.20);
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 6px 14px rgba(20, 90, 138, 0.28),
    0 16px 36px rgba(27, 108, 168, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(27, 108, 168, 0.18);
}

.btn-white {
  background: #fff;
  color: var(--accent);
  box-shadow:
    0 1px 0 rgba(26, 26, 46, 0.04) inset,
    0 6px 18px rgba(26, 26, 46, 0.18);
}
.btn-white:hover {
  background: var(--accent-light);
  box-shadow:
    0 1px 0 rgba(26, 26, 46, 0.04) inset,
    0 10px 28px rgba(26, 26, 46, 0.24);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.9);
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}

.btn-full { width: 100%; }

/* ============================================
   NAVIGATION
============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  padding: 18px 0;
  transition: padding var(--transition), background-color var(--transition), box-shadow var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.86);
  border-bottom-color: rgba(26, 26, 46, 0.06);
  box-shadow:
    0 1px 0 rgba(26, 26, 46, 0.02),
    0 6px 18px rgba(26, 26, 46, 0.06),
    0 18px 40px rgba(26, 26, 46, 0.05);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform var(--transition);
}
.nav-logo:hover { transform: translateY(-1px); }
.nav-logo .logo-accent { color: var(--accent); }
.logo-check {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(27, 108, 168, 0.28));
  transition: filter var(--transition), transform var(--transition);
}
.nav-logo:hover .logo-check {
  filter: drop-shadow(0 6px 14px rgba(27, 108, 168, 0.4));
  transform: rotate(-4deg);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after {
  transform: scaleX(1);
}
.nav-links a:not(.nav-cta):hover { color: var(--accent); }

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 12px 26px !important;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.005em;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16) inset,
    0 4px 10px rgba(27, 108, 168, 0.20),
    0 8px 18px rgba(27, 108, 168, 0.15);
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.nav-cta:hover {
  background: var(--accent-dark);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16) inset,
    0 6px 14px rgba(20, 90, 138, 0.26),
    0 12px 26px rgba(27, 108, 168, 0.22);
}
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 130px 0 120px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero > .container {
  max-width: 1500px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -10% -20% auto auto;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle at center, var(--accent-glow), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto auto -20% -15%;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(circle at center, rgba(232, 244, 253, 0.7), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: auto; display: block; }

.hero-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 6.6vw, 5.2rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}
.hero-content .accent-word { color: var(--accent); }

.hero-subtitle {
  font-size: clamp(1.15rem, 1.4vw, 1.35rem);
  line-height: 1.5;
  margin-bottom: 44px;
  color: var(--text-soft);
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -100px;
}

/* Soft accent halo behind the photo */
.hero-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 780px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 65%);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  border-radius: 40px;
  background: var(--bg-soft);
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 4px 10px rgba(26, 26, 46, 0.06),
    0 24px 50px rgba(26, 26, 46, 0.12),
    0 60px 100px rgba(26, 26, 46, 0.10);
  transform: rotate(-3deg);
  z-index: 1;
  transition: transform var(--transition), box-shadow var(--transition);
  line-height: 0;
}
.hero-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
  pointer-events: none;
}
.hero-photo-wrap:hover {
  transform: rotate(-1.5deg) translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 4px 10px rgba(26, 26, 46, 0.08),
    0 24px 48px rgba(26, 26, 46, 0.12),
    0 50px 90px rgba(26, 26, 46, 0.12);
}
.hero-photo-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-mascot {
  position: absolute;
  right: -90px;
  bottom: -20px;
  width: 400px;
  z-index: 3;
  filter: drop-shadow(0 24px 40px rgba(26, 26, 46, 0.2));
}

/* Speech bubble */
.speech-bubble {
  position: absolute;
  background: #fff;
  border: 2px solid var(--accent);
  padding: 12px 20px;
  border-radius: 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.005em;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 6px 16px rgba(27, 108, 168, 0.16),
    0 18px 40px rgba(26, 26, 46, 0.10);
  white-space: nowrap;
  z-index: 4;
}
.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--accent);
}
.speech-bubble::before {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 32px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
  z-index: 1;
}

.hero-bubble {
  top: 20px;
  right: 80px;
}

/* ============================================
   STATS BAR
============================================ */
.stats-bar {
  background: var(--text);
  background-image:
    radial-gradient(circle at 15% 20%, rgba(27, 108, 168, 0.22), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(27, 108, 168, 0.16), transparent 55%);
  color: #fff;
  padding: 64px 0;
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
  position: relative;
}
.stats-grid .stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  pointer-events: none;
}
.stats-grid .stat-item {
  position: relative;
  padding: 0 20px;
}
.stats-grid .stat-item:nth-child(1)::after { right: 0; }
.stats-grid .stat-item:nth-child(2)::after { right: 0; }
.stat-item .stat-icon { font-size: 2.2rem; margin-bottom: 10px; line-height: 1; }
.stat-item .stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.05;
}
.stat-item .stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.005em;
}

/* ============================================
   SECTION HEADERS
============================================ */
.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-header h2 { margin-bottom: 20px; }
.section-header p {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-soft);
}
.section-tag {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--accent);
  padding: 7px 18px;
  border-radius: var(--radius-btn);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 1px 2px rgba(27, 108, 168, 0.08),
    0 4px 12px rgba(27, 108, 168, 0.10);
}

/* ============================================
   ABOUT SHORT (home)
============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}
.about-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 32px;
  background: var(--bg-soft);
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 4px 12px rgba(26, 26, 46, 0.06),
    0 22px 50px rgba(26, 26, 46, 0.10),
    0 50px 90px rgba(26, 26, 46, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  pointer-events: none;
}
.about-image:hover {
  transform: translateY(-4px);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content h2 { margin-bottom: 24px; }
.about-content p { margin-bottom: 18px; font-size: 1.05rem; line-height: 1.65; }
.about-content .btn { margin-top: 22px; }

/* ============================================
   SERVICES
============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.service-card {
  background: #fff;
  border: 1px solid rgba(26, 26, 46, 0.06);
  padding: 44px 36px 40px;
  border-radius: var(--radius-card);
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(232, 244, 253, 0.5), transparent 35%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: rgba(27, 108, 168, 0.18);
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  font-size: 2.4rem;
  margin-bottom: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  background: var(--bg-soft);
  border-radius: 50%;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 1px 2px rgba(27, 108, 168, 0.06),
    0 6px 16px rgba(27, 108, 168, 0.10);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover .service-icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 2px 4px rgba(27, 108, 168, 0.08),
    0 10px 24px rgba(27, 108, 168, 0.16);
}
.service-card h3 { margin-bottom: 14px; }
.service-card p { line-height: 1.65; }

/* ============================================
   REVIEWS
============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 56px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 38px 34px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(26, 26, 46, 0.04);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card::before {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: 0 0 3px 3px;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.review-card:hover::before { opacity: 0.6; }
.review-stars {
  color: #FFB400;
  font-size: 1.05rem;
  margin-bottom: 18px;
  letter-spacing: 2px;
}
.review-text {
  font-style: italic;
  color: var(--text);
  margin-bottom: 22px;
  font-size: 1.02rem;
  line-height: 1.7;
}
.review-author {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: -0.005em;
}
.reviews-cta { text-align: center; }

/* ============================================
   USPs (Waarom)
============================================ */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.usp-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 36px 32px;
  background: var(--bg-soft);
  border-radius: var(--radius-card);
  border: 1px solid rgba(27, 108, 168, 0.08);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 1px 2px rgba(27, 108, 168, 0.04);
}
.usp-card:hover {
  transform: translateY(-5px);
  border-color: rgba(27, 108, 168, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 6px 16px rgba(27, 108, 168, 0.10),
    0 22px 44px rgba(26, 26, 46, 0.08);
}
.usp-icon {
  font-size: 1.85rem;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 2px 4px rgba(27, 108, 168, 0.06),
    0 8px 18px rgba(27, 108, 168, 0.10);
}
.usp-content h3 { margin-bottom: 10px; font-size: 1.2rem; }
.usp-content p { font-size: 0.97rem; line-height: 1.6; }

/* ============================================
   CTA STRIP
============================================ */
.cta-strip {
  background: var(--text);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(27, 108, 168, 0.28), transparent 55%),
    radial-gradient(circle at 80% 75%, rgba(27, 108, 168, 0.18), transparent 60%);
  color: #fff;
  padding: 92px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}
.cta-strip::before {
  content: '';
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(circle at center, rgba(27, 108, 168, 0.35), transparent 60%);
  filter: blur(40px);
  inset: auto -10% -50% auto;
  pointer-events: none;
}
.cta-strip .container { position: relative; z-index: 1; }
.cta-strip h2 {
  color: #fff;
  margin-bottom: 36px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.18;
  letter-spacing: -0.025em;
}
.cta-strip-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   PAGE HERO (sub-pages)
============================================ */
.page-hero {
  background: var(--bg-soft);
  background-image:
    radial-gradient(ellipse at 10% 0%, rgba(255, 255, 255, 0.85), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(220, 235, 248, 0.6), transparent 55%);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 -1px 0 rgba(27, 108, 168, 0.06);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: auto auto -30% -10%;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(27, 108, 168, 0.10), transparent 65%);
  pointer-events: none;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.page-hero h1 { margin-bottom: 20px; }
.page-hero p { font-size: 1.18rem; line-height: 1.6; max-width: 540px; color: var(--text-soft); }
.page-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.page-hero-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 380px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 108, 168, 0.10), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
}
.page-hero-photo {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  border-radius: 32px;
  background: #fff;
  overflow: hidden;
  z-index: 1;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 4px 12px rgba(26, 26, 46, 0.06),
    0 22px 50px rgba(26, 26, 46, 0.10),
    0 50px 90px rgba(26, 26, 46, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.page-hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  pointer-events: none;
}
.page-hero-photo:hover { transform: translateY(-4px); }
.page-hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.page-mascot {
  position: absolute;
  width: 180px;
  bottom: -10px;
  right: -30px;
  filter: drop-shadow(0 12px 18px rgba(26, 26, 46, 0.12));
  z-index: 2;
}

/* ============================================
   BIO (over ons)
============================================ */
.bio-section { background: #fff; }
.bio-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.bio-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 22px;
  text-align: left;
  color: var(--text-soft);
}
.bio-content p strong { color: var(--text); font-weight: 600; }

.style-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin-top: 56px;
}
@media (max-width: 1080px) {
  .style-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}
.style-card {
  background: var(--bg-soft);
  padding: 36px 30px;
  border-radius: var(--radius-card);
  text-align: center;
  border: 1px solid rgba(27, 108, 168, 0.08);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 1px 2px rgba(27, 108, 168, 0.04);
}
.style-card:hover {
  transform: translateY(-5px);
  border-color: rgba(27, 108, 168, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 6px 14px rgba(27, 108, 168, 0.10),
    0 22px 44px rgba(26, 26, 46, 0.08);
}
.style-card .style-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: #fff;
  border-radius: 50%;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 2px 4px rgba(27, 108, 168, 0.06),
    0 8px 18px rgba(27, 108, 168, 0.10);
}
.style-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.style-card p { font-size: 0.97rem; line-height: 1.6; }

/* ============================================
   PERSON SECTIONS (over-ons)
============================================ */
.person-section { padding: clamp(72px, 9vw, 110px) 0; }

.person-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.person-grid--reverse { grid-template-columns: 1.15fr 1fr; }

.person-photo {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  border-radius: 32px;
  background: var(--bg-soft);
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 4px 12px rgba(26, 26, 46, 0.06),
    0 22px 50px rgba(26, 26, 46, 0.10),
    0 50px 90px rgba(26, 26, 46, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  justify-self: center;
}
.person-grid--reverse .person-photo { justify-self: center; }
.person-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  pointer-events: none;
}
.person-photo:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 6px 16px rgba(26, 26, 46, 0.08),
    0 26px 56px rgba(26, 26, 46, 0.12),
    0 60px 100px rgba(26, 26, 46, 0.10);
}
.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.person-content h2 { margin-bottom: 8px; font-size: clamp(2rem, 3.6vw, 2.6rem); }
.person-content .section-tag { margin-bottom: 20px; }
.person-role {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 22px;
  letter-spacing: -0.005em;
}
.person-content p { margin-bottom: 18px; font-size: 1.05rem; line-height: 1.7; }

.person-facts {
  list-style: none;
  margin-top: 28px;
  padding: 0;
}
.person-facts li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  font-size: 0.98rem;
  color: var(--text);
  border-bottom: 1px dashed rgba(26, 26, 46, 0.08);
}
.person-facts li:last-child { border-bottom: none; }
.person-facts .fact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 2px 4px rgba(27, 108, 168, 0.06),
    0 8px 16px rgba(27, 108, 168, 0.10);
}

/* Wider hero photo variant for group shot on Over Ons */
.page-hero-photo--wide {
  max-width: 520px;
  aspect-ratio: 16 / 10;
}

/* ============================================
   PRICING
============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
  align-items: stretch;
  max-width: 820px;
  margin: 0 auto;
}
.pricing-card {
  background: #fff;
  border: 1px solid rgba(26, 26, 46, 0.06);
  border-radius: var(--radius-card);
  padding: 44px 32px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
}
.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(27, 108, 168, 0.18);
  box-shadow: var(--shadow-hover);
}
.pricing-card.featured {
  border-color: rgba(27, 108, 168, 0.35);
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 55%);
  transform: scale(1.04);
  box-shadow: var(--shadow-featured);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-8px); box-shadow: var(--shadow-featured), 0 30px 60px rgba(27, 108, 168, 0.14); }

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 8px 20px;
  border-radius: var(--radius-btn);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 4px 10px rgba(27, 108, 168, 0.30),
    0 10px 20px rgba(27, 108, 168, 0.22);
}

.pricing-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.018em;
  margin-bottom: 6px;
}
.pricing-price {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 30px;
}
.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}
.pricing-features li {
  padding: 10px 0;
  font-size: 0.96rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}
.pricing-features li .check {
  color: #2ec27e;
  flex-shrink: 0;
  font-weight: 700;
}
.pricing-features li .cross {
  color: #c0392b;
  flex-shrink: 0;
  font-weight: 700;
}
.pricing-features li.disabled { color: #999; }

.pricing-disclaimer {
  text-align: center;
  margin-top: 56px;
  font-size: 0.95rem;
  color: var(--text-soft);
  font-style: italic;
}

/* ----- Losse tarieven table ----- */
.rate-card {
  background: #fff;
  border: 1px solid rgba(26, 26, 46, 0.06);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  max-width: 520px;
  margin: 48px auto 0;
  padding: 10px 32px;
}
.rate-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-align: center;
  padding: 22px 0 12px;
}
.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid rgba(26, 26, 46, 0.07);
  font-size: 0.98rem;
}
.rate-row .rate-name { color: var(--text); }
.rate-row .rate-price {
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}

.pricing-section { position: relative; }
.pricing-mascot {
  position: absolute;
  width: 160px;
  right: -20px;
  bottom: 20px;
  filter: drop-shadow(0 12px 22px rgba(26, 26, 46, 0.12));
}

/* ============================================
   FAQ
============================================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius-card);
  margin-bottom: 18px;
  border: 1px solid rgba(26, 26, 46, 0.04);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-card); }
.faq-item.open {
  border-color: rgba(27, 108, 168, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 6px 16px rgba(27, 108, 168, 0.08),
    0 22px 44px rgba(26, 26, 46, 0.08);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.faq-question .faq-icon {
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transition: transform var(--transition), background-color var(--transition), color var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.45s var(--ease);
  padding: 0 28px;
}
.faq-item.open .faq-answer {
  max-height: 360px;
  padding: 0 28px 26px;
}
.faq-answer p { font-size: 1rem; line-height: 1.65; color: var(--text-soft); }

/* ============================================
   CONTACT
============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.contact-info {
  position: relative;
}
.contact-info h2 { margin-bottom: 18px; }
.contact-info > p { margin-bottom: 36px; font-size: 1.05rem; line-height: 1.65; }
.contact-list {
  list-style: none;
  margin-bottom: 36px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  font-size: 1rem;
  color: var(--text);
  border-bottom: 1px dashed rgba(26, 26, 46, 0.08);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list .contact-icon {
  width: 46px;
  height: 46px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 2px 4px rgba(27, 108, 168, 0.06),
    0 8px 16px rgba(27, 108, 168, 0.10);
}
.contact-list a { color: var(--text); transition: color var(--transition); }
.contact-list a:hover { color: var(--accent); }

.contact-mascot-wrap {
  position: relative;
  margin-bottom: 36px;
  display: flex;
  align-items: flex-end;
  gap: 24px;
}
.contact-mascot {
  width: 200px;
  flex-shrink: 0;
  filter: drop-shadow(0 14px 22px rgba(26, 26, 46, 0.12));
}
.contact-bubble {
  position: relative;
  background: #fff;
  border: 2px solid var(--accent);
  padding: 16px 22px;
  border-radius: 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--text);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 6px 14px rgba(27, 108, 168, 0.14),
    0 18px 38px rgba(26, 26, 46, 0.10);
  margin-bottom: 24px;
}
.contact-bubble::after {
  content: '';
  position: absolute;
  left: -10px;
  bottom: 16px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 10px solid var(--accent);
}

.map-embed {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 2px 6px rgba(26, 26, 46, 0.04),
    0 16px 36px rgba(26, 26, 46, 0.08);
  border: 1px solid rgba(26, 26, 46, 0.04);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Form */
.contact-form {
  background: #fff;
  padding: 48px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(26, 26, 46, 0.04);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 2px 6px rgba(26, 26, 46, 0.04),
    0 16px 36px rgba(26, 26, 46, 0.08),
    0 40px 80px rgba(26, 26, 46, 0.06);
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 36px; right: 36px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 0 0 3px 3px;
}
.form-group {
  margin-bottom: 22px;
}
.form-group label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 18px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  border: 1.5px solid rgba(26, 26, 46, 0.1);
  border-radius: 14px;
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(27, 108, 168, 0.35);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(27, 108, 168, 0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; line-height: 1.55; }

.form-success {
  display: none;
  background: #e9f8ef;
  color: #1b6b3a;
  padding: 18px 22px;
  border-radius: 14px;
  margin-top: 18px;
  text-align: center;
  font-weight: 600;
  border-left: 4px solid #2ec27e;
  box-shadow: 0 4px 12px rgba(46, 194, 126, 0.12);
}
.form-success.show { display: block; }

.form-error {
  display: none;
  background: #fdecea;
  color: #a12a1c;
  padding: 18px 22px;
  border-radius: 14px;
  margin-top: 18px;
  text-align: center;
  font-weight: 600;
  border-left: 4px solid #e74c3c;
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.12);
}
.form-error.show { display: block; }

/* ============================================
   WHATSAPP FAB
============================================ */
.whatsapp-fab {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 62px;
  height: 62px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 6px 16px rgba(37, 211, 102, 0.36),
    0 16px 36px rgba(37, 211, 102, 0.22);
  z-index: 1000;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-fab:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 10px 24px rgba(37, 211, 102, 0.42),
    0 22px 50px rgba(37, 211, 102, 0.28);
}
.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  animation: pulse 2s infinite;
  z-index: -1;
}
.whatsapp-fab svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
.whatsapp-fab .tooltip {
  position: absolute;
  right: 76px;
  background: var(--text);
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity var(--transition), transform var(--transition);
  box-shadow:
    0 4px 12px rgba(26, 26, 46, 0.18),
    0 14px 30px rgba(26, 26, 46, 0.16);
}
.whatsapp-fab .tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid var(--text);
}
.whatsapp-fab:hover .tooltip { opacity: 1; transform: translateX(0); }

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--text);
  background-image:
    radial-gradient(ellipse at 0% 0%, rgba(27, 108, 168, 0.18), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(27, 108, 168, 0.12), transparent 50%);
  color: #fff;
  padding: 96px 0 0;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
  display: inline-block;
}
.footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.footer-brand .logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.55rem;
  margin-bottom: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.02em;
}
.footer-brand .logo-accent { color: var(--accent); }
.footer-brand .logo-check {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 4px 8px rgba(27, 108, 168, 0.4));
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 28ch;
}
.footer-list { list-style: none; }
.footer-list li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.96rem;
}
.footer-list a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.96rem;
  transition: color var(--transition);
  position: relative;
}
.footer-list a:hover { color: #fff; }
.footer-list a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.footer-list a:hover::after { transform: scaleX(1); }

.social-icons {
  display: flex;
  gap: 12px;
}
.social-icons a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.social-icons a:hover {
  background: var(--accent);
  transform: translateY(-2px);
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(27, 108, 168, 0.4);
}
.social-icons svg { width: 18px; height: 18px; fill: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
}
.footer-bottom a:hover { color: var(--accent); border-color: rgba(27, 108, 168, 0.4); }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 968px) {
  .hero-grid,
  .about-grid,
  .page-hero-grid,
  .contact-grid,
  .person-grid,
  .person-grid--reverse {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  /* On mobile, always show the photo first for both variants */
  .person-grid--reverse .person-photo { order: -1; }
  .person-photo { max-width: 380px; }
  .page-hero-photo--wide { max-width: 460px; }

  .hero { padding: 130px 0 90px; min-height: auto; display: block; }
  .hero > .container { max-width: var(--max-width); }
  .hero-content h1 { font-size: clamp(2.5rem, 8vw, 4rem); }
  .hero-visual { margin-right: 0; }
  .hero-photo-wrap { max-width: 460px; }
  .hero-mascot { width: 240px; right: -10px; }

  .usp-grid { grid-template-columns: 1fr; }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-8px); box-shadow: var(--shadow-featured); }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .page-hero { padding: 140px 0 72px; }
  .page-mascot { width: 140px; right: 0; }
  .contact-form { padding: 36px 28px; }
}

@media (max-width: 640px) {
  section { padding: 68px 0; }
  .container { padding: 0 22px; }
  .hero { padding: 110px 0 70px; min-height: auto; display: block; }
  .hero-content h1 { font-size: clamp(2.1rem, 9vw, 3rem); }
  .hero-visual { margin-right: 0; }
  .hero-photo-wrap { max-width: 340px; }
  .hero-mascot { width: 190px; }
  .stats-bar { padding: 48px 0; }
  .stat-item .stat-value { font-size: 2rem; }
  .stats-grid .stat-item::after { display: none; }
  .cta-strip { padding: 72px 0; }
  .service-card { padding: 36px 26px 32px; }
  .review-card { padding: 32px 26px; }
  .usp-card { padding: 28px 24px; }
  .style-card { padding: 28px 24px; }
  .pricing-card { padding: 36px 24px 28px; }
  .faq-question { padding: 20px 22px; font-size: 0.98rem; }
  .faq-item.open .faq-answer { padding: 0 22px 22px; }
  .footer { padding-top: 72px; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
    transition: right var(--transition);
  }
  .nav-links.active { right: 0; }
  .nav-links a { font-size: 1.2rem; }
  .hamburger { display: flex; }

  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }

  .stats-grid { grid-template-columns: 1fr; gap: 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .contact-form { padding: 28px 20px; }

  .cta-strip-buttons { flex-direction: column; align-items: stretch; }
  .cta-strip-buttons .btn { width: 100%; }

  .contact-mascot-wrap { flex-direction: column; align-items: flex-start; gap: 0; }
  .contact-mascot { width: 160px; }

  .pricing-mascot { display: none; }

  .hero-bubble { right: 40px; }

  .speech-bubble { font-size: 0.85rem; padding: 8px 14px; }

  .whatsapp-fab { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .whatsapp-fab svg { width: 28px; height: 28px; }
}
