
/* ===== FONTS ===== */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Inter-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
}

/* ===== BASE RESET ===== */
html { scroll-behavior: smooth; overflow-x: hidden; }

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

body { background: #0d0d0d; color: #fff; overflow-x: hidden; }

/* ===== TYPOGRAPHY ===== */
h1 {
  font-size: 36px;
  background: linear-gradient(90deg, white, orange, white);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
}

h2 { font-size: 26px; margin-bottom: 16px; }
p  { font-size: 15px; line-height: 1.6; }

@media (min-width: 600px) {
  h1 { font-size: 52px; }
  h2 { font-size: 32px; margin-bottom: 20px; }
  p  { font-size: 16px; }
}

@media (min-width: 1024px) {
  h1 { font-size: 70px; }
  h2 { font-size: 36px; }
}

@keyframes shine {
  0%   { background-position: 0%; }
  100% { background-position: 200%; }
}

/* ===== NAV ===== */
nav {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(5px);
  z-index: 1000;
}

@media (min-width: 768px) {
  nav { padding: 25px 60px; }
}

.nav-logo a,
#logo {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  opacity: 1;
  letter-spacing: 1.5px;
  display: inline-block;
  white-space: nowrap;
  padding: 0 !important;
}

.nav-logo a::after { display: none; }

.logo-c {
  color: #FF8C28;
}

@media (min-width: 768px) {
  .nav-logo a, #logo { font-size: 20px; letter-spacing: 2px; }
}

.lang-toggle {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  user-select: none;
}

.lang-toggle span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 5px 10px;
  transition: background 0.2s, color 0.2s;
  color: rgba(255,255,255,0.4);
}

.lang-toggle span.active {
  background: white;
  color: black;
}

.nav-toggle {
  display: block;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 6px 11px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  transition: 0.2s;
}

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

@media (min-width: 768px) { .nav-toggle { display: none; } }

.nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
  padding: 16px 24px 24px;
  gap: 6px;
}

.nav-links.open {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.nav-links.open a {
  padding: 10px 0;
  font-size: 14px;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    width: auto;
    background: none;
    backdrop-filter: none;
    padding: 0;
    gap: 0;
  }
}

nav a {
  color: white;
  text-decoration: none;
  opacity: .7;
  position: relative;
  transition: 0.3s;
  font-size: 15px;
  padding: 12px 0;
}

nav a:visited { color: white; }
nav a:hover   { opacity: 1; }

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0%;
  height: 2px;
  background: white;
  transition: 0.3s;
}

nav a:hover::after { width: 100%; }

@media (min-width: 768px) {
  nav a { margin-left: 30px; padding: 0; font-size: 14px; white-space: nowrap; }
  nav a::after { bottom: -5px; }
}

/* ===== BG CANVAS ===== */
#bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -3;
  pointer-events: none;
}


/* ===== PAGE TRANSITION ===== */
.page-transition {
  position: fixed;
  inset: 0;
  background: #0d0d0d;
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.page-transition.slide-in  { opacity: 1; }
.page-transition.slide-out { opacity: 0; }

/* ===== SCROLL REVEAL ===== */
/* ===== WORD-BY-WORD REVEAL ===== */
.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
  font-family: inherit;
}
.word-token {
  display: inline-block;
  opacity: 0;
  transform: translateY(105%);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1),
              transform 0.6s cubic-bezier(0.22,1,0.36,1);
  font-family: inherit;
}
.word-token.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: perspective(1200px) translateY(30px) rotateX(6deg);
  transform-origin: center bottom;
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22,1,0.36,1);
}

.reveal.visible {
  opacity: 1;
  transform: perspective(1200px) translateY(0) rotateX(0deg);
}

/* work cards get a stronger 3D slide-up */
.card.reveal {
  transform: perspective(1200px) translateY(55px) rotateX(9deg);
  transform-origin: center bottom;
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22,1,0.36,1);
}

.card.reveal.visible {
  opacity: 1;
  transform: perspective(1200px) translateY(0) rotateX(0deg);
}

/* card tilt glare overlay */
.tilt-glare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: overlay;
  z-index: 2;
  transition: opacity 0.3s;
}

/* directional slide-in variants */
.reveal-left {
  opacity: 0;
  transform: translateX(-110px);
  transition: opacity 1.1s cubic-bezier(0.22,1,0.36,1), transform 1.1s cubic-bezier(0.22,1,0.36,1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(110px);
  transition: opacity 1.1s cubic-bezier(0.22,1,0.36,1), transform 1.1s cubic-bezier(0.22,1,0.36,1);
}
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== PROGRESS BAR ===== */
#progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: white;
  width: 0%;
  z-index: 3000;
  transition: width 0.1s linear;
}

/* ===== SOCIAL BUTTON ===== */
.social-btn {
  padding: 10px 22px;
  border-radius: 30px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  color: white;
  transition: 0.3s;
  display: inline-block;
  font-size: 13px;
}

@media (min-width: 768px) {
  .social-btn { padding: 12px 28px; font-size: 14px; }
}

.social-btn:hover {
  transform: translateY(-4px) scale(1.04);
  background: white;
  color: black;
  box-shadow:
    0 10px 30px rgba(255,255,255,0.2),
    0 0 30px rgba(255,180,80,0.15);
}

/* ===== PULSE TEXT ===== */
.pulse-text { animation: pulseText 2.5s infinite ease-in-out; }

@keyframes pulseText {
  0%, 100% { text-shadow: 0 0 5px rgba(255,255,255,0.2); }
  50%       { text-shadow: 0 0 25px rgba(255,255,255,0.7); }
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 60px 6% 40px;
  text-align: center;
  border-top: 1px solid;
  border-image: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), rgba(255,255,255,0.32), rgba(255,255,255,0.18), transparent) 1;
  margin-top: 60px;
  background: linear-gradient(180deg, #111111 0%, #080808 60%);
  width: 100%;
  position: relative;
  overflow: hidden;
}


.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .site-footer { padding: 80px 10% 50px; margin-top: 100px; }
}

.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  display: block;
  cursor: default;
  transition: opacity 0.3s, transform 0.3s, text-shadow 0.3s;
}

.footer-brand:hover {
  opacity: 1;
  transform: scale(1.04);
  text-shadow: 0 0 18px rgba(255,160,60,0.3), 0 0 40px rgba(255,140,40,0.15);
}

.footer-brand .logo-c { color: #FF8C28; }

.footer-email {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  margin-bottom: 24px;
}

.footer-email:hover { color: #fff; }

.footer-nav {
  display: none;
}

@media (min-width: 768px) {
  .footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;
  }
}

.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  text-align: center;
}

.footer-nav a:hover { color: rgba(255,160,60,0.9); }

.footer-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto 32px;
}

.footer-social {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer-social .social-btn {
  min-width: 140px;
  text-align: center;
  justify-content: center;
}

.footer-copy {
  margin-top: 0;
  font-size: 12px;
  opacity: .3;
}

.footer-copy a {
  color: inherit;
  text-decoration: underline;
  opacity: 1;
}

.privacy-note {
  margin-top: 12px;
  font-size: 12px;
  opacity: .45;
  text-align: center;
}

.privacy-note a {
  color: inherit;
  text-decoration: underline;
}

/* ===== FULLSCREEN LIGHTBOX ===== */
.fullscreen {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.fullscreen img {
  max-width: 94%;
  max-height: 90%;
  border-radius: 8px;
}

.close-btn {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 32px;
  color: white;
  cursor: pointer;
  z-index: 3000;
  transition: 0.3s;
  line-height: 1;
}

@media (min-width: 768px) {
  .close-btn { top: 30px; right: 40px; font-size: 40px; }
}

.close-btn:hover { transform: scale(1.2); opacity: 0.7; }

/* ===== CTA SECTION (shared gallery/video-gallery) ===== */
.cta-section {
  text-align: center;
  padding: 60px 6% 80px;
}

.cta-section h2 { margin-bottom: 16px; }

.cta-section p {
  max-width: 700px;
  margin: 0 auto 28px;
  opacity: .6;
}

@media (min-width: 768px) {
  .cta-section { padding: 80px 10% 100px; }
}

/* ============================================================
   PAGE: INDEX
   ============================================================ */

/* --- HERO --- */
.page-index .hero {
  height: 100vh;
  height: 100dvh; /* iOS Safari: dynamic viewport height excludes browser chrome */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0 20px;
}

.page-index .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  z-index: -3;
}

.page-index .hero video {
  position: absolute;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -2;
  pointer-events: none;
}

/* On portrait mobile: shift video focus point slightly up to show subject better */
@media (max-width: 767px) and (orientation: portrait) {
  .page-index .hero video {
    object-position: center 30%;
  }
}

.page-index .hero::after {
  content: "";
  position: absolute;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.3);
  pointer-events: none;
}

/* Mobile: stronger bottom fade so hero bleeds into next section */
@media (max-width: 767px) {
  .page-index .hero::after {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.15) 0%,
      rgba(0,0,0,0.25) 60%,
      rgba(0,0,0,0.75) 100%
    );
  }
}

.page-index .hero h1 {
  font-size: 36px;
  letter-spacing: -0.5px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpHero 1.2s ease forwards;
}

.page-index .hero .hero-sub {
  margin-top: 16px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpHeroSub 1.2s ease 0.3s forwards;
  font-size: 12px;
  letter-spacing: 2px;
}

@media (min-width: 600px) {
  .page-index .hero h1     { font-size: 52px; }
  .page-index .hero .hero-sub { font-size: 14px; letter-spacing: 3px; }
}

@media (min-width: 1024px) {
  .page-index .hero h1 { font-size: 70px; letter-spacing: -1px; }
}

@keyframes fadeUpHero    { to { opacity: 1;   transform: translateY(0); } }
@keyframes fadeUpHeroSub { to { opacity: 0.7; transform: translateY(0); } }

/* --- CTA BUTTON --- */
.cta {
  margin-top: 28px;
  padding: 13px 28px;
  border: 1px solid rgba(255,160,60,0.6);
  border-radius: 30px;
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 10;
  animation: pulse 2.5s infinite;
  transition: 0.3s;
  color: white;
  text-decoration: none;
  font-size: 14px;
  background: rgba(255,160,60,0.08);
}

.cta:hover {
  background: rgba(255,160,60,0.85);
  border-color: rgba(255,160,60,1);
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255,160,60,0.3), 0 0 40px rgba(255,160,60,0.15);
}

@media (min-width: 768px) {
  .cta { margin-top: 30px; padding: 12px 30px; font-size: 15px; }
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0   rgba(255,160,60,0.45); }
  70%  { box-shadow: 0 0 0 18px rgba(255,160,60,0); }
  100% { box-shadow: 0 0 0 0   rgba(255,160,60,0); }
}

/* --- SCROLL INDICATOR --- */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255,255,255,0.45);
  animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* --- SECTION GLOW DIVIDERS --- */

.section.contact-section::before { content: none; }

/* --- LOGO CLICK --- */
#logo { cursor: pointer; transition: 0.2s; }

.logo-click { animation: logoClick 0.4s ease; }

@keyframes logoClick {
  0%   { transform: scale(1); text-shadow: none; }
  50%  { transform: scale(0.95); text-shadow: 0 0 15px rgba(255,255,255,0.8), 0 0 30px rgba(255,180,80,1), 0 0 60px rgba(255,140,50,0.8); }
  100% { transform: scale(1); text-shadow: none; }
}

/* --- SECTION --- */
.section {
  padding: 36px 6%;
  text-align: center;
}

@media (min-width: 768px) {
  .section { padding: 70px 10%; }
}

@media (min-width: 1024px) {
  .section { padding: 90px 10%; }
}

.section-desc {
  max-width: 620px;
  margin: 18px auto 0;
  opacity: .7;
  line-height: 1.7;
  min-height: 3.2em;
}

.section h2[data-i18n] {
  min-height: 1.3em;
}

/* --- TRAVEL BANNER STRIPE --- */
.travel-section {
  padding-left: 0;
  padding-right: 0;
}

.travel-banner {
  width: 100%;
  background: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.travel-banner h2 {
  font-size: clamp(36px, 7vw, 90px);
  opacity: 1;
  letter-spacing: 0.15em;
  line-height: 1;
  margin-bottom: 0.4em;
  pointer-events: none;
  color: #fff;
}

.travel-banner .section-desc {
  position: relative;
  z-index: 1;
  opacity: 0.85;
}

@media (min-width: 768px) {
  .travel-banner { padding: 50px 10%; }
}

/* --- FULL-WIDTH IMAGE --- */
.full-image {
  position: relative;
  width: 88%;
  margin: 30px auto 0;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  will-change: transform, opacity;
}

.full-image-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cinzel', serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 6px;
  color: rgba(255,255,255,0.92);
  text-shadow:
    0 2px 20px rgba(0,0,0,0.8),
    0 0 60px rgba(0,0,0,0.6),
    0 0 120px rgba(0,0,0,0.4);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .full-image-label { font-size: 80px; letter-spacing: 14px; }
  .full-image-sub { font-size: 13px; letter-spacing: 4px; gap: 16px; }
}

.full-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  transform: scale(1.1);
  will-change: transform;
}

@media (min-width: 768px) {
  .full-image { width: 62%; margin-top: 40px; border-radius: 16px; }
}

/* --- WORK GRID --- */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

@media (min-width: 600px) {
  .grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (min-width: 1100px) {
  .grid { grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px; }
}

.card {
  position: relative;
  padding-bottom: 16px;
  cursor: pointer;
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.card-img-wrap::before,
.card-img-wrap::after { display: none; }

.card-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  filter: brightness(0.88);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.card:hover .card-img-wrap img {
  filter: brightness(1.0);
  transform: scale(1.03);
}

.card p {
  margin-top: 12px;
  opacity: .75;
  font-size: 14px;
  font-family: 'Cinzel', serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  transition: opacity 0.3s, color 0.3s;
}

.card:hover p {
  opacity: 1;
  color: #FF8C28;
}


/* --- WORK ROW --- */
.work-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 44px;
}

@media (min-width: 768px) {
  .work-row { flex-direction: row; flex-wrap: wrap; }
}

@media (min-width: 768px) { .work-row { gap: 36px; margin-top: 56px; } }

/* --- SHOWCASE VIDEO --- */
.showcase {
  width: 100%;
  display: flex;
  justify-content: center;
}

.showcase video {
  width: 100%;
  max-width: 520px;
  border-radius: 14px;
  transition: 0.4s;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  display: block;
  filter: brightness(1.2);
}

.showcase video:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.6), 0 0 30px rgba(255,180,80,0.12);
  filter: brightness(1.05);
}

@media (min-width: 768px) {
  .showcase video { max-width: 720px; width: 80%; }
}

@media (min-width: 1024px) {
  .showcase video { max-width: 900px; width: 65%; }
}

/* --- CTA BLOCK --- */
.cta-block {
  margin-top: 36px;
  padding: 36px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.cta-block-icon {
  display: block;
  font-size: 22px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, white, orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-block h3 { font-size: 22px; }

.cta-block p { margin-top: 10px; opacity: .7; }

.cta-block > a {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: white;
  color: black;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}

.cta-block > a:hover { transform: translateY(-2px); }

.cta-block-social {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.cta-block-social .social-btn {
  min-width: 140px;
  text-align: center;
}

.cta-block:hover {
  border-color: rgba(255,160,60,0.25);
  box-shadow: 0 0 40px rgba(255,140,40,0.08);
}

@media (min-width: 768px) {
  .cta-block { padding: 50px; }
  .cta-block h3 { font-size: 26px; }
}

/* --- EQUIPMENT GRID --- */
.equip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 36px;
  text-align: left;
}

@media (min-width: 600px) {
  .equip-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

@media (min-width: 1024px) {
  .equip-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
}

.equip-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.equip-item:hover {
  border-color: rgba(255,160,60,0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255,140,40,0.1);
}

.equip-icon {
  font-size: 24px;
  line-height: 1;
}

.equip-cat {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.45;
  margin-top: 6px;
}

.equip-name {
  font-size: 13px;
  font-weight: 600;
  color: white;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .equip-item { padding: 24px; }
  .equip-name { font-size: 15px; }
  .equip-cat { font-size: 11px; }
  .equip-icon { font-size: 26px; }
}

/* --- LUT SECTION --- */

.lut-section {
  position: relative;
  overflow: hidden;
}

.lut-section::before {
  content: 'AURORA AMBER';
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cinzel', serif;
  font-size: clamp(40px, 6vw, 90px);
  font-weight: 600;
  letter-spacing: 0.3em;
  white-space: nowrap;
  background: linear-gradient(180deg, rgba(255,255,255,0.11) 0%, rgba(255,255,255,0.02) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.lut-section > * { position: relative; z-index: 1; }

.lut-player {
  width: 300px;
  margin: 32px auto 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  background: #000;
  position: relative;
  transition: 0.4s;
  cursor: pointer;
}

.lut-player:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.6), 0 0 30px rgba(255,180,80,0.12);
  filter: brightness(1.05);
}

.lut-video {
  width: 100%;
  display: block;
  cursor: pointer;
}

.lut-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(8px);
}

.lut-btn-play,
.lut-btn-mute {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.lut-btn-play:hover,
.lut-btn-mute:hover { opacity: 1; }

.lut-btn-play svg,
.lut-btn-mute svg { width: 18px; height: 18px; }

.lut-progress-wrap {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}

.lut-progress-fill {
  height: 100%;
  width: 0%;
  background: greenyellow;
  border-radius: 3px;
  pointer-events: none;
  transition: width 0.1s linear;
}

.lut-time {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.lut-buttons {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-lut {
  padding: 12px 28px;
  border-radius: 30px;
  background: greenyellow;
  color: black;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  transition: 0.3s;
}

.btn-lut:hover { transform: translateY(-3px); filter: brightness(1.1); }

.lut-note {
  margin-top: 18px;
  font-size: 13px;
  opacity: .5;
}

/* --- REVIEWS --- */
.reviews {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 900px) {
  .reviews { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.review {
  background: linear-gradient(145deg, rgba(255,255,255,0.07) 0%, rgba(255,160,60,0.04) 100%);
  border: 1px solid rgba(255,160,60,0.18);
  padding: 28px 26px 24px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 0 0px rgba(255,160,60,0);
}

.review:hover {
  transform: translateY(-3px);
  transition-delay: 0s;
}

.review-stars {
  color: #FFA830;
  font-size: 14px;
  letter-spacing: 2px;
}

.review-quote {
  font-size: 14px;
  line-height: 1.75;
  opacity: .8;
  flex: 1;
}

.review-author {
  font-size: 12px;
  opacity: .4;
  letter-spacing: 1px;
}

@media (min-width: 768px) { .review { padding: 32px 28px 26px; } }

/* --- FAQ --- */
.faq {
  max-width: 700px;
  margin: 28px auto 0;
  text-align: left;
}

.faq h4 { margin-top: 28px; font-size: 16px; }
.faq h4:first-child { margin-top: 0; }
.faq p  { opacity: .7; margin-top: 8px; line-height: 1.7; }

/* --- CONTACT SECTION --- */
.contact-section { position: relative; }

.contact-card-wrap {
  display: flex;
  justify-content: center;
  padding: 0 0 20px;
  position: relative;
}

.contact-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px 22px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  position: relative;
}

@media (min-width: 768px) {
  .contact-card { padding: 48px 40px; }
}

.contact-card::before { content: none; }

.contact-card h2 { margin-bottom: 10px; }

.contact-card > p:first-of-type {
  opacity: .5;
  font-size: 14px;
  margin-bottom: 20px;
}

.contact-card form button {
  background: rgba(80,150,255,0.85);
  color: #fff;
  font-weight: 600;
}

.contact-card form button:hover {
  background: rgba(80,150,255,1);
  box-shadow: 0 8px 24px rgba(80,150,255,0.3);
}

.contact-email-link {
  display: inline-block;
  margin: 12px auto 28px;
  padding: 10px 24px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.contact-email-link:hover {
  border-color: rgba(255,160,60,0.4);
  color: #fff;
  background: rgba(255,160,60,0.08);
  box-shadow: 0 0 20px rgba(255,160,60,0.1);
}

/* --- CONTACT FORM --- */
form {
  max-width: 500px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input, textarea {
  padding: 14px;
  background: #111;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 15px;
  outline: none;
  transition: 0.2s;
}

input:focus, textarea:focus { box-shadow: 0 0 0 1px rgba(255,255,255,0.2); }

textarea { resize: vertical; min-height: 120px; }

form button {
  padding: 14px;
  border: none;
  background: white;
  color: black;
  border-radius: 30px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.2s;
}

form button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,255,255,0.15); }

/* --- BACK TO TOP --- */
.back-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
  backdrop-filter: blur(6px);
}

.back-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-top:hover {
  background: rgba(255,255,255,0.18);
}

.scroll-down {
  position: fixed;
  bottom: 40px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
  backdrop-filter: blur(6px);
}

.scroll-down.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-down:hover {
  background: rgba(255,255,255,0.18);
}

/* --- WHATSAPP --- */
.whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(37, 211, 102, 0.75);
  color: white;
  padding: 12px;
  border-radius: 50%;
  text-decoration: none;
  line-height: 0;
  z-index: 999;
  transition: opacity 0.3s, transform 0.2s;
}

.whatsapp:hover { transform: translateY(-3px); }

/* --- ABOUT --- */
.about-section {
  padding: 50px 6%;
  text-align: center;
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(255,160,60,0.08), transparent 55%),
    radial-gradient(ellipse at 75% 40%, rgba(255,220,140,0.04), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

@media (min-width: 768px) {
  .about-section { padding: 70px 10%; }
}

@media (min-width: 1024px) {
  .about-section { padding: 90px 10%; }
}

.about-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) { .about-box { gap: 80px; } }

.about-text {
  flex: 1;
  min-width: 280px;
  max-width: 550px;
  text-align: left;
}

.about-small {
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 4px;
  opacity: .6;
  font-size: 12px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.about-small::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(255,160,60,1), rgba(255,160,60,0.2));
  flex-shrink: 0;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .about-text h2 { font-size: 44px; }
}

@media (min-width: 1024px) {
  .about-text h2 { font-size: 55px; line-height: 1.1; }
}

.about-text p {
  font-size: 16px;
  opacity: .7;
  line-height: 1.9;
}

@media (min-width: 768px) {
  .about-text p { font-size: 19px; }
}

/* Legacy single-image wrapper (kept for JS parallax compat) */
.about-image {
  border-radius: 20px;
  overflow: hidden;
  display: inline-block;
  box-shadow: 0 25px 70px rgba(0,0,0,0.65), 0 0 50px rgba(255,180,80,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 1024px) { .about-image { border-radius: 24px; } }
.about-image img {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transform: scale(1.12);
  transition: transform 0.1s linear;
  will-change: transform;
}
@media (min-width: 768px)  { .about-image img { max-width: 520px; } }
@media (min-width: 1024px) { .about-image img { max-width: 600px; } }

/* --- ABOUT IMAGE STACK --- */
.about-images {
  position: relative;
  flex-shrink: 0;
  width: 500px;
  max-width: 82vw;
  aspect-ratio: 500 / 560;
}

@media (min-width: 768px) {
  .about-images { width: 560px; }
}

@media (min-width: 1024px) {
  .about-images { width: 640px; }
}

.about-img-item {
  position: absolute;
  width: 86%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,0.65), 0 0 50px rgba(255,180,80,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.5s ease,
              opacity 0.4s ease;
  cursor: pointer;
  will-change: transform;
}

@media (min-width: 1024px) { .about-img-item { border-radius: 24px; } }

.about-img-item img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  transition: transform 0.1s linear;
  will-change: transform;
}

/* First photo: front-left, slight CCW tilt */
.about-img-item:nth-child(1) {
  bottom: 0;
  left: 0;
  z-index: 2;
  transform: rotate(-4deg);
}

/* Second photo: back-right, slight CW tilt */
.about-img-item:nth-child(2) {
  top: 0;
  right: 0;
  z-index: 1;
  transform: rotate(4deg);
  opacity: 0.88;
}

/* Hover: pop to front */
.about-img-item:hover {
  z-index: 3 !important;
  transform: rotate(0deg) scale(1.04) !important;
  opacity: 1 !important;
  box-shadow: 0 35px 80px rgba(0,0,0,0.85),
              0 0 60px rgba(255,180,80,0.15) !important;
}

/* --- CLIENT LOGOS --- */
h2.trusted-by-title {
  font-family: 'Cinzel', serif !important;
  font-size: 26px;
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 0;
}

@media (min-width: 600px) {
  h2.trusted-by-title { font-size: 32px; }
}

.trusted-by-title .by-lower {
  font-variant: normal;
  text-transform: lowercase;
}

.client-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  opacity: .8;
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .client-logos { gap: 36px; margin-top: 44px; }
}

.logos-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  gap: 16px;
  width: 100%;
}

@media (min-width: 768px) {
  .logos-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: nowrap;
  }
  .logos-row--bottom { gap: 40px; }
}

.logos-row--bottom img { transform-origin: center; }

/* Mobile: all logos same height + max-width so wide logos don't dominate */
.client-logos img {
  height: 36px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}

.white-logo { filter: brightness(0) invert(1); }
.blechliebe { filter: brightness(0) invert(1); }

/* Mobile only: individual logo sizes */
@media (max-width: 767px) {
  .client-logos .tafu-logo    { height: 30px; }
  .client-logos .white-logo   { height: 58px; max-width: 170px; }
  .client-logos .ford-logo    { height: 80px; max-width: 160px; }
  .client-logos .blechliebe   { height: 80px; max-width: 220px; }
  .client-logos .autofinesse  { height: 44px; max-width: 150px; }
}

/* Desktop: restore original scale-based sizes */
@media (min-width: 768px) {
  .client-logos img { height: 55px; max-width: none; }
  .logos-row--bottom img { height: 52px; }
  .ford-logo  { height: 55px; transform: scale(3);  margin: 0 40px; }
  .white-logo { height: 55px; transform: scale(2);  margin: 0 40px; }
  .blechliebe { height: 52px; transform: scale(2);  margin: 0 40px; }
}

/* --- STATS --- */
.stats {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (min-width: 768px) { .stats { gap: 24px; } }

@keyframes float-glow {
  0%, 100% {
    box-shadow: 0 4px 30px rgba(0,0,0,0.5),  0 0 0px  rgba(255,140,60,0);
  }
  50% {
    box-shadow: 0 18px 55px rgba(0,0,0,0.25), 0 0 22px rgba(255,140,60,0.09);
  }
}

.stat-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  width: 160px;
  flex-shrink: 0;
  box-sizing: border-box;
  animation: float-glow 4s ease-in-out infinite;
  transition: border-color 0.3s;
}

.stat-item:nth-child(2) { animation-delay: -2s; }

.stat-item:hover {
  border-color: rgba(255,160,60,0.3);
}

.stat-num {
  display: block;
  text-align: center;
  margin-bottom: 8px;
  width: 100%;
}

.stats h2 {
  font-size: 40px;
  margin: 0 auto;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #fff 0%, #FF8C28 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .stat-item { width: 180px; padding: 32px 24px; }
  .stats h2 { font-size: 52px; }
}

.stat-suffix {
  font-size: 28px;
  font-weight: 600;
  background: linear-gradient(135deg, #fff 0%, #FF8C28 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item p { font-size: 13px; opacity: .5; letter-spacing: 1px; text-transform: uppercase; }

/* ============================================================
   PAGE: GALLERY (photo)
   ============================================================ */
.page-gallery .hero {
  height: 30vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 70px;
}

@media (min-width: 768px) { .page-gallery .hero { height: 40vh; padding-top: 0; } }

.page-gallery .hero h1 { font-size: 36px; }

@media (min-width: 768px) { .page-gallery .hero h1 { font-size: 50px; } }

.page-gallery .hero .hero-sub {
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUpHeroSub 1s ease 0.5s forwards;
  color: rgba(255,255,255,0.55);
  font-family: inherit;
  text-transform: uppercase;
}

.page-gallery .gallery {
  padding: 20px 6% 80px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.gallery-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 480px)  { .page-gallery .gallery { padding: 20px 8% 80px; } }
@media (min-width: 768px)  { .page-gallery .gallery { padding: 24px 12% 100px; } .gallery-col { gap: 20px; } }
@media (min-width: 1100px) { .page-gallery .gallery { gap: 18px; padding: 24px 16% 120px; } }

.page-gallery .gallery img {
  width: 100%;
  border-radius: 10px;
  transition: opacity 0.5s ease, transform 0.3s;
  display: block;
  opacity: 0;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.page-gallery .gallery img.loaded {
  opacity: 1;
}

@media (min-width: 768px) { .page-gallery .gallery img { border-radius: 12px; } }

.page-gallery .gallery img:hover { transform: scale(1.03); }


/* ============================================================
   PAGE: VIDEO GALLERY
   ============================================================ */
.page-video .hero {
  height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 70px;
}

@media (min-width: 768px) { .page-video .hero { height: 40vh; padding-top: 0; } }

.page-video .hero h1 { font-size: 36px; }
@media (min-width: 768px) { .page-video .hero h1 { font-size: 50px; } }

.page-video .gallery {
  padding: 20px 6% 80px;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

@media (min-width: 768px) {
  .page-video .gallery { padding: 24px 14% 100px; gap: 64px; }
}

@media (min-width: 1100px) {
  .page-video .gallery { padding: 24px 18% 100px; }
}

.row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (min-width: 900px) {
  .row { grid-template-columns: repeat(3, 1fr); gap: 30px; }
}

.video-card {
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  width: 100%;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  cursor: pointer;
}

.video-card:hover {
  transform: scale(1.025) translateY(-4px);
}

@media (min-width: 768px) { .video-card { border-radius: 12px; } }

.landscape { aspect-ratio: 16/9; }

.portrait {
  aspect-ratio: 9/16;
  max-width: 380px;
  margin: 0 auto;
}

@media (min-width: 600px) { .portrait { max-width: 460px; } }
@media (min-width: 900px) { .portrait { max-width: 560px; } }

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   PAGE: IMPRESSUM
   ============================================================ */
.back {
  display: inline-block;
  margin: 90px 0 0 20px;
  padding: 9px 18px;
  border: 1px solid white;
  border-radius: 30px;
  text-decoration: none;
  color: white;
  transition: 0.3s;
  font-size: 13px;
}

@media (min-width: 768px) {
  .back {
    position: fixed;
    top: 120px; left: 60px;
    margin: 0;
    font-size: 14px;
    padding: 10px 20px;
    z-index: 9999;
  }
}

.back:hover { background: white; color: black; }

.imp-section {
  padding: 80px 6% 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

@media (min-width: 768px) {
  .imp-section { padding: 120px 10% 60px; gap: 28px; }
}

@media (min-width: 1024px) {
  .imp-section { padding: 160px 20% 60px; }
}

.imp-section h1 {
  font-size: 40px;
  margin-bottom: 0;
}

@media (min-width: 768px) { .imp-section h1 { font-size: 50px; } }

.content {
  max-width: 650px;
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
  text-align: left;
}

.page-impressum .content { text-align: center; }

@media (min-width: 768px) { .content { padding: 40px; border-radius: 16px; } }
@media (min-width: 1024px) { .page-impressum .content { padding: 56px 40px; min-height: 420px; } }

.content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.content p {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 10px;
}

@media (min-width: 768px) { .content p { font-size: 15px; } }

.content p:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.content a { color: rgba(255,180,80,0.9); text-decoration: none; }
.content a:hover { text-decoration: underline; }

.imp-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.imp-bottom {
  text-align: center;
  max-width: 650px;
  width: 100%;
  margin: 60px auto;
  padding: 0 6%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.imp-bottom h2 { font-size: 22px; margin: 0; }
.imp-bottom p { opacity: .7; font-size: 14px; margin: 0; }

/* ===== DOWNLOADS PAGE ===== */
/* ===== DOWNLOADS PAGE ===== */
.dl-hero-typing {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30vh;
  padding-top: 100px;
  text-align: center;
}

.page-downloads .hero h1 { font-size: 36px; }
@media (min-width: 768px) { .page-downloads .hero h1 { font-size: 50px; } }

.dl-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 6% 60px;
  justify-content: center;
}

.dl-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.dl-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4/5;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.4s;
}
.dl-thumb:hover { filter: brightness(1.15); }

.dl-play {
  font-size: 2.5rem;
  opacity: .25;
  pointer-events: none;
  transition: opacity .3s;
}
.dl-card:hover .dl-play { opacity: .5; }

.dl-info {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dl-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  opacity: .9;
  min-height: 2.8em;
}

.dl-meta {
  font-size: 12px;
  opacity: .45;
  margin-bottom: 14px;
  flex: 1;
}

.dl-info .social-btn { font-size: 12px; padding: 8px 18px; align-self: center; }
.dl-info .social-btn::after { display: none !important; }

.dl-note {
  text-align: center;
  font-size: 13px;
  opacity: .4;
  padding: 0 6% 60px;
  max-width: 1140px;
  margin: 0 auto;
}

/* centered card info */
.dl-info { text-align: center; }

/* animated border */
@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.dl-card-premium {
  --border-angle: 0deg;
  border-radius: 14px;
  background:
    linear-gradient(#111, #111) padding-box,
    conic-gradient(from var(--border-angle), transparent 70%, rgba(160,80,255,0.9) 82%, transparent 94%) border-box;
  border: 2px solid transparent !important;
  animation: border-spin 3s linear infinite;
}

@keyframes border-spin {
  to { --border-angle: 360deg; }
}

/* free card — same as premium but blue border */
.dl-card-free {
  --border-angle: 0deg;
  border-radius: 14px;
  background:
    linear-gradient(#111, #111) padding-box,
    conic-gradient(from var(--border-angle), transparent 70%, rgba(80,220,120,0.9) 82%, transparent 94%) border-box;
  border: 2px solid transparent !important;
  animation: border-spin 3s linear infinite;
}

.dl-card-free .dl-info {
  background: radial-gradient(ellipse at 50% 0%, #1a120a, #0a0a0a 80%);
  padding: 14px 16px 18px;
  border-radius: 0 0 12px 12px;
  margin-top: 0;
}

.dl-card-free .dl-thumb {
  background: #0e0e0e;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
  height: auto;
}

.dl-card-free .dl-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform .4s;
  filter: brightness(0.85);
  display: block;
}

.dl-card-free:hover .dl-thumb img {
  transform: scale(1.05);
  filter: brightness(0.85);
}

.dl-card-free .dl-badge {
  z-index: 1;
}

/* warm gradient info bar */
.dl-card-premium .dl-info {
  background: radial-gradient(ellipse at 50% 0%, #1a120a, #0a0a0a 80%);
  padding: 14px 16px 18px;
  border-radius: 0 0 12px 12px;
  margin-top: 0;
}

/* FAQ accordion */
.dl-faq {
  max-width: 700px;
  margin: 28px auto 0;
  text-align: left;
}

.dl-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dl-faq-q {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 20px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: opacity .2s;
}
.dl-faq-q:hover { opacity: .7; }

.dl-faq-icon {
  font-size: 20px;
  font-weight: 300;
  transition: transform .3s;
  flex-shrink: 0;
}

.dl-faq-item.open .dl-faq-icon {
  transform: rotate(45deg);
}

.dl-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.dl-faq-a p {
  padding-bottom: 20px;
  opacity: .65;
  line-height: 1.7;
  font-size: 14px;
}

.dl-faq-item.open .dl-faq-a {
  max-height: 200px;
}

/* before/after slider */
.ba-wrap {
  max-width: 360px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.ba-slider {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 177.78%; /* 16/9 × 100% — same as 9:16 aspect ratio */
  border-radius: 14px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  --pos: 50%;
}

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

.ba-clip {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 50%;
  overflow: hidden;
  z-index: 1;
}

.ba-clip .ba-video {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: auto;
  max-width: none;
}

.ba-divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: rgba(255,255,255,0.9);
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 16px;
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.ba-label {
  position: absolute;
  top: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  background: rgba(0,0,0,0.5);
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 10;
  backdrop-filter: blur(4px);
}

.ba-label-left  { left: 16px; }
.ba-label-right { right: 16px; }

/* all cards row — 4 cards side by side */
.dl-all-cards {
  display: grid;
  grid-template-columns: repeat(4, 260px);
  column-gap: 20px;
  row-gap: 24px;
  justify-content: center;
  padding-bottom: 32px;
}

@media (max-width: 1100px) {
  .dl-all-cards { grid-template-columns: repeat(2, 260px); }
}
@media (max-width: 520px) {
  .dl-all-cards { grid-template-columns: min(340px, 90vw); }
}

.dl-all-cards .dl-card { width: 100%; }

/* FREE badge on free card */
.dl-badge-free {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(80,220,120,0.9);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 3px 9px;
  border-radius: 20px;
  z-index: 2;
}

/* pack grid — 3-col grid so cards/labels/sliders each share a row */
.dl-pack-grid {
  display: grid;
  grid-template-columns: 300px 300px 300px;
  column-gap: 24px;
  row-gap: 12px;
  justify-content: center;
  padding-bottom: 60px;
  align-items: start;
}

@media (max-width: 740px) {
  .dl-pack-grid {
    grid-template-columns: 300px 300px;
  }
}
@media (max-width: 420px) {
  .dl-pack-grid {
    grid-template-columns: 300px;
  }
}

/* slider placeholder for packs without preview video yet */
.ba-slider-placeholder {
  width: 100%;
  height: 0;
  padding-bottom: 177.78%;
  border-radius: 14px;
  background: #0e0e0e;
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-slider-placeholder span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .25;
  text-align: center;
  line-height: 1.6;
}

/* cards inside the grid take full column width */
.dl-pack-grid .dl-card {
  width: 100%;
}

/* sliders inside the grid */
.dl-pack-grid .ba-slider {
  width: 100%;
}

.ba-sub-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .4;
  text-align: center;
  margin: 6px 0 0;
}

.dl-section-label {
  max-width: 1140px;
  margin: 0 auto 20px;
  padding: 0 6%;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .4;
  text-align: center;
}

.dl-grid-premium {
  margin-bottom: 60px;
}

.dl-card {
  width: 260px;
  flex-shrink: 0;
}

.dl-card-premium .dl-thumb {
  background: #0e0e0e;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
  height: auto;
}

.dl-card-premium .dl-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform .4s;
  filter: brightness(0.85);
  display: block;
}

.dl-card-premium:hover .dl-thumb img {
  transform: scale(1.05);
  filter: brightness(0.85);
}

.dl-card-premium .dl-badge {
  z-index: 1;
}

.dl-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #fff;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .05em;
}

.dl-car-label {
  font-size: 12px;
  opacity: .4;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.dl-buy-btn {
  background: #f5c518 !important;
  color: #000 !important;
  font-weight: 700;
  border-color: #f5c518 !important;
}
.dl-buy-btn:hover {
  background: #ffd700 !important;
  color: #000 !important;
  transform: translateY(-3px);
}
.dl-buy-btn::after { display: none !important; }

.dl-free-btn {
  background: rgba(80,220,120,0.9) !important;
  color: #000 !important;
  font-weight: 700;
  border-color: rgba(80,220,120,0.9) !important;
}
.dl-free-btn:hover {
  background: rgba(80,220,120,0.9) !important;
  color: #000 !important;
  filter: brightness(1.1);
  transform: translateY(-3px);
}
.dl-free-btn::after { display: none !important; }

/* software compatibility badges */
.dl-compat {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 8px 0 14px;
}

.dl-sw {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid transparent;
  opacity: .85;
}

.dl-sw-dr {
  background: rgba(3, 172, 136, 0.12);
  border-color: rgba(3, 172, 136, 0.4);
  color: #03ac88;
}

.dl-sw-pr {
  background: rgba(159, 97, 226, 0.12);
  border-color: rgba(159, 97, 226, 0.4);
  color: #9f61e2;
}

.dl-sw-fcp {
  background: rgba(240, 75, 52, 0.12);
  border-color: rgba(240, 75, 52, 0.4);
  color: #f04b34;
}

/* ============================================================
   PAGE: COACHING
   ============================================================ */

.page-coaching .hero h1 { font-size: 36px; }
@media (min-width: 768px) { .page-coaching .hero h1 { font-size: 50px; } }

.coaching-hero-sub {
  text-align: center;
  opacity: .45;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 14px;
  padding: 0 24px;
}

/* --- Module cards grid --- */
.coaching-modules {
  display: grid;
  grid-template-columns: repeat(3, 280px);
  column-gap: 24px;
  row-gap: 24px;
  justify-content: center;
  padding: 0 6% 60px;
}

@media (max-width: 940px) {
  .coaching-modules { grid-template-columns: repeat(2, 280px); }
}
@media (max-width: 620px) {
  .coaching-modules { grid-template-columns: min(280px, 100%); padding: 0 5% 48px; }
}

/* --- Individual coaching card --- */
.coaching-card {
  position: relative;
  border-radius: 14px;
  padding: 28px 22px 26px;
  /* animated border — amber accent */
  --border-angle: 0deg;
  background:
    radial-gradient(ellipse at 50% 30%, #1a120a, #0a0a0a 75%) padding-box,
    conic-gradient(from var(--border-angle), transparent 70%, rgba(255,160,60,0.9) 82%, transparent 94%) border-box;
  border: 2px solid transparent;
  animation: border-spin 3s linear infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s;
}

.coaching-card:hover { transform: translateY(-4px); }

.coaching-card-icon {
  font-size: 44px;
  line-height: 1;
  margin-bottom: 18px;
}

.coaching-card-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  opacity: .95;
}

.coaching-card-sub {
  font-size: 12px;
  opacity: .4;
  margin-bottom: 20px;
  line-height: 1.5;
}

.coaching-card-list {
  list-style: none;
  text-align: left;
  width: 100%;
}

.coaching-card-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  padding: 8px 0 8px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  line-height: 1.4;
}

.coaching-card-list li:last-child { border-bottom: none; }

.coaching-card-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  top: 9px;
}

/* --- How it works steps --- */
.coaching-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 6% 60px;
  flex-wrap: wrap;
}

.coaching-step { text-align: center; }

.coaching-step-num {
  font-size: 40px;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(80,150,255,0.9), rgba(160,80,255,0.85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1;
}

.coaching-step-text {
  font-size: 13px;
  font-weight: 600;
  opacity: .6;
  letter-spacing: .04em;
}

.coaching-step-arrow {
  font-size: 22px;
  opacity: .7;
  flex-shrink: 0;
  padding-bottom: 28px;
  color: rgba(255,255,255,0.8);
  text-shadow: 0 0 10px rgba(255,255,255,0.6), 0 0 24px rgba(255,255,255,0.3);
}

@media (max-width: 520px) {
  .coaching-step-arrow { display: none; }
  .coaching-steps { gap: 20px; }
}

/* --- CTA box --- */
.coaching-cta-wrap {
  padding: 0 6% 70px;
  display: flex;
  justify-content: center;
}

.coaching-cta-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.coaching-cta-box h2 { margin-bottom: 14px; }

.coaching-cta-box p {
  opacity: .45;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.coaching-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.coaching-contact-btn {
  background: rgba(80,150,255,0.12) !important;
  border-color: rgba(80,150,255,0.35) !important;
  color: rgba(130,185,255,1) !important;
}

.coaching-contact-btn:hover {
  background: rgba(80,150,255,0.85) !important;
  border-color: rgba(80,150,255,0.85) !important;
  color: #fff !important;
}

/* --- FCP note --- */
.coaching-fcp-note {
  display: table;
  margin: -8px auto 24px;
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,160,50,0.35);
  background: rgba(255,160,50,0.07);
  color: rgba(255,170,60,0.9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* --- Highlighted section label --- */
.coaching-label-highlight {
  opacity: 1 !important;
  font-size: 18px !important;
  color: #fff;
  letter-spacing: .08em !important;
}

/* --- Glow divider --- */
.coaching-glow-divider {
  width: 60px;
  height: 1px;
  margin: 0 auto 52px;
  background: rgba(255,255,255,0.12);
  box-shadow:
    0 0 8px  rgba(255,255,255,0.18),
    0 0 24px rgba(255,180,80,0.12),
    0 0 50px rgba(255,180,80,0.06);
}

/* --- Für wen cards --- */
.coaching-audience {
  display: grid;
  grid-template-columns: repeat(2, 280px);
  column-gap: 24px;
  row-gap: 20px;
  justify-content: center;
  padding: 0 6% 52px;
}

@media (max-width: 620px) {
  .coaching-audience { grid-template-columns: min(280px, 100%); }
}

.coaching-audience-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.coaching-audience-card:hover {
  border-color: rgba(255,160,60,0.45);
  box-shadow: 0 0 16px rgba(255,160,60,0.15);
  transform: translateY(-3px);
}

.coaching-audience-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}

.coaching-audience-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.coaching-audience-card p {
  font-size: 13px;
  opacity: .45;
  line-height: 1.65;
}

/* --- CTA box glow --- */
.coaching-cta-wrap { position: relative; }

.coaching-cta-box {
  position: relative;
}

.coaching-cta-box::before {
  content: "";
  position: absolute;
  inset: -60px -40px;
  background: radial-gradient(ellipse at 50% 60%, rgba(80,150,255,0.07), transparent 70%);
  pointer-events: none;
  z-index: -1;
  border-radius: 60px;
}

/* --- Coaching inline form --- */
.coaching-form {
  max-width: 100%;
  margin: 24px 0 0;
  gap: 12px;
}

.coaching-form input,
.coaching-form textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}

.coaching-form input:focus,
.coaching-form textarea:focus {
  box-shadow: 0 0 0 1px rgba(80,150,255,0.45);
  border-color: rgba(80,150,255,0.4);
}

.coaching-form textarea { min-height: 100px; }

.coaching-form button {
  background: rgba(80,150,255,0.85);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.coaching-form button:hover {
  background: rgba(80,150,255,1);
  box-shadow: 0 8px 24px rgba(80,150,255,0.3);
}

.coaching-form-or {
  margin-top: 20px;
  font-size: 12px;
  opacity: .3;
  letter-spacing: .06em;
}

.coaching-ig-btn {
  margin-top: 10px;
  display: inline-block;
}

/* mouse glow */
.page-impressum body::after,

