@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

:root {
  --bg: #000000;
  --bg-elevated: #111111;
  --bg-surface: #0A0A0A;
  --border: rgba(255,255,255,0.1);
  --white: #FFFFFF;
  --white-10: rgba(255,255,255,0.1);
  --white-20: rgba(255,255,255,0.2);
  --white-33: rgba(255,255,255,0.33);
  --white-40: rgba(255,255,255,1);
  --white-60: rgba(255,255,255,1);
  --white-99: rgba(255,255,255,0.99);
  --page-pad: 48px;
  --grid-line: rgba(255,255,255,0.075);
  --grid-edge: rgba(255,255,255,0.12);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
button, input, select, textarea { font-family: inherit; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Sora', sans-serif;
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  right: var(--page-pad);
  bottom: 0;
  left: var(--page-pad);
  z-index: 0;
  pointer-events: none;
  border-left: 1px solid var(--grid-edge);
  border-right: 1px solid var(--grid-edge);
  background-image: repeating-linear-gradient(
    90deg,
    var(--grid-line) 0,
    var(--grid-line) 1px,
    transparent 1px,
    transparent calc((100vw - var(--page-pad) - var(--page-pad)) / 12)
  );
  opacity: 0.8;
}

body > * {
  position: relative;
  z-index: 1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.container { max-width: 1440px; margin: 0 auto; }

main {
  overflow: hidden;
}

/* Header / Nav */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 var(--page-pad);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-10);
}

.logo {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--white);
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-lang {
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  overflow: hidden;
}
.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.35);
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  cursor: pointer;
  padding: 5px 12px;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.lang-btn:hover { color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.05); }
.lang-btn.active { background: rgba(255,255,255,0.15); color: var(--white); }

.nav-menu {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: var(--white);
  cursor: pointer;
  text-transform: uppercase;
}

/* Centre navigation */
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
}

.nav-link {
  font-size: 15px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--white); }

.nav-link.active {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

/* Nav dropdown */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }

.nav-dropdown-toggle {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-toggle::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--white);
  border-bottom: 1.5px solid var(--white);
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after {
  transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  min-width: 180px;
  padding: 8px;
  background: rgba(10,10,10,0.97);
  border: 1px solid var(--white-10);
  border-radius: 8px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 16px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  font-size: 15px;
  font-weight: 600;
  color: var(--white-60);
  padding: 10px 12px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown-menu a:hover {
  background: var(--white-10);
  color: var(--white);
}

/* Breadcrumb */
.breadcrumb {
  padding: 14px var(--page-pad);
  border-bottom: 1px solid var(--white-10);
}

.breadcrumb-link {
  font-size: 12px;
  color: var(--white-40);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.breadcrumb-link:hover { color: var(--white-60); }

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px var(--page-pad) 80px;
  gap: 64px;
  border-bottom: 1px solid var(--white-10);
  background-color: #000;
}

.hero > *:not(.hero-bg-img) { position: relative; z-index: 3; }

.hero::before {
  content: '';
  position: absolute;
  inset: -8%;
  background: url('/images/afca/hero-bg.webp') center/cover no-repeat;
  filter: blur(60px) brightness(0.3);
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: calc(100vh - 72px);
  width: auto;
  max-width: none;
  object-fit: contain;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 16%, #000 84%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 16%, #000 84%, transparent 100%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.9) 100%);
  z-index: 2;
}

.hero-tag {
  font-size: 15px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.3px;
}

.hero-headline {
  display: flex;
  flex-direction: column;
}

.hero-headline span {
  font-size: clamp(56px, 8.4vw, 128px);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-headline .bold { font-weight: 600; }
.hero-headline .light { font-weight: 200; }

.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 24px;
}

.hero-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--white);
}

.hero-status-text {
  font-size: 16px;
  color: var(--white-60);
  letter-spacing: 0.6px;
}

.hero-sub {
  font-size: 17px;
  color: var(--white);
  font-weight: 700;
  line-height: 1.65;
  text-align: left;
  max-width: 460px;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--white);
  color: #000;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border: 1px solid var(--white);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.btn-primary:hover { background: #e8e8e8; border-color: #e8e8e8; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.06); }

.btn-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: var(--white);
  color: #000;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  border-radius: 4px;
}

.btn-primary::after,
.btn-secondary::after,
.btn-email::after,
.form-submit::after {
  content: "\2192";
  font-size: 16px;
  line-height: 1;
  transition: transform 0.2s;
}

.btn-primary:hover::after,
.btn-secondary:hover::after {
  transform: translateX(4px);
}

/* Dividers */
.divider {
  height: 2px;
  background: var(--white-33);
}

/* 3D Vorschauräume */
.viewer-section { padding: 60px 0 0; }

.viewer-intro {
  padding: 0 var(--page-pad);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.viewer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 0 var(--page-pad);
}

.viewer-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.viewer-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--white);
}

.viewer-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #0a0a0a;
  border: 1px solid var(--white-10);
  border-radius: 8px;
  overflow: hidden;
  cursor: grab;
  touch-action: none;
}

.viewer-canvas:active { cursor: grabbing; }
.viewer-canvas canvas { display: block; width: 100%; height: 100%; }

.viewer-hint {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 12px;
  letter-spacing: 0.4px;
  color: var(--white-60);
  background: rgba(0,0,0,0.55);
  padding: 6px 10px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 768px) {
  .viewer-grid { grid-template-columns: 1fr; }
}

/* Before/After Slider */
.ba-slider {
  position: relative;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba-img-before {
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  width: 2px;
  background: #fff;
  transform: translateX(-1px);
  pointer-events: none;
}

.ba-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(2px);
}

.ba-tag {
  position: absolute;
  bottom: 20px;
  padding: 6px 14px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  pointer-events: none;
}

.ba-tag-before { left: 20px; }
.ba-tag-after { right: 20px; }

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  cursor: ew-resize;
}

.ba-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 44px;
  height: 100%;
  background: transparent;
  cursor: ew-resize;
}

.ba-range::-moz-range-thumb {
  width: 44px;
  height: 1200px;
  border: none;
  background: transparent;
  cursor: ew-resize;
}

/* Spacer */
.spacer { height: 56px; }
.spacer-sm { height: 32px; }

/* Showreel */
.showreel {
  position: relative;
  height: min(760px, 72vh);
  margin: 0 var(--page-pad);
  overflow: hidden;
  border-left: 1px solid var(--white-10);
  border-right: 1px solid var(--white-10);
}

.showreel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showreel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--white);
  color: #000;
  font-size: 13px;
  font-weight: 500;
  border: 0;
  border-radius: 4px;
  letter-spacing: 0.2px;
  cursor: pointer;
}

.showreel-meta {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.54);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.showreel-meta span {
  min-height: 58px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.14);
  color: var(--white-60);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.showreel-meta span:last-child {
  border-right: 0;
}

/* Section Headers */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 var(--page-pad);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--white-60);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 16px;
  color: var(--white-60);
  line-height: 1.6;
  text-align: right;
  max-width: 360px;
}

/* Services Accordion */
.services-section { padding: 0 var(--page-pad); }

.services-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 48px;
}

.service-item {
  padding: 0;
  border-top: 1px solid var(--white-33);
}

.service-item:last-child { border-bottom: 1px solid var(--white-33); }

.service-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 24px;
  cursor: pointer;
  list-style: none;
  -webkit-user-select: none;
  user-select: none;
}

.service-summary::-webkit-details-marker { display: none; }

.service-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.service-num {
  font-size: 13px;
  color: var(--white-40);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-name {
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 500;
  letter-spacing: -0.5px;
}

.service-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-tags {
  font-size: 16px;
  color: var(--white-40);
}

.service-toggle {
  width: 28px;
  height: 28px;
  border: 1px solid var(--white-20);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.3s ease;
}

.service-toggle::before,
.service-toggle::after {
  content: '';
  position: absolute;
  background: var(--white);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.service-toggle::before { width: 12px; height: 1.5px; }
.service-toggle::after { width: 1.5px; height: 12px; }

.service-item[open] .service-toggle { border-color: var(--white-40); }
.service-item[open] .service-toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.service-desc {
  font-size: 14px;
  color: var(--white-40);
  line-height: 1.6;
  max-width: 600px;
  padding: 0 0 28px 54px;
  animation: faqReveal 0.3s ease;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0 var(--page-pad);
  border-top: 1px solid var(--white-33);
  border-bottom: 1px solid var(--white-33);
}

.product-card {
  border-right: 1px solid var(--white-33);
  border-radius: 0;
  overflow: hidden;
  transition: border-color 0.3s;
}

.product-card:first-child { border-left: 1px solid var(--white-33); }
.product-card:hover { border-color: var(--white-40); }

.product-card-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.product-card-info {
  min-height: 220px;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-card-tag {
  font-size: 13px;
  color: var(--white-40);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-card-title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0;
}

.product-card-desc {
  font-size: 13px;
  color: var(--white-40);
  line-height: 1.5;
}

/* Steps / How It Works */
.steps-section { padding: 0 var(--page-pad); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step-card {
  padding: 32px;
  border: 1px solid var(--white-10);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-num {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -2px;
}

.step-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.step-desc {
  font-size: 14px;
  color: var(--white-40);
  line-height: 1.6;
}

/* Statement */
.statement-section {
  padding: 40px var(--page-pad);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.statement-text {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 var(--page-pad);
}

.stat-item {
  padding: 32px;
  border-top: 1px solid var(--white-33);
  border-bottom: 1px solid var(--white-33);
  border-right: 1px solid var(--white-33);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-item:last-child { border-right: none; }

.stat-value {
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 600;
  letter-spacing: -3px;
  hyphens: auto;
  overflow-wrap: break-word;
}

.stat-label {
  font-size: 13px;
  color: var(--white-40);
}

/* Clients */
.clients-label { padding: 0 var(--page-pad); }

.clients-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(80px, 1fr));
  align-items: center;
  gap: 24px;
  padding: 24px var(--page-pad);
  border-top: 1px solid var(--white-33);
  border-bottom: 1px solid var(--white-33);
}

.client-name {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.2);
}

.client-logo {
  width: 100%;
  max-width: 160px;
  height: 56px;
  margin: 0 auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.2s;
}

.client-logo:hover { opacity: 1; }

.client-logo[alt="VBZ"] { filter: invert(1); }

/* Testimonial */
.testimonial-section {
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.testimonial-content {
  display: flex;
  gap: 64px;
  align-items: center;
}

.testimonial-content > div {
  flex: 1;
  min-width: 0;
}

.testimonial-text {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.4;
}

.testimonial-avatar {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-avatar--sm {
  width: 140px;
  height: 140px;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 500;
}

.testimonial-role {
  font-size: 13px;
  color: var(--white-40);
}

/* CTA Section */
.cta-section {
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  text-align: center;
}

.cta-small {
  font-size: 13px;
  color: var(--white-40);
  letter-spacing: 1px;
}

.cta-title {
  font-size: clamp(36px, 6.5vw, 96px);
  font-weight: 600;
  letter-spacing: -4px;
  line-height: 0.9;
}

.cta-title-md {
  font-size: clamp(32px, 3.3vw, 48px);
  font-weight: 600;
  letter-spacing: -2px;
}

.cta-desc {
  font-size: 16px;
  color: var(--white-40);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
}

/* FAQ */
.faq-section { padding: 0 48px; }

.faq-list { display: flex; flex-direction: column; padding: 0 var(--page-pad); }

.faq-item {
  padding: 0;
  border-top: 1px solid var(--white-33);
}

.faq-item:last-child { border-bottom: 1px solid var(--white-33); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 24px 28px 0;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  -webkit-user-select: none;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--white-20);
  border-radius: 50%;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--white);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.faq-icon::before { width: 12px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 12px; }

.faq-item[open] .faq-icon { border-color: var(--white-40); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-answer {
  font-size: 14px;
  color: var(--white-40);
  line-height: 1.6;
  max-width: 600px;
  padding: 0 24px 28px 0;
  animation: faqReveal 0.3s ease;
}

@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Footer */
.site-footer {
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  background: var(--bg);
  position: relative;
  z-index: 2;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding-top: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-size: 12px;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-top: 12px;
  margin-bottom: 8px;
}

.footer-col a, .footer-col span {
  font-size: 13px;
  color: var(--white-40);
  transition: color 0.3s ease;
}

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

.footer-tag {
  font-size: 13px;
  color: var(--white-40);
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 48px;
  border-top: 1px solid var(--white-10);
}

.footer-bottom-left {
  font-size: 11px;
  color: var(--white-40);
}

.footer-bottom-right {
  display: flex;
  gap: 24px;
}

.footer-bottom-right a {
  font-size: 11px;
  color: var(--white-40);
  transition: color 0.2s;
}

.footer-bottom-right a:hover { color: var(--white-60); }

/* Projekte Page */
.page-hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 180px var(--page-pad) 64px;
  gap: 20px;
  border-bottom: 1px solid var(--white-10);
}

.page-hero-tag {
  font-size: 13px;
  color: var(--white-40);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.page-hero-title {
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 600;
  letter-spacing: -3px;
  line-height: 0.95;
}

.page-hero-desc {
  font-size: 16px;
  color: var(--white-40);
  line-height: 1.6;
  max-width: 600px;
}

/* Filter Bar */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 var(--page-pad);
  min-height: 64px;
  border-bottom: 1px solid var(--white-10);
}

.filter-pill {
  align-self: stretch;
  padding: 0 18px;
  border-radius: 0;
  font-size: 12px;
  letter-spacing: 1.2px;
  color: var(--white-60);
  border: 0;
  border-right: 1px solid var(--white-10);
  background: transparent;
  font-family: 'Sora', sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-pill:first-child { border-left: 1px solid var(--white-10); }
.filter-pill:hover { color: var(--white); }

.filter-pill.active {
  background: var(--white);
  color: #000;
  font-weight: 500;
}

/* Project Grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 0 var(--page-pad);
  background: var(--bg);
  border-top: 1px solid var(--white-10);
}

.project-card {
  display: flex;
  flex-direction: column;
  background: #000;
  border-bottom: 1px solid var(--white-10);
  border-right: 1px solid var(--white-10);
  border-radius: 0;
  overflow: hidden;
  transition: background 0.3s;
}

.project-card:nth-child(odd) { border-left: 1px solid var(--white-10); }
.project-card:hover { background: var(--bg-surface); }

.project-grid .project-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}
.project-grid .project-card:last-child:nth-child(odd) .project-card-img {
  height: 480px;
}

.project-card-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.project-card-info {
  min-height: 188px;
  padding: 28px 24px 30px;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px 24px;
  align-items: start;
}

.project-card-cat {
  font-size: 12px;
  color: var(--white-40);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.project-card-title {
  font-size: clamp(26px, 2.7vw, 42px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
}

.project-card-services {
  grid-column: 2;
  font-size: 13px;
  color: var(--white-40);
  letter-spacing: 0.4px;
  line-height: 1.5;
}

/* Detail Page */
.detail-hero-img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

.detail-info {
  padding: 80px 48px 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.detail-cat {
  font-size: 12px;
  color: var(--white-40);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.detail-title {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: -3px;
  line-height: 1;
}

.detail-tagline {
  font-size: 20px;
  color: var(--white-60);
  line-height: 1.5;
}

.detail-section {
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.detail-section-label {
  font-size: 11px;
  color: var(--white-40);
  letter-spacing: 0.5px;
}

.detail-section-text {
  font-size: 16px;
  color: var(--white-60);
  line-height: 1.7;
  max-width: 700px;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-tag {
  padding: 6px 12px;
  border: 1px solid var(--white-20);
  border-radius: 100px;
  font-size: 12px;
  color: var(--white-60);
}

.gallery-section {
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gallery-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 4px;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.gallery-row img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
}

.related-section {
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.related-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.related-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 4px;
}

.related-card-title {
  font-size: 16px;
  font-weight: 500;
}

.related-card-cat {
  font-size: 11px;
  color: var(--white-40);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--white-10);
  border-left: 1px solid var(--white-10);
}

.feature-card {
  padding: 32px;
  border: 0;
  border-right: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-icon {
  width: 24px;
  height: 24px;
}

.feature-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
}

.feature-desc {
  font-size: 13px;
  color: var(--white-40);
  line-height: 1.5;
}

/* Use Cases */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--white-10);
}

.usecase-item {
  padding: 32px 24px;
  border: 0;
  border-top: 1px solid var(--white-10);
  border-right: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.usecase-num {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--white-40);
}

.usecase-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
}

.usecase-desc {
  font-size: 13px;
  color: var(--white-40);
  line-height: 1.5;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--white-10);
  border-left: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
}

.pricing-card {
  padding: 32px;
  border: 0;
  border-right: 1px solid var(--white-10);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-card.featured {
  background: var(--bg-surface);
  box-shadow: inset 0 0 0 1px var(--white);
}

.pricing-badge {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
}

.pricing-tier {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.pricing-features {
  font-size: 13px;
  color: var(--white-40);
  line-height: 2;
}

/* Contact Form */
.contact-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 0;
  padding: 0 var(--page-pad);
  border-top: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
  background: var(--bg);
  position: relative;
  z-index: 2;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 32px 32px 0;
  border-right: 1px solid var(--white-10);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 12px;
  color: var(--white-60);
  letter-spacing: 0.5px;
}

.form-input {
  height: 48px;
  padding: 0 16px;
  background: transparent;
  border: 1px solid var(--white-10);
  border-radius: 0;
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus { border-color: var(--white-20); }

.form-textarea {
  height: 160px;
  padding: 16px;
  background: transparent;
  border: 1px solid var(--white-10);
  border-radius: 0;
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s;
}

.form-textarea:focus { border-color: var(--white-20); }

.form-submit {
  padding: 16px;
  background: var(--white);
  color: #000;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
}

.form-submit:hover { background: #e0e0e0; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border-bottom: 1px solid var(--white-10);
}

.contact-block:last-child { border-bottom: 0; }

.contact-block-label {
  font-size: 11px;
  color: var(--white-40);
  letter-spacing: 0.5px;
}

.contact-block a, .contact-block span {
  font-size: 15px;
  color: var(--white-60);
  line-height: 1.8;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--white-10);
  border-left: 1px solid var(--white-10);
}

.team-card {
  perspective: 800px;
  cursor: pointer;
  border-right: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
  aspect-ratio: 3/4;
  position: relative;
}

.team-front,
.team-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform 0.6s ease, visibility 0s linear 0.3s;
  display: flex;
  flex-direction: column;
}

.team-front {
  gap: 0;
  padding: 0;
}

.team-front::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.82));
  pointer-events: none;
  z-index: 1;
}

.team-front .team-name {
  position: absolute;
  bottom: 58px;
  left: 16px;
  right: 16px;
  z-index: 2;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team-front .team-role {
  position: absolute;
  bottom: 20px;
  left: 16px;
  right: 16px;
  min-height: 34px;
  z-index: 2;
  line-height: 1.4;
}

.team-back {
  transform: rotateY(180deg);
  visibility: hidden;
  background: var(--bg-elevated);
  padding: 32px 24px;
  justify-content: center;
  gap: 16px;
}

.team-card.flipped .team-front { transform: rotateY(-180deg); visibility: hidden; }
.team-card.flipped .team-back { transform: rotateY(0deg); visibility: visible; }

.team-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: none;
}

.team-name {
  font-size: 14px;
  font-weight: 500;
  padding: 0 16px;
  letter-spacing: 0.2px;
}

.team-back .team-name {
  font-size: 18px;
  font-weight: 600;
  padding: 0;
}

.team-role {
  font-size: 12px;
  color: var(--white-40);
  padding: 0 16px;
}

.team-back .team-role {
  padding: 0;
  margin-top: auto;
}

.team-desc {
  font-size: 13px;
  color: var(--white-60);
  line-height: 1.6;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
}

.team-desc::-webkit-scrollbar {
  width: 3px;
}

.team-desc::-webkit-scrollbar-track {
  background: transparent;
}

.team-desc::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 99px;
}

.team-desc::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.4);
}

.team-linkedin {
  color: var(--white);
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.team-linkedin:hover { opacity: 0.6; }

.team-linkedin svg { display: block; }

/* Image sections */
.hero-image-full {
  margin: 0 48px;
  height: 300px;
  overflow: hidden;
}

.hero-image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Screenshots row */
.screenshots-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 0 var(--page-pad);
  border-top: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
}

.screenshots-row img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-right: 1px solid var(--white-10);
}

.screenshots-row img:last-child { border-right: 0; }

/* Product demo video sections */
.video-demo {
  padding: 0 48px;
}

.video-demo-frame {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--white-10);
  border-radius: 0;
  overflow: hidden;
  background-image: var(--video-bg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-demo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.46);
}

.video-demo-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  background: transparent;
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.video-demo-button:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.06);
}

.video-demo-meta {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.58);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.video-demo-meta span {
  min-height: 56px;
  padding: 18px 24px;
  border-right: 1px solid rgba(255,255,255,0.14);
  color: var(--white-60);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.video-demo-meta span:last-child { border-right: 0; }

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.video-modal.open {
  display: flex;
}

.video-modal iframe {
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 16/9;
  border: none;
  border-radius: 4px;
}

.video-modal-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 16px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle span + span {
  margin-top: 5px;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 80px 24px 48px;
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-logo {
  position: absolute;
  top: 16px;
  left: 20px;
}

.mobile-nav a {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: var(--white);
  transition: opacity 0.2s;
}

.mobile-nav a:hover {
  opacity: 0.6;
}

.mobile-nav a.active {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}

.mobile-nav .nav-lang {
  font-size: 14px;
  margin-top: 16px;
  display: flex;
}

/* Responsive */
@media (max-width: 1280px) {
  .site-nav { display: none; }
  .menu-toggle { display: flex; flex-direction: column; }
  .nav-cta { display: none; }
  .project-card-img { height: 300px; }
  .project-card-info { grid-template-columns: 1fr; min-height: auto; }
  .project-card-services { grid-column: 1; }
  .project-card-title { font-size: clamp(20px, 2.2vw, 32px); }
}

@media (max-width: 1024px) {
  :root { --page-pad: 24px; }
  .hero { padding: 80px 24px 60px; }
  .site-header { padding: 0 24px; }
  .section-header, .services-section, .steps-section,
  .statement-section, .faq-section, .faq-list, .site-footer,
  .clients-label, .testimonial-section, .cta-section,
  .gallery-section, .detail-info, .detail-section,
  .related-section, .contact-main, .page-hero { padding-left: 24px; padding-right: 24px; }
  .project-grid, .filter-bar { padding: 0 24px; }
  .filter-bar { overflow-x: auto; }
  .project-card-img { height: auto; aspect-ratio: 16 / 9; }
  .project-card-info { grid-template-columns: 1fr; min-height: auto; }
  .project-card-title { font-size: clamp(18px, 2vw, 28px); }
  .project-card-services { grid-column: 1; }
  .stats-row, .hero-image-full, .screenshots-row { padding: 0 24px; margin: 0; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .showreel { margin: 0 var(--page-pad); padding: 0; }
  .products-grid { padding: 0 24px; }
  .clients-row { grid-template-columns: repeat(4, minmax(80px, 1fr)); padding: 24px; }
  .video-demo { padding: 0 24px; }
  .video-demo-frame { min-height: 420px; }
  .feature-grid, .usecase-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .related-grid { grid-template-columns: 1fr; }
  .contact-main { grid-template-columns: 1fr; }
  .contact-form { padding-right: 0; border-right: 0; border-bottom: 1px solid var(--white-10); }
  .contact-info { width: 100%; }
  .page-hero { padding-top: 120px; padding-bottom: 48px; }
  .detail-hero-img { height: auto; aspect-ratio: 16 / 9; }
  .gallery-main { height: auto; aspect-ratio: 16 / 9; }
  .service-tags { display: none; }
  .service-summary { align-items: flex-start; }
  .service-toggle { margin-top: 4px; }
  .service-desc { padding-left: 24px; }
}

@media (max-width: 768px) {
  :root { --page-pad: 20px; }
  .page-hero { padding-top: 80px; padding-bottom: 32px; }
  .page-hero-title { font-size: clamp(36px, 10vw, 52px); letter-spacing: -2px; }
  .project-card-img { height: auto; aspect-ratio: 4 / 3; }
  .project-card-info { grid-template-columns: 1fr; min-height: auto; padding: 10px 10px 12px; gap: 4px; }
  .project-card-services { display: none; }
  .project-card-title { font-size: 16px; letter-spacing: -0.3px; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card-img { height: auto; aspect-ratio: 16 / 9; }
  .hero-bottom { flex-direction: column; gap: 32px; align-items: flex-start; }
  .hero-sub { text-align: left; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-subtitle { text-align: left; }
  .faq-question { font-size: 16px; }
  .testimonial-content { flex-direction: column; align-items: center; gap: 24px; }
  .testimonial-content > div { max-width: 100%; }
  .testimonial-avatar { width: 100px; height: 100px; }
  .clients-row { grid-template-columns: repeat(2, minmax(80px, 1fr)); gap: 16px; }
  .showreel-meta { grid-template-columns: repeat(2, 1fr); }
  .showreel-meta span { min-height: 48px; padding: 14px 16px; }
  .video-demo-meta { grid-template-columns: repeat(2, 1fr); }
  .video-demo-meta span { min-height: 48px; padding: 14px 16px; }
  .video-demo-frame { min-height: 300px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 24px 32px; padding-top: 32px; }
  .footer-col:last-child { text-align: left; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; padding-bottom: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .feature-grid, .usecase-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-front .team-name,
  .team-front .team-role { left: 10px; right: 10px; }
  .team-name { font-size: 13px; }
  .detail-hero-img { height: auto; aspect-ratio: 16 / 9; }
  .detail-info { padding-top: 40px; padding-bottom: 28px; }
  .detail-section { padding-top: 32px; padding-bottom: 32px; }
  .gallery-main { height: auto; aspect-ratio: 16 / 9; }
  .gallery-row { grid-template-columns: 1fr; }
  .gallery-row img { height: auto; aspect-ratio: 16 / 9; }
  .cta-title { letter-spacing: -2px; }
  .step-num { font-size: 32px; }
  .stat-item { padding: 20px 16px; }
  .pricing-card { padding: 20px 16px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary { justify-content: center; padding: 14px 24px; }
}

/* Page load transition */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.page-loader .logo { font-size: 28px; animation: loaderPulse 1s ease infinite; }
@keyframes loaderPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }

/* Project card hover */
.project-card {
  transition: transform 0.4s ease;
}
.project-card:hover {
  transform: translateY(-4px);
}
.project-card-img {
  transition: transform 0.6s ease;
}
.project-card:hover .project-card-img {
  transform: scale(1.03);
}

/* Feature card hover */
.feature-card {
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.feature-card:hover {
  border-color: var(--white-20);
  transform: translateY(-2px);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > *, .project-card, .project-card-img, .feature-card { transition: none; }
  .reveal { opacity: 1; transform: none; }
  .reveal-stagger > * { opacity: 1; transform: none; }
  @keyframes faqReveal { from { opacity: 1; transform: none; } }
  @keyframes loaderPulse { 0%,100% { opacity: 1; } }
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--bg-elevated);
  border-top: 1px solid var(--white-10);
  padding: 20px var(--page-pad);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#cookie-banner.cookie-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.cookie-text {
  font-size: 13px;
  color: var(--white-60);
  line-height: 1.5;
  flex: 1;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.cookie-decline {
  background: transparent;
  border: 1px solid var(--white-20);
  color: var(--white-60);
}

.cookie-decline:hover {
  border-color: var(--white-40);
  color: var(--white);
}

.cookie-accept {
  background: var(--white);
  border: 1px solid var(--white);
  color: #000;
}

.cookie-accept:hover {
  background: #e0e0e0;
  border-color: #e0e0e0;
}

@media (max-width: 768px) {
  .cookie-inner {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .cookie-actions {
    justify-content: stretch;
  }
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}

/* Landing 2026 additions */
.logo-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.logo-sub {
  font-size: 12px;
  color: var(--white-60);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-intro {
  font-size: 16px;
  color: var(--white-60);
  line-height: 1.65;
  max-width: 680px;
}

.product-card-cta {
  margin-top: auto;
  padding-top: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.product-card-cta::after { content: "\2192"; font-size: 15px; line-height: 1; }

.nav-cta {
  padding: 11px 22px;
  font-size: 13px;
}

@media (max-width: 1024px) {
  .logo-sub { display: none; }
}
@media (max-width: 768px) {
  .nav-cta { display: none; }
  .section-subtitle { max-width: none; }
}
