@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@500;600&display=swap');

:root {
  --blue: #0043A6;
  --navy: #0a2463;
  --dark: #111111;
  --gray-50: #F8F9FB;
  --gray-100: #F1F4F8;
  --gray-200: #E5E7EB;
  --gray-500: #6B7280;
  --text: #111827;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* ── INNER CONTAINER ────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 48px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px; /* navbar + sticky tabs */
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* ── NAVBAR ─────────────────────────────── */
.navbar {
  height: 68px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo + nav-links grouped left */
.nav-left {
  display: flex;
  align-items: center;
  gap: 48px;
  align-self: stretch;
}

.nav-logo img { height: 36px; display: block; border-radius: 6px; }

.nav-links {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

/* Dropdown: back to relative so popup floats near the trigger */
.nav-links .dropdown {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.nav-links .dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
}

.nav-links .dropdown > a svg { display: none; }

.nav-links .dropdown:hover > a { color: var(--blue); }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 240px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  margin-top: 0;
}

.dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 10px 28px;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
}

.dropdown-menu a:hover { background: var(--gray-50); }

.nav-right { display: flex; align-items: center; gap: 14px; }

.flag { width: 28px; height: 20px; border-radius: 3px; }

/* ── LANGUAGE DROPDOWN ───────────────────────────── */
.lang-dropdown { position: relative; }

.lang-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  padding: 5px 10px 5px 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  transition: border-color 0.2s;
}

.lang-trigger:hover { border-color: var(--blue); }

.lang-trigger svg.flag-icon { border-radius: 3px; }

.lang-trigger .chevron {
  font-size: 10px;
  color: var(--gray-500);
  transition: transform 0.2s;
}

.lang-dropdown.open .chevron { transform: rotate(180deg); }

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 6px;
  min-width: 150px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  z-index: 200;
}

.lang-dropdown.open .lang-menu { display: block; }

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 7px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: background 0.15s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: 'Inter', sans-serif;
}

.lang-option:hover { background: var(--gray-50); }
.lang-option.active { color: var(--blue); font-weight: 600; }

.btn-nav {
  background: var(--blue);
  color: white;
  border: none;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}

.btn-nav:hover { background: #0036a3; }

/* ── HERO ─────────────────────────────── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.hero-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  color: white;
  margin-bottom: 24px;
  letter-spacing: -0.06em;
  text-align: left;
}

.hero-highlight {
  color: #5B9BFF;
}

.hero .hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  line-height: 1.6;
  text-align: left;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 52px;
  padding: 0 22px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  color: white;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.hero-visual {
  position: relative;
}

.hero-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: visible;
}

.hero-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: white;
  border-radius: 12px;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

.hero-float-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.hero-float-label {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 4px;
  font-weight: 500;
}

.hero-stats-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
}

.hero-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-item strong {
  font-size: 26px;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.hero-stat-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ── SERVICE HERO ─────────────────────────────── */
.svc-hero {
  background: white;
  padding: 112px 48px 96px;
  text-align: center;
}
.svc-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.svc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: white;
}
.svc-badge--blue  { background: #3B82F6; }
.svc-badge--green { background: #059669; }
.svc-badge--amber { background: #D97706; }
.svc-title {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1.1;
  color: var(--dark);
  margin: 0;
}
.svc-desc {
  font-size: 20px;
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 580px;
  margin: 0;
}
.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 52px;
  padding: 0 22px;
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  color: var(--dark);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost-dark:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
}

/* ── STATS BAND ──────────────────────────────── */
.stats-band {
  background: white;
  padding: 72px 0;
  text-align: center;
}

.stats-band-title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.06em;
  color: var(--dark);
  margin-bottom: 48px;
  text-align: center;
}

.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.stats-band-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stats-band-label {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.06em;
}

.stats-band-line {
  display: none;
}

.stats-band-num {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
  background: linear-gradient(135deg, #888888 0%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-band-desc {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* ── SERVICES ─────────────────────────────── */
.services {
  padding: 0 0 48px;
}

/* Title that scrolls with the page — NOT sticky */
.services-heading {
  padding: 72px 0 36px;
  margin-bottom: 0;
  text-align: left !important;
}

.services-sticky-header {
  position: sticky;
  top: 80px;
  z-index: 90;
  background: transparent;
  padding: 0 48px;
}

.services-sticky-header .container {
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  background: white;
  padding: 0;
  max-width: 1104px;
  margin: 0 auto;
}

.services-sticky-header.stuck .container {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: -0.06em;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
}
.tabs::-webkit-scrollbar { display: none; }

.tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 16px;
  border-radius: 0;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  background: transparent;
  color: var(--gray-500);
  transition: color 0.2s, background 0.2s;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
}

.tab svg { opacity: 0.45; transition: opacity 0.2s; flex-shrink: 0; }
.tab:hover svg, .tab.active svg { opacity: 1; }
.tab:hover { color: var(--dark); background: var(--gray-50); }

.tab.active {
  color: var(--dark);
  font-weight: 700;
  background: var(--gray-50);
}

.tab-content {
  display: block;
  padding-top: 40px;
  padding-bottom: 80px;
  scroll-margin-top: 130px;
}

.tab-content + .tab-content {
  border-top: 1px solid var(--gray-100);
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.service-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 28px;
}

.service-label svg { flex-shrink: 0; }

.service-tag {
  color: var(--blue);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}

.service-text h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.06em;
  line-height: 1.2;
}

.service-text > p {
  color: var(--gray-500);
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.7;
}

.checklist {
  list-style: none;
  margin-bottom: 24px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.5;
}

.checklist li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

/* ── USP SECTION ─────────────────────────────── */
.usp-section {
  background: white;
  padding: 0 0 96px;
  text-align: left;
}

.usp-section .section-title { text-align: left; }

.usp-eyebrow {
  color: var(--gray-500);
  font-size: 14px;
  margin-bottom: 10px;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 24px;
  text-align: left;
}

.usp-icon {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 12px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.usp-card {
  padding: 0;
}

.usp-card h3 {
  font-size: 20px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.06em;
  margin-bottom: 6px;
}

.usp-card p {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.7;
}

/* ── BUTTONS ─────────────────────────────── */
.btn-meer-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--blue);
  background: white;
  color: var(--blue);
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-meer-info svg path { fill: var(--blue); transition: fill 0.2s; }

.btn-meer-info:hover {
  background: var(--blue);
  color: white;
}

.btn-meer-info:hover svg path {
  fill: white;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  background: var(--blue);
  color: white;
  padding: 0 28px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}

.btn-primary:hover { background: #0036a3; }

/* ── FOOTER ─────────────────────────────── */
.footer {
  background: var(--dark);
  color: white;
  padding: 48px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 24px;
}

.footer-brand img { height: 36px; display: block; margin-bottom: 20px; }

.footer-brand-sub {
  font-size: 9px;
  letter-spacing: 4px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.2s;
}

.social-icon:hover {
  opacity: 1;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.06em;
  margin-bottom: 12px;
  color: white;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 11px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.35);
  font-size: 13px;
}

.footer-lang-dropdown { position: relative; }

.footer-lang-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 8px 14px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}

.footer-lang-trigger:hover {
  border-color: rgba(255,255,255,0.6);
  color: white;
}

.footer-lang-menu {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 6px;
  min-width: 140px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.12);
  z-index: 200;
}

.footer-lang-dropdown.open .footer-lang-menu { display: block; }

.footer-lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 9px 12px;
  border: none;
  background: none;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-align: left;
  transition: background 0.15s;
}

.footer-lang-option:hover { background: var(--gray-50); }

/* ── CONTACT PAGE ─────────────────────────────── */
.page-body {
  background: white;
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}

.contact-left-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--dark);
  margin-bottom: 36px;
}

.contact-left-sub {
  display: none;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-icon svg {
  flex-shrink: 0;
  display: block;
}

.contact-row-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 2px;
}

.contact-row-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}

.contact-row-label::after {
  content: ':';
}

.contact-row-text span:last-child {
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-500);
  line-height: 1.6;
}

.contact-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  align-self: stretch;
  width: 32px;
}

.contact-divider::before,
.contact-divider::after {
  content: '';
  flex: 1;
  width: 1px;
  background: var(--gray-200);
}

.contact-divider span {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-right {
  background: white;
  padding: 0;
}

.contact-right h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--dark);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group { margin-bottom: 16px; }
.form-row .form-group { margin-bottom: 0; }

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: white;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}

.form-group textarea {
  height: 130px;
  resize: vertical;
}

/* ── CUSTOM SELECT ─────────────────────────────── */
.custom-select { position: relative; }

.custom-select-trigger {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  color: var(--gray-500);
  transition: border-color 0.2s;
  text-align: left;
}

.custom-select-trigger.has-value { color: var(--text); }

.custom-select.open .custom-select-trigger {
  border-color: var(--blue);
  outline: none;
}

.select-chevron { flex-shrink: 0; transition: transform 0.2s; }
.custom-select.open .select-chevron { transform: rotate(180deg); }

.custom-select-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  list-style: none;
  z-index: 50;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 4px;
}

.custom-select.open .custom-select-menu { display: block; }

.custom-select-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 7px;
  cursor: pointer;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  transition: background 0.15s;
}

.custom-select-option:hover { background: var(--gray-50); }

.custom-select-option.selected { background: #eef3ff; color: var(--blue); }
.custom-select-option.selected svg path { stroke: var(--blue); }

.custom-select-option .option-icon {
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.custom-select-option.no-icon { padding-left: 44px; }

.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}

.btn-submit:hover { background: #0036a3; }

/* ── DEMONTAGE PAGE ─────────────────────────────── */
.page-hero {
  padding: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.vca-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFF3CD;
  color: #854D0E;
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.page-hero-left h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.page-hero-left > p {
  color: var(--gray-500);
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.7;
}

.werkwijze-section {
  padding: 0 80px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.werkwijze-header {
  margin-bottom: 40px;
}

.werkwijze-header h2 {
  font-size: 28px;
  font-weight: 700;
}

.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
}

.step:last-child { border-bottom: none; }

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-body p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── SVC WERKWIJZE ──────────────────────────── */
.svc-werkwijze {
  background: white;
  padding: 80px 0;
}
.svc-werkwijze-header {
  margin-bottom: 40px;
}
.svc-werkwijze-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: var(--dark);
  line-height: 1.15;
}

/* Accordion */
.svc-accordion { display: flex; flex-direction: column; }
.svc-accordion-item { border-bottom: 1px solid var(--gray-200); }
.svc-accordion-item:first-child { border-top: 1px solid var(--gray-200); }
.svc-accordion-trigger {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.svc-accordion-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #EFF6FF;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-accordion-trigger h3 {
  flex: 1;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  letter-spacing: -0.03em;
}
.svc-accordion-chevron {
  color: var(--gray-500);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.svc-accordion-item.open .svc-accordion-chevron { transform: rotate(180deg); }
.svc-accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0 0 56px;
}
.svc-accordion-item.open .svc-accordion-body {
  max-height: 300px;
  padding: 0 0 24px 56px;
}
.svc-accordion-body p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ── SVC GESCHIKT ──────────────────────────── */
.geschikt-section {
  background: white;
  padding: 80px 0;
}
.geschikt-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.geschikt-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--blue);
  margin-bottom: 12px;
}
.geschikt-left h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: var(--dark);
  line-height: 1.15;
}
.geschikt-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.geschikt-item {
  background: var(--gray-50);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.geschikt-item-check {
  width: 28px;
  height: 28px;
  background: #EFF6FF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.geschikt-item p {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.4;
  margin: 0;
}

/* ── SERVICE CTA ──────────────────────────── */
.svc-cta-section {
  padding: 0 0 80px;
  background: white;
}
.svc-cta-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 72px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.svc-cta-title {
  font-size: 28px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.06em;
  line-height: 1.2;
  margin: 0;
}
.svc-cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 500px;
  margin: 0;
}
.svc-cta-card .btn-primary {
  margin-top: 8px;
  background: #3B82F6;
}
.svc-cta-card .btn-primary:hover {
  background: #2563EB;
}

.geschikt-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.geschikt-tag {
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.geschikt-section h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}

.geschikt-list {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.geschikt-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
}

.geschikt-list li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── LEGAL PAGES ─────────────────────────────── */
.legal-hero {
  padding: 72px 48px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.legal-hero h1 {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: var(--dark);
  margin-bottom: 8px;
}

.legal-hero p {
  font-size: 15px;
  color: var(--gray-500);
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 48px 80px;
}

.legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.03em;
  margin: 48px 0 12px;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-content ul {
  margin: 0 0 14px 20px;
}

.legal-content ul li {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 4px;
}

.legal-content a {
  color: var(--blue);
  text-decoration: underline;
}

@media (max-width: 600px) {
  .legal-hero { padding: 48px 24px 32px; }
  .legal-hero h1 { font-size: 28px; }
  .legal-content { padding: 0 24px 60px; }
}

/* ── ABOUT PAGE ─────────────────────────────── */
.about-story-section {
  padding: 80px 0;
  background: white;
}

/* ── GALLERY ────────────────────────────── */
.gallery-section {
  padding: 80px 0 96px;
  background: white;
}
.gallery-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}
.gallery-title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.06em;
  color: var(--dark);
  line-height: 1.2;
}
.gallery-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  padding-top: 4px;
}
.gallery-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: white;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.gallery-btn:hover {
  background: #EFF6FF;
  border-color: var(--blue);
}
.gallery-progress-bar {
  display: none;
  height: 3px;
  background: var(--gray-200);
  border-radius: 99px;
  margin: 0 24px 20px;
  overflow: hidden;
}
.gallery-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--blue);
  border-radius: 99px;
  transition: width 0.1s ease;
}
@media (max-width: 768px) {
  .gallery-progress-bar { display: block; }
}
.gallery-track-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-left: max(48px, calc((100vw - 1200px) / 2 + 48px));
}
.gallery-track-wrap::-webkit-scrollbar {
  display: none;
}
.gallery-spacer {
  flex: 0 0 max(28px, calc((100vw - 1200px) / 2 + 28px));
  pointer-events: none;
}
.gallery-track {
  display: flex;
  gap: 20px;
}
.gallery-item {
  flex: 0 0 405px;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (hover: hover) {
  .gallery-item img {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .gallery-item:hover img {
    transform: scale(1.06);
  }
  .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
    border-radius: 16px;
    pointer-events: none;
  }
  .gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.12);
  }
}
@media (max-width: 768px) {
  .gallery-track-wrap { padding-left: 24px; }
  .gallery-spacer { flex: 0 0 4px; }
  .gallery-item { flex: 0 0 340px; }
  .gallery-nav { display: none; }
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-tag {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--blue);
  margin-bottom: 14px;
}

.about-story-text h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-story-text p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 14px;
}

.about-story-img img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
}

@media (max-width: 768px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-story-section { padding: 56px 0; }
}

/* ── HAMBURGER MENU ─────────────────────────────── */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger svg {
  width: 24px;
  height: 48px;
  display: block;
}

.hamburger svg path {
  transition: opacity 0.25s ease;
}

/* X paths (4 & 5) hidden by default */
.hamburger svg path:nth-child(4),
.hamburger svg path:nth-child(5) { opacity: 0; }

/* Open: fade hamburger out, fade X in */
.hamburger.open svg path:nth-child(1),
.hamburger.open svg path:nth-child(2),
.hamburger.open svg path:nth-child(3) { opacity: 0; }
.hamburger.open svg path:nth-child(4),
.hamburger.open svg path:nth-child(5) { opacity: 1; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  padding: 24px 24px 28px;
  z-index: 99;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-menu a:last-child { border-bottom: none; }

/* ── MOBILE NAV GROUP (accordion + over ons in één blok) ── */
.mobile-nav-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-group > a {
  border-bottom: none;
}

/* ── MOBILE ACCORDION (diensten dropdown) ──────────── */
.mobile-accordion {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
  text-align: left;
}

.mobile-chevron {
  font-size: 11px;
  color: var(--gray-500);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.mobile-accordion-trigger.open .mobile-chevron {
  transform: rotate(180deg);
}

.mobile-accordion-trigger.open > span:first-child {
  color: var(--blue);
}

.mobile-accordion-body { display: none; padding-bottom: 8px; }
.mobile-accordion-body.open { display: block; }
.mobile-accordion-body a {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  border-bottom: none !important;
}
.mobile-accordion-body a:hover { color: var(--text); }

.mobile-menu .mobile-cta {
  margin-top: 16px;
  display: block;
  text-align: center;
  background: var(--blue);
  color: white;
  padding: 14px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
}

/* ── STICKY MOBILE CONTACT BTN ─────────────────── */
.mobile-sticky-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 90;
}

.mobile-sticky-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  background: var(--blue);
  color: white;
  padding: 0 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

/* ── TABLET (max 1024px) ─────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .hero-inner { padding: 96px 24px; gap: 48px; }
  .hero-stats-inner { padding: 24px; }
  .hero h1 { font-size: 36px; }
  .services { padding: 0 0 48px; }
  .services-sticky-header { top: 80px; padding: 0 24px; }
  .service-content { gap: 48px; padding: 0 24px; }
  .usp-section { padding: 48px 0; }
  .usp-grid { gap: 32px; }
  .footer { padding: 48px 0 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .page-hero { padding: 48px 24px; }
  .page-hero-grid { gap: 48px; }
  .geschikt-section { padding: 48px 24px; }
}

/* ── MOBILE (max 768px) ─────────────────────────── */
@media (max-width: 768px) {
  html { scroll-padding-top: 110px; }

  /* Navbar */
  .navbar {
    height: 64px;
  }

  .nav-links { display: none; }
  .nav-right .btn-nav { display: none; }
  .nav-right .flag { display: none; }
  .hamburger { display: flex; }
  .mobile-sticky-btn { display: block; opacity: 0; transform: translateY(12px); transition: opacity 0.3s, transform 0.3s; pointer-events: none; }
  .mobile-sticky-btn.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 96px 24px 80px;
    gap: 40px;
  }

  .hero-text { align-items: center; text-align: center; }

  .hero h1 {
    font-size: 28px;
    letter-spacing: -0.2px;
    text-align: center;
  }

  .hero .hero-sub {
    font-size: 15px;
    text-align: center;
  }

  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }

  .hero-visual { display: none; }

  .hero-stats-inner {
    padding: 24px;
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero-stat-item strong { font-size: 22px; }
  .hero-stat-divider { display: none; }

  /* Service hero */
  .svc-hero { padding: 64px 24px 56px; }
  .svc-title { font-size: 30px; letter-spacing: -0.06em; }
  .svc-desc { font-size: 16px; }
  .svc-hero .hero-actions { flex-direction: column; width: 100%; }
  .svc-hero .hero-actions .btn-primary,
  .svc-hero .hero-actions .btn-ghost-dark { width: 100%; justify-content: center; }

  /* Services */
  .services {
    padding: 0 0 48px;
    background: white;
  }

  .services-heading {
    padding: 48px 0 0;
    text-align: left !important;
  }

  .services-sticky-header {
    top: 76px;
    padding: 0 24px;
  }

  .tabs {
    grid-template-columns: 1fr;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    display: flex;
    flex-wrap: nowrap;
  }

  .tab {
    font-size: 14px;
    padding: 16px 12px;
    gap: 12px;
    min-width: 100%;
    scroll-snap-align: start;
    justify-content: center;
    text-align: center;
  }

  .tab-content {
    padding-top: 24px;
    padding-bottom: 48px;
    scroll-margin-top: 110px;
  }

  .tab-content + .tab-content { margin-top: 0; }

  .tab-content .service-content {
    padding: 0 24px;
  }

  .service-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-image { order: -1; }

  .service-image img {
    aspect-ratio: 3 / 4;
    border-radius: 10px;
  }

  .service-text h2 { font-size: 24px; letter-spacing: -0.06em; }

  /* USP */
  .usp-section { padding: 48px 0 96px; background: white; }
  .usp-eyebrow { font-size: 13px; }

  .usp-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }

  /* Footer */
  .footer { padding: 48px 0 100px; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* Contact page */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0;
  }
  .contact-divider {
    flex-direction: row;
    width: 100%;
    height: 32px;
  }
  .contact-divider::before,
  .contact-divider::after {
    width: auto;
    height: 1px;
    flex: 1;
  }
  .page-body { padding: 48px 0; }
  .contact-right { padding: 0; }

  .page-body {
    padding: 40px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-row .form-group:not(:last-child) { margin-bottom: 16px; }

  /* Demontage page */
  .page-hero { padding: 40px 24px; }

  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-hero-left h1 { font-size: 26px; }

  div[style*="grid-template-columns: 1fr 1fr"][style*="padding: 0 80px"] {
    grid-template-columns: 1fr !important;
    padding: 24px 24px 48px !important;
  }

  .geschikt-section { padding: 56px 0; }
  .geschikt-layout { grid-template-columns: 1fr; gap: 32px; }
  .geschikt-items { grid-template-columns: 1fr; }
  .geschikt-left h2 { font-size: 26px; }
  .svc-werkwijze { padding: 56px 0; }
  .svc-werkwijze-title { font-size: 26px; }
  .svc-accordion-trigger h3 { font-size: 16px; }
  .svc-accordion-body { padding-left: 56px; }
  .svc-accordion-item.open .svc-accordion-body { padding: 0 0 20px 56px; }
  .svc-cta-section { padding: 0 0 56px; }
  .svc-cta-card { padding: 48px 28px; gap: 14px; }
  .svc-cta-title { font-size: 22px; }
  .geschikt-section h2 { font-size: 22px; }

  /* Stats band: 1 kolom op mobile */
  .stats-band { padding: 48px 0; }
  .stats-band-title { font-size: 22px; margin-bottom: 36px; }
  .stats-band-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-band-num { font-size: 36px; }

  /* Extra bottom padding for sticky button */
  body { padding-bottom: 80px; }
}
