@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Syne:wght@500;600;700;800&display=swap');

/* ========== DESIGN SYSTEM & METALLIC VARIABLES ========== */
:root {
  /* Brand Core Dark Mode Colors */
  --bg-primary: #000000;        /* Pure obsidian black */
  --bg-secondary: #050508;      /* Deep cosmic grey */
  --bg-card: rgba(13, 13, 17, 0.8);
  
  --text-primary: #fbfbfd;
  --text-secondary: rgba(251, 251, 253, 0.7);
  --text-muted: rgba(251, 251, 253, 0.45);
  
  /* Specular Metallic Gradients - Multi-Stop reflections */
  --color-gold-base: #dfba6b;
  --color-gold-glow: rgba(223, 186, 107, 0.15);
  --color-steel-glow: rgba(203, 213, 225, 0.1);
  
  /* 7-stop highly reflective linear gold gradient */
  --gradient-gold-metal: linear-gradient(135deg, #bf953f 0%, #fcf6ba 20%, #b38728 40%, #fbf5b7 60%, #aa771c 80%, #fcf6ba 100%);
  --gradient-steel-metal: linear-gradient(135deg, #cbd5e1 0%, #ffffff 30%, #94a3b8 60%, #f1f5f9 80%, #64748b 100%);
  
  /* Glassmorphism Styles */
  --glass-bg: rgba(12, 12, 16, 0.65);
  --glass-border: rgba(223, 186, 107, 0.15);
  
  /* Font Families */
  --font-main: 'Outfit', sans-serif;
  --font-title: 'Syne', sans-serif;
  
  /* Shapes */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========== RESET & CORE BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ========== LAYOUT & UTILITY ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--gradient-gold-metal);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: metalTextShine 8s linear infinite;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 700px;
  line-height: 1.7;
}

/* ========== STARRY NIGHT BACKGROUND ========== */
.star-field {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: #000000;
  overflow: hidden;
}

.star {
  position: absolute;
  background: #ffffff;
  border-radius: 50%;
  opacity: 0.8;
  animation: flicker var(--duration) infinite, moveStar var(--move-duration) linear infinite;
}

@keyframes flicker {
  0%, 100% { opacity: 0.3; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.3); }
}

@keyframes moveStar {
  from { transform: translateY(0); }
  to { transform: translateY(-100vh); }
}

.bg-orbs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.04;
  animation: orbFloat 25s ease-in-out infinite;
}

.bg-orb:nth-child(1) {
  width: 550px;
  height: 550px;
  background: var(--color-gold-base);
  top: -10%;
  left: -10%;
}

.bg-orb:nth-child(2) {
  width: 450px;
  height: 450px;
  background: #8a2be2;
  top: 55%;
  right: -10%;
  animation-delay: -5s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(45px, -45px) scale(1.1); }
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  padding: 16px 0;
  background: rgba(5, 5, 7, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-refresh {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--text-secondary);
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-main);
  outline: none;
}

.btn-refresh:hover {
  background: rgba(223, 186, 107, 0.08);
  border-color: var(--color-gold-base);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.btn-refresh svg {
  transition: transform 0.5s ease;
}

.btn-refresh:hover svg {
  transform: rotate(180deg);
}

@media (max-width: 480px) {
  .btn-refresh span {
    display: none; /* Auf ganz kleinen Bildschirmen nur das Icon anzeigen */
  }
  .btn-refresh {
    padding: 8px;
  }
}

.nav-logo {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-gold-metal);
  background-size: 200% auto;
  animation: metalTextShine 6s linear infinite;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--bg-primary);
  box-shadow: 0 0 15px var(--color-gold-glow);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.5px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold-metal);
  background-size: 200% auto;
  transition: width var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

/* ========== HIGH-END METALLIC TYPOGRAPHY ========== */
.text-metallic-gold {
  background: var(--gradient-gold-metal);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: metalTextShine 6s linear infinite;
  text-shadow: 0 0 20px rgba(223, 186, 107, 0.08);
  position: relative;
}

.text-metallic-steel {
  background: var(--gradient-steel-metal);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: metalTextShine 8s linear infinite;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

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

.text-embossed {
  text-shadow: 
    -1px -1px 0px rgba(255, 255, 255, 0.25),
    1px 1px 0px rgba(0, 0, 0, 0.8),
    0px 4px 15px rgba(0, 0, 0, 0.5);
}

/* ========== HEAVY POLISHED METALLIC BUTTONS ========== */
.btn-metallic {
  position: relative;
  padding: 16px 38px;
  background: linear-gradient(135deg, #14120a 0%, #080704 100%);
  border: 1.5px solid;
  border-image: var(--gradient-gold-metal) 1;
  color: var(--text-primary);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  outline: none;
  box-shadow: 0 4px 20px var(--color-gold-glow);
  transition: transform var(--transition-bounce), box-shadow var(--transition-smooth);
  overflow: hidden;
  z-index: 1;
}

.btn-metallic::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, 
    transparent 30%, 
    rgba(255, 255, 255, 0.22) 50%, 
    transparent 70%
  );
  transition: none;
}

.btn-metallic:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--color-gold-glow);
}

.btn-metallic:hover::before {
  animation: buttonShineSweep 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes buttonShineSweep {
  0% { left: -100%; }
  100% { left: 100%; }
}

.btn-metallic:active {
  transform: translateY(1px) scale(0.97);
  box-shadow: 0 2px 10px var(--color-gold-glow);
}

.btn-metallic.btn-steel {
  background: linear-gradient(135deg, #101114 0%, #050607 100%);
  border-image: var(--gradient-steel-metal) 1;
  box-shadow: 0 4px 20px var(--color-steel-glow);
}

.btn-metallic.btn-steel:hover {
  box-shadow: 0 8px 30px var(--color-steel-glow);
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: 140px;
  padding-bottom: 80px;
  z-index: 2;
}

.hero-logo-wrap {
  max-width: 360px;
  width: 100%;
  margin: 0 auto 35px;
  filter: drop-shadow(0 0 25px var(--color-gold-glow));
}

.hero-logo-wrap img {
  width: 100%;
  height: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-gold-base);
  margin-bottom: 25px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  padding: 6px 18px;
  border-radius: 50px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-gold-base);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-gold-base);
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 25px;
  
  /* Shiny gold metallic gradient */
  background: var(--gradient-gold-metal);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: metalTextShine 8s linear infinite;
  
  text-shadow: 
    -0.5px -0.5px 0px rgba(255, 255, 255, 0.3),
    0.5px 1px 0px rgba(0, 0, 0, 0.95),
    0px 4px 20px rgba(223, 186, 107, 0.12);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 780px;
  margin: 0 auto 45px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-btn-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== ENGRAVED BRUSHED CARDS (PANELS) ========== */
.panel-metallic {
  position: relative;
  background: linear-gradient(135deg, #0e0e11 0%, #060608 100%);
  border: 1px solid rgba(223, 186, 107, 0.15);
  border-radius: var(--radius-lg);
  padding: 45px 35px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  z-index: 1;
}

.panel-metallic::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  filter: url(#brushed-noise-filter);
  opacity: 0.05;
  mix-blend-mode: overlay;
}

.panel-metallic:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold-base);
  box-shadow: 0 15px 45px var(--color-gold-glow);
}

.panel-title {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.panel-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.panel-metallic.panel-steel {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.panel-metallic.panel-steel:hover {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 15px 45px var(--color-steel-glow);
}

/* ========== INTERACTIVE LIGHTWAVE PLAYER ========== */
.player-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.55);
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.player-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold-metal);
}

.visualizer-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1.6;
  background: #040406;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.visualizer-container canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.visualizer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(5, 5, 7, 0.75);
  backdrop-filter: blur(6px);
  transition: opacity var(--transition-smooth);
  z-index: 10;
  text-align: center;
  padding: 20px;
}

.visualizer-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-overlay-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-gold-metal);
  background-size: 200% auto;
  animation: metalTextShine 6s linear infinite;
  border: none;
  color: var(--bg-primary);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 30px var(--color-gold-glow);
  transition: transform var(--transition-bounce);
  margin-bottom: 20px;
}

.play-overlay-btn:hover {
  transform: scale(1.08);
}

.player-controls {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.player-header-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.track-info h3 {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.track-info p {
  font-size: 0.9rem;
  color: var(--color-gold-base);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.audio-main-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.play-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gradient-gold-metal);
  background-size: 200% auto;
  animation: metalTextShine 6s linear infinite;
  border: none;
  color: var(--bg-primary);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition-bounce);
  box-shadow: 0 4px 15px var(--color-gold-glow);
}

.play-btn:hover {
  transform: scale(1.06);
}

.playback-status {
  font-size: 0.85rem;
  font-weight: 600;
}

.pulse-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 8px #22c55e;
}

.pulse-indicator.paused {
  background: #ef4444;
  box-shadow: 0 0 8px #ef4444;
}

.synth-sliders {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
}

.parameter-slider-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
}

.slider-title {
  color: var(--text-secondary);
}

.slider-val {
  color: var(--color-gold-base);
}

input[type="range"].synth-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  outline: none;
}

input[type="range"].synth-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-gold-base);
  border: 2px solid var(--bg-secondary);
  cursor: pointer;
  box-shadow: 0 0 8px var(--color-gold-glow);
  transition: transform var(--transition-fast);
}

input[type="range"].synth-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* ========== WORKFLOW GRID ========== */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.workflow-card {
  composes: panel-metallic;
}

.card-num {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0.12;
  margin-bottom: 15px;
  background: var(--gradient-gold-metal);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: metalTextShine 6s linear infinite;
  display: block;
}

.workflow-title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.workflow-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========== CONTACT SECTION ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}

.contact-meta-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 30px;
}

.contact-meta-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.c-meta-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--color-gold-base);
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 45px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

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

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

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-gold-base);
  outline: none;
}

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

/* ========== FOOTER ========== */
.footer {
  background: #020204;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 80px 0 40px;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand p {
  margin-top: 15px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer-column h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--color-gold-base);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========== SCROLL REVEALS ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ========== RESPONSIVE MEDIA QUERIES ========== */
@media (max-width: 1024px) {
  .player-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 16px 0;
    background: rgba(5, 5, 7, 0.95);
    backdrop-filter: blur(20px);
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(5, 5, 7, 0.98);
    border-bottom: 1px solid var(--glass-border);
    padding: 30px;
    gap: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .section-padding {
    padding: 80px 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
