/* ============================================================
   KREKO Konstruktionsbüro · styles.css
   Mobile-first · Premium Engineering Look · 2026
   ============================================================ */

/* ── Custom Properties ──────────────────────────────────────── */
:root {
  /* Colors */
  --night:        #071a2f;
  --navy:         #0f2d52;
  --steel:        #1e5189;
  --sky:          #0ea5e9;
  --sky-dark:     #0284c7;
  --orange:       #ea6c1e;
  --orange-dark:  #cc5b10;
  --white:        #ffffff;
  --off-white:    #f5f8fc;
  --light:        #eef3f9;
  --text:         #0f1924;
  --text-mid:     #2d3f52;
  --muted:        #5a6e84;
  --border:       #dde6ef;
  --border-light: #eef3f9;
  --green:        #10b981;
  --red:          #ef4444;
  --wowobot:      #22b8e0;

  /* Typography */
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --s1: 0.25rem;
  --s2: 0.5rem;
  --s3: 0.75rem;
  --s4: 1rem;
  --s5: 1.25rem;
  --s6: 1.5rem;
  --s8: 2rem;
  --s10: 2.5rem;
  --s12: 3rem;
  --s16: 4rem;
  --s20: 5rem;
  --s24: 6rem;

  /* Layout */
  --max-w: 1200px;
  --px: 1.25rem;

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(7,26,47,0.07), 0 1px 2px rgba(7,26,47,0.04);
  --shadow-sm: 0 2px 8px rgba(7,26,47,0.09), 0 1px 3px rgba(7,26,47,0.05);
  --shadow-md: 0 4px 18px rgba(7,26,47,0.11), 0 2px 6px rgba(7,26,47,0.06);
  --shadow-lg: 0 8px 32px rgba(7,26,47,0.13), 0 3px 10px rgba(7,26,47,0.07);
  --shadow-xl: 0 16px 48px rgba(7,26,47,0.15), 0 6px 18px rgba(7,26,47,0.08);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.18s;
  --t-base: 0.25s;
  --t-slow: 0.4s;

  /* Header height */
  --header-h: 68px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
[hidden] { display: none !important; }

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

address { font-style: normal; }

button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font);
  font-size: 1rem;
}

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

/* ── Scroll Animation Base ──────────────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s var(--ease) var(--delay, 0s),
    transform 0.6s var(--ease) var(--delay, 0s);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .svg-rotate, .svg-rotate-slow {
    animation: none !important;
  }
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 0.75rem 1.625rem;
  border-radius: var(--r-md);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: all var(--t-base) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(234,108,30,0.35);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--orange-dark);
  box-shadow: 0 6px 20px rgba(234,108,30,0.45);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.45);
}

.btn-large {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

/* ── Section Headers ────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--s12);
}

.section-header--light { color: var(--white); }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: rgba(14,165,233,0.1);
  color: var(--sky-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(14,165,233,0.2);
  margin-bottom: var(--s4);
}

.section-badge--light {
  background: rgba(14,165,233,0.15);
  color: rgba(255,255,255,0.85);
  border-color: rgba(14,165,233,0.3);
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: var(--s4);
}

.section-header--light h2 { color: var(--white); }

.section-sub {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.65;
}

.section-sub--light { color: rgba(255,255,255,0.7); }

/* ══════════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  transition: background var(--t-slow) var(--ease), box-shadow var(--t-slow) var(--ease);
}

.site-header.is-scrolled {
  background: rgba(7,26,47,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.07), var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--s6);
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-shrink: 0;
  text-decoration: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-mark {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-sub {
  font-size: 0.625rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Nav */
.nav-menu {
  display: none;
  margin-left: auto;
}

.nav-menu ul {
  display: flex;
  gap: var(--s1);
}

.nav-link {
  display: block;
  padding: 0.4rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Header CTA */
.btn-header-cta {
  display: none;
  padding: 0.5625rem 1.25rem;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--t-base), transform var(--t-base);
}

.btn-header-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--s3);
  margin-left: auto;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}

.nav-toggle:hover { background: rgba(255,255,255,0.08); }

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease), opacity var(--t-base);
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
@media (max-width: 899px) {
  .nav-menu {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: rgba(7,26,47,0.98);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--s8);
    transform: translateX(100%);
    transition: transform var(--t-slow) var(--ease), visibility var(--t-slow);
    visibility: hidden;
    pointer-events: none;
  }

  .nav-menu.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: all;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    gap: var(--s3);
    width: 100%;
  }

  .nav-link {
    font-size: 1.25rem;
    font-weight: 600;
    padding: var(--s4) var(--s8);
    text-align: center;
    width: 100%;
    max-width: 300px;
    border-radius: var(--r-md);
    color: rgba(255,255,255,0.85);
  }
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--night);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* hero-backdrop entfernt – hero-bg-overlay übernimmt die Vignette */

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s10);
  align-items: center;
  padding-top: calc(var(--header-h) + var(--s12));
  padding-bottom: var(--s16);
  flex: 1;
}

.hero-content {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: rgba(14,165,233,0.12);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(14,165,233,0.25);
  padding: 0.4rem 0.875rem;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: var(--s5);
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: var(--s6);
}

.text-accent {
  background: linear-gradient(135deg, var(--sky) 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: var(--s8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  margin-bottom: var(--s10);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  align-items: center;
  padding-top: var(--s8);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
}

.hero-stat span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.hero-stat-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.12);
}

/* ── Hero Background Video ──────────────────────────────────── */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 1;          /* Volle Sichtbarkeit – Overlay regelt Dunkel */
  pointer-events: none;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* Vignette: Ränder dunkel, Mitte sichtbar */
    radial-gradient(ellipse 90% 90% at 50% 50%,
      rgba(7,26,47,0.15) 0%,
      rgba(7,26,47,0.72) 100%),
    /* Links extra dunkel – Text-Bereich besser lesbar */
    linear-gradient(to right,
      rgba(7,26,47,0.65) 0%,
      rgba(7,26,47,0.25) 45%,
      transparent 70%);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-video { display: none; }
}

/* SVG Animations */
.svg-rotate {
  animation: svgRotate 24s linear infinite;
  transform-origin: 230px 230px;
}

.svg-rotate-slow {
  animation: svgRotateCCW 36s linear infinite;
  transform-origin: 230px 230px;
}

@keyframes svgRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes svgRotateCCW {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

/* Scroll Hint */
.hero-scroll {
  position: absolute;
  bottom: var(--s8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
  color: rgba(255,255,255,0.4);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50%       { transform: translateX(-50%) translateY(5px); opacity: 0.7; }
}

/* ══════════════════════════════════════════════════════════════
   TRUST
══════════════════════════════════════════════════════════════ */
.trust-section {
  padding: var(--s12) 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
}

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
  padding: var(--s6);
  border-radius: var(--r-lg);
  background: var(--off-white);
  border: 1px solid var(--border);
  transition: box-shadow var(--t-base), transform var(--t-base);
}

.trust-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.trust-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(14,165,233,0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--s2);
  line-height: 1.3;
}

.trust-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════════ */
.services-section {
  padding: var(--s20) 0;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
  margin-bottom: var(--s10);
}

.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--s8);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t-base), transform var(--t-base), border-color var(--t-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--steel));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow) var(--ease);
  border-radius: 0 0 3px 3px;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(14,165,233,0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(14,165,233,0.07);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s5);
}

.service-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--s3);
  line-height: 1.3;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: var(--s5);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}

.service-tags li {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sky-dark);
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.15);
  padding: 0.2rem 0.625rem;
  border-radius: var(--r-full);
}

/* Additional Services */
.additional-services {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  padding: var(--s8);
}

.additional-services h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--s6);
}

.add-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3) var(--s5);
}

.add-service-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
}

/* ══════════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════════ */
.about-section {
  padding: var(--s20) 0;
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s12);
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--r-xl);
  overflow: visible;
}

.image-placeholder {
  background: var(--light);
  border-radius: var(--r-xl);
  border: 2px dashed var(--border);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s4);
  padding: var(--s8);
}

.image-placeholder p {
  font-size: 0.8125rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

.about-badge {
  position: absolute;
  bottom: -16px;
  right: -8px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: var(--s4) var(--s5);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 100px;
}

.about-badge-value {
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1;
}

.about-badge-label {
  font-size: 0.6875rem;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.about-content .section-badge { margin-bottom: var(--s5); }

.about-content h2 {
  font-size: clamp(1.625rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: var(--s5);
}

.about-lead {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: var(--s4);
}

.about-content p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: var(--s4);
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  margin: var(--s6) 0 var(--s8);
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-mid);
}

/* ══════════════════════════════════════════════════════════════
   ADVANTAGES
══════════════════════════════════════════════════════════════ */
.advantages-section {
  padding: var(--s20) 0;
  background: var(--night);
  position: relative;
  overflow: hidden;
}

.advantages-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(14,165,233,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
  position: relative;
}

.advantage-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  padding: var(--s6) var(--s8);
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
}

.advantage-card:hover {
  background: rgba(14,165,233,0.08);
  border-color: rgba(14,165,233,0.25);
  transform: translateY(-2px);
}

.advantage-number {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(14,165,233,0.2);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: var(--s3);
}

.advantage-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s3);
  line-height: 1.35;
}

.advantage-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════
   CAD SYSTEMS
══════════════════════════════════════════════════════════════ */
.cad-section {
  padding: var(--s20) 0;
  background: var(--off-white);
}

.cad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
}

.cad-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s6);
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t-base), transform var(--t-base), border-color var(--t-base);
}

.cad-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(14,165,233,0.2);
}

.cad-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: var(--s4);
}

.cad-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--s2);
}

.cad-card p {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ══════════════════════════════════════════════════════════════
   LOCATION
══════════════════════════════════════════════════════════════ */
.location-section {
  padding: var(--s20) 0;
  background: var(--white);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s10);
  align-items: center;
}

.location-content .section-badge { margin-bottom: var(--s5); }

.location-content h2 {
  font-size: clamp(1.625rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: var(--s5);
}

.location-content > p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: var(--s8);
}

.location-address {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  margin-bottom: var(--s8);
}

.address-row {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 0.9375rem;
  color: var(--text-mid);
}

.address-row svg { flex-shrink: 0; }

.address-row a {
  color: var(--sky-dark);
  font-weight: 500;
  transition: color var(--t-fast);
}

.address-row a:hover { color: var(--sky); }

/* Map */
.map-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
}

.map-svg {
  width: 100%;
  height: auto;
  display: block;
}

.map-pin-label {
  position: absolute;
  bottom: var(--s4);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(7,26,47,0.9);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.9);
  border-radius: var(--r-full);
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: var(--s2);
  box-shadow: var(--shadow-md);
}

/* ══════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════ */
.contact-section {
  padding: var(--s20) 0;
  background: var(--off-white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s8);
}

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--s8);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  margin-bottom: var(--s5);
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
}

.required-mark {
  color: var(--orange);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
  line-height: 1.5;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0b0c0;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6e84' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  margin-bottom: var(--s6);
}

.form-privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--sky);
  cursor: pointer;
}

.form-privacy label {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.55;
  cursor: pointer;
}

.form-privacy a {
  color: var(--sky-dark);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s5);
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
}

.form-success,
.form-error {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  padding: var(--s4) var(--s5);
  border-radius: var(--r-md);
  margin-top: var(--s4);
}

.form-success {
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
}

.form-success p { color: #065f46; font-size: 0.9rem; font-weight: 500; }

.form-error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
}

.form-error p { color: #991b1b; font-size: 0.9rem; }
.form-error a { color: #dc2626; text-decoration: underline; }

/* Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}

.contact-card {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: var(--s8);
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--s6);
  padding-bottom: var(--s4);
  border-bottom: 1px solid var(--border-light);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
  padding: var(--s4);
  border-radius: var(--r-md);
  transition: background var(--t-fast);
  text-decoration: none;
}

a.contact-item:hover {
  background: var(--off-white);
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(14,165,233,0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-item-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-item-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}

.contact-hint {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  background: rgba(234,108,30,0.07);
  border: 1px solid rgba(234,108,30,0.18);
  border-radius: var(--r-md);
  padding: var(--s4) var(--s5);
}

.contact-hint p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.contact-hint svg { flex-shrink: 0; margin-top: 1px; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--night);
  color: rgba(255,255,255,0.65);
  padding: var(--s16) 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s10);
  padding-bottom: var(--s10);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo--light .logo-mark { color: var(--white); }
.footer-brand .logo--light .logo-sub { color: rgba(255,255,255,0.4); }

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin: var(--s5) 0;
  max-width: 360px;
}

.footer-address {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.footer-address a {
  color: rgba(255,255,255,0.6);
  transition: color var(--t-fast);
}
.footer-address a:hover { color: var(--sky); }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s6) var(--s8);
}

.footer-nav-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--s4);
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.footer-nav-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--t-fast);
}

.footer-nav-col a:hover { color: var(--white); }

/* Footer Bottom */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
  padding: var(--s6) 0;
  text-align: center;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal {
  display: flex;
  gap: var(--s3);
  font-size: 0.8rem;
}

.footer-legal a {
  color: rgba(255,255,255,0.45);
  transition: color var(--t-fast);
}
.footer-legal a:hover { color: var(--white); }
.footer-legal span { color: rgba(255,255,255,0.25); }

.footer-powered {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  padding-top: var(--s2);
  border-top: 1px solid rgba(255,255,255,0.07);
  width: 100%;
  text-align: center;
}

.footer-powered a {
  color: var(--wowobot);
  font-weight: 600;
  transition: opacity var(--t-fast);
}

.footer-powered a:hover { opacity: 0.8; }

/* ── Back to Top ────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: var(--s8);
  right: var(--s6);
  z-index: 50;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: background var(--t-base), transform var(--t-base), opacity var(--t-base);
  border: none;
}

.back-to-top:not([hidden]) { display: flex; }
.back-to-top:hover { background: var(--steel); transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE – TABLET (≥600px)
══════════════════════════════════════════════════════════════ */
@media (min-width: 600px) {
  :root { --px: 1.75rem; }

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

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

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

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: left;
  }

  .footer-powered {
    width: auto;
    border-top: none;
    padding-top: 0;
    text-align: right;
  }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE – DESKTOP (≥900px)
══════════════════════════════════════════════════════════════ */
@media (min-width: 900px) {
  :root {
    --px: 2.5rem;
    --header-h: 72px;
  }

  /* Header */
  .nav-toggle { display: none; }
  .nav-menu { display: flex; }
  .btn-header-cta { display: block; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-h) + var(--s16));
    padding-bottom: var(--s20);
    min-height: 100svh;
  }

  .hero-stats { flex-wrap: nowrap; }

  /* Trust */
  .trust-section { padding: var(--s16) 0; }

  /* Services */
  .services-grid { grid-template-columns: repeat(3, 1fr); }

  /* About */
  .about-inner {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--s16);
  }

  /* Advantages */
  .advantages-grid { grid-template-columns: repeat(3, 1fr); }

  /* CAD */
  .cad-grid { grid-template-columns: repeat(4, 1fr); }

  /* Location */
  .location-inner {
    grid-template-columns: 1fr 1.1fr;
    gap: var(--s12);
  }

  /* Contact */
  .contact-inner {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1.5fr 1fr;
    gap: var(--s16);
  }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE – LARGE DESKTOP (≥1280px)
══════════════════════════════════════════════════════════════ */
@media (min-width: 1280px) {
  :root { --px: 3rem; }
}

/* ── Focus Visible ──────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 3px;
}

/* ── Selection ──────────────────────────────────────────────── */
::selection {
  background: rgba(14,165,233,0.2);
  color: var(--navy);
}

/* ══════════════════════════════════════════════════════════════
   ABOUT – Real Image
══════════════════════════════════════════════════════════════ */
.about-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: var(--r-xl);
  display: block;
}

/* ══════════════════════════════════════════════════════════════
   PROJEKTE / REFERENZEN
══════════════════════════════════════════════════════════════ */
.projects-section {
  padding: var(--s20) 0;
  background: var(--off-white);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
  margin-bottom: var(--s10);
}

.project-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: box-shadow var(--t-base), transform var(--t-base);
}

.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.project-img-wrap {
  overflow: hidden;
  background: #e8f0f8;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--s4);
  transition: transform var(--t-slow) var(--ease);
}

.project-card:hover .project-img-wrap img {
  transform: scale(1.05);
}

.project-label {
  padding: var(--s4) var(--s5);
  border-top: 1px solid var(--border-light);
}

.project-label h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--s1);
  line-height: 1.3;
}

.project-label span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
}

/* Showcase strip – 4 smaller part images */
.showcase-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  justify-content: center;
  align-items: center;
  padding: var(--s8);
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  margin-bottom: var(--s6);
}

.showcase-item {
  border-radius: var(--r-md);
  overflow: hidden;
  background: #e8f0f8;
  flex: 0 0 auto;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.showcase-item:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-md);
}

.showcase-item img {
  display: block;
  width: auto;
  height: 90px;
  object-fit: contain;
  padding: var(--s2);
}

.projects-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 600px;
  margin-inline: auto;
}

/* ══════════════════════════════════════════════════════════════
   VIDEO SHOWCASE
══════════════════════════════════════════════════════════════ */

/* Outer pin wrapper */
.vs-wrap {
  position: relative;
  background: #060e1c;
  /* Prevents horizontal scroll during GSAP pin */
  overflow-x: clip;
}

.vs-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* NO overflow:hidden – would kill GSAP pin visibility & 3D transforms */
  overflow: clip;
  padding: var(--s20) 0 calc(var(--s20) + 48px);
}

/* ── Background layers ──────────────────────────────────────── */
.vs-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.vs-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,165,233,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 90% 90% at 55% 50%, black 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 55% 50%, black 10%, transparent 75%);
}

.vs-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 70% at 68% 50%, rgba(196,18,48,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 45% 80% at 15% 45%, rgba(30,81,137,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 100% 50% at 50% 100%, rgba(6,14,28,0.8) 0%, transparent 50%);
}

/* ── Layout ─────────────────────────────────────────────────── */
.vs-container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.vs-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s10);
  align-items: center;
}

/* ── Text block ─────────────────────────────────────────────── */
.vs-text {
  color: var(--white);
  will-change: transform, opacity;
}

.vs-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c41230;
  margin-bottom: var(--s6);
}

.vs-eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #c41230;
  border-radius: 1px;
  flex-shrink: 0;
}

.vs-text h2 {
  font-size: clamp(1.875rem, 5vw, 2.875rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: var(--s5);
}

.vs-text p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.72;
  max-width: 400px;
  margin-bottom: var(--s5);
}

.vs-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s2) var(--s3);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.04em;
  margin-bottom: var(--s8);
}

.vs-tag-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #c41230;
  border-radius: 50%;
  flex-shrink: 0;
  animation: vs-pulse 2.2s ease-in-out infinite;
}

.vs-tag-sep {
  color: rgba(255,255,255,0.12);
}

@keyframes vs-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(196,18,48,0.4); }
  50%       { opacity: 0.6; box-shadow: 0 0 0 5px rgba(196,18,48,0); }
}

/* ── Video media ────────────────────────────────────────────── */
.vs-media {
  position: relative;
}

/* The 3D animated frame */
.vs-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.75),
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.07),
    0 0 80px rgba(196, 18, 48, 0.08);
  will-change: transform;
  /* NO transform-style:preserve-3d – conflicts with overflow:hidden */
  /* NO CSS transition – GSAP handles all transitions */
}

.vs-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
}

/* Vignette overlay */
.vs-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 45%, rgba(6,14,28,0.45) 100%);
  border-radius: 14px;
  pointer-events: none;
  z-index: 2;
}

/* Subtle scan line (decorative, very subtle) */
.vs-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(196,18,48,0.3) 20%, rgba(196,18,48,0.5) 50%, rgba(196,18,48,0.3) 80%, transparent 100%);
  z-index: 3;
  pointer-events: none;
  animation: vs-scan 8s linear infinite;
  opacity: 0.4;
}

@keyframes vs-scan {
  0%   { top: 0%; opacity: 0; }
  5%   { opacity: 0.4; }
  95%  { opacity: 0.4; }
  100% { top: 100%; opacity: 0; }
}

/* Technical corner brackets */
.vs-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 4;
  pointer-events: none;
}

.vs-c-tl {
  top: -1px; left: -1px;
  border-top: 2.5px solid #c41230;
  border-left: 2.5px solid #c41230;
  border-radius: 14px 0 0 0;
}
.vs-c-tr {
  top: -1px; right: -1px;
  border-top: 2.5px solid #c41230;
  border-right: 2.5px solid #c41230;
  border-radius: 0 14px 0 0;
}
.vs-c-bl {
  bottom: -1px; left: -1px;
  border-bottom: 2.5px solid #c41230;
  border-left: 2.5px solid #c41230;
  border-radius: 0 0 0 14px;
}
.vs-c-br {
  bottom: -1px; right: -1px;
  border-bottom: 2.5px solid #c41230;
  border-right: 2.5px solid #c41230;
  border-radius: 0 0 14px 0;
}

/* Ambient glow behind the frame */
.vs-glow {
  position: absolute;
  inset: -25px;
  background: radial-gradient(ellipse at center, rgba(196,18,48,0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
  filter: blur(28px);
  animation: vs-glow-pulse 4s ease-in-out infinite;
}

@keyframes vs-glow-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.06); }
}

/* Video label */
.vs-video-label {
  display: flex;
  align-items: center;
  gap: var(--s2);
  margin-top: var(--s3);
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.06em;
}

.vs-rec-dot {
  width: 6px;
  height: 6px;
  background: #c41230;
  border-radius: 50%;
  flex-shrink: 0;
  animation: vs-pulse 1.5s ease-in-out infinite;
}

/* ── Scroll progress (desktop pin only) ─────────────────────── */
.vs-progress-wrap {
  position: absolute;
  bottom: var(--s6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--s3);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vs-progress-wrap.is-visible {
  opacity: 0.55;
}

.vs-progress-track {
  width: 56px;
  height: 2px;
  background: rgba(255,255,255,0.12);
  border-radius: 1px;
  overflow: hidden;
}

.vs-progress-fill {
  height: 100%;
  width: 0%;
  background: #c41230;
  border-radius: 1px;
}

.vs-progress-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ── prefers-reduced-motion ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .vs-frame    { transform: none !important; opacity: 1 !important; }
  .vs-text     { transform: none !important; opacity: 1 !important; }
  .vs-scan-line, .vs-glow, .vs-tag-dot, .vs-rec-dot { animation: none !important; }
}

/* ── Desktop layout ─────────────────────────────────────────── */
@media (min-width: 900px) {
  .vs-inner {
    grid-template-columns: 5fr 7fr;
    gap: var(--s16);
  }

  .vs-text p {
    max-width: 380px;
  }
}

/* ── Responsive: Projects ───────────────────────────────────── */
@media (min-width: 600px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .showcase-item img {
    height: 100px;
  }
}

@media (min-width: 900px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-img {
    min-height: 360px;
  }
  .showcase-item img {
    height: 115px;
  }
}
