/* ============================================
   MEHR EVENTMANAGEMENT — MODERN HOMEPAGE
   ============================================ */

:root {
  --bg: #0a0a0f;
  --bg-2: #11111a;
  --bg-soft: #16161f;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f5f5f7;
  --text-soft: #a8a8b3;
  --text-mute: #6e6e7a;

  --accent: #ff4d8d;
  --accent-2: #b94dff;
  --accent-3: #4dd0ff;
  --gold: #f7c873;

  --gradient: linear-gradient(135deg, #ff4d8d 0%, #b94dff 50%, #4dd0ff 100%);
  --gradient-soft: linear-gradient(135deg, rgba(255,77,141,.15), rgba(185,77,255,.15), rgba(77,208,255,.15));
  --gradient-text: linear-gradient(135deg, #ff4d8d 0%, #f7c873 50%, #4dd0ff 100%);

  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --container: 1280px;
  --radius: 16px;
  --radius-lg: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

@media (max-width: 968px) {
  body { cursor: auto; }
}

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

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

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

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: grid;
  place-items: center;
  transition: opacity .8s ease, visibility .8s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  animation: pulse 1.5s ease-in-out infinite;
}
.loader-logo span {
  display: inline-block;
  animation: wiggle 1.5s ease-in-out infinite;
}
.loader-text {
  letter-spacing: 0.4em;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 2rem;
}
.loader-bar {
  width: 240px;
  height: 2px;
  background: var(--border);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 2px;
}
.loader-bar-fill {
  height: 100%;
  width: 0;
  background: var(--gradient);
  animation: load 1.6s ease-in-out forwards;
}
@keyframes load { to { width: 100%; } }
@keyframes pulse { 50% { transform: scale(1.04); } }
@keyframes wiggle { 25%, 75% { transform: rotate(-8deg); } 50% { transform: rotate(8deg); } }

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--text);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
  mix-blend-mode: difference;
}
.cursor-follower {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid var(--text);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform .15s ease-out, width .3s, height .3s, border-color .3s;
  mix-blend-mode: difference;
}
.cursor.hover { width: 16px; height: 16px; }
.cursor-follower.hover { width: 60px; height: 60px; border-color: var(--accent); }
@media (max-width: 968px) {
  .cursor, .cursor-follower { display: none; }
}

/* ============================================
   SCROLL PROGRESS
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--gradient);
  z-index: 9997;
  transition: width .1s linear;
}

/* ============================================
   PARTICLES BG
   ============================================ */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all .4s ease;
  backdrop-filter: blur(0px);
}
.navbar.scrolled {
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo img { height: 50px; transition: transform .3s; }
.nav-logo:hover img { transform: scale(1.05); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
  position: relative;
  transition: color .3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gradient);
  transition: width .3s;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  padding: 0.6rem 1.4rem;
  background: var(--gradient);
  color: white !important;
  border-radius: 100px;
  font-weight: 600;
  transition: transform .3s, box-shadow .3s;
}
.nav-cta::after { display: none; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,77,141,.4); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--text);
  transition: all .3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 968px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(10,10,15,0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right .4s ease;
    border-left: 1px solid var(--border);
  }
  .nav-links.active { right: 0; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 4rem;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(1.1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(255,77,141,.25), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(77,208,255,.2), transparent 50%),
    linear-gradient(180deg, rgba(10,10,15,0.4), rgba(10,10,15,0.95));
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  animation: fadeUp 1s ease 0.3s both;
}
.dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: 0.3; } }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word {
  display: inline-block;
  transform: translateY(110%);
  animation: wordUp 1.1s cubic-bezier(.2,.6,.2,1) forwards;
}
.hero-title .line:nth-child(1) .word { animation-delay: 0.5s; }
.hero-title .line:nth-child(1) .word:nth-child(2) { animation-delay: 0.6s; }
.hero-title .line:nth-child(2) .word { animation-delay: 0.7s; }
.hero-title .line:nth-child(2) .word:nth-child(2) { animation-delay: 0.8s; }
.hero-title .line:nth-child(3) .word { animation-delay: 0.9s; }
.hero-title .line:nth-child(3) .word:nth-child(2) { animation-delay: 1.0s; }
@keyframes wordUp {
  to { transform: translateY(0); }
}

.gradient-text {
  background: var(--gradient-text);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-style: italic;
  animation: wordUp 1.1s cubic-bezier(.2,.6,.2,1) forwards, gradientShift 6s ease-in-out infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--text-soft);
  animation: fadeUp 1s ease 1.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeUp 1s ease 1.4s both;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  animation: fadeUp 1s ease 1.6s both;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  background: var(--gradient-text);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-mute);
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-mute);
  animation: fadeUp 1s ease 2s both;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 40px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.hero-scroll span::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gradient);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  to { top: 200%; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s cubic-bezier(.2,.6,.2,1);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 12px 32px rgba(255,77,141,.3);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #4dd0ff, #b94dff, #ff4d8d);
  opacity: 0;
  transition: opacity .4s;
  z-index: 0;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(255,77,141,.45);
}
.btn-primary > * { position: relative; z-index: 1; }

.btn-ghost {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: var(--surface-2);
  transform: translateY(-3px);
  border-color: var(--text-soft);
}

.btn-large { padding: 1.1rem 2.4rem; font-size: 1rem; }

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  position: relative;
  z-index: 2;
  background: var(--bg-2);
  border-block: 1px solid var(--border);
  padding: 1.5rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--text-soft);
}
.marquee-track span:nth-child(odd) {
  background: var(--gradient-text);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  position: relative;
  z-index: 2;
  padding: 8rem 0;
  background: var(--bg);
}
.section-dark { background: var(--bg-2); }

.section-head {
  max-width: 720px;
  margin: 0 auto 5rem;
  text-align: center;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.section-title em {
  font-style: italic;
  background: var(--gradient-text);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.section-lead {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  position: relative;
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all .5s cubic-bezier(.2,.6,.2,1);
  overflow: hidden;
  transform-style: preserve-3d;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  opacity: 0;
  transition: opacity .5s;
  z-index: 0;
}
.service-card::after {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: var(--gradient);
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity .4s;
  z-index: -1;
  filter: blur(12px);
}
.service-card:hover { transform: translateY(-8px); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 0.7; }
.service-card > * { position: relative; z-index: 1; }

.service-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  color: var(--accent);
  transition: all .4s;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card:hover .service-icon {
  background: var(--gradient);
  color: white;
  border-color: transparent;
  transform: rotate(-6deg) scale(1.05);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.service-card p {
  color: var(--text-soft);
  line-height: 1.7;
}

.service-num {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-mute);
  font-weight: 500;
  letter-spacing: 0.1em;
  z-index: 2;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: pointer;
  transition: transform .6s cubic-bezier(.2,.6,.2,1);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1), filter .6s;
  filter: saturate(0.9) brightness(0.85);
}
.gallery-item:hover { transform: translateY(-6px); }
.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.2) brightness(1);
}
.gallery-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  color: white;
}
.gallery-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--gradient);
  border-radius: 100px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.gallery-item h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}
.gallery-item figcaption p {
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 60px;
}
.timeline-line {
  position: absolute;
  left: 22px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--accent) 10%, var(--accent-2) 50%, var(--accent-3) 90%, transparent);
}
.timeline-step {
  position: relative;
  padding: 2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.timeline-num {
  position: absolute;
  left: -60px;
  top: 2rem;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  box-shadow: 0 0 0 6px var(--bg), 0 0 24px rgba(255,77,141,.4);
  transition: all .4s;
}
.timeline-step:hover .timeline-num {
  background: var(--gradient);
  color: white;
  transform: scale(1.1);
  border-color: transparent;
}
.timeline-content {
  flex: 1;
  padding: 1.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .3s, border-color .3s;
}
.timeline-step:hover .timeline-content {
  transform: translateX(8px);
  border-color: var(--accent);
}
.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.timeline-content p { color: var(--text-soft); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all .4s;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
}
.testimonial:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  background: var(--surface-2);
}
.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.testimonial footer strong {
  display: block;
  margin-bottom: 0.2rem;
}
.testimonial footer span {
  font-size: 0.85rem;
  color: var(--text-mute);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 6rem 0;
  position: relative;
  z-index: 2;
}
.cta-card {
  position: relative;
  padding: 5rem 2rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255,77,141,.25), transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(77,208,255,.25), transparent 50%);
  animation: glowMove 8s ease-in-out infinite alternate;
}
@keyframes glowMove {
  to { transform: translate(20px, -10px) scale(1.05); }
}
.cta-card > *:not(.cta-glow) { position: relative; z-index: 1; }
.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.cta-card h2 em {
  font-style: italic;
  background: var(--gradient-text);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.cta-card p {
  color: var(--text-soft);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 968px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.contact-info { text-align: left; }
.contact-info .section-head { margin: 0 0 2rem; text-align: left; }
.contact-info .section-title { text-align: left; }
.contact-info .section-lead { margin: 0; }

.contact-list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 1.2rem;
}
.contact-list li {
  padding: 1.2rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .3s;
}
.contact-list li:hover {
  border-color: var(--accent);
  transform: translateX(6px);
}
.contact-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 0.3rem;
}

.contact-form {
  display: grid;
  gap: 1.2rem;
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.contact-form label { display: block; }
.contact-form label span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color .3s, background .3s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-2);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button { justify-self: start; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  z-index: 2;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.footer-logo { height: 50px; margin-bottom: 1rem; }
.footer p { color: var(--text-soft); }
.footer h5 {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer ul { list-style: none; display: grid; gap: 0.7rem; }
.footer ul a {
  color: var(--text-soft);
  font-size: 0.95rem;
  transition: color .3s, padding-left .3s;
}
.footer ul a:hover { color: var(--accent); padding-left: 6px; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-mute);
}
.heart {
  color: var(--accent);
  display: inline-block;
  animation: heartbeat 1.5s ease-in-out infinite;
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1);
  transition-delay: calc(var(--delay, 0) * 0.1s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .container { padding: 0 1.25rem; }
}

@media (max-width: 768px) {
  .section { padding: 5rem 0; }
  .hero { padding-top: 7rem; min-height: 100svh; }
  .hero-stats { grid-template-columns: 1fr; gap: 1.5rem; max-width: 320px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: .75rem; }
  .hero-actions .btn { justify-content: center; }
  .timeline { padding-left: 50px; }
  .timeline-num { left: -50px; width: 38px; height: 38px; font-size: 0.8rem; }
  .timeline-content { padding: 1.2rem 1.4rem; }
  .cta-card { padding: 3rem 1.5rem; }
  .service-card { padding: 1.8rem 1.5rem; }
  .testimonial { padding: 1.8rem 1.5rem; }
  .contact-form { padding: 1.8rem 1.5rem; }
  .footer { padding: 4rem 0 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .5rem; }
}

@media (max-width: 480px) {
  .hero { padding-top: 6rem; }
  .nav-container { padding: 0 1rem; }
  .nav-logo img { height: 40px; }
  .hero-eyebrow { font-size: .75rem; padding: .4rem .9rem; }
  .section-eyebrow { font-size: .7rem; }
  .gallery { gap: 1rem; }
  .gallery-item figcaption { padding: 1.4rem; }
  .testimonial blockquote { font-size: 1.05rem; }
  .cta-card h2 { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}


/* ════════════════════════════════════════════
   EXPLOSION OF GIMMICKS
   ════════════════════════════════════════════ */

/* — LIVE pill in nav — */
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .3rem .8rem;
  margin-left: 1rem;
  margin-right: auto;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255,77,141,0.08);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
}
.live-pill .blip {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: blipPulse 1.4s ease-in-out infinite;
}
@keyframes blipPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .35; transform: scale(.7); }
}
@media (max-width: 968px) { .live-pill { display: none; } }

/* — Mouse spotlight — */
.spotlight {
  position: fixed;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,141,0.18), transparent 65%);
  pointer-events: none;
  z-index: 9990;
  transform: translate(-50%, -50%);
  filter: blur(20px);
  mix-blend-mode: screen;
  will-change: left, top;
  transition: opacity .3s ease;
}
@media (hover: none), (pointer: coarse), (max-width: 968px) {
  .spotlight { display: none; }
}

/* — Sun-Orb in hero — */
.sun-orb {
  position: absolute;
  top: 14%; right: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffb84d, var(--accent) 50%, #5b1340 85%);
  box-shadow: 0 0 80px rgba(255,77,141,0.3), inset -30px -40px 80px rgba(0,0,0,0.55);
  z-index: 1; opacity: 0.45;
  will-change: transform;
  animation: sunFloat 14s ease-in-out infinite;
}
.sun-orb::after {
  content: '';
  position: absolute; inset: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185,77,255,0.18), transparent 65%);
  z-index: -1;
}
@keyframes sunFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-25px, -20px); }
}
@media (max-width: 768px) {
  .sun-orb { width: 220px; height: 220px; right: -90px; top: 10%; }
}

/* — Equalizer bars in hero — */
.eq-bars {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex; align-items: flex-end; justify-content: center;
  gap: 4px; height: 60px;
  padding: 0 1rem;
  z-index: 2;
  opacity: 0.5;
  pointer-events: none;
}
.eq-bars i {
  display: block;
  width: 3px;
  background: linear-gradient(to top, var(--accent), transparent);
  animation: eqBar 1.2s ease-in-out infinite;
  transform-origin: bottom;
}
.eq-bars i:nth-child(3n) { background: linear-gradient(to top, var(--accent-2), transparent); }
.eq-bars i:nth-child(5n) { background: linear-gradient(to top, var(--accent-3), transparent); }
@keyframes eqBar {
  0%, 100% { height: 12%; }
  50% { height: 100%; }
}

/* — Glitch on "Mehr" — */
.glitch-word { position: relative; }
.glitch-word::before,
.glitch-word::after {
  content: attr(data-text);
  position: absolute; left: 0; top: 0;
  pointer-events: none; opacity: 0;
  background: var(--gradient-text);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-style: italic;
}
.glitch-word.glitch::before {
  color: #4dd0ff;
  -webkit-text-fill-color: #4dd0ff;
  background: none;
  transform: translate(-3px, -1px);
  opacity: 0.85;
  mix-blend-mode: screen;
  clip-path: inset(0 0 60% 0);
  animation: glitchA .5s steps(2, end);
}
.glitch-word.glitch::after {
  color: #ff4d8d;
  -webkit-text-fill-color: #ff4d8d;
  background: none;
  transform: translate(3px, 1px);
  opacity: 0.85;
  mix-blend-mode: screen;
  clip-path: inset(60% 0 0 0);
  animation: glitchB .5s steps(2, end);
}
@keyframes glitchA {
  0%, 100% { clip-path: inset(0 0 60% 0); }
  33% { clip-path: inset(0 0 80% 0); transform: translate(-5px, -2px); }
  66% { clip-path: inset(20% 0 50% 0); transform: translate(2px, -1px); }
}
@keyframes glitchB {
  0%, 100% { clip-path: inset(60% 0 0 0); }
  33% { clip-path: inset(45% 0 10% 0); transform: translate(5px, 2px); }
  66% { clip-path: inset(75% 0 0 0); transform: translate(-3px, 1px); }
}

/* — SMOKE / FOG SYSTEM — */

/* Hero ground fog */
.hero-smoke {
  position: absolute;
  left: -10%; right: -10%; bottom: -10%;
  height: 60%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
}
.hero-smoke .fog {
  position: absolute;
  left: -20%; right: -20%; bottom: 0;
  height: 100%;
  background:
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(255,77,141,0.18), transparent 60%),
    radial-gradient(ellipse 50% 35% at 50% 90%, rgba(185,77,255,0.14), transparent 60%),
    radial-gradient(ellipse 65% 45% at 80% 80%, rgba(77,208,255,0.12), transparent 60%),
    radial-gradient(ellipse 40% 30% at 35% 75%, rgba(247,200,115,0.08), transparent 60%),
    radial-gradient(ellipse 55% 35% at 70% 70%, rgba(255,77,141,0.10), transparent 60%);
  filter: blur(30px);
  will-change: transform;
}
.hero-smoke .fog.f1 { animation: fogDrift1 24s ease-in-out infinite; opacity: 0.85; }
.hero-smoke .fog.f2 { animation: fogDrift2 32s ease-in-out infinite; opacity: 0.65; transform: scaleX(-1); }
.hero-smoke .fog.f3 { animation: fogDrift3 40s ease-in-out infinite; opacity: 0.5; }
@keyframes fogDrift1 {
  0%, 100% { transform: translate(-8%, 0) scale(1.05); }
  50%      { transform: translate(8%, -10px) scale(1.15); }
}
@keyframes fogDrift2 {
  0%, 100% { transform: scaleX(-1) translate(-12%, 5px) scale(1.1); }
  50%      { transform: scaleX(-1) translate(10%, -8px) scale(1.2); }
}
@keyframes fogDrift3 {
  0%, 100% { transform: translate(5%, 8px) scale(1.0); }
  50%      { transform: translate(-10%, -6px) scale(1.12); }
}

/* Smoke canvas (rising puffs) */
#smoke {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  opacity: 0.55;
}

/* Section divider fog band */
.fog-band {
  position: relative;
  height: 80px;
  margin: -40px 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 4;
}
.fog-band::before,
.fog-band::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 30% 50%, rgba(255,77,141,0.10), transparent 70%),
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(185,77,255,0.08), transparent 70%);
  filter: blur(20px);
  mix-blend-mode: screen;
}
.fog-band::before { animation: bandDriftA 18s ease-in-out infinite; }
.fog-band::after  { animation: bandDriftB 24s ease-in-out infinite; transform: scaleX(-1); }
@keyframes bandDriftA {
  0%, 100% { transform: translateX(-10%); }
  50%      { transform: translateX(10%); }
}
@keyframes bandDriftB {
  0%, 100% { transform: scaleX(-1) translateX(-8%); }
  50%      { transform: scaleX(-1) translateX(12%); }
}

/* CTA-Card extra fog */
.cta-card::after {
  content: '';
  position: absolute;
  left: -10%; right: -10%; bottom: -30%;
  height: 70%;
  background:
    radial-gradient(ellipse 60% 50% at 30% 80%, rgba(255,77,141,0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 70% 80%, rgba(77,208,255,0.12), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: ctaFog 14s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes ctaFog {
  0%, 100% { transform: translate(-5%, 0) scale(1); opacity: 0.7; }
  50%      { transform: translate(8%, -15px) scale(1.1); opacity: 1; }
}

/* — Click sparks — */
.spark {
  position: fixed;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  z-index: 99998;
  box-shadow: 0 0 8px var(--accent);
  will-change: transform, opacity;
}

/* — Sound toggle — */
.sound-btn {
  position: fixed;
  left: 1.5rem; bottom: 1.5rem;
  width: 46px; height: 46px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  color: var(--text-soft);
  z-index: 9000;
  transition: all .3s;
}
.sound-btn:hover {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  transform: scale(1.08);
}
.sound-btn .bars { display: flex; align-items: flex-end; gap: 2px; height: 14px; }
.sound-btn .bars i {
  width: 2px; background: currentColor; height: 100%;
  animation: sndBar 1s ease-in-out infinite;
}
.sound-btn.muted .bars i { animation-play-state: paused; height: 30%; }
.sound-btn .bars i:nth-child(2) { animation-delay: .2s; }
.sound-btn .bars i:nth-child(3) { animation-delay: .4s; }
.sound-btn .bars i:nth-child(4) { animation-delay: .6s; }
@keyframes sndBar {
  0%, 100% { height: 30%; }
  50% { height: 100%; }
}
@media (max-width: 600px) {
  .sound-btn { left: 1rem; bottom: 1rem; width: 42px; height: 42px; }
}

/* — Konami hint — */
.konami-hint {
  position: fixed;
  bottom: .5rem; left: 50%;
  transform: translateX(-50%);
  font-size: .55rem; letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(245,245,247,0.18);
  z-index: 8000;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 768px) { .konami-hint { display: none; } }

/* — Toast — */
.toast {
  position: fixed;
  top: 5rem; left: 50%;
  transform: translateX(-50%) translateY(-50px);
  padding: .75rem 1.5rem;
  background: var(--gradient);
  color: #fff;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 99999;
  opacity: 0;
  box-shadow: 0 8px 30px rgba(255,77,141,0.4);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* — Disco mode — */
body.disco { animation: discoBg 2s linear infinite; }
body.disco .hero-title,
body.disco .section-title,
body.disco .cta-card h2 {
  animation: discoText .4s linear infinite;
}
@keyframes discoBg {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}
@keyframes discoText {
  0%, 100% { text-shadow: 3px 0 #ff00ff, -3px 0 #00ffff; }
  50% { text-shadow: -3px 0 #ff00ff, 3px 0 #00ffff; }
}
body.disco::before {
  content: '';
  position: fixed; inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  pointer-events: none;
  z-index: 99996;
  animation: strobe .3s linear infinite;
}
@keyframes strobe {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

/* — Star field in feedback section — */
.stars-field {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.stars-field .star {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--text);
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.5); }
}

/* — Floating glow orbs in CTA — */
.orbs {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
  z-index: 0;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: orbDrift 22s ease-in-out infinite;
}
.orb-1 { width: 280px; height: 280px; background: var(--accent);   top: 10%; left: -100px; }
.orb-2 { width: 200px; height: 200px; background: var(--accent-3); bottom: 20%; right: -80px; animation-delay: -7s; opacity: .25; }
.orb-3 { width: 240px; height: 240px; background: var(--accent-2); top: 50%; left: 35%; animation-delay: -14s; opacity: .25; }
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(60px, -40px); }
  66% { transform: translate(-40px, 30px); }
}

/* ════════ MODAL ════════ */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity .3s cubic-bezier(.2,.6,.2,1);
}
.modal-overlay.active {
  display: flex;
  opacity: 1;
}
.modal {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  transition: transform .35s cubic-bezier(.2,.6,.2,1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  overflow: hidden;
}
.modal-overlay.active .modal {
  transform: translateY(0);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.modal-tag {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--gradient-text);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-style: italic;
}
.modal-close {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-size: 1.4rem;
  cursor: pointer;
  transition: all .3s;
  line-height: 1;
}
.modal-close:hover {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
}
.modal-body {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
}

.legal-content { max-width: 720px; }
.legal-content h3 {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 2rem 0 .6rem;
  font-family: var(--font-body);
}
.legal-content h3:first-child { margin-top: 0; }
.legal-content p {
  font-size: .92rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: .6rem;
}
.legal-content a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,77,141,0.5);
  transition: color .3s, border-color .3s;
}
.legal-content a:hover {
  color: var(--accent-2);
  border-color: var(--accent-2);
}
.legal-content strong {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 600px) {
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal { max-height: 90vh; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .modal-header { padding: 1.2rem 1.4rem; }
  .modal-body { padding: 1.4rem; }
  .legal-content p { font-size: .88rem; }
}

/* — Reduced motion safety — */
@media (prefers-reduced-motion: reduce) {
  #smoke, .hero-smoke .fog,
  .fog-band::before, .fog-band::after,
  .cta-card::after, .sun-orb,
  .eq-bars i, .stars-field .star, .orb,
  .live-pill .blip, body.disco {
    animation: none !important;
  }
}
