:root {
  --text: #102145;
  --muted: #5f6b8b;
  --accent: #1b4dff;
  --accent-soft: rgba(27, 77, 255, 0.1);
  --accent-strong: #0f3cca;
  --accent-warm: #FF4D1F;
  --accent-warm-soft: rgba(255, 77, 31, 0.1);
  --border: rgba(15, 77, 255, 0.13);
  --surface: #ffffff;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding-top: 0;
  background: linear-gradient(180deg, #f8fbff 0%, #e7eeff 100%);
  color: var(--text);
  min-height: 100vh;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ─── Header ─────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(6, 15, 30, 0.5);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 400ms ease, border-color 400ms ease;
}

.site-header.header--scrolled {
  background: #ffffff;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 77, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand img {
  height: 40px;
  filter: invert(1);
  transition: filter 400ms ease;
}

.site-header.header--scrolled .brand img {
  filter: none;
}

.primary-nav {
  display: flex;
  gap: 1.75rem;
}

.primary-nav a, .button { text-decoration: none; }

.primary-nav a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  transition: color 300ms ease;
  position: relative;
  padding-bottom: 2px;
}

.site-header.header--scrolled .primary-nav a {
  color: var(--muted);
}

.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 240ms cubic-bezier(0.23, 1, 0.32, 1);
}

.primary-nav a:hover { color: white; }
.site-header.header--scrolled .primary-nav a:hover { color: var(--accent-strong); }
.primary-nav a:hover::after,
.primary-nav a.active::after { width: 100%; }

/* ─── Buttons ────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 240ms cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 240ms ease, background 200ms ease, border-color 200ms ease;
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }

.button-primary {
  background: linear-gradient(135deg, var(--accent), #3f7dff);
  color: #fff;
  box-shadow: 0 6px 24px rgba(27, 77, 255, 0.3);
}
.button-primary:hover {
  box-shadow: 0 12px 36px rgba(27, 77, 255, 0.4);
}

/* Hero-specific buttons */
.button-white {
  background: white;
  color: var(--accent-strong);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}
.button-white:hover {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
}

.button-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
}
.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
  color: white;
}

/* ─── Typography ─────────────────────────────── */
h1, h2, h3 {
  margin: 0;
  font-family: 'Syne', system-ui, sans-serif;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  color: white;
}

.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-strong);
  font-size: 0.78rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Header button on dark bg */
.site-header .button-primary {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.site-header .button-primary:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.site-header.header--scrolled .button-primary {
  background: linear-gradient(135deg, var(--accent), #3f7dff);
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 24px rgba(27, 77, 255, 0.3);
}

.site-header.header--scrolled .button-primary:hover {
  box-shadow: 0 12px 36px rgba(27, 77, 255, 0.4);
}

/* ─── HERO ───────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #060f1e;
  /* subtle dot grid */
  background-image:
    radial-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  background-position: 0 0, 22px 22px;
}

/* Animated gradient blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  will-change: transform;
}

.hero-blob--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(27, 77, 255, 0.45), transparent 70%);
  top: -180px;
  left: -180px;
  animation: blob1 12s ease-in-out infinite;
}

.hero-blob--2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 77, 31, 0.28), transparent 70%);
  bottom: -150px;
  right: -100px;
  animation: blob2 10s ease-in-out infinite;
}

.hero-blob--3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(120, 60, 255, 0.22), transparent 70%);
  top: 40%;
  right: 15%;
  animation: blob3 14s ease-in-out infinite;
}

@keyframes blob1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(80px, 60px) scale(1.08); }
  66%       { transform: translate(-40px, 80px) scale(0.95); }
}
@keyframes blob2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(-70px, -50px) scale(1.1); }
  70%       { transform: translate(50px, 30px) scale(0.92); }
}
@keyframes blob3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-60px, 70px) scale(1.12); }
}

/* Hero content */
.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.1s both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-warm);
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.65); }
}

.hero-content h1 {
  max-width: 18ch;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.25s both;
}

.hero-highlight {
  font-style: normal;
  background: linear-gradient(120deg, #60a5fa, #a78bfa, #f97316, #60a5fa);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeUp 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.25s both,
    gradientFlow 5s linear infinite;
}

@keyframes gradientFlow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.hero-copy {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 52ch;
  margin-bottom: 0;
  animation: fadeUp 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
  animation: fadeUp 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.55s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeUp 1s cubic-bezier(0.23, 1, 0.32, 1) 1.2s both;
}

.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollDrop 2.2s cubic-bezier(0.23, 1, 0.32, 1) infinite;
  transform-origin: top;
}

@keyframes scrollDrop {
  0%   { transform: scaleY(0); opacity: 1; transform-origin: top; }
  50%  { transform: scaleY(1); opacity: 1; transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); opacity: 0; transform-origin: bottom; }
}

/* ─── Om oss ─────────────────────────────────── */
.om-oss-section {
  background: linear-gradient(160deg, #ffffff 0%, #f0f6ff 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.om-oss-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 5rem;
  align-items: start;
}

.om-oss-intro {
  position: sticky;
  top: 6rem;
}

.om-oss-intro h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  color: var(--text);
  margin: 0.5rem 0 2rem;
  line-height: 1.2;
}

.om-oss-year {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.05em;
  line-height: 1;
}

.om-oss-year-label {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0.4rem 0 0;
}

.om-oss-story p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.95;
  margin: 0 0 1.5rem;
}

.om-oss-story p:last-child { margin-bottom: 0; }

.om-oss-story p:first-child {
  font-size: 1.12rem;
  color: var(--text);
  font-weight: 500;
}

/* ─── Metoden ────────────────────────────────── */
.metoden-section {
  background: radial-gradient(ellipse at bottom right, rgba(27, 77, 255, 0.06), transparent 55%),
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.metoden-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.metoden-content h2 {
  font-size: clamp(2rem, 3vw, 2.9rem);
  color: var(--text);
  margin: 0.5rem 0 1.25rem;
}

.metoden-content > p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}

.metoden-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.metoden-points li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.point-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 0.38rem;
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.metoden-points strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.metoden-points p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.metoden-visual { display: flex; justify-content: center; }

.metoden-visual img {
  width: 100%;
  max-width: 420px;
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(15, 77, 255, 0.14), 0 8px 24px rgba(15, 77, 255, 0.08);
  border: 1px solid var(--border);
}

/* ─── Services ───────────────────────────────── */
.services-section {
  background: linear-gradient(180deg, #eef4ff 0%, #f8fbff 100%);
}

.section-intro { margin-bottom: 3rem; }

.section-intro h2 {
  font-size: clamp(2rem, 3vw, 2.9rem);
  color: var(--text);
  margin: 0.5rem 0 1rem;
}

.section-intro p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 54ch;
}

.grid { display: grid; gap: 1.5rem; }

/* Featured card */
.service-featured {
  position: relative;
  background: linear-gradient(145deg, #0b2fa8 0%, #1b4dff 55%, #3f7dff 100%);
  border-radius: 32px;
  padding: 3rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(27, 77, 255, 0.35), 0 8px 24px rgba(27, 77, 255, 0.2);
  transition: transform 240ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 240ms ease;
}

.service-featured::after {
  content: '';
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  background: url('Tenki_pil.jpg') center / contain no-repeat;
  opacity: 0.055;
  filter: invert(1) brightness(3);
  pointer-events: none;
}

.service-featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 32px 96px rgba(27, 77, 255, 0.42), 0 12px 32px rgba(27, 77, 255, 0.25);
}

.service-featured-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.service-icon--white {
  background: rgba(255, 255, 255, 0.18);
  color: white;
}

.service-featured-badge {
  display: inline-flex;
  align-items: center;
  background: var(--accent-warm);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
}

.service-featured h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  color: white;
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 1;
}

.service-featured > p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1.75rem;
  max-width: 60ch;
  position: relative;
  z-index: 1;
}

.service-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 2rem;
  position: relative;
  z-index: 1;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.93rem;
}

.service-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

/* Support cards */
.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(15, 77, 255, 0.06);
  border-top: 3px solid var(--accent);
  transition: transform 240ms cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 240ms ease, border-color 240ms ease;
}

.service-card:nth-child(2n) { border-top-color: var(--accent-warm); }
.service-card:nth-child(3n) { border-top-color: #7c3aed; }

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(15, 77, 255, 0.12);
  border-color: rgba(27, 77, 255, 0.2);
}

.service-card h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.service-card p { color: var(--muted); line-height: 1.75; font-size: 0.95rem; }

.service-icon {
  width: 46px;
  height: 46px;
  background: var(--accent-soft);
  border-radius: 13px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  color: var(--accent-strong);
}

.service-icon svg { width: 22px; height: 22px; }

.service-card:nth-child(2n) .service-icon { background: var(--accent-warm-soft); color: var(--accent-warm); }
.service-card:nth-child(3n) .service-icon { background: rgba(124,58,237,0.1); color: #7c3aed; }

/* ─── Sections generic ───────────────────────── */
.section { padding: 6rem 0; }

/* ─── Process ────────────────────────────────── */
.process-section {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: calc(2rem + 24px);
  right: calc(2rem + 24px);
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(15, 77, 255, 0.06);
  display: grid;
  gap: 1rem;
  min-height: 200px;
  position: relative;
  z-index: 1;
}

.process-step span {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 800;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(27, 77, 255, 0.35);
}

.process-step h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.process-step p { color: var(--muted); line-height: 1.75; font-size: 0.93rem; }

/* ─── Testimonials ───────────────────────────── */
.testimonials-section {
  background: linear-gradient(150deg, #080f26 0%, #0d1f55 50%, #070e20 100%);
  border-radius: 40px;
  margin: 0 0.75rem;
  padding: 6rem 0;
}

.testimonials-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-intro h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: white;
  margin: 0.5rem 0 0;
}

.eyebrow--light { color: rgba(255, 255, 255, 0.45); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: center;
}

.tcard {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

.tcard-quote {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  line-height: 0.9;
  color: var(--accent);
  opacity: 0.45;
}

.tcard-photo {
  width: 140px;
  height: 155px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: rgba(27, 77, 255, 0.25);
  flex-shrink: 0;
}

.tcard-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.tcard-name {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  letter-spacing: -0.01em;
}

.tcard-company {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
}

.tcard-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  line-height: 1.8;
  font-style: italic;
  margin: 0;
  max-width: 24ch;
}

/* ─── Contact ────────────────────────────────── */
.contact-section {
  padding-top: 2rem;
}

.contact-card {
  background: linear-gradient(145deg, #0b2fa8 0%, #1b4dff 55%, #3f7dff 100%);
  border-radius: 36px;
  padding: 4rem;
  text-align: center;
  box-shadow: 0 24px 80px rgba(27, 77, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.contact-card .eyebrow {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.75rem;
}

.contact-card h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.contact-card > p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 50ch;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.contact-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 1.25rem 2rem;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: background 220ms ease, transform 220ms cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 220ms ease;
  min-width: 240px;
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.contact-link-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: white;
  flex-shrink: 0;
}

.contact-link-icon svg { width: 20px; height: 20px; }

.contact-link-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: left;
}

.contact-link-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-link-value {
  font-size: 1rem;
  color: white;
  font-weight: 600;
  font-family: 'Syne', sans-serif;
}

/* ─── Footer ─────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.8rem 0;
}

.footer-inner {
  display: flex;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
}

/* ─── Scroll reveal ──────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 750ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 750ms cubic-bezier(0.23, 1, 0.32, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 960px) {
  .om-oss-grid,
  .metoden-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .om-oss-intro { position: static; }
  .metoden-visual { order: -1; }
  .metoden-visual img { max-width: 340px; margin: 0 auto; }

  .service-grid { grid-template-columns: 1fr; }
  .service-features { grid-template-columns: 1fr; }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid::before { display: none; }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .testimonials-section { border-radius: 24px; margin: 0; }
  .tcard-text { max-width: 38ch; }

  .contact-card { padding: 3rem 2rem; }
  .contact-links { flex-direction: column; align-items: center; }
  .contact-link { width: 100%; max-width: 340px; }

  .header-inner { flex-wrap: wrap; }
}

@media (max-width: 680px) {
  h1 { font-size: clamp(2.6rem, 10vw, 3.5rem); }

  .hero-section { min-height: 100svh; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
  }
  .button { width: 100%; justify-content: center; }

  .service-featured { padding: 2rem; }
  .service-features { grid-template-columns: 1fr; }

  .process-grid { grid-template-columns: 1fr; }

  .contact-card { padding: 2.5rem 1.5rem; }
}
