/* =========================================
   electure — Stylesheet v3 (light theme)
   Font: Inter 300/400/500/600/700
   Stijl: Licht, fris, toegankelijk
   Brand color uit logo: #31D8FF (cyaan)
   ========================================= */

:root {
  /* Brand colors */
  --c-accent:        #06B6E0;   /* iets donkerder dan logo voor leesbaarheid */
  --c-accent-h:      #0496BC;   /* hover */
  --c-accent-light:  #E0F7FE;   /* zachte tint voor backgrounds */
  --c-accent-soft:   #F0FBFE;   /* nog zachter */

  /* Neutral palette - light-first */
  --c-text:          #0F172A;   /* zeer donker voor body text - hoog contrast */
  --c-text-soft:     #334155;   /* iets zachter voor paragraphs */
  --c-muted:         #64748B;   /* labels, captions */
  --c-light:         #6B7280;   /* (legacy compat) */

  --c-bg:            #FFFFFF;
  --c-bg-soft:       #F8FAFC;   /* very subtle gray for alternating sections */
  --c-bg-card:       #FFFFFF;
  --c-bg-tinted:     #F0FBFE;   /* light cyan tint */

  --c-border:        #E2E8F0;
  --c-border-soft:   #F1F5F9;

  /* Dark accents - sparingly used */
  --c-dark:          #0F172A;
  --c-dark-mid:      #1E293B;

  --c-white:         #FFFFFF;

  /* Typography & layout */
  --ff: 'Inter', system-ui, -apple-system, sans-serif;
  --max-w: 1180px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 12px 32px rgba(6, 182, 224, 0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--ff);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.section { padding: 96px 0; }
.section-soft { background: var(--c-bg-soft); }
.section-tinted { background: var(--c-bg-tinted); }
.section-divider { height: 1px; background: var(--c-border); }
.section-header { margin-bottom: 56px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--c-accent);
  flex-shrink: 0;
  border-radius: 0;
}
.section-header h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--c-text);
  line-height: 1.2;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 0;
  font-family: var(--ff);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.005em;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--c-accent);
  color: var(--c-white);
  box-shadow: 0 4px 14px rgba(6, 182, 224, 0.25);
}
.btn-primary:hover {
  background: var(--c-accent-h);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(6, 182, 224, 0.32);
}
.btn-ghost {
  background: transparent;
  border-color: var(--c-border);
  color: var(--c-text);
}
.btn-ghost:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}
.btn-white {
  background: var(--c-white);
  color: var(--c-accent);
  border: 1.5px solid var(--c-white);
}
.btn-white:hover {
  background: var(--c-accent-soft);
}
.btn-full { width: 100%; justify-content: center; }

/* HEADER (light) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--c-border-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--c-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 32px;
}
.logo-img-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
.logo-img-link:hover { opacity: 0.85; }
.nav-logo { height: 44px; width: auto; display: block; }
.nav-logo--footer { height: 38px; }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 36px; }
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-soft);
  letter-spacing: 0.005em;
  transition: color 0.2s;
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--c-accent);
}
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--c-accent);
  border-radius: 0;
}
.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 0;
  transition: all 0.25s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
  padding: 28px 40px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s var(--ease);
}
.mobile-menu.open { display: block; opacity: 1; pointer-events: all; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 18px; }
.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--c-text);
}

/* HERO (light) */
.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: var(--c-bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 40%, rgba(6, 182, 224, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 100%, rgba(6, 182, 224, 0.05) 0%, transparent 60%),
    var(--c-bg);
}
.hero-bg--image {
  background:
    linear-gradient(135deg, rgba(6, 182, 224, 0.12) 0%, rgba(6, 182, 224, 0.04) 50%, rgba(255,255,255, 0.0) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0.45) 60%, rgba(255,255,255,0.78) 100%),
    url('images/hero-bg.svg') center/cover no-repeat,
    var(--c-bg);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 182, 224, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 224, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 90%);
}
.hero-content {
  position: relative;
  padding-top: 80px;
  padding-bottom: 64px;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 32px;
  padding: 6px 14px;
  background: var(--c-accent-soft);
  border-radius: 999px;
}
.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--c-text);
  margin-bottom: 28px;
  max-width: 720px;
}
.hero h1 .accent { color: var(--c-accent); }
.hero-sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--c-text-soft);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-card {
  background: var(--c-white);
  padding: 56px 64px;
  max-width: 760px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.10), 0 1px 0 rgba(15, 23, 42, 0.04);
  border-left: 4px solid var(--c-accent);
}

.hero-stats {
  position: relative;
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
  z-index: 1;
}
.stats-row { display: flex; }
.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 28px 32px;
  border-right: 1px solid var(--c-border-soft);
}
.stat:last-child { border-right: none; }
.stat strong {
  font-size: 28px;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.025em;
  line-height: 1;
}
.stat span {
  font-size: 12px;
  color: var(--c-muted);
  letter-spacing: 0.04em;
  font-weight: 500;
  text-transform: uppercase;
}

/* INTRO STRIP */
.intro-strip {
  background: var(--c-bg-soft);
  border-top: 1px solid var(--c-border-soft);
  border-bottom: 1px solid var(--c-border-soft);
  padding: 40px 0;
}
.intro-strip p {
  font-size: 17px;
  font-weight: 400;
  color: var(--c-text-soft);
  max-width: 720px;
  line-height: 1.7;
}

/* CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  padding: 36px 32px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 0;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-accent);
}
.card--dark {
  background: var(--c-dark);
  color: var(--c-white);
  border-color: var(--c-dark);
}
.card--dark:hover { border-color: var(--c-accent); }
.card--light {
  background: var(--c-bg-soft);
}
.card--accent {
  background: var(--c-accent);
  color: var(--c-white);
  border-color: var(--c-accent);
}
.card--accent:hover { box-shadow: 0 12px 32px rgba(6, 182, 224, 0.30); border-color: var(--c-accent); }

.card-icon {
  font-size: 28px;
  margin-bottom: 18px;
  width: 56px;
  height: 56px;
  background: var(--c-accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
.card--dark .card-icon { background: rgba(255,255,255,0.08); }
.card--accent .card-icon { background: rgba(255,255,255,0.18); }

.card h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-soft);
  margin-bottom: 24px;
  font-weight: 400;
}
.card--dark p, .card--accent p { color: rgba(255,255,255,0.78); }

.card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-accent);
  letter-spacing: 0.005em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.card-link:hover { gap: 10px; }
.card--dark .card-link { color: var(--c-accent); }
.card--accent .card-link { color: var(--c-white); }

/* USP */
.usp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.usp-text h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  margin-top: 14px;
  color: var(--c-text);
  line-height: 1.2;
}
.usp-text p {
  font-size: 16px;
  color: var(--c-text-soft);
  margin-bottom: 28px;
  line-height: 1.7;
}
.usp-list {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.usp-list li {
  font-size: 15px;
  color: var(--c-text);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 400;
}
.check {
  color: var(--c-accent);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 4px;
  width: 22px;
  height: 22px;
  background: var(--c-accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 11px;
}

.visual-block {
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-dark-mid) 100%);
  border-radius: 0;
  padding: 40px;
  color: var(--c-white);
  box-shadow: var(--shadow-lg);
}
.vis-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  font-weight: 600;
}
.vis-bar-wrap { display: flex; flex-direction: column; gap: 24px; }
.vis-bar { display: flex; flex-direction: column; gap: 6px; }
.vis-bar > span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.vis-bar > strong {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.vis-bar::after {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--c-accent) 0%, #67E5FF 100%);
  width: var(--pct);
  border-radius: 0;
  margin-top: 6px;
  box-shadow: 0 0 12px rgba(6, 182, 224, 0.5);
}

/* CTA */
.cta-banner {
  background: linear-gradient(135deg, var(--c-accent) 0%, #0496BC 100%);
  color: var(--c-white);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  color: var(--c-white);
}
.cta-inner p {
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  font-weight: 400;
}

/* FOOTER (donker, voor contrast met de lichte rest) */
.site-footer {
  background: var(--c-dark);
  color: rgba(255,255,255,0.65);
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-img-link { margin-bottom: 16px; display: inline-block; }
.nav-logo--footer {
  height: 38px;
  opacity: 0.95;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 260px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
}
.footer-nav h4, .footer-contact h4 {
  font-size: 12px;
  color: var(--c-white);
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: 13px;
  font-weight: 400;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--c-accent); }
.footer-contact p, .footer-contact a {
  font-size: 13px;
  margin-bottom: 8px;
  display: block;
  font-weight: 400;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--c-accent); }
.footer-bottom { padding: 22px 0; }
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom span {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--c-accent); }

/* PAGE HERO (light, with subtle SVG background + cyan tint) */
.page-hero {
  position: relative;
  background:
    /* cyaan tint over alles */
    linear-gradient(135deg, rgba(6, 182, 224, 0.15) 0%, rgba(6, 182, 224, 0.05) 50%, rgba(255,255,255, 0.0) 100%),
    /* zachte witte sluier voor leesbaarheid */
    linear-gradient(180deg, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0.55) 60%, rgba(255,255,255,0.85) 100%),
    url('images/hero-bg.svg') center top / cover no-repeat,
    var(--c-bg);
  background-position: center 40%;
  padding: calc(var(--nav-h) + 64px) 0 64px;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-border-soft);
  overflow: hidden;
}
.page-hero > .container { position: relative; z-index: 1; }

.page-hero-card {
  background: var(--c-white);
  padding: 40px 48px;
  max-width: 720px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08), 0 1px 0 rgba(15, 23, 42, 0.04);
  border-left: 4px solid var(--c-accent);
}
.breadcrumb {
  font-size: 12px;
  color: var(--c-muted);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.breadcrumb a {
  color: var(--c-muted);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--c-accent); }
.page-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--c-text);
  line-height: 1.1;
}
.page-hero p {
  font-size: 17px;
  color: var(--c-text-soft);
  max-width: 560px;
  font-weight: 400;
  line-height: 1.7;
}

/* DIENSTEN */
.service-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-block--alt .service-inner { direction: rtl; }
.service-block--alt .service-text,
.service-block--alt .service-visual { direction: ltr; }
.service-text h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 14px 0 18px;
  color: var(--c-text);
  line-height: 1.2;
}
.service-text p {
  font-size: 16px;
  color: var(--c-text-soft);
  line-height: 1.7;
  margin-bottom: 28px;
}
.feature-list {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  font-size: 15px;
  color: var(--c-text);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 400;
}
.feature-list li::before {
  content: '✓';
  color: var(--c-accent);
  flex-shrink: 0;
  font-weight: 700;
  width: 22px;
  height: 22px;
  background: var(--c-accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 11px;
  margin-top: 3px;
}
.spec-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 0;
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.spec-title {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 24px;
  font-weight: 600;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-border-soft);
  font-size: 15px;
}
.spec-row:last-child { border-bottom: none; }
.spec-row span { color: var(--c-muted); font-weight: 400; }
.spec-row strong { font-weight: 600; color: var(--c-text); }

/* Service visual: SVG illustration container */
.service-visual-svg,
.photo-block {
  position: relative;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  border-radius: 0;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-visual-svg svg, .service-visual-svg img {
  width: 100%;
  height: auto;
  max-width: 540px;
}
.photo-block {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.photo-block--bess {
  background-image: url('images/bess-illustration.svg');
  background-color: #0F172A;
}
.photo-block--charging {
  background-image: url('images/charging-illustration.svg');
  background-color: var(--c-bg-soft);
}
.photo-block--ps90 {
  background-image: url('images/ps90.jpg');
  background-color: var(--c-bg-soft);
  min-height: 420px;
}
.photo-block--eco2tainer {
  background-image: url('images/eco2tainer.jpg');
  background-color: var(--c-bg-soft);
  min-height: 420px;
}
.photo-block-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 24px;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.85) 0%, transparent 100%);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.process-steps { display: flex; flex-direction: column; }
.process-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--c-border-soft);
}
.process-step:last-child { border-bottom: none; }
.step-num {
  font-size: 26px;
  font-weight: 700;
  color: var(--c-accent);
  min-width: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  background: var(--c-accent-soft);
  width: 56px;
  height: 56px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.step-text { display: flex; flex-direction: column; gap: 6px; padding-top: 10px; }
.step-text strong {
  font-size: 16px;
  color: var(--c-text);
  font-weight: 600;
}
.step-text span {
  font-size: 14px;
  color: var(--c-text-soft);
  font-weight: 400;
}

/* OVER ONS */
.about-intro {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-intro-text h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 14px 0 22px;
  color: var(--c-text);
  line-height: 1.2;
}
.about-intro-text p {
  font-size: 16px;
  color: var(--c-text-soft);
  line-height: 1.75;
  margin-bottom: 18px;
}
.about-intro-numbers {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.number-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 0;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.number-card:hover {
  border-color: var(--c-accent);
  box-shadow: var(--shadow-md);
}
.number-card strong {
  font-size: 36px;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: -0.025em;
  line-height: 1;
}
.number-card span {
  font-size: 13px;
  color: var(--c-muted);
  font-weight: 500;
}
.values-section { background: var(--c-bg-soft); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-item {
  background: var(--c-white);
  padding: 36px 28px;
  border-radius: 0;
  border: 1px solid var(--c-border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.value-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.value-icon {
  font-size: 24px;
  margin-bottom: 18px;
  width: 52px;
  height: 52px;
  background: var(--c-accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
.value-item h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
  color: var(--c-text);
}
.value-item p {
  font-size: 14px;
  color: var(--c-text-soft);
  line-height: 1.7;
}

/* CONTACT */
.contact-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 0;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h2 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--c-text);
}
.form-row { display: flex; gap: 16px; }
.form-row--2 > * { flex: 1; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 6px;
  letter-spacing: 0.005em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--c-border);
  border-radius: 0;
  font-family: var(--ff);
  font-size: 14px;
  font-weight: 400;
  color: var(--c-text);
  background: var(--c-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9CA3AF; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(6, 182, 224, 0.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' stroke='%2364748B' fill='none' stroke-width='2'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-group--checkbox { margin-top: 8px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--c-text-soft);
  cursor: pointer;
  font-weight: 400;
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  padding: 0;
  border: 1.5px solid var(--c-border);
  background: var(--c-white);
  appearance: auto;
  -webkit-appearance: auto;
  accent-color: var(--c-accent);
  flex-shrink: 0;
  cursor: pointer;
}
.checkbox-label a { color: var(--c-accent); text-decoration: underline; }

.contact-info h2 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--c-text);
}
.info-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-border-soft);
}
.info-block:last-of-type { border-bottom: none; }
.info-icon {
  font-size: 18px;
  min-width: 40px;
  height: 40px;
  background: var(--c-accent-soft);
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-block strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--c-text);
}
.info-block a, .info-block span {
  font-size: 14px;
  color: var(--c-text-soft);
  font-weight: 400;
  display: block;
}
.info-block a:hover { color: var(--c-accent); }
.response-promise {
  background: var(--c-accent-soft);
  border: 1px solid var(--c-accent-light);
  border-radius: 0;
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 32px;
}
.promise-icon {
  font-size: 22px;
  flex-shrink: 0;
}
.response-promise p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-text-soft);
  font-weight: 400;
}
.response-promise strong { color: var(--c-text); font-weight: 600; }

/* THANK YOU */
.thankyou-section {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(6, 182, 224, 0.08) 0%, transparent 60%),
    var(--c-bg);
}
.thankyou-inner {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  padding: 80px 32px;
}
.thankyou-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--c-accent) 0%, #67E5FF 100%);
  color: white;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: var(--shadow-lg);
}
.thankyou-inner h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  color: var(--c-text);
}
.thankyou-inner p {
  color: var(--c-text-soft);
  margin-bottom: 32px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-tag     { animation: fadeUp 0.7s var(--ease) 0.1s both; }
.hero h1      { animation: fadeUp 0.8s var(--ease) 0.2s both; }
.hero-sub     { animation: fadeUp 0.8s var(--ease) 0.32s both; }
.hero-actions { animation: fadeUp 0.8s var(--ease) 0.42s both; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .usp-inner, .service-inner, .about-intro, .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .service-block--alt .service-inner { direction: ltr; }
  .about-intro-numbers { flex-direction: row; }
  .number-card { flex: 1; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .main-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .stats-row { flex-wrap: wrap; }
  .stat { flex: calc(50% - 0.5px); border-bottom: 1px solid var(--c-border-soft); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .cta-inner { flex-direction: column; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .about-intro-numbers { flex-direction: column; }
  .form-row { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
  .contact-form-wrap { padding: 28px 20px; }
  .hero-card { padding: 32px 24px; }
  .page-hero-card { padding: 28px 24px; }
}
