:root {
  --vf-bg: #050816;
  --vf-bg-elevated: rgba(14, 22, 40, 0.9);
  --vf-bg-soft: #0b1020;
  --vf-border-subtle: rgba(255, 255, 255, 0.06);
  --vf-border-strong: rgba(255, 255, 255, 0.14);
  --vf-text: #f9fafb;
  --vf-text-soft: #9ca3af;
  --vf-primary: #38bdf8;
  --vf-primary-soft: rgba(56, 189, 248, 0.15);
  --vf-primary-strong: #06b6d4;
  --vf-accent-purple: #a855f7;
  --vf-accent-orange: #fb923c;
  --vf-success: #22c55e;
  --vf-radius-lg: 24px;
  --vf-radius-md: 16px;
  --vf-radius-pill: 999px;
  --vf-shadow-soft: 0 18px 60px rgba(15, 23, 42, 0.75);
  --vf-shadow-subtle: 0 10px 40px rgba(15, 23, 42, 0.65);
  --vf-blur: 26px;
  --vf-container-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[v-cloak] {
  display: none;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top left, #1d2236 0, #050816 48%),
    radial-gradient(circle at bottom right, #111827 0, #020617 50%);
  color: var(--vf-text);
  -webkit-font-smoothing: antialiased;
}

.vf-container {
  max-width: var(--vf-container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.vf-section {
  padding: 5.5rem 0;
}

.vf-section--muted {
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.4),
    rgba(15, 23, 42, 0.7)
  );
}

.vf-section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.vf-section-heading--left {
  text-align: left;
  margin-left: 0;
}

.vf-section-heading h2 {
  margin: 0.4rem 0 0.6rem;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
}

.vf-section-subtitle {
  margin: 0;
  color: var(--vf-text-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}

.vf-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: rgba(148, 163, 184, 0.9);
}

.vf-gradient-text {
  background: linear-gradient(120deg, var(--vf-primary), var(--vf-accent-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Header & Navigation */

.vf-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: radial-gradient(
    circle at top left,
    rgba(56, 189, 248, 0.08),
    transparent 55%
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

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

.vf-logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Space Grotesk", system-ui, sans-serif;
}

a.vf-logo-link {
  text-decoration: none;
  color: inherit;
}

.vf-logo--small .vf-logo-text {
  font-size: 0.9rem;
}

.vf-logo-mark {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: conic-gradient(
      from 160deg,
      var(--vf-primary),
      var(--vf-accent-purple),
      var(--vf-accent-orange),
      var(--vf-primary)
    ),
    radial-gradient(circle at top, rgba(248, 250, 252, 0.4), transparent 70%);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.9);
}

.vf-logo-text {
  font-weight: 600;
  letter-spacing: -0.06em;
  font-size: 1.1rem;
}

.vf-logo-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--vf-text-soft);
}

.vf-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vf-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}

.vf-nav-link {
  background: transparent;
  border: none;
  color: var(--vf-text-soft);
  font-size: 0.85rem;
  font-family: inherit;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s ease, color 0.15s ease;
}

.vf-nav-link:hover {
  color: var(--vf-text);
  background: rgba(31, 41, 55, 0.7);
}

.vf-nav-link--active {
  color: var(--vf-text);
  background: rgba(15, 118, 110, 0.55);
}

.vf-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.8);
  padding: 0;
  cursor: pointer;
}

.vf-nav-toggle span {
  width: 16px;
  height: 1.5px;
  background: #e5e7eb;
  display: block;
  margin: 1.5px 0;
}

.vf-header-cta {
  border-radius: var(--vf-radius-pill);
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: linear-gradient(
      135deg,
      rgba(56, 189, 248, 0.16),
      rgba(129, 140, 248, 0.08)
    ),
    rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
  font-size: 0.8rem;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    transform 0.1s ease, background 0.15s ease;
}

.vf-header-cta:hover {
  border-color: rgba(248, 250, 252, 0.9);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.75);
  transform: translateY(-1px);
}

.vf-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vf-lang-switch {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(148, 163, 184, 0.8);
  text-decoration: none;
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: var(--vf-radius-pill);
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.vf-lang-switch:hover {
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.7);
  background: rgba(31, 41, 55, 0.5);
}

/* Hero */

.vf-hero {
  position: relative;
  padding-top: 3.8rem;
  padding-bottom: 4.5rem;
  overflow: hidden;
}

.vf-hero::before {
  content: "";
  position: absolute;
  inset: -60px;
  background:
    radial-gradient(circle at top, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.9)),
    url("./background.png") center center / cover no-repeat;
  opacity: 0.5;
  z-index: -1;
}

.vf-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.vf-hero-copy h1 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  margin: 0.8rem 0 0.7rem;
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  letter-spacing: -0.05em;
}

.vf-hero-subtitle {
  margin: 0;
  color: var(--vf-text-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}

.vf-hero-actions {
  margin: 1.8rem 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.vf-btn {
  border-radius: var(--vf-radius-pill);
  border: none;
  font-size: 0.9rem;
  padding: 0.85rem 1.4rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: transform 0.1s ease, box-shadow 0.15s ease,
    background 0.15s ease, color 0.15s ease;
}

.vf-btn--primary {
  background: linear-gradient(
    120deg,
    var(--vf-primary),
    var(--vf-accent-purple)
  );
  color: #0b1020;
  box-shadow: 0 18px 40px rgba(56, 189, 248, 0.45);
}

.vf-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(56, 189, 248, 0.55);
}

.vf-btn--ghost {
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.55);
}

.vf-btn--ghost:hover {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(226, 232, 240, 0.9);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.7);
}

.vf-btn--full {
  width: 100%;
}

.vf-hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.3rem;
}

.vf-metric {
  min-width: 110px;
}

.vf-metric-value {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.15rem;
}

.vf-metric-label {
  font-size: 0.8rem;
  color: var(--vf-text-soft);
}

.vf-hero-showcase {
  position: relative;
}

.vf-hero-logo {
  display: block;
  max-width: 220px;
  width: 100%;
  margin: 0 auto 1.3rem;
  filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.9));
}

.vf-hero-showcase::before {
  content: "";
  position: absolute;
  inset: -60px -60px;
  background: radial-gradient(
    circle at top,
    rgba(56, 189, 248, 0.2),
    transparent 60%
  );
  opacity: 0.85;
  filter: blur(18px);
  z-index: -1;
}

.vf-hero-card {
  border-radius: var(--vf-radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.24), transparent 55%),
    radial-gradient(circle at bottom right, rgba(79, 70, 229, 0.25), transparent 60%),
    rgba(15, 23, 42, 0.96);
  padding: 1.4rem 1.5rem 1.2rem;
  box-shadow: var(--vf-shadow-soft);
  backdrop-filter: blur(var(--vf-blur));
}

.vf-hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.vf-hero-card-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(226, 232, 240, 0.8);
}

.vf-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vf-timeline-item {
  display: flex;
  gap: 0.8rem;
  position: relative;
}

.vf-timeline-item + .vf-timeline-item {
  margin-top: 0.85rem;
}

.vf-timeline-item::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 18px;
  bottom: -0.85rem;
  border-left: 1px dashed rgba(148, 163, 184, 0.7);
}

.vf-timeline-item:last-child::before {
  bottom: 2px;
}

.vf-timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(56, 189, 248, 0.8);
  background: radial-gradient(circle, #22c55e 0, #22c55e 38%, transparent 38%);
  box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.9);
}

.vf-timeline-content {
  flex: 1;
}

.vf-timeline-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.vf-timeline-step {
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.9);
}

.vf-timeline-tag {
  font-size: 0.7rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  color: rgba(148, 163, 184, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.vf-timeline-text {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.86);
  line-height: 1.6;
}

.vf-hero-card-footer {
  margin-top: 1.3rem;
  display: flex;
  justify-content: flex-end;
}

/* Pills & Chips */

.vf-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.7rem;
  border-radius: var(--vf-radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(226, 232, 240, 0.9);
  background: rgba(15, 23, 42, 0.8);
}

.vf-pill--success {
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(22, 163, 74, 0.15);
  color: #bbf7d0;
}

.vf-pill--neutral {
  border-color: rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
  color: rgba(226, 232, 240, 0.9);
}

.vf-pill--soft {
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: rgba(209, 213, 219, 0.96);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
}

.vf-pill-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0;
  margin: 0.85rem 0 0;
}

/* Cards & Grids */

.vf-grid {
  display: grid;
  gap: 1.4rem;
}

.vf-grid--services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vf-grid--process {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vf-grid--work {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vf-card {
  border-radius: var(--vf-radius-md);
  border: 1px solid var(--vf-border-subtle);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 60%),
    radial-gradient(circle at bottom right, rgba(79, 70, 229, 0.12), transparent 60%),
    rgba(15, 23, 42, 0.9);
  padding: 1.35rem 1.25rem 1.25rem;
  box-shadow: var(--vf-shadow-subtle);
  backdrop-filter: blur(18px);
}

.vf-card--service h3,
.vf-card--process h3,
.vf-card--project h3,
.vf-card--highlight h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.vf-card--service p,
.vf-card--process p,
.vf-card--project p,
.vf-card--highlight p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--vf-text-soft);
  line-height: 1.6;
}

.vf-card--process {
  position: relative;
}

.vf-step-index {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.7);
}

.vf-step-points {
  margin: 0.9rem 0 0;
  padding-left: 1rem;
  font-size: 0.8rem;
  color: rgba(209, 213, 219, 0.95);
  line-height: 1.6;
}

.vf-card-icon {
  margin-bottom: 0.7rem;
}

.vf-icon-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(to bottom right, #4b5563, #111827);
  position: relative;
}

.vf-icon-dot::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: radial-gradient(circle, #9ca3af, transparent 70%);
}

.vf-icon-dot--purple {
  background: linear-gradient(135deg, #a855f7, #6366f1);
}

.vf-icon-dot--teal {
  background: linear-gradient(135deg, #14b8a6, #22d3ee);
}

.vf-icon-dot--orange {
  background: linear-gradient(135deg, #fb923c, #f97316);
}

.vf-stack-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 2.6rem;
  align-items: flex-start;
}

.vf-stack-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.vf-stack-note {
  margin-top: 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.vf-stack-note p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--vf-text-soft);
}

.vf-stack-cards {
  display: grid;
  gap: 1rem;
}

.vf-card--highlight {
  border-radius: var(--vf-radius-md);
}

.vf-card--highlight h3 {
  margin-bottom: 0.35rem;
}

/* Work / Projects */

.vf-project-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.vf-project-meta {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(209, 213, 219, 0.96);
}

.vf-project-metric strong {
  font-weight: 600;
}

/* Contact */

.vf-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.vf-availability-pill {
  grid-column: 1 / -1;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  margin-top: 1rem;
}

.vf-card--contact {
  padding: 1.4rem 1.35rem 1.3rem;
}

.vf-contact-badges {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.vf-field {
  margin-bottom: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.vf-field label {
  font-size: 0.8rem;
  color: rgba(209, 213, 219, 0.9);
}

.vf-field input,
.vf-field select,
.vf-field textarea {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
  color: var(--vf-text);
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease;
  resize: vertical;
}

.vf-field input::placeholder,
.vf-field textarea::placeholder {
  color: rgba(148, 163, 184, 0.8);
}

.vf-field input:focus,
.vf-field select:focus,
.vf-field textarea:focus {
  border-color: rgba(56, 189, 248, 0.8);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.6);
  background: rgba(15, 23, 42, 0.98);
}

.vf-field--checkbox {
  margin-top: 0.5rem;
}

.vf-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: rgba(148, 163, 184, 0.95);
  line-height: 1.5;
}

.vf-checkbox-label input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 0.2rem;
  width: 1rem;
  height: 1rem;
  accent-color: var(--vf-primary);
}

.vf-checkbox-label a {
  color: #5eead4;
  text-decoration: none;
}

.vf-checkbox-label a:hover {
  text-decoration: underline;
}

.vf-submit-message {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  color: #a5f3fc;
}

.vf-submit-message--error {
  color: #fca5a5;
}

.vf-thankyou {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  padding: 3rem 1rem;
}

.vf-thankyou-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid rgba(16, 185, 129, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #10b981;
}

.vf-thankyou h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #f1f5f9;
}

.vf-thankyou p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(148, 163, 184, 0.95);
  max-width: 340px;
  line-height: 1.6;
}

.vf-form-footnote {
  margin: 0.5rem 0 0;
  font-size: 0.72rem;
  color: rgba(148, 163, 184, 0.95);
}

/* Footer */

.vf-footer {
  border-top: 1px solid rgba(30, 64, 175, 0.6);
  background: radial-gradient(
    circle at top,
    rgba(15, 118, 110, 0.4),
    rgba(15, 23, 42, 0.98)
  );
  padding: 1.3rem 0 1.6rem;
  margin-top: 2rem;
}

.vf-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.8rem;
}

.vf-footer-text {
  margin: 0.2rem 0 0;
  color: rgba(148, 163, 184, 0.95);
}

.vf-footer-tag {
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.9);
}

.vf-footer-left {
  display: flex;
  flex-direction: column;
}

.vf-footer-right {
  text-align: right;
}

.vf-footer-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.vf-footer-link {
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.vf-footer-link:hover,
.vf-footer-link--active {
  color: rgba(226, 232, 240, 0.95);
}

.vf-footer-divider {
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.4);
}

.vf-footer-copy {
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.6);
}

/* Imprint page */

.vf-imprint {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.vf-imprint-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.vf-card--imprint {
  padding: 1.75rem 2rem;
}

.vf-card--imprint h2 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vf-card--imprint dl {
  margin: 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.35rem 1.25rem;
}

.vf-card--imprint dt {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(148, 163, 184, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 0.1rem;
}

.vf-card--imprint dd {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(226, 232, 240, 0.9);
  line-height: 1.6;
}

.vf-card--imprint dd a,
.vf-card--imprint p a {
  color: #5eead4;
  text-decoration: none;
}

.vf-card--imprint dd a:hover,
.vf-card--imprint p a:hover {
  text-decoration: underline;
}

.vf-card--imprint p {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: rgba(148, 163, 184, 0.9);
  line-height: 1.7;
}

.vf-card--imprint p:last-child {
  margin-bottom: 0;
}

.vf-imprint-logo {
  display: block;
  max-width: 220px;
  width: 100%;
  height: auto;
  opacity: 0.55;
  margin: 1.5rem auto 0;
  filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.9));
}

.vf-imprint-updated {
  margin-top: 2rem;
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.5);
  text-align: right;
}

/* Responsive */

@media (max-width: 960px) {
  .vf-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .vf-stack-layout,
  .vf-contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .vf-grid--services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vf-grid--process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vf-grid--work {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .vf-header-inner {
    padding-inline: 1.1rem;
  }

  .vf-nav-toggle {
    display: inline-flex;
  }

  .vf-nav-list {
    position: absolute;
    top: 62px;
    right: 1.3rem;
    flex-direction: column;
    padding: 0.65rem;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.97);
    border: 1px solid rgba(148, 163, 184, 0.8);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.8);
    transform-origin: top right;
    transform: scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }

  .vf-nav-list--open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .vf-header-actions .vf-header-cta {
    display: none;
  }

  .vf-lang-switch {
    font-size: 0.7rem;
    padding: 0.3rem 0.5rem;
  }

  .vf-section {
    padding-block: 4.1rem;
  }

  .vf-grid--services,
  .vf-grid--process,
  .vf-grid--work {
    grid-template-columns: minmax(0, 1fr);
  }

  .vf-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .vf-footer-right {
    text-align: left;
  }

  .vf-imprint-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .vf-card--imprint dl {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }

  .vf-card--imprint dt {
    margin-top: 0.6rem;
  }
}

@media (max-width: 480px) {
  .vf-hero {
    padding-top: 3.1rem;
  }

  .vf-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .vf-hero-metrics {
    gap: 1rem;
  }
}

