/* ═══════════════════════════════════════════════════════════
   SCANDIC MEDIA — Design System v3  (Gold Luxury)
   Fonts  : Clash Display (headings) + Satoshi (body) — Fontshare
   Palette: #080808 bg · #F5C842 gold · #F0EDE6 text
   ═══════════════════════════════════════════════════════════ */

/* ─── FONTS ───────────────────────────────────────────────── */
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&f[]=satoshi@400,500,700&display=swap');

/* ─── TOKENS ──────────────────────────────────────────────── */
:root {
  /* Surfaces */
  --bg-base:      #080808;
  --bg-surface:   #111111;
  --bg-surface-2: #1A1A1A;

  /* Gold — used as CSS fallbacks, never raw in components */
  --gold-primary: #F5C842;
  --gold-light:   #FFE27A;
  --gold-deep:    #C9A227;
  --gold-glow:    rgba(245,200,66,0.06);

  /* Gold gradient — THE only way to paint gold */
  --gold-gradient: linear-gradient(135deg, #C9A227 0%, #F5C842 40%, #FFE27A 60%, #C9A227 100%);

  /* Text */
  --text-primary: #F0EDE6;
  --text-muted:   #888888;

  /* Type */
  --font-head: 'Clash Display', 'Georgia', serif;
  --font-body: 'Satoshi', 'Inter', system-ui, sans-serif;

  /* Radii */
  --r-sm:  8px;
  --r:     14px;
  --r-lg:  22px;
  --r-xl:  32px;
  --r-f:   9999px;

  /* Motion */
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
  --t:       0.3s var(--ease);
  --t-fast:  0.15s var(--ease);

  /* Layout */
  --nav-h:  72px;
  --py:     clamp(80px, 9vw, 120px);
  --px:     clamp(20px, 5vw, 80px);
  --max:    1280px;

  /* Z-index */
  --z-card:   10;
  --z-sticky: 50;
  --z-nav:    100;
  --z-drawer: 200;
  --z-noise:  9999;
}

/* ─── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ─── HEADING BASE ────────────────────────────────────────── */
/* Safety-net: ensures all heading tags inherit the display font
   regardless of context (overridden by .section-heading etc.) */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}
body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ─── NOISE GRAIN on body::before ────────────────────────── */
/* Makes the dark bg feel like expensive paper, not flat black */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: var(--z-noise);
  opacity: 0.03;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ─── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: rgba(245,200,66,0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(245,200,66,0.5); }

/* ─── SELECTION ───────────────────────────────────────────── */
::selection { background: rgba(245,200,66,0.2); color: var(--text-primary); }

/* ─── FOCUS ───────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid rgba(245,200,66,0.6);
  outline-offset: 4px;
  border-radius: var(--r-sm);
}

/* ─── KEYFRAMES ───────────────────────────────────────────── */
/* Gold shimmer — applied to ALL gold elements */
@keyframes goldShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Pulse for badge dot */
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(245,200,66,0.4); }
  50%       { opacity: 0.7; transform: scale(0.85); box-shadow: 0 0 0 6px rgba(245,200,66,0); }
}

/* Scroll indicator */
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Float */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ─── GOLD TEXT UTILITY ───────────────────────────────────── */
/* Apply to any element that needs gold gradient text */
.gold-text,
.h-accent,
.text-accent,
.logo-accent,
.section-label,
.proof-stat-big span,
.case-num,
.process-num,
.calc-result-num {
  background: var(--gold-gradient);
  background-size: 300% 300%;
  animation: goldShimmer 8s ease infinite alternate;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── CONTAINER ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--px);
}

/* ─── NAVIGATION ──────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: var(--z-nav);
  transition: background var(--t), backdrop-filter var(--t), border-color var(--t);
}
.site-nav.scrolled {
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid rgba(245,200,66,0.12);
}
.nav-inner {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--px);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
/* logo-accent inherits .gold-text via selector above */
.logo-accent { font-style: normal; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: var(--r-f);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.04); }
.nav-links a.active { color: var(--gold-primary); }

.nav-cta { margin-left: 12px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--t);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── NAV DRAWER (mobile) ─────────────────────────────────── */
.nav-drawer {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(8,8,10,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: var(--z-drawer);
  padding: 24px var(--px) 40px;
  transform: translateY(-110%);
  transition: transform 0.38s var(--ease);
  border-bottom: 1px solid rgba(245,200,66,0.1);
}
.nav-drawer.open { transform: translateY(0); }
.nav-drawer ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }
.nav-drawer a {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 600;
  padding: 10px 0;
  color: rgba(240,237,230,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--t-fast);
}
.nav-drawer a:hover { color: var(--text-primary); }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--r-f);
  padding: 14px 32px;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn:active { transform: scale(0.97); }

/* Primary = gold gradient */
.btn-primary {
  background: var(--gold-gradient);
  background-size: 300% 300%;
  animation: goldShimmer 8s ease infinite alternate;
  color: #080808;
  box-shadow: 0 0 32px rgba(245,200,66,0.15), inset 0 1px 0 rgba(255,226,122,0.3);
}
/* Noise texture on gold button */
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.07;
  pointer-events: none;
  mix-blend-mode: overlay;
  border-radius: inherit;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(245,200,66,0.3), inset 0 1px 0 rgba(255,226,122,0.5);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(240,237,230,0.2);
}
.btn-ghost:hover {
  border-color: rgba(245,200,66,0.4);
  background: rgba(245,200,66,0.05);
  transform: translateY(-2px);
}

.btn-sm  { padding: 9px 22px;  font-size: 0.84rem; }
.btn-lg  { padding: 17px 40px; font-size: 1.05rem; }
.btn:disabled, .btn[disabled] { opacity: 0.5; pointer-events: none; }

/* ─── SECTION ANATOMY ─────────────────────────────────────── */
.section { padding-block: var(--py); }

/* section-label: small gold uppercase eyebrow */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  /* colour comes from .gold-text selector above */
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1.5px;
  background: var(--gold-gradient);
  background-size: 200% 200%;
  animation: goldShimmer 8s ease infinite alternate;
  border-radius: 2px;
  flex-shrink: 0;
}

.section-heading {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-intro {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 56ch;
  line-height: 1.75;
}
.section-header { margin-bottom: clamp(40px, 5vw, 64px); }
.section-header.center { text-align: center; }
.section-header.center .section-intro { margin-inline: auto; }
.section-header.center .section-label { margin-inline: auto; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: var(--bg-base);
}
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,200,66,0.05) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%,-60%);
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-block: clamp(80px, 12vh, 120px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,200,66,0.07);
  border: 1px solid rgba(245,200,66,0.22);
  border-radius: var(--r-f);
  padding: 6px 18px 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--gold-primary);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 28px;
  max-width: 18ch;
}
.hero-headline .h-line { display: block; }
/* .h-accent inherits gold-text selector */

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: rgba(240,237,230,0.6);
  max-width: 50ch;
  line-height: 1.75;
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 72px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
  /* text colour via .gold-text when relevant; default white */
  color: var(--text-primary);
}
.hero-stat-num span { color: var(--gold-primary); }
.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ─── PROOF BAR ───────────────────────────────────────────── */
.proof-bar-section {
  padding-block: 64px;
  background: var(--bg-surface);
  border-top: 1px solid rgba(245,200,66,0.08);
  border-bottom: 1px solid rgba(245,200,66,0.08);
}
.proof-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.proof-bar-item {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.proof-bar-item + .proof-bar-item::before {
  content: '';
  position: absolute; left: 0; top: 10%; height: 80%;
  width: 1px;
  background: rgba(245,200,66,0.12);
}
.proof-bar-num {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
  display: block;
  /* colour from .gold-text selector */
}
.proof-bar-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 10px;
  font-weight: 500;
}

/* ─── SERVICES ────────────────────────────────────────────── */
.services-section { background: var(--bg-base); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-surface);
  border: 1px solid rgba(245,200,66,0.15);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--t), transform var(--t);
  display: flex; flex-direction: column;
}
/* Spotlight follows cursor via JS --mouse-x/--mouse-y props */
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(500px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(245,200,66,0.07), transparent 60%);
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
  border-radius: inherit;
}
.service-card:hover { border-color: rgba(245,200,66,0.4); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: var(--r-sm);
  background: rgba(245,200,66,0.07);
  border: 1px solid rgba(245,200,66,0.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--gold-primary);
  transition: background var(--t), box-shadow var(--t);
}
.service-icon svg { width: 22px; height: 22px; }
.service-card:hover .service-icon {
  background: rgba(245,200,66,0.14);
  box-shadow: 0 0 24px rgba(245,200,66,0.2);
}
.service-card-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.service-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  /* gold via selector */
  background: var(--gold-gradient);
  background-size: 300% 300%;
  animation: goldShimmer 8s ease infinite alternate;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: gap var(--t-fast);
  margin-top: auto;
  cursor: pointer;
}
.service-card-link svg {
  width: 15px; height: 15px;
  -webkit-text-fill-color: var(--gold-primary);
  color: var(--gold-primary);
  flex-shrink: 0;
  transition: transform var(--t-fast);
}
.service-card:hover .service-card-link { gap: 10px; }
.service-card:hover .service-card-link svg { transform: translateX(3px); }

/* ─── PROCESS ─────────────────────────────────────────────── */
.process-section { background: var(--bg-surface); }
.process-outer {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.process-outer::-webkit-scrollbar { display: none; }
.process-track {
  display: flex;
  gap: 0;
  min-width: max-content;
  padding-inline: var(--px);
  max-width: var(--max);
  margin-inline: auto;
}
.process-step {
  flex: 0 0 clamp(260px, 30vw, 340px);
  padding: 0 clamp(16px,2.5vw,32px);
  scroll-snap-align: start;
  border-left: 1px solid rgba(245,200,66,0.1);
}
.process-step:first-child { padding-left: 0; border-left: none; }
.process-step-inner { padding-block: 40px; }

.process-num {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
  /* gold via selector */
}
.process-step-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.process-step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 30ch;
}
.process-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding-block-end: 8px;
}
.process-progress-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(245,200,66,0.2);
  transition: background var(--t), transform var(--t);
  cursor: pointer;
}
.process-progress-dot.active {
  background: var(--gold-primary);
  transform: scale(1.3);
}
.process-progress-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-left: 8px;
}

/* ─── PROOF / WHY-US ──────────────────────────────────────── */
.proof-section { background: var(--bg-base); }
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.proof-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.proof-item { display: flex; gap: 14px; align-items: flex-start; }
.proof-check {
  width: 24px; height: 24px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(245,200,66,0.1);
  border: 1px solid rgba(245,200,66,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-primary);
  margin-top: 2px;
}
.proof-check svg { width: 13px; height: 13px; }
.proof-item-text strong { display: block; font-size: 0.95rem; color: var(--text-primary); margin-bottom: 3px; }
.proof-item-text span  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.proof-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.proof-stat-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: border-color var(--t);
}
.proof-stat-card:hover { border-color: rgba(245,200,66,0.2); }
.proof-stat-big {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  /* spans inside use .gold-text selector */
}
.proof-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── PROBLEM / LOSS AVERSION ─────────────────────────────── */
.problem-section { background: var(--bg-surface); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.problem-points { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.problem-point { display: flex; gap: 18px; align-items: flex-start; }
.problem-point-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--r-sm);
  background: rgba(245,200,66,0.06);
  border: 1px solid rgba(245,200,66,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-primary);
}
.problem-point-icon svg { width: 20px; height: 20px; }
.problem-point h4 { font-size: 1rem; font-weight: 600; margin-bottom: 5px; color: var(--text-primary); }
.problem-point p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.problem-visual {
  position: relative;
  height: 420px;
  background: var(--bg-surface-2);
  border: 1px solid rgba(245,200,66,0.1);
  border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.problem-visual::before {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(245,200,66,0.07) 0%, transparent 70%);
  border-radius: 50%;
}
.problem-visual-inner { text-align: center; position: relative; z-index: 1; padding: 24px; }
.problem-big-num {
  font-family: var(--font-head);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1;
  display: block;
  /* gold via selector */
}
.problem-big-sub { font-size: 1rem; color: rgba(240,237,230,0.5); margin-top: 10px; line-height: 1.5; }

/* ─── CALCULATOR ──────────────────────────────────────────── */
.calculator-section { background: var(--bg-base); }
.calc-wrapper { max-width: 680px; margin-inline: auto; text-align: center; }
.calc-card {
  background: var(--bg-surface);
  border: 1px solid rgba(245,200,66,0.15);
  border-radius: var(--r-xl);
  padding: 48px;
  margin-top: 48px;
  text-align: left;
}
.calc-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.calc-field label {
  display: block;
  font-size: 0.72rem; font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.calc-field input {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-surface-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  color: var(--text-primary);
  font-size: 1.05rem; font-weight: 600;
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  -moz-appearance: textfield;
}
.calc-field input::-webkit-outer-spin-button,
.calc-field input::-webkit-inner-spin-button { -webkit-appearance: none; }
.calc-field input:focus {
  border-color: rgba(245,200,66,0.4);
  box-shadow: 0 0 0 3px rgba(245,200,66,0.06);
}
.calc-result-box {
  background: rgba(245,200,66,0.04);
  border: 1px solid rgba(245,200,66,0.18);
  border-radius: var(--r);
  padding: 28px;
  text-align: center;
  margin-bottom: 28px;
}
.calc-result-label {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); margin-bottom: 10px; display: block;
}
#calc-result-num {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  display: block; line-height: 1;
  /* gold via selector above */
  transition: transform 0.2s var(--ease);
}
.calc-result-sub { font-size: 0.88rem; color: var(--text-muted); margin-top: 10px; }
.calc-cta-hint { font-size: 0.95rem; color: rgba(240,237,230,0.55); margin-bottom: 20px; text-align: center; }

/* ─── CASE STUDIES ────────────────────────────────────────── */
.cases-section { background: var(--bg-surface); }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--bg-surface-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t), transform var(--t);
  cursor: pointer;
}
.case-card:hover { border-color: rgba(245,200,66,0.22); transform: translateY(-4px); }
.case-card-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.case-tag {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(245,200,66,0.08);
  border: 1px solid rgba(245,200,66,0.18);
  border-radius: var(--r-f);
  font-size: 0.7rem; font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 12px;
}
.case-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-primary);
}
.case-card-body { padding: 20px 28px 28px; }
.case-metric { display: flex; align-items: baseline; gap: 8px; }
.case-num {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  /* gold via selector */
}
.case-metric-label { font-size: 0.85rem; color: var(--text-muted); }
.case-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-top: 12px; }

/* ─── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-section { background: var(--bg-base); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: 36px;
  transition: border-color var(--t);
  display: flex; flex-direction: column;
}
.testimonial-card:hover { border-color: rgba(245,200,66,0.2); }
.testimonial-stars {
  display: flex; gap: 4px;
  margin-bottom: 20px;
}
.testimonial-stars svg { width: 16px; height: 16px; color: var(--gold-primary); fill: currentColor; }
.testimonial-quote {
  font-size: 0.98rem; line-height: 1.8;
  color: rgba(240,237,230,0.8);
  font-style: italic;
  flex: 1;
  margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  background-size: 300% 300%;
  animation: goldShimmer 8s ease infinite alternate;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 700;
  color: #080808;
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); }
.testimonial-role { font-size: 0.78rem; color: var(--text-muted); }

/* ─── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,200,66,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  position: relative; z-index: 1;
}
.cta-inner .section-heading { margin-bottom: 16px; }
.cta-inner .section-intro    { margin-bottom: 40px; margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ─── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid rgba(245,200,66,0.1);
  padding-block: 80px 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .logo-text {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  display: block;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; max-width: 28ch; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-surface-2);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.footer-social-link svg { width: 16px; height: 16px; }
.footer-social-link:hover {
  border-color: rgba(245,200,66,0.35);
  color: var(--gold-primary);
  background: rgba(245,200,66,0.07);
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-muted); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.9rem; color: var(--text-muted); transition: color var(--t-fast); }
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem; color: var(--text-muted);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a:hover { color: var(--text-primary); }

/* ─── PAGE HERO (sub-pages) ───────────────────────────────── */
.page-hero {
  padding: 160px var(--px) 100px;
  position: relative; overflow: hidden;
  background: var(--bg-base);
}
.page-hero::before {
  content: '';
  position: absolute; top: -100px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,200,66,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { max-width: var(--max); margin-inline: auto; }
.page-hero h1 { max-width: 18ch; margin-bottom: 20px; }
.page-hero .lead {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(240,237,230,0.6);
  max-width: 52ch; line-height: 1.75;
  margin-bottom: 36px;
}

/* ─── PRICING CARDS ───────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pricing-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  position: relative;
  transition: border-color var(--t), transform var(--t);
}
.pricing-card.featured {
  border-color: rgba(245,200,66,0.35);
  background: var(--bg-surface-2);
}
.pricing-card:hover { border-color: rgba(245,200,66,0.4); transform: translateY(-4px); }
.pricing-badge {
  position: absolute; top: -13px; left: 50%;
  transform: translateX(-50%);
  padding: 3px 16px;
  background: var(--gold-gradient);
  background-size: 200% 200%;
  animation: goldShimmer 8s ease infinite alternate;
  border-radius: var(--r-f);
  font-size: 0.72rem; font-weight: 700;
  color: #080808; white-space: nowrap;
}
.pricing-name {
  font-family: var(--font-head);
  font-size: 1.2rem; font-weight: 600; margin-bottom: 8px;
}
.pricing-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
.pricing-price {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1;
  margin-bottom: 4px;
  background: var(--gold-gradient);
  background-size: 300% 300%;
  animation: goldShimmer 8s ease infinite alternate;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-price-note { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-divider { height: 1px; background: rgba(255,255,255,0.07); margin-bottom: 24px; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: rgba(240,237,230,0.8); line-height: 1.5;
}
.pricing-check { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold-primary); margin-top: 1px; }
.pricing-check svg { width: 18px; height: 18px; }

/* ─── FORMS ───────────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 0; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  display: block; font-size: 0.72rem; font-weight: 700;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-surface-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none; appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: rgba(245,200,66,0.4);
  box-shadow: 0 0 0 3px rgba(245,200,66,0.06);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23888'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
  cursor: pointer;
}
.form-select option { background: var(--bg-surface-2); }

/* ─── ACCORDION (FAQ) ─────────────────────────────────────── */
.accordion-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.accordion-trigger {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 22px 0;
  text-align: left;
  color: var(--text-primary);
  font-size: 1rem; font-weight: 600;
  cursor: pointer; background: none; border: none;
  transition: color var(--t-fast);
  font-family: var(--font-body);
}
.accordion-trigger:hover { color: var(--gold-primary); }
.accordion-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-left: 16px;
  color: var(--text-muted);
  transition: transform var(--t), border-color var(--t), background var(--t), color var(--t);
}
.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
  border-color: rgba(245,200,66,0.4);
  background: rgba(245,200,66,0.1);
  color: var(--gold-primary);
}
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.accordion-item.open .accordion-body { max-height: 600px; }
.accordion-body p { padding: 0 44px 22px 0; font-size: 0.92rem; line-height: 1.8; color: var(--text-muted); }

/* ─── TOAST ───────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 28px; right: 28px;
  padding: 14px 22px;
  border-radius: var(--r);
  font-size: 0.9rem; font-weight: 600;
  z-index: calc(var(--z-noise) + 1);
  transform: translateY(100px); opacity: 0;
  transition: transform var(--t), opacity var(--t);
  pointer-events: none; max-width: 340px;
}
.toast.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.toast-success { background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.28); color: #4ade80; }
.toast-error   { background: rgba(239,68,68,0.12);  border: 1px solid rgba(239,68,68,0.28);  color: #f87171; }

/* ─── GENERIC CARD ────────────────────────────────────────── */
.card {
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: border-color var(--t);
}
.card:hover { border-color: rgba(245,200,66,0.15); }

/* ─── UTILITIES ───────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-8  { margin-bottom: 32px; }
.w-full { width: 100%; }

/* ─── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .proof-grid { grid-template-columns: 1fr; gap: 48px; }
  .problem-grid { grid-template-columns: 1fr; gap: 48px; }
  .problem-visual { height: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cases-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .calc-inputs { grid-template-columns: 1fr 1fr; }
  .proof-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .proof-bar-item + .proof-bar-item::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta  { display: none; }
  .nav-toggle { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .calc-inputs { grid-template-columns: 1fr; }
  .calc-card { padding: 28px 20px; }
  .page-hero { padding: 130px var(--px) 80px; }

  /* Typography caps on mobile */
  .section-heading { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .hero-h1 { font-size: clamp(2rem, 7vw, 2.5rem); }

  /* Minimum section padding on mobile (≥ 3rem) */
  .section { padding-block: clamp(48px, 8vw, 80px); }
}

@media (max-width: 480px) {
  .proof-bar-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .proof-stats { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   TJANSTER PAGE — additional classes
   ═══════════════════════════════════════════════════════════ */

/* ── Hero (sub-page, no canvas) ────────────────────────────── */
.tjanster-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
}
/* Extra glow on left to frame the left-aligned headline */
.tjanster-hero::after {
  content: '';
  position: absolute;
  top: 0; left: -60px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(245,200,66,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.hero-actions-tj {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 36px;
}

/* ── Services grid — 2-column override ─────────────────────── */
.services-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 900px) {
  .services-grid--2col { grid-template-columns: 1fr; }
}

/* ── Process grid — simple 4-column (no horizontal scroll) ─── */
.process-grid-simple {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
/* Decorative connecting line, desktop only */
.process-grid-simple::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 13%;
  right: 13%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,200,66,0.22), transparent);
  pointer-events: none;
}
.process-step-tj {
  padding: 0 24px 0 0;
  position: relative;
  z-index: 1; /* sit above the ::before line */
}
.process-step-tj:first-child { padding-left: 0; }
.process-step-tj .process-num {
  display: block;
  margin-bottom: 20px;
  /* font-size / gold colour inherited from existing .process-num rule */
}
@media (max-width: 900px) {
  .process-grid-simple {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .process-grid-simple::before { display: none; }
  .process-step-tj { padding-right: 0; }
}
@media (max-width: 480px) {
  .process-grid-simple {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ── Value cards (why-us section) ──────────────────────────── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--bg-surface);
  border: 1px solid rgba(245,200,66,0.15);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  transition: border-color var(--t), transform var(--t);
}
.value-card:hover {
  border-color: rgba(245,200,66,0.4);
  transform: translateY(-4px);
}
.value-card-icon {
  width: 48px; height: 48px;
  background: rgba(245,200,66,0.07);
  border: 1px solid rgba(245,200,66,0.18);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.value-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .value-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .value-grid { grid-template-columns: 1fr; }
}

/* ── CTA trust strip (re-declared for tjanster, matches index) ─ */
.cta-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.cta-trust-item svg {
  width: 16px; height: 16px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   KONTAKT PAGE — additional classes
   ═══════════════════════════════════════════════════════════ */

/* ── Contact split: form (left) + info panel (right) ───────── */
.kontakt-split {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 72px;
  align-items: start;
}
@media (max-width: 960px) {
  .kontakt-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ── Form column ────────────────────────────────────────────── */
.kontakt-form-col .section-label { margin-bottom: 28px; }

/* Full-width submit button inside form column */
.kontakt-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

/* ── Info panel ─────────────────────────────────────────────── */
.kontakt-info-col {
  background: var(--bg-surface);
  border: 1px solid rgba(245,200,66,0.14);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

/* Column heading (smaller than .section-heading) */
.kontakt-col-heading {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 32px;
  line-height: 1.2;
}

/* ── Info items ─────────────────────────────────────────────── */
.kontakt-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.kontakt-info-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.kontakt-info-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: rgba(245,200,66,0.07);
  border: 1px solid rgba(245,200,66,0.18);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.kontakt-info-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 5px;
}
.kontakt-info-value {
  font-size: 0.92rem;
  color: var(--text-primary);
  line-height: 1.55;
}
.kontakt-info-value a {
  color: var(--gold-primary);
  transition: color var(--t-fast);
  word-break: break-all;
}
.kontakt-info-value a:hover { color: var(--gold-light); }

/* ── Trust note ─────────────────────────────────────────────── */
.kontakt-trust-note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(245,200,66,0.1);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Form success message ───────────────────────────────────── */
.form-success-msg {
  padding: 48px 32px;
  text-align: center;
  background: rgba(245,200,66,0.04);
  border: 1px solid rgba(245,200,66,0.15);
  border-radius: var(--r-lg);
}
.form-success-icon {
  width: 56px; height: 56px;
  background: rgba(245,200,66,0.1);
  border: 1px solid rgba(245,200,66,0.28);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.form-success-msg h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.form-success-msg p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 36ch;
  margin-inline: auto;
}

/* ── Form error message ─────────────────────────────────────── */
.form-error-msg {
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.22);
  border-radius: var(--r);
  font-size: 0.88rem;
  color: #f87171;
  line-height: 1.55;
}

/* ── Process 3-col strip (kontakt why-contact section) ─────── */
.process-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.process-grid-3col::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 18%;
  right: 18%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,200,66,0.22), transparent);
  pointer-events: none;
}
@media (max-width: 768px) {
  .process-grid-3col {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .process-grid-3col::before { display: none; }
}

/* ── FAQ teaser list max-width centering ────────────────────── */
.faq-teaser-list {
  max-width: 760px;
  margin-inline: auto;
}

/* ═══════════════════════════════════════════════════════════
   OM OSS PAGE — additional classes
   ═══════════════════════════════════════════════════════════ */

/* ── Hero trust stats strip ─────────────────────────────────── */
.hero-trust-stats {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-trust-stat {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1;
}
.hero-trust-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(245,200,66,0.4);
  flex-shrink: 0;
}

/* ── Story section: 2-col layout ───────────────────────────── */
.story-section { background: var(--bg-surface); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 72px;
  align-items: start;
}
@media (max-width: 960px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Decorative large quote mark */
.story-quote-mark {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(5rem, 9vw, 8rem);
  font-weight: 700;
  line-height: 0.65;
  background: var(--gold-gradient);
  background-size: 300% 300%;
  animation: goldShimmer 8s ease infinite alternate;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  user-select: none;
  pointer-events: none;
}

.story-body {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: rgba(240,237,230,0.75);
  line-height: 1.8;
}

/* Stats panel */
.story-stats-col {
  background: var(--bg-base);
  border: 1px solid rgba(245,200,66,0.14);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.story-stat {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.story-stat:first-child { padding-top: 0; }
.story-stat:last-child  { padding-bottom: 0; border-bottom: none; }
.story-stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
  /* gold via .h-accent selector in base CSS */
}
.story-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Team grid ──────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .team-grid { grid-template-columns: 1fr; }
}

.team-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: center;
  transition: border-color var(--t), transform var(--t);
  cursor: default;
}
.team-card:hover {
  border-color: rgba(245,200,66,0.4);
  transform: translateY(-4px);
}

/* Circular gold gradient avatar */
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gold-gradient);
  background-size: 300% 300%;
  animation: goldShimmer 8s ease infinite alternate;
  border: 2px solid rgba(245,200,66,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: #080808;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.team-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.team-role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 14px;
}
.team-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── CTA trust line ─────────────────────────────────────────── */
.om-cta-trust {
  margin-top: 24px;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════════════════════════
   TEAM SECTION — override/fix (cascade over earlier rules)
   ═══════════════════════════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.team-card {
  background: #111111;
  border: 1px solid rgba(245,200,66,0.15);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.team-card:hover {
  border-color: rgba(245,200,66,0.4);
  transform: translateY(-4px);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A227 0%, #F5C842 50%, #C9A227 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Clash Display', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #080808;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.team-name {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #F5F0E8;
  margin: 0 0 0.25rem 0;
}
.team-role {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F5C842;
  margin: 0 0 1rem 0;
}
.team-desc {
  font-size: 0.95rem;
  color: #999;
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   SEO-GEO PAGE — additional classes
   ═══════════════════════════════════════════════════════════ */

/* ── Hero pill tags ─────────────────────────────────────────── */
.hero-pill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid rgba(245,200,66,0.35);
  border-radius: var(--r-f);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold-primary);
  background: rgba(245,200,66,0.06);
}

/* ── GEO Explainer 2-col layout ─────────────────────────────── */
.geo-explainer-section { background: var(--bg-surface); }
.geo-explainer-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: center;
}
@media (max-width: 960px) {
  .geo-explainer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.geo-body {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: rgba(240,237,230,0.75);
  line-height: 1.8;
  margin-top: 20px;
}

/* ── GEO highlight box — dark surface, gold left border ─────── */
.geo-highlight-box {
  background: #1A1A1A;
  border-left: 4px solid var(--gold-primary);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 36px 32px;
}
.geo-highlight-quote {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  font-style: italic;
  line-height: 1.75;
  background: var(--gold-gradient);
  background-size: 300% 300%;
  animation: goldShimmer 8s ease infinite alternate;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   SOCIAL MEDIA PAGE — additional classes
   ═══════════════════════════════════════════════════════════ */

/* ── "What we do" section — dark surface, reuses geo grid ─── */
.sm-what-section { background: var(--bg-surface); }

/* ── Platform cards grid ─────────────────────────────────── */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .platform-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .platform-grid { grid-template-columns: 1fr; }
}

.platform-card {
  background: #111111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 36px 24px 32px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.platform-card:hover {
  border-color: rgba(245,200,66,0.35);
  transform: translateY(-4px);
}

.platform-icon {
  width: 56px;
  height: 56px;
  background: rgba(245,200,66,0.07);
  border: 1px solid rgba(245,200,66,0.18);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.platform-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 10px 0;
}

.platform-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   WEBB-PAKET PAGE — pricing overrides & new classes
   ═══════════════════════════════════════════════════════════ */

/* ── Pricing grid: align-items start so featured scale doesn't
      stretch siblings; responsive collapse ─────────────────── */
.wb-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .wb-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
}

/* ── Card overrides scoped to wb-pricing-grid ───────────────── */
.wb-pricing-grid .pricing-card {
  background: #111111;
  border: 1px solid rgba(245,200,66,0.15);
  border-radius: 16px;
  padding: 2.5rem 2rem;
}
.wb-pricing-grid .pricing-card:hover {
  border-color: rgba(245,200,66,0.4);
  transform: translateY(-4px);
}
.wb-pricing-grid .pricing-card.featured {
  border-color: #F5C842;
  transform: scale(1.03);
  background: #131313;
}
.wb-pricing-grid .pricing-card.featured:hover {
  transform: scale(1.03) translateY(-3px);
}

/* ── Badge: top-right corner (override base centred badge) ─── */
.wb-pricing-grid .pricing-badge {
  top: -12px;
  left: auto;
  right: 1.5rem;
  transform: none;
  background: linear-gradient(135deg, #C9A227, #F5C842);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

/* ── Price: plain gold (not gradient clip) for clarity ──────── */
.wb-pricing-grid .pricing-price {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.25rem;
  background: none;
  -webkit-text-fill-color: #F5C842;
  color: #F5C842;
}

/* ── Note (alias for pricing-price-note) ───────────────────── */
.pricing-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem 0;
}

/* ── Feature list: <ul><li> inside wb-pricing-grid ─────────── */
.wb-pricing-grid .pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.wb-pricing-grid .pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(240,237,230,0.82);
  line-height: 1.45;
}

/* ── Outline CTA button (non-featured cards) ────────────────── */
.pricing-btn-outline {
  display: block;
  width: 100%;
  padding: 0.85rem 1.5rem;
  border: 1px solid rgba(245,200,66,0.55);
  border-radius: 8px;
  background: transparent;
  color: #F5C842;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  box-sizing: border-box;
}
.pricing-btn-outline:hover {
  background: rgba(245,200,66,0.08);
  border-color: #F5C842;
}

/* ═══════════════════════════════════════════════════════════
   FAQ PAGE — accordion & contact section
   ═══════════════════════════════════════════════════════════ */

/* ── Hero link (gold anchor, no button) ─────────────────────── */
.faq-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-primary);
  transition: color var(--t-fast), gap var(--t-fast);
  letter-spacing: 0.01em;
}
.faq-hero-link:hover {
  color: var(--gold-light);
  gap: 10px;
}

/* ── FAQ section container ───────────────────────────────────── */
.faq-section {
  background: var(--bg-base);
}
.faq-section .container {
  max-width: 820px;
}

/* ── FAQ group block ─────────────────────────────────────────── */
.faq-group {
  margin-bottom: 3rem;
}
.faq-group-title {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(245,200,66,0.18);
}

/* ── FAQ accordion item (<details>) ─────────────────────────── */
.faq-item {
  border-bottom: 1px solid rgba(245,200,66,0.12);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: 'Clash Display', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #F5F0E8;
  list-style: none;
  gap: 1rem;
  transition: color var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #F5C842;
  transition: transform 0.3s ease;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
  text-align: center;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 0 1.25rem 0;
  color: #999;
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item summary:hover { color: #F5C842; }

/* ── Still have questions — contact options ──────────────────── */
.faq-contact-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin: 36px 0 32px;
}
.faq-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--t-fast);
}
.faq-contact-item:hover { color: var(--gold-primary); }
.faq-contact-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(245,200,66,0.07);
  border: 1px solid rgba(245,200,66,0.22);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.faq-contact-item:hover .faq-contact-icon {
  background: rgba(245,200,66,0.12);
  border-color: rgba(245,200,66,0.4);
}

@media (max-width: 600px) {
  .faq-contact-options {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
  }
  .faq-section .container {
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   INTEGRITETSPOLICY PAGE — policy prose layout
   ═══════════════════════════════════════════════════════════ */

.policy-hero { min-height: 40vh; }
.policy-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}
.policy-card {
  background: #111111;
  border: 1px solid rgba(245,200,66,0.1);
  border-radius: 16px;
  padding: 3rem;
}
.policy-card h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #F5F0E8;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.policy-card h2:first-child { margin-top: 0; }
.policy-card p {
  color: #999;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.policy-card ul {
  color: #999;
  line-height: 1.8;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  list-style: disc;
}
.policy-card a {
  color: #F5C842;
  text-decoration: none;
}
.policy-card a:hover { text-decoration: underline; }
.policy-back {
  display: block;
  text-align: center;
  margin-top: 2rem;
  color: #F5C842;
  text-decoration: none;
  font-size: 0.95rem;
}
.policy-back:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .policy-card { padding: 2rem 1.5rem; }
}
