/* ============================================
   Easy Connect ICT — Light Modern Stylesheet
   ============================================ */

:root {
  --primary:       #0f172a;
  --primary-med:   #1e3a5f;
  --accent:        #0066cc;
  --accent-hover:  #0052a3;
  --accent-green:  #10b981;
  --accent-purple: #7f2d72;
  --accent-purple-hover: #6a2560;
  --bg:            #ffffff;
  --bg-light:      #f8fafc;
  --bg-muted:      #f1f5f9;
  --text:          #0f172a;
  --text-muted:    #64748b;
  --text-light:    #94a3b8;
  --border:        #e2e8f0;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow:        0 4px 24px rgba(0,0,0,.08);
  --shadow-md:     0 8px 40px rgba(0,0,0,.12);
  --shadow-lg:     0 16px 60px rgba(0,0,0,.16);
  --shadow-card:   0 2px 8px rgba(0,0,0,.06), 0 8px 32px rgba(0,0,0,.08);
  --radius:        16px;
  --radius-sm:     10px;
  --radius-xs:     6px;
  --transition:    all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

p { color: var(--text-muted); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.text-accent  { color: var(--accent); }
.text-purple  { color: var(--accent-purple); }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section-light { background: var(--bg-light); }
.section-white { background: var(--bg); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-title { margin: 12px 0 16px; }
.section-sub { font-size: 1.05rem; }

/* ============================================
   BADGES / LABELS
   ============================================ */
.section-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-purple);
  background: rgba(127, 45, 114, 0.08);
  border: 1px solid rgba(127, 45, 114, 0.2);
  padding: 6px 18px;
  border-radius: 50px;
}

.badge-white {
  color: #fff;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(0,102,204,.3);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,102,204,.4);
}

.btn-outline-primary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline-primary:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
}

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

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal,
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.visible,
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: height 0.4s ease, filter 0.4s ease;
}

#navbar.scrolled .logo-img {
  height: 40px;
  filter: none;
}

.logo-fallback {
  display: none;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.1;
  color: #fff;
  transition: color 0.4s ease;
}
.logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,.65);
  transition: color 0.4s ease;
}

#navbar.scrolled .logo-name { color: var(--primary); }
#navbar.scrolled .logo-tagline { color: var(--text-muted); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  padding: 8px 12px;
  border-radius: var(--radius-xs);
  transition: var(--transition);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.1); }

#navbar.scrolled .nav-links a { color: var(--text); }
#navbar.scrolled .nav-links a:hover { color: var(--accent); background: rgba(0,102,204,.06); }

.nav-cta {
  background: var(--accent-purple) !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 16px rgba(127,45,114,.3);
}
.nav-cta:hover {
  background: var(--accent-purple-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(127,45,114,.4) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

#navbar.scrolled .hamburger span { background: var(--primary); }

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 8s ease;
}

#hero.loaded .hero-photo { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 20, 50, 0.88) 0%,
    rgba(0, 40, 100, 0.72) 50%,
    rgba(0, 80, 160, 0.6) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  bottom: -10px;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.4);
  animation: rise linear infinite;
}

@keyframes rise {
  0%   { bottom: -10px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { bottom: 110%; opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 140px 0 120px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(16,185,129,.25);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,.25); }
  50%       { box-shadow: 0 0 0 8px rgba(16,185,129,.08); }
}

#hero h1 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-accent {
  color: var(--accent-purple);
  position: relative;
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,.78);
  max-width: 600px;
  margin-bottom: 20px;
  line-height: 1.75;
}

.hero-typewriter {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
}

.hero-typewriter strong {
  color: var(--accent);
  font-weight: 600;
}

.cursor {
  color: var(--accent);
  border-right: 2px solid var(--accent);
  margin-left: 2px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 24px 32px;
  width: fit-content;
}

.stat-item {
  text-align: center;
  padding: 0 28px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

.stat-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  letter-spacing: 0.02em;
}

/* Wave divider */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ============================================
   TRUSTED BY
   ============================================ */
#trusted {
  background: #fff;
  padding: 32px 0 64px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.trusted-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 52px;
}

.trusted-track-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.trusted-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marquee 65s linear infinite;
}

.trusted-track-wrapper:hover .trusted-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.trusted-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: default;
  width: 200px;
  height: 68px;
  position: relative;
}

.trusted-tooltip {
  position: absolute;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s;
  z-index: 20;
}

.trusted-tooltip.visible {
  opacity: 1;
}

.trusted-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.3s;
  pointer-events: none;
  user-select: none;
}

.trusted-logo:hover img {
  filter: grayscale(0%) opacity(1);
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  cursor: default;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,102,204,.15);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--ic);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--icf);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-weight: 700;
}

.service-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
  margin-top: auto;
}
.service-link:hover { gap: 8px; }
.service-link span { transition: transform 0.2s; }
.service-link:hover span { transform: translateX(3px); }

/* ============================================
   FEATURE PHOTO SECTION
   ============================================ */
.feature-photo-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.feature-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.feature-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,20,50,.9) 0%, rgba(10,20,80,.7) 60%, transparent 100%);
}

.feature-photo-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 560px;
  padding: 80px 0;
}

.feature-photo-content .section-badge { margin-bottom: 20px; }

.feature-photo-content h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 16px 0 20px;
}

.feature-photo-content p {
  color: rgba(255,255,255,.78);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* ============================================
   WAAROM / WHY US
   ============================================ */
.waarom-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.waarom-text .section-badge { margin-bottom: 16px; }
.waarom-text .section-title { margin: 12px 0 16px; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.waarom-text .section-sub { margin-bottom: 40px; }

.waarom-features { display: flex; flex-direction: column; gap: 28px; }

.waarom-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.wf-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(0,102,204,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wf-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
}

.wf-text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.wf-text p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Metrics grid */
.waarom-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.metric-card {
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mc-primary {
  background: var(--accent);
  color: #fff;
  grid-column: span 1;
}

.mc-accent {
  background: var(--primary);
  color: #fff;
}

.mc-light {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.mc-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: inherit;
}

.mc-primary .mc-number,
.mc-accent .mc-number { color: #fff; }

.mc-light .mc-number { color: var(--primary); }

.mc-label {
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0.75;
}

.mc-primary .mc-label,
.mc-accent .mc-label { color: rgba(255,255,255,.8); opacity: 1; }

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.pricing-card:hover { box-shadow: var(--shadow-lg); }

.pricing-card-featured {
  border-color: var(--accent-purple);
  box-shadow: 0 8px 40px rgba(127,45,114,.15);
  transform: scale(1.03);
}

.pricing-card-featured:hover { transform: scale(1.05); }

.pc-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-purple);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,102,204,.3);
}

.pc-header { margin-bottom: 28px; }

.pc-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pc-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 12px 0 10px;
}

.pc-currency {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  align-self: flex-start;
  margin-top: 8px;
}

.pc-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.pc-per {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.pc-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.pc-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pc-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
}

.pc-features svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--accent-green);
}

.pc-inactive {
  color: var(--text-light) !important;
}
.pc-inactive svg { stroke: #cbd5e1 !important; }

/* ============================================
   AANPAK / APPROACH
   ============================================ */
.aanpak-steps {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 16px;
}

.aanpak-step {
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.aanpak-step-reverse {
  direction: rtl;
}
.aanpak-step-reverse > * { direction: ltr; }

.as-number {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(0,102,204,.12);
  line-height: 1;
  white-space: nowrap;
}

.as-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(0,102,204,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.as-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent);
}

.as-content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.as-content p { font-size: 0.95rem; line-height: 1.75; }

.as-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}

.as-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.aanpak-step:hover .as-image img { transform: scale(1.04); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.tc-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.tc-quote {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  flex: 1;
  margin-bottom: 24px;
  position: relative;
}

.tc-quote::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: rgba(0,102,204,.1);
  position: absolute;
  top: -20px;
  left: -10px;
  line-height: 1;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.tc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--av);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tc-info strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.tc-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cta-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,40,100,.92) 0%, rgba(0,102,204,.8) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 0;
}

.cta-content h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-badge { margin-bottom: 16px; }
.contact-info .section-title { font-size: clamp(1.7rem, 3vw, 2.2rem); margin: 12px 0 16px; }
.contact-info .section-sub { margin-bottom: 40px; }

.contact-details { display: flex; flex-direction: column; gap: 24px; }

.cd-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cd-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(0,102,204,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cd-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
}

.cd-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.cd-item span,
.cd-item a {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.cd-item a:hover { color: var(--accent); }

/* Contact form */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

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

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.form-group input,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,102,204,.1);
  background: #fff;
}

.form-group textarea { min-height: 130px; }

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

.form-success {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.25);
  border-radius: var(--radius-sm);
  color: #065f46;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-success svg { stroke: #059669; flex-shrink: 0; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--primary);
  color: rgba(255,255,255,.7);
}

.footer-top { padding: 80px 0 60px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

/* Brand column */
.footer-brand {}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo-name {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.1;
}

.footer-logo-tag {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,.55);
  margin-bottom: 28px;
  max-width: 340px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-xs);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}

.social-link svg { width: 16px; height: 16px; }

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.footer-cert {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cert-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.15);
  padding: 4px 12px;
  border-radius: 50px;
}

/* Footer columns */
.footer-col {}

.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--accent-purple);
  transition: width 0.2s;
  flex-shrink: 0;
}

.footer-links a:hover { color: #fff; }
.footer-links a:hover::before { width: 12px; }

/* Footer contact */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
}

.footer-contact-list svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent-purple);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-list a {
  color: rgba(255,255,255,.55);
  transition: color 0.2s;
}

.footer-contact-list a:hover { color: #fff; }

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,.35);
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: #fff; }

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
#scrollTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,102,204,.35);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}

#scrollTop:hover { background: var(--accent-hover); }
#scrollTop.visible { opacity: 1; transform: translateY(0); }

#scrollTop svg { width: 20px; height: 20px; }

/* ============================================
   COOKIE BANNER
   ============================================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--primary);
  border-top: 2px solid var(--accent);
  padding: 16px 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#cookie-banner.show { transform: translateY(0); }

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-content svg {
  stroke: var(--accent);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.cookie-content p {
  font-size: 0.88rem;
  color: rgba(255,255,255,.75);
  flex: 1;
  min-width: 200px;
}

.cookie-content a { color: var(--accent); text-decoration: underline; }

.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

#cookie-accept,
#cookie-decline {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

#cookie-accept {
  background: var(--accent);
  color: #fff;
}
#cookie-accept:hover { background: var(--accent-hover); }

#cookie-decline {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.75);
}
#cookie-decline:hover { background: rgba(255,255,255,.18); }

/* ============================================
   RESPONSIVE — TABLET (900px)
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid  { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card-featured { transform: scale(1); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .waarom-split { grid-template-columns: 1fr; gap: 48px; }
  .waarom-metrics { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  .aanpak-step { grid-template-columns: 40px 1fr; }
  .as-image { display: none; }
  .aanpak-step-reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Hamburger */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    top: 0;
    background: var(--primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 80px 24px 24px;
    z-index: 999;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links a {
    font-size: 1.2rem !important;
    padding: 12px 24px !important;
    width: 100%;
    text-align: center;
    color: rgba(255,255,255,.9) !important;
    border-radius: var(--radius-sm) !important;
  }

  .nav-cta {
    width: auto !important;
    margin-top: 8px;
  }

  /* Hero */
  .hero-stats {
    padding: 18px 20px;
    gap: 0;
  }
  .stat-item { padding: 0 16px; }
  .hero-wave svg { height: 48px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-top { padding: 56px 0 40px; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-content { padding: 120px 0 100px; }
  .hero-actions { flex-direction: column; }
  .hero-stats { width: 100%; flex-wrap: wrap; gap: 16px; justify-content: center; }
  .stat-divider { display: none; }
  .stat-item { padding: 8px 20px; }
  .cta-actions { flex-direction: column; align-items: center; }
}
