/* ============ EUROBATE DESIGN TOKENS (Lekab-inspired) ============ */
:root {
  --eb-primary: #0a2540;
  --eb-primary-deep: #061a30;
  --eb-primary-mid: #143a63;
  --eb-accent: #1e7a7a;
  --eb-accent-soft: #c7e4e2;
  --eb-secondary: #6a8f56;
  --eb-secondary-soft: #dde6cf;
  --eb-cta: #0a2540;
  --eb-cta-hover: #143a63;
  --eb-text: #0a2540;
  --eb-text-soft: #4a5a70;
  --eb-text-muted: #6b7a8e;
  --eb-bg: #ffffff;
  --eb-bg-soft: #f5f7fa;
  --eb-bg-tint: #eef3f7;
  --eb-border: #dce3ec;
  --eb-radius-sm: 6px;
  --eb-radius: 10px;
  --eb-radius-lg: 18px;
  --eb-radius-xl: 24px;
  --eb-shadow-sm: 0 1px 2px rgba(10,37,64,0.06), 0 1px 3px rgba(10,37,64,0.04);
  --eb-shadow: 0 4px 12px rgba(10,37,64,0.08), 0 2px 4px rgba(10,37,64,0.04);
  --eb-shadow-lg: 0 20px 40px -12px rgba(10,37,64,0.15), 0 8px 16px rgba(10,37,64,0.06);
  --eb-font-display: "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --eb-font-body: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --eb-gradient-hero: linear-gradient(135deg, #0a2540 0%, #143a63 60%, #1e5577 100%);
  --eb-gradient-accent: linear-gradient(135deg, #1e7a7a 0%, #6a8f56 100%);
}

[data-radius="sharp"] {
  --eb-radius-sm: 2px; --eb-radius: 4px; --eb-radius-lg: 6px; --eb-radius-xl: 8px;
}
[data-radius="soft"] {
  --eb-radius-sm: 10px; --eb-radius: 16px; --eb-radius-lg: 24px; --eb-radius-xl: 32px;
}

/* Color theme variations: blue-dominant (default) | green-dominant (logo-green leads) | teal-fresh (turkis/teal leads, inspired by Lekab accents) */
[data-theme="green"] {
  --eb-accent: #6a8f56;
  --eb-accent-soft: #dde6cf;
  --eb-gradient-accent: linear-gradient(135deg, #6a8f56 0%, #8fb36f 100%);
}
[data-theme="teal"] {
  --eb-primary: #0a2540;
  --eb-accent: #20a8a8;
  --eb-accent-soft: #d4f0ee;
  --eb-gradient-accent: linear-gradient(135deg, #20a8a8 0%, #56c4c4 100%);
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  overflow-x: hidden;
  font-family: var(--eb-font-body);
  color: var(--eb-text);
  background: var(--eb-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body { font-size: 16px; line-height: 1.6; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--eb-font-display);
  color: var(--eb-primary);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-weight: 700;
}
p { margin: 0; color: var(--eb-text-soft); }
a { color: var(--eb-accent); text-decoration: none; }
img { max-width: 100%; }

/* ============ LAYOUT ============ */
.eb-container { max-width: 1200px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.eb-section { padding: 96px 0; }
.eb-container-main { padding-top: 64px; padding-bottom: 64px; }

@media (max-width: 768px) {
  .eb-section { padding: 56px 0; }
  .eb-container { padding-left: 20px; padding-right: 20px; }
  .eb-container-main { padding-top: 32px; padding-bottom: 32px; }
}

/* ============ BUTTONS ============ */
.eb-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 28px;
  border-radius: var(--eb-radius);
  font-family: var(--eb-font-display);
  font-weight: 600; font-size: 15px;
  border: none; cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none; white-space: nowrap;
}
.eb-btn-primary { background: var(--eb-cta); color: white; }
.eb-btn-primary:hover { background: var(--eb-cta-hover); transform: translateY(-1px); box-shadow: var(--eb-shadow); }
.eb-btn-secondary { background: transparent; color: var(--eb-primary); border: 1.5px solid var(--eb-border); }
.eb-btn-secondary:hover { border-color: var(--eb-primary); background: var(--eb-bg-soft); }
.eb-btn-accent { background: var(--eb-accent); color: white; }
.eb-btn-accent:hover { background: var(--eb-primary); }

/* ============ HEADER ============ */
.eb-header {
  position: sticky; top: 0;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--eb-border);
  z-index: 100;
}
.eb-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  max-width: 1280px; margin: 0 auto;
}
.eb-logo { height: 32px; display: block; }
.eb-nav { display: flex; gap: 4px; align-items: center; }
.eb-nav a {
  padding: 8px 14px; color: var(--eb-text);
  font-size: 15px; font-weight: 500;
  border-radius: var(--eb-radius-sm);
  transition: all 0.15s; cursor: pointer;
}
.eb-nav a:hover { background: var(--eb-bg-soft); color: var(--eb-primary); }
.eb-nav a.active { color: var(--eb-accent); }
.eb-header-cta { display: flex; gap: 10px; align-items: center; }
.eb-mobile-toggle {
  display: none; background: rgba(10,37,64,0.06); border: none; cursor: pointer;
  padding: 10px; color: var(--eb-primary); border-radius: 8px;
}
@media (max-width: 900px) {
  .eb-nav, .eb-header-cta .eb-btn-secondary { display: none; }
  .eb-mobile-toggle { display: flex; align-items: center; justify-content: center; }
  .eb-header-cta .eb-btn-primary { padding: 8px 14px !important; font-size: 13px !important; }
}
@media (max-width: 480px) {
  .eb-header-inner { padding: 12px 16px; gap: 8px; }
  .eb-logo { height: 26px; }
  .eb-header-cta .eb-btn-primary { display: none; }
  .eb-header-cta .eb-btn-secondary { display: none; }
}

/* Mobile menu drawer */
.eb-mobile-menu {
  position: fixed; top: 60px;
  left: 0; right: 0; bottom: 0;
  background: white;
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 99;
  display: flex; flex-direction: column; gap: 4px;
  overflow-y: auto;
}
@media (max-width: 480px) {
  .eb-mobile-menu { top: 50px; }
}
.eb-mobile-menu.open { transform: translateX(0); }
.eb-mobile-menu a {
  padding: 16px 12px;
  border-bottom: 1px solid var(--eb-border);
  color: var(--eb-primary);
  font-weight: 500; font-size: 17px;
}
.eb-mobile-menu a.eb-btn { border-bottom: none; margin-top: 16px; color: white; }

/* ============ HERO — UNIFIED FULL-BLEED PHOTO + GRADIENT OVERLAY ============ */
.eb-hero {
  position: relative;
  overflow: hidden;
  color: white;
  background: #061a30;
}
.eb-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.eb-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}
.eb-hero::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6,26,48,0.85) 0%, rgba(6,26,48,0.55) 40%, rgba(6,26,48,0.15) 75%, transparent 100%);
}
.eb-hero-inner {
  position: relative;
  z-index: 2;
  padding: 120px 0 140px;
  max-width: 720px;
}
.eb-hero-inner.centered { max-width: 820px; margin: 0 auto; text-align: center; }
@media (max-width: 768px) {
  .eb-hero-inner { padding: 80px 0 96px; }
  .eb-hero::before {
    background:
      linear-gradient(180deg, rgba(6,26,48,0.55) 0%, rgba(6,26,48,0.92) 100%);
  }
  .eb-hero-bg img { object-position: 70% center; }
}

.eb-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 24px;
  font-family: var(--eb-font-display);
  backdrop-filter: blur(8px);
}
.eb-hero-eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #5fd4cf;
  box-shadow: 0 0 0 3px rgba(95,212,207,0.25);
}
.eb-hero-title {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  color: white;
  margin-bottom: 22px;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
}
.eb-hero-sub {
  font-size: clamp(16px, 1.3vw, 19px);
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.55;
}
.eb-hero-inner.centered .eb-hero-sub { margin-left: auto; margin-right: auto; }
.eb-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.eb-hero-inner.centered .eb-hero-cta { justify-content: center; }
.eb-hero .eb-btn-primary { background: white; color: var(--eb-primary); }
.eb-hero .eb-btn-primary:hover { background: var(--eb-accent-soft); }
.eb-hero .eb-btn-secondary {
  background: rgba(255,255,255,0.08);
  color: white;
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.eb-hero .eb-btn-secondary:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.4);
}
.eb-hero .eb-btn-accent { background: var(--eb-accent); color: white; }
.eb-hero .eb-btn-accent:hover { background: #269494; }

.eb-hero-trust {
  display: flex; gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.eb-hero-trust-item { display: flex; align-items: center; gap: 8px; }
.eb-hero-trust-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(95,212,207,0.2);
  color: #5fd4cf;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Hero C stats row */
.eb-hero-c-split {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  max-width: 560px;
}
.eb-hero-c-stat-num {
  font-family: var(--eb-font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -0.02em;
}
.eb-hero-c-stat-num span { color: #5fd4cf; }
.eb-hero-c-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-top: 6px;
  font-family: var(--eb-font-display);
}
@media (max-width: 640px) {
  .eb-hero-c-split { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* ============ HERO B — diskré SVG-mønster ============ */
.eb-hero-b { background: #061a30; }
.eb-hero-pattern-wrap {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.eb-hero-pattern {
  width: 100%; height: 100%; display: block;
}
.eb-hero-b::before { display: none; }
.eb-hero-b .eb-hero-inner { position: relative; z-index: 2; }

/* ============ HERO C — lys, produkt-fokusert split ============ */
.eb-hero-c {
  background: linear-gradient(180deg, #f5f6f8 0%, #eceff3 100%);
  color: var(--eb-primary);
  overflow: hidden;
}
.eb-hero-c::before { display: none; }
.eb-hero-c .eb-hero-title { color: var(--eb-primary); }
.eb-hero-c .eb-hero-sub { color: rgba(10,37,64,0.75); }
.eb-hero-c .eb-hero-eyebrow {
  background: rgba(10,37,64,0.06);
  color: var(--eb-primary);
  border-color: rgba(10,37,64,0.1);
}
.eb-hero-c .eb-btn-primary { background: var(--eb-primary); color: white; }
.eb-hero-c .eb-btn-primary:hover { background: #0e2e4f; }
.eb-hero-c .eb-btn-secondary {
  background: white; color: var(--eb-primary);
  border: 1px solid rgba(10,37,64,0.12);
}
.eb-hero-c .eb-btn-secondary:hover { background: #f5f6f8; }
.eb-hero-c .eb-hero-c-stat-num { color: var(--eb-primary); }
.eb-hero-c .eb-hero-c-stat-num span { color: #129b96; }
.eb-hero-c .eb-hero-c-stat-label { color: rgba(10,37,64,0.6); }

.eb-hero-c-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 24px 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative; z-index: 2;
}
.eb-hero-c-left { max-width: 560px; }
.eb-hero-c-right { position: relative; height: 460px; }

.eb-hero-c-code {
  position: absolute; top: 0; right: 0; width: 100%;
  background: #0e2e4f;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(10,37,64,0.25), 0 0 0 1px rgba(10,37,64,0.06);
  font-family: 'SF Mono', Menlo, Monaco, Consolas, monospace;
}
.eb-hero-c-code-head {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.eb-hero-c-dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.eb-hero-c-code-file {
  margin-left: 12px;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  font-family: var(--eb-font-display);
  font-weight: 600;
}
.eb-hero-c-code-body {
  margin: 0; padding: 18px 20px;
  color: #9cdbd7;
  font-size: 13px; line-height: 1.65;
  white-space: pre;
  overflow-x: auto;
}

.eb-hero-c-status {
  position: absolute; bottom: 0; left: -40px; width: 78%;
  background: white;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 30px 60px -20px rgba(10,37,64,0.18), 0 0 0 1px rgba(10,37,64,0.06);
}
.eb-hero-c-status-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 16px;
}
.eb-hero-c-status-label {
  font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(10,37,64,0.55);
  font-family: var(--eb-font-display);
  font-weight: 600;
  margin-bottom: 4px;
}
.eb-hero-c-status-title {
  font-size: 15px; font-weight: 700;
  color: var(--eb-primary);
  font-family: var(--eb-font-display);
}
.eb-hero-c-status-pill {
  background: rgba(18,155,150,0.1);
  color: #0a7773;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--eb-font-display);
}
.eb-hero-c-status-bars { display: flex; flex-direction: column; gap: 10px; }
.eb-hero-c-status-bar {
  position: relative;
  height: 26px;
  background: #f0f2f5;
  border-radius: 6px;
  overflow: hidden;
}
.eb-hero-c-status-bar span {
  position: absolute; left: 12px; top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 600;
  color: var(--eb-primary);
  z-index: 2;
  font-family: var(--eb-font-display);
}
.eb-hero-c-status-bar-fill {
  position: absolute; top: 0; bottom: 0; left: 0;
  background: rgba(10,37,64,0.12);
  border-radius: 6px;
}
.eb-hero-c-status-bar-fill.accent { background: rgba(18,155,150,0.28); }
.eb-hero-c-status-bar-fill.warn { background: rgba(245,158,11,0.25); }

@media (max-width: 900px) {
  .eb-hero-c-grid { grid-template-columns: 1fr; gap: 40px; padding: 72px 24px 72px; }
  .eb-hero-c-right { height: 380px; }
  .eb-hero-c-status { left: 0; width: 90%; }
}
@media (max-width: 640px) {
  .eb-hero-c-right { height: 340px; }
  .eb-hero-c-code-body { font-size: 11px; padding: 14px 16px; }
  .eb-hero-c-status { left: 0; width: 100%; }
}

/* ============ LOGO STRIP ============ */
.eb-logos {
  padding: 48px 0;
  background: var(--eb-bg);
  border-bottom: 1px solid var(--eb-border);
}
.eb-logos-label {
  text-align: center;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--eb-text-muted);
  margin-bottom: 28px;
}
.eb-logos-grid {
  display: flex; justify-content: space-around; align-items: center;
  flex-wrap: wrap; gap: 32px;
}
.eb-logos-item {
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.eb-logos-item img {
  filter: grayscale(1);
  opacity: 0.6;
  transition: all 0.3s ease;
  max-width: 140px;
}
.eb-logos-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* ============ STATS ============ */
.eb-stats {
  background: var(--eb-primary);
  color: white;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.eb-stats::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(30,122,122,0.35), transparent 55%);
}
.eb-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative; z-index: 1;
}
@media (max-width: 700px) {
  .eb-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
.eb-stat-num {
  font-family: var(--eb-font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em; line-height: 1;
  color: white; margin-bottom: 6px;
}
.eb-stat-num span { color: #5fd4cf; }
.eb-stat-label { font-size: 14px; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ============ SERVICES ============ */
.eb-section-label {
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--eb-accent);
  margin-bottom: 14px;
  font-family: var(--eb-font-display);
}
.eb-section-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  max-width: 720px;
  text-wrap: balance;
}
.eb-section-sub {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--eb-text-soft);
  max-width: 620px;
  margin-bottom: 48px;
  line-height: 1.55;
}
.eb-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.eb-service-card {
  background: var(--eb-bg);
  border: 1px solid var(--eb-border);
  border-radius: var(--eb-radius-lg);
  padding: 28px;
  transition: all 0.2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.eb-service-card:hover {
  border-color: var(--eb-accent);
  transform: translateY(-4px);
  box-shadow: var(--eb-shadow-lg);
}
.eb-service-icon {
  width: 44px; height: 44px;
  border-radius: var(--eb-radius);
  background: var(--eb-accent-soft);
  color: var(--eb-accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.eb-service-title { font-size: 19px; margin-bottom: 8px; }
.eb-service-desc { font-size: 14.5px; color: var(--eb-text-soft); line-height: 1.55; margin-bottom: 14px; }
.eb-service-link {
  font-size: 14px; font-weight: 600;
  color: var(--eb-accent);
  display: inline-flex; align-items: center; gap: 4px;
}
.eb-service-card:hover .eb-service-link { gap: 8px; }

/* ============ STEPS ============ */
.eb-steps { background: var(--eb-bg-soft); }
.eb-steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .eb-steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .eb-steps-grid { grid-template-columns: 1fr; } }
.eb-step {
  background: white;
  border-radius: var(--eb-radius-lg);
  padding: 26px;
}
.eb-step-num {
  font-family: var(--eb-font-display);
  font-size: 13px; font-weight: 700;
  color: var(--eb-accent);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.eb-step-num::before {
  content: attr(data-n);
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--eb-accent-soft);
  color: var(--eb-accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.eb-step-title { font-size: 17px; margin-bottom: 8px; }
.eb-step-desc { font-size: 14px; color: var(--eb-text-soft); }

/* ============ CTA BANNER ============ */
.eb-cta-banner {
  background: var(--eb-gradient-hero);
  color: white;
  border-radius: var(--eb-radius-xl);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.eb-cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(30,122,122,0.3), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(95,212,207,0.2), transparent 50%);
}
.eb-cta-banner-inner { position: relative; z-index: 1; }
.eb-cta-banner h2 { color: white; font-size: clamp(26px, 3vw, 40px); margin-bottom: 14px; }
.eb-cta-banner p { color: rgba(255,255,255,0.85); font-size: 16px; max-width: 520px; margin: 0 auto 28px; }
.eb-cta-banner-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.eb-cta-banner .eb-btn-primary { background: white; color: var(--eb-primary); }
.eb-cta-banner .eb-btn-primary:hover { background: var(--eb-accent-soft); }
.eb-cta-banner .eb-btn-secondary { color: white; border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.06); }
.eb-cta-banner .eb-btn-secondary:hover { background: rgba(255,255,255,0.14); }
@media (max-width: 600px) { .eb-cta-banner { padding: 40px 24px; } }

/* ============ FOOTER ============ */
.eb-footer {
  background: var(--eb-primary-deep);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 28px;
}
.eb-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 40px;
}
@media (max-width: 800px) { .eb-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 500px) { .eb-footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.eb-footer-brand p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.6; max-width: 320px; margin-top: 16px; }
.eb-footer-logo { height: 30px; filter: brightness(0) invert(1); }
.eb-footer h4 {
  color: white;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  font-weight: 700;
}
.eb-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.eb-footer ul a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: color 0.15s;
  cursor: pointer;
}
.eb-footer ul a:hover { color: white; }
.eb-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.eb-footer-bottom a { color: rgba(255,255,255,0.6); margin-right: 16px; }
.eb-footer-bottom a:hover { color: white; }
.eb-parent-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,0.65);
  margin-top: 20px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--eb-radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ============ SUB-PAGE HERO ============ */
.eb-subhero {
  padding: 72px 0 56px;
  background: linear-gradient(180deg, var(--eb-bg-soft) 0%, var(--eb-bg) 100%);
  border-bottom: 1px solid var(--eb-border);
}
.eb-breadcrumb { font-size: 13px; color: var(--eb-text-muted); margin-bottom: 14px; font-weight: 500; }
.eb-breadcrumb a { color: var(--eb-text-muted); }
.eb-breadcrumb a:hover { color: var(--eb-accent); }
.eb-subhero-title { font-size: clamp(30px, 4.5vw, 54px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 12px; }
.eb-subhero-sub { font-size: clamp(16px, 1.3vw, 18px); color: var(--eb-text-soft); max-width: 640px; }

.eb-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
@media (max-width: 800px) { .eb-content-grid { grid-template-columns: 1fr; gap: 32px; } }
.eb-content-img {
  border-radius: var(--eb-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--eb-shadow);
}

.eb-customer-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.eb-customer-tile {
  background: var(--eb-bg-soft);
  border-radius: var(--eb-radius-lg);
  padding: 30px;
  border: 1px solid var(--eb-border);
  transition: all 0.2s;
}
.eb-customer-tile:hover {
  background: white;
  border-color: var(--eb-accent);
  transform: translateY(-2px);
}
.eb-customer-tile h3 { font-size: 19px; margin-bottom: 10px; }
.eb-customer-tile p { font-size: 14.5px; margin-bottom: 20px; }
.eb-customer-tile .eb-service-icon { margin-bottom: 16px; }

/* ============ PAGE LAYOUT ============ */
.eb-page {}
.eb-page-hero {
  background: linear-gradient(180deg, var(--eb-bg-soft) 0%, var(--eb-bg) 100%);
  border-bottom: 1px solid var(--eb-border);
  padding: 72px 0 56px;
}
@media (max-width: 768px) {
  .eb-page-hero { padding: 48px 0 40px; }
}
.eb-page-hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800; letter-spacing: -0.03em;
  margin-bottom: 14px; color: var(--eb-primary);
}
.eb-page-hero p { font-size: clamp(15px,1.3vw,18px); color: var(--eb-text-soft); max-width: 640px; }

/* ============ TJENESTER PAGE ============ */
.eb-tjenester-list { display: flex; flex-direction: column; gap: 56px; margin-bottom: 56px; }
.eb-tjeneste-row {
  display: grid; grid-template-columns: 64px 1fr; gap: 28px; align-items: start;
  padding-bottom: 56px; border-bottom: 1px solid var(--eb-border);
}
.eb-tjeneste-row:last-child { border-bottom: none; padding-bottom: 0; }
.eb-tjeneste-icon {
  width: 56px; height: 56px; border-radius: var(--eb-radius);
  background: var(--eb-accent-soft); color: var(--eb-accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.eb-tjeneste-body h2 { font-size: clamp(22px,2.5vw,32px); margin-bottom: 12px; }
.eb-tjeneste-body p { color: var(--eb-text-soft); font-size: 16px; line-height: 1.7; }
.eb-tjeneste-bullets { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 8px; }
.eb-tjeneste-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--eb-text-soft); }
@media (max-width: 600px) {
  .eb-tjeneste-row { grid-template-columns: 1fr; }
  .eb-tjeneste-icon { width: 48px; height: 48px; }
}

/* ============ NAV DROPDOWN ============ */
.eb-nav-dropdown-btn {
  background: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--eb-font-body); font-size: 15px;
  font-weight: 500; color: var(--eb-text); padding: 8px 12px;
  border-radius: var(--eb-radius-sm);
  transition: background 0.15s, color 0.15s;
}
.eb-nav-dropdown-btn:hover, .eb-nav-dropdown-btn.active { background: var(--eb-bg-soft); color: var(--eb-primary); }
.eb-nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: white; border: 1px solid var(--eb-border);
  border-radius: var(--eb-radius); box-shadow: 0 12px 32px rgba(0,0,0,0.10);
  min-width: 200px; z-index: 200; overflow: hidden;
}
.eb-nav-dropdown a {
  display: block; padding: 11px 18px;
  font-size: 14px; font-weight: 500; color: var(--eb-text);
  border-bottom: 1px solid var(--eb-border);
  transition: background 0.12s, color 0.12s;
}
.eb-nav-dropdown a:last-child { border-bottom: none; }
.eb-nav-dropdown a:hover { background: var(--eb-bg-soft); color: var(--eb-accent); }

/* ============ MOBILE MENU SECTION LABEL ============ */
.eb-mobile-menu-section {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 700; color: var(--eb-text-muted); padding: 16px 16px 6px;
  font-family: var(--eb-font-display);
}
.eb-mobile-menu-sub { font-size: 14px !important; padding-left: 28px !important; }

/* ============ INFO CARD ============ */
.eb-info-card {
  background: var(--eb-bg-soft); border: 1px solid var(--eb-border);
  border-radius: var(--eb-radius); padding: 24px 28px;
}
.eb-info-card-stat { font-size: 36px; font-weight: 800; color: var(--eb-primary); letter-spacing: -0.03em; font-family: var(--eb-font-display); }
.eb-info-card-label { font-size: 14px; color: var(--eb-text-muted); margin-top: 4px; }

/* ============ CONTACT CARD ============ */
.eb-contact-card {
  background: var(--eb-bg-soft); border: 1px solid var(--eb-border);
  border-radius: var(--eb-radius); padding: 24px 28px;
}
.eb-contact-card h4 { font-size: 16px; margin-bottom: 14px; color: var(--eb-primary); }
.eb-contact-card p {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--eb-text-soft); margin-bottom: 8px;
}
.eb-contact-card a { color: var(--eb-text-soft); }
.eb-contact-card a:hover { color: var(--eb-accent); }

/* ============ CONTACT STRIP (For kunder) ============ */
.eb-contact-strip {
  display: flex; gap: 32px; flex-wrap: wrap;
  justify-content: center; align-items: center;
  margin-top: 48px; padding: 28px 32px;
  background: var(--eb-bg-soft); border: 1px solid var(--eb-border);
  border-radius: var(--eb-radius-lg);
}
.eb-contact-strip-item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--eb-text-soft); }
.eb-contact-strip-item a { color: var(--eb-accent); font-weight: 600; }
@media (max-width: 600px) { .eb-contact-strip { flex-direction: column; gap: 16px; align-items: flex-start; } }

/* ============ KONTAKT PAGE ============ */
.eb-kontakt-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 56px; align-items: start;
}
@media (max-width: 900px) {
  .eb-kontakt-grid { grid-template-columns: 1fr; gap: 40px; }
}
.eb-kontakt-info h2 { font-size: clamp(24px,3vw,36px); margin-bottom: 28px; }
.eb-kontakt-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px; margin-bottom: 14px;
  background: var(--eb-bg-soft); border: 1px solid var(--eb-border);
  border-radius: var(--eb-radius);
}
.eb-kontakt-icon {
  width: 40px; height: 40px; border-radius: var(--eb-radius-sm);
  background: var(--eb-accent-soft); color: var(--eb-accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.eb-kontakt-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; color: var(--eb-text-muted); margin-bottom: 3px; }
.eb-kontakt-val { font-weight: 600; font-size: 15px; color: var(--eb-primary); }
a.eb-kontakt-val:hover { color: var(--eb-accent); }

.eb-kontakt-form-wrap { background: white; border: 1px solid var(--eb-border); border-radius: var(--eb-radius-lg); padding: 36px; box-shadow: var(--eb-shadow); }
@media (max-width: 480px) {
  .eb-kontakt-form-wrap { padding: 28px 20px; }
}

.eb-form { display: flex; flex-direction: column; gap: 0; }
.eb-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 600px) { .eb-form-row { grid-template-columns: 1fr; gap: 16px; } }
.eb-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.eb-form-group label { font-size: 13px; font-weight: 600; color: var(--eb-primary); }
.eb-form-group input, .eb-form-group textarea {
  padding: 11px 14px; border: 1.5px solid var(--eb-border);
  border-radius: var(--eb-radius-sm); font-family: inherit; font-size: 15px;
  background: white; color: var(--eb-text);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.eb-form-group input:focus, .eb-form-group textarea:focus {
  outline: none; border-color: var(--eb-accent);
  box-shadow: 0 0 0 3px rgba(30,122,122,0.12);
}
.eb-form-group textarea { resize: vertical; min-height: 120px; }

/* reCAPTCHA responsive scaling */
@media (max-width: 380px) {
  .g-recaptcha { transform: scale(0.85); transform-origin: 0 0; }
}

.eb-form-success {
  text-align: center; padding: 48px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.eb-form-success h3 { font-size: 22px; color: var(--eb-primary); }
.eb-form-success p { color: var(--eb-text-soft); }

