/* VOVAN Global GmbH - Main Stylesheet - V2.0 Optimized */

/* Base Reset */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{margin:0}
img{max-width:100%;display:block}
input,button,select,textarea{font:inherit;color:inherit}

/* CSS Custom Properties */
:root{
  /* Colors */
  --bg:#07101a; --bg-2:#071525; --text:#fff; --muted:#cfe3f5;
  --brand:#12a8ff; --brand-2:#56d2ff; --card:#0b1a2a;
  --accent:#ff6b6b; --success:#51cf66; --warning:#ffa500;

  /* Shadows & Effects */
  --shadow:0 18px 48px rgba(0,0,0,.55);
  --shadow-sm:0 2px 8px rgba(0,0,0,.25);
  --shadow-md:0 8px 24px rgba(0,0,0,.35);
  --shadow-lg:0 20px 60px rgba(0,0,0,.45);

  /* Sizes */
  --radius:22px; --maxw:1400px;
  --header-h:128px; --nav-gap:12px; --nav-fs:0.95rem;
  --logo-h:104px; --logo-h-xl:120px;

  /* Typography Scale */
  --step--2:clamp(.82rem,.76rem + .2vw,.95rem);
  --step--1:clamp(1rem,.9rem + .35vw,1.15rem);
  --step-0: clamp(1.16rem,1rem + .6vw,1.36rem);
  --step-1: clamp(1.52rem,1.05rem + 1vw,1.94rem);
  --step-2: clamp(2.1rem,1.3rem + 2.1vw,2.7rem);
  --step-3: clamp(2.6rem,1.7rem + 2.8vw,3.4rem);
  --step-4: clamp(3.3rem,2.2rem + 4vw,4.3rem);
}

/* Body & Typography */
body{
  background:
    radial-gradient(1000px 500px at 10% 0%, rgba(18,168,255,.10), transparent 60%),
    radial-gradient(1000px 500px at 100% 0%, rgba(86,210,255,.08), transparent 60%),
    linear-gradient(180deg,var(--bg) 0%, var(--bg-2) 100%);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  line-height:1.72;
}

/* Enhanced Loading Screen */
.loading-screen{
  position:fixed;
  inset:0;
  background:linear-gradient(135deg, #07101a 0%, #0a1625 50%, #07101a 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:99999;
  transition:opacity .8s ease, visibility .8s ease;
}

.loading-screen.hidden{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}

.loading-content{
  text-align:center;
  animation:fadeInUp .8s ease;
  max-width: 600px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Bigger Logo with Glow */
.loading-logo-big{
  margin-bottom:40px;
  animation:logoFloat 3s ease-in-out infinite;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-logo-big img{
  height:160px;
  position: relative;
  z-index: 2;
  filter:drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
  animation:logoPulse 3s ease-in-out infinite;
}

.loading-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
  z-index: 1;
}

/* Modern Spinner */
.loading-spinner-modern{
  width:60px;
  height:60px;
  margin:30px auto;
  position: relative;
}

.loading-spinner-modern::before,
.loading-spinner-modern::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  animation: spin 2s linear infinite;
}

.loading-spinner-modern::before {
  inset: 0;
  border: 4px solid rgba(212, 175, 55, 0.2);
  border-top-color: #d4af37;
}

.loading-spinner-modern::after {
  inset: 8px;
  border: 4px solid rgba(18, 168, 255, 0.2);
  border-top-color: #12a8ff;
  animation-duration: 1.5s;
  animation-direction: reverse;
}

/* Rotating Quotes */
.loading-quote-container {
  min-height: 80px;
  margin: 30px 0;
  position: relative;
}

.loading-quote {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  color: rgba(212, 175, 55, 0.9);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
  font-style: italic;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.loading-quote.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

/* Progress Bar */
.loading-progress-bar {
  width: 300px;
  height: 4px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 10px;
  margin: 30px auto 0;
  overflow: hidden;
  position: relative;
}

.loading-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #d4af37, #ffd700, #d4af37);
  background-size: 200% 100%;
  border-radius: 10px;
  animation: progressFill 2s ease-in-out forwards, shimmer 1.5s linear infinite;
}

@keyframes spin{
  to{ transform:rotate(360deg); }
}

@keyframes logoFloat{
  0%, 100%{ transform:translateY(0); }
  50%{ transform:translateY(-15px); }
}

@keyframes logoPulse{
  0%, 100%{
    filter:drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
  }
  50%{
    filter:drop-shadow(0 0 50px rgba(212, 175, 55, 0.8)) drop-shadow(0 0 60px rgba(212, 175, 55, 0.4));
  }
}

@keyframes glowPulse{
  0%, 100%{ opacity: 0.3; transform: scale(1); }
  50%{ opacity: 0.6; transform: scale(1.1); }
}

@keyframes fadeInUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes progressFill{
  from{ width: 0%; }
  to{ width: 100%; }
}

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

/* Container */
.container{max-width:var(--maxw);margin:0 auto;padding:0 20px}

/* Scroll Progress Bar */
.scroll-progress{
  position:fixed;
  top:0;
  left:0;
  height:4px;
  background:linear-gradient(90deg, #12a8ff, #56d2ff);
  width:0%;
  z-index:1001;
  transition:width .1s ease;
  box-shadow:0 0 10px rgba(18,168,255,.6);
}

/* Header & Navigation */
header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  backdrop-filter:saturate(160%) blur(12px);
  background:linear-gradient(180deg, rgba(7,16,26,.92), rgba(7,16,26,.65));
  border-bottom:1px solid rgba(18,168,255,.40);
  box-shadow:0 10px 26px rgba(0,0,0,.35);
  transition:all .3s ease;
}

/* Sticky Header - Compact Mode */
header.scrolled{
  padding:4px 0;
  background:linear-gradient(180deg, rgba(7,16,26,.98), rgba(7,16,26,.92));
  box-shadow:0 6px 20px rgba(0,0,0,.5);
}

header.scrolled .brand img{
  height:calc(var(--logo-h) * 0.8);
}

header .container{padding-top:6px;padding-bottom:6px;transition:padding .3s ease}
header.scrolled .container{padding-top:2px;padding-bottom:2px}

/* Add padding to body so content isn't hidden behind fixed header */
body{padding-top:80px}

nav{
  display:flex;
  align-items:center;
  gap:var(--nav-gap);
  min-height:var(--header-h);
  position:relative;
  justify-content:space-between;
}

.brand{
  display:flex;
  align-items:center;
  gap:.6rem;
  text-decoration:none;
  padding:8px 10px;
  border-radius:12px;
  transition:all .3s ease;
  z-index:1001;
  flex-shrink:0;
  order:-1;
}

.brand img{
  height:var(--logo-h);
  width:auto;
  max-height:calc(var(--header-h) - 24px);
  filter:drop-shadow(0 0 8px rgba(18,168,255,.4));
  transition:all .3s ease;
  animation:logo-glow 3s ease-in-out infinite;
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:8px;
  z-index:1001;
  margin-left:auto;
}

.hamburger-line{
  width:28px;
  height:3px;
  background:#fff;
  border-radius:3px;
  transition:all .3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1){
  transform:rotate(45deg) translateY(8px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2){
  opacity:0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3){
  transform:rotate(-45deg) translateY(-8px);
}

/* Navigation Links Container */
.nav-links{
  display:flex;
  align-items:center;
  gap:var(--nav-gap);
  flex:1;
  justify-content:flex-end;
}

.nav-links a{
  color:#fff;
  text-decoration:none;
  font-size:var(--nav-fs);
  opacity:.96;
  padding:10px 10px;
  border-radius:10px;
  transition:background .2s ease;
  white-space:nowrap;
}

.nav-links a:hover{
  background:rgba(255,255,255,.06);
}

.brand:hover img{
  filter:drop-shadow(0 0 16px rgba(18,168,255,.7)) drop-shadow(0 0 24px rgba(18,168,255,.5));
}

@keyframes logo-glow{
  0%, 100% {
    filter:drop-shadow(0 0 8px rgba(18,168,255,.4));
  }
  50% {
    filter:drop-shadow(0 0 14px rgba(18,168,255,.6)) drop-shadow(0 0 20px rgba(18,168,255,.3));
  }
}
.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}

/* Language Toggle */
.lang-toggle{
  display:flex;
  gap:4px;
  background:rgba(255,255,255,.08);
  padding:4px;
  border-radius:12px;
  margin-left:8px;
}

.lang-btn{
  background:none;
  border:none;
  color:#fff;
  font-size:.9rem;
  font-weight:600;
  padding:8px 14px;
  border-radius:8px;
  cursor:pointer;
  transition:all .3s ease;
  opacity:.6;
}

.lang-btn.active{
  background:linear-gradient(135deg, #12a8ff, #0b74d7);
  opacity:1;
  box-shadow:0 4px 12px rgba(18,168,255,.35);
}

.lang-btn:hover{
  opacity:1;
  background:rgba(18,168,255,.15);
}

.lang-btn.active:hover{
  background:linear-gradient(135deg, #12a8ff, #0b74d7);
}

/* Accessibility - Focus Styles */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid #12a8ff;
  outline-offset: 3px;
  box-shadow: 0 0 0 3px rgba(18,168,255,.25);
}

nav a:focus-visible {
  outline: 2px solid #12a8ff;
  outline-offset: 2px;
  background: rgba(18,168,255,.15);
}

.btn:focus-visible {
  outline: 3px solid #56d2ff;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(86,210,255,.3);
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--brand);
  color: #fff;
  padding: 10px 16px;
  text-decoration: none;
  z-index: 200;
  border-radius: 0 0 8px 0;
  font-weight: 600;
  transition: top .2s ease;
}
.skip-link:focus {
  top: 0;
}

/* Responsive Header */
@media (min-width:1280px){ :root{--header-h:144px;--nav-fs:0.95rem} .brand img{height:var(--logo-h-xl)} }
/* Mobile Navigation */
@media (max-width:900px){
  :root{--header-h:88px;--nav-gap:16px;--nav-fs:1.06rem;--logo-h:64px }

  /* Show Hamburger Button */
  .mobile-menu-toggle{
    display:flex;
  }

  /* Mobile Slide-In Menu */
  .nav-links{
    position:fixed;
    top:0;
    right:-100%;
    width:min(320px, 85vw);
    height:100vh;
    background:linear-gradient(180deg, rgba(7,16,26,.98), rgba(10,22,37,.98));
    backdrop-filter:blur(20px);
    flex-direction:column;
    align-items:flex-start;
    padding:100px 30px 30px;
    gap:8px;
    box-shadow:-10px 0 40px rgba(0,0,0,.8);
    transition:right .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y:auto;
    z-index:999;
  }

  .nav-links.active{
    right:0;
  }

  .nav-links a{
    width:100%;
    padding:16px 20px;
    font-size:1.1rem;
    border-radius:12px;
    transition:all .2s ease;
  }

  .nav-links a:hover{
    background:rgba(18,168,255,.15);
    transform:translateX(8px);
  }

  /* Language Toggle in Mobile Menu */
  .nav-links .lang-toggle{
    margin:20px 0 0 0;
    width:100%;
    justify-content:center;
    padding:8px;
  }

  .lang-btn{
    flex:1;
    padding:12px;
  }

  /* Overlay when menu is open */
  body.menu-open::before{
    content:'';
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.6);
    backdrop-filter:blur(4px);
    z-index:998;
    animation:fadeIn .3s ease;
  }

  @keyframes fadeIn{
    from{opacity:0}
    to{opacity:1}
  }

  body.menu-open{
    overflow:hidden;
  }
}

@media (max-width:600px){
  nav{font-size:0.95rem}
  .nav-links a{font-size:1rem;padding:14px 16px}
}

/* Badges & Buttons */
.badge{
  display:inline-block;
  padding:.4rem .9rem;
  border:1px solid rgba(255,255,255,.45);
  border-radius:999px;
  font-size:var(--step--2);
  background:rgba(255,255,255,.06);
  font-weight:600;
  letter-spacing:0.02em;
}

.badge-new{
  background:linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color:white;
  border:none;
}

.badge-brand{
  background:var(--accent);
  border-color:var(--accent);
  color:#fff;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.8rem 1rem;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.25);
  cursor:pointer;
  text-decoration:none;
  transition:transform .2s ease,box-shadow .2s ease;
  font-weight:600;
}

.btn.primary{
  background:linear-gradient(180deg,#12a8ff,#0b74d7);
  border-color:transparent;
  color:#fff;
  font-weight:800;
  box-shadow:0 12px 34px rgba(18,168,255,.35);
}

.btn.primary:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 40px rgba(18,168,255,.45);
}

.btn.ghost{
  background:none;
  border-color:rgba(255,255,255,.35);
  color:#fff;
}

.btn.ghost:hover{
  background:rgba(255,255,255,.08);
}

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

.btn-group{
  margin-top:1.2rem;
  display:flex;
  gap:.8rem;
  flex-wrap:wrap;
}

/* Hero Section */
.hero{
  position:relative;
  padding:clamp(80px,12vw,160px) 0;
  overflow:hidden;
}

/* Parallax Background */
.parallax-bg{
  position:absolute;
  top:-50px;
  left:0;
  right:0;
  height:calc(100% + 100px);
  background:radial-gradient(circle at 30% 40%, rgba(18,168,255,.15), transparent 50%),
             radial-gradient(circle at 70% 60%, rgba(86,210,255,.12), transparent 50%);
  z-index:0;
  will-change:transform;
  pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:clamp(24px,4vw,48px);
  align-items:center;
  position:relative;
  z-index:1;
}
.hero h1{
  font-size:var(--step-4);
  line-height:1.1;
  font-weight:900;
  text-wrap:balance;
  max-width:18ch;
  padding-bottom:.08em;
  background:linear-gradient(90deg,#fff 0%, #bfe7ff 40%, #fff 80%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  background-size:200% 100%;
  animation:shimmerPos 8s ease-in-out infinite
}

/* Typing Effect */
.typing-text{
  display:inline-block;
}

.typing-cursor{
  display:inline-block;
  background:linear-gradient(90deg,#fff 0%, #bfe7ff 40%, #fff 80%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  animation:blink 1s infinite, shimmerPos 8s ease-in-out infinite;
  margin-left:2px;
}

@keyframes blink{
  0%, 49% { opacity:1; }
  50%, 100% { opacity:0; }
}
@keyframes shimmerPos{0%{background-position:0% 0}50%{background-position:100% 0}100%{background-position:0% 0}}
.hero p{margin-top:1rem;font-size:var(--step-0);color:#e9f3ff}
.hero-media img{width:100%;border-radius:26px;box-shadow:0 20px 60px rgba(18,168,255,.22);border:1px solid rgba(86,210,255,.35)}

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

/* KPIs Ribbon */
.ribbon{
  margin-top:clamp(26px,3vw,34px);
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
  gap:14px
}

.kpi{
  display:flex;
  flex-direction:column;
  gap:.35rem;
  padding:1.5rem 1.8rem;
  min-height:120px;
  border:1px solid rgba(18,168,255,.45);
  border-radius:16px;
  background:linear-gradient(135deg,rgba(18,168,255,.15),rgba(18,168,255,.08));
  box-shadow:0 12px 32px rgba(18,168,255,.15);
  transition:transform .3s ease, box-shadow .3s ease;
}

.kpi:hover {
  transform:translateY(-2px);
  box-shadow:0 16px 40px rgba(18,168,255,.25);
}

/* Hero Stats Grid */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 28px;
  margin-top: 30px;
}

.hero-stat {
  text-align: center;
  padding: 20px 15px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateY(50px) scale(0.9);
  animation: heroStatFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  position: relative;
  overflow: hidden;
}

/* Staggered animation delays - add loading screen delay */
.hero-stat:nth-child(1) {
  animation-delay: 4.1s;
}

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

.hero-stat:nth-child(3) {
  animation-delay: 4.3s;
}

.hero-stat:nth-child(4) {
  animation-delay: 4.4s;
}

@keyframes heroStatFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  60% {
    transform: translateY(-5px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Shine effect on load */
.hero-stat::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(212, 175, 55, 0.3),
    transparent
  );
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  animation: heroStatShine 2s ease-in-out;
  animation-delay: 4.8s;
  pointer-events: none;
}

@keyframes heroStatShine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.hero-stat:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.2);
  z-index: 1;
}

@keyframes heroPulsingBorder {
  0%, 100% {
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.25),
                0 0 0 4px rgba(212, 175, 55, 0.1),
                0 0 0 8px rgba(212, 175, 55, 0.05);
  }
  50% {
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.35),
                0 0 0 6px rgba(212, 175, 55, 0.2),
                0 0 0 12px rgba(212, 175, 55, 0.1);
  }
}

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #d4af37;
  line-height: 1;
  margin-bottom: 8px;
  font-feature-settings: 'tnum';
  font-variant-numeric: tabular-nums;
  animation: heroNumberPulse 1.5s ease-in-out;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

@keyframes heroNumberPulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.hero-stat:hover .hero-stat-number {
  animation: heroNumberBounce 0.6s ease;
}

@keyframes heroNumberBounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2) rotateZ(5deg);
  }
}

.hero-stat-number span:last-child {
  font-size: 1.8rem;
  opacity: 0.8;
  margin-left: 4px;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  opacity: 0;
  animation: heroLabelFadeIn 1s ease-in-out forwards;
}

.hero-stat:nth-child(1) .hero-stat-label {
  animation-delay: 4.6s;
}

.hero-stat:nth-child(2) .hero-stat-label {
  animation-delay: 4.7s;
}

.hero-stat:nth-child(3) .hero-stat-label {
  animation-delay: 4.8s;
}

.hero-stat:nth-child(4) .hero-stat-label {
  animation-delay: 4.9s;
}

@keyframes heroLabelFadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-stat:hover .hero-stat-label {
  color: rgba(212, 175, 55, 0.9);
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hero-stat {
    padding: 15px 10px;
  }

  .hero-stat-number {
    font-size: 2rem;
  }

  .hero-stat-label {
    font-size: 0.75rem;
  }
}

/* Cards & Sections */
.card{
  background:rgba(11,26,42,.85);
  backdrop-filter:blur(12px) saturate(180%);
  -webkit-backdrop-filter:blur(12px) saturate(180%);
  border:1px solid rgba(255,255,255,.18);
  border-radius:var(--radius);
  padding:clamp(18px,3vw,26px);
  box-shadow:var(--shadow);
  transition:transform .3s ease, box-shadow .3s ease, background .3s ease;
  transform-style:preserve-3d;
  perspective:1000px;
  position:relative;
  overflow:hidden;
}

.card::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(18,168,255,.08) 0%, transparent 50%);
  opacity:0;
  transition:opacity .3s ease;
  pointer-events:none;
  border-radius:var(--radius);
}

.card:hover {
  transform:translateY(-2px);
  box-shadow:0 24px 60px rgba(0,0,0,.65);
  background:rgba(11,26,42,.95);
}

.card:hover::after{
  opacity:1;
}

/* 3D Tilt-Effekt für Cards */
.card.tilt-active {
  will-change:transform;
}

.card.tilt-active::before {
  content:'';
  position:absolute;
  inset:0;
  border-radius:var(--radius);
  background:radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(18,168,255,.15), transparent 60%);
  opacity:0;
  transition:opacity .3s ease;
  pointer-events:none;
}

.card.tilt-active:hover::before {
  opacity:1;
}

.section{padding:64px 0}
.section-head{margin-bottom:1.5rem}
.section-head h2{font-size:var(--step-2);position:relative;font-weight:800;margin:0 0 .6rem}
.section-subtitle{
  font-size:1.1rem;
  color:var(--muted);
  margin-top:8px;
  font-weight:400;
}
.section-head h2::after{content:"";position:absolute;left:0;bottom:-8px;width:84px;height:3px;background:linear-gradient(90deg,#12a8ff,transparent)}
.hint{font-size:1rem;color:var(--muted);line-height:1.6}

/* Projects Grid */
.projects-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:24px;
  margin-top:20px;
  align-items:stretch;
}

.project-card{
  display:flex;
  flex-direction:column;
  gap:16px;
  height:100%;
}

.project-card .project-content{
  flex:1;
  display:flex;
  flex-direction:column;
  padding:0 4px;
}

.project-image{
  aspect-ratio:16/9;
  border-radius:16px;
  overflow:hidden;
  background:linear-gradient(135deg,#ff6b6b,#ffa500);
  position:relative;
  display:grid;
  place-items:center;
}

.project-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  position:absolute;
  top:0;
  left:0;
  z-index:10;
}

.image-placeholder{
  z-index:1;
  text-align:center;
  padding:20px;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:90%;
}

.image-placeholder h3{
  color:#fff;
  font-size:2rem;
  margin:0 0 0.5rem;
  text-shadow:0 2px 8px rgba(0,0,0,.6);
  font-weight:900;
}

.image-placeholder p{
  color:#fff;
  font-size:1.2rem;
  margin:0;
  text-shadow:0 2px 8px rgba(0,0,0,.6);
  font-weight:600;
}

.project-fallback{
  display:grid;
  place-items:center;
  height:100%;
  color:white;
  font-size:1.5rem;
  font-weight:800;
  text-align:center;
  padding:20px;
}

.project-badges{
  display:flex;
  gap:8px;
  margin-bottom:8px;
  flex-wrap:wrap;
}

.project-content h3{
  margin:0 0 8px;
  font-size:1.4rem;
}

.project-content p{
  color:var(--muted);
  margin:0 0 12px;
}

.project-content strong{
  display:block;
  margin:8px 0 4px;
}

.project-content ul{
  margin:4px 0;
  padding-left:20px;
  color:var(--muted);
}

.project-meta{
  margin-top:auto;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.15);
}

.project-meta small{
  color:var(--muted);
}

.project-placeholder{
  display:grid;
  place-items:center;
  text-align:center;
  padding:60px 40px;
  background:linear-gradient(135deg,rgba(18,168,255,0.08) 0%,rgba(86,210,255,0.05) 100%);
  border:2px dashed rgba(18,168,255,0.3);
}

.project-placeholder-content{
  display:grid;
  gap:24px;
}

.placeholder-icon{
  width:80px;
  height:80px;
  margin:0 auto 16px;
  background:linear-gradient(135deg,#12a8ff,#56d2ff);
  border-radius:16px;
  display:grid;
  place-items:center;
  box-shadow:0 12px 32px rgba(18,168,255,0.25);
}

.project-placeholder h3{
  margin:0 0 12px;
  font-size:1.4rem;
  font-weight:800;
}

.project-placeholder p{
  color:var(--muted);
  margin:0;
  font-size:1.05rem;
  max-width:300px;
  margin:0 auto;
}

/* Influencer Grid */
.influencer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:28px;
  margin-top:32px;
}

.influencer-card{
  background:rgba(13,29,43,.95);
  border:1px solid rgba(255,255,255,.15);
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 12px 32px rgba(0,0,0,.4);
  transition:all .4s ease;
  position:relative;
}

.influencer-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 48px rgba(18,168,255,0.35);
  border-color:rgba(18,168,255,0.5);
}

.video-link{
  text-decoration:none;
  color:inherit;
  display:block;
}

.video-thumbnail{
  position:relative;
  aspect-ratio:9/16;
  overflow:hidden;
  background:linear-gradient(135deg,#0d1d2b,#1a2f42);
  display:grid;
  place-items:center;
}

.video-thumbnail img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}

.influencer-card:hover .video-thumbnail img{
  transform:scale(1.05);
}

.play-overlay{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:10;
  opacity:0.95;
  transition:all .3s ease;
}

.influencer-card:hover .play-overlay{
  opacity:1;
  transform:translate(-50%,-50%) scale(1.1);
}

.play-overlay svg circle{
  transition:all .3s ease;
}

.influencer-card:hover .play-overlay svg circle{
  fill:rgba(18,168,255,0.95);
  stroke:#fff;
}

.influencer-card:hover .play-overlay svg path{
  fill:#fff;
}

.instagram-badge{
  position:absolute;
  top:16px;
  right:16px;
  background:linear-gradient(135deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  padding:8px;
  border-radius:12px;
  box-shadow:0 4px 16px rgba(0,0,0,.4);
  z-index:10;
  animation:pulse 2s ease-in-out infinite;
}

.influencer-info{
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.influencer-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
}

.influencer-profile{
  display:flex;
  gap:12px;
  align-items:center;
  flex:1;
}

.profile-pic-placeholder{
  width:44px;
  height:44px;
  border-radius:50%;
  background:linear-gradient(135deg,#12a8ff,#56d2ff);
  display:grid;
  place-items:center;
  font-weight:800;
  font-size:1.2rem;
  color:#fff;
  flex-shrink:0;
  box-shadow:0 4px 12px rgba(18,168,255,0.3);
}

.influencer-details{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.influencer-name{
  font-size:1.05rem;
  font-weight:700;
  color:#fff;
  margin:0;
  display:block;
}

.influencer-handle{
  font-size:0.9rem;
  color:var(--muted);
}

.follower-count{
  display:flex;
  align-items:center;
  gap:6px;
  padding:6px 12px;
  background:rgba(18,168,255,0.1);
  border-radius:20px;
  border:1px solid rgba(18,168,255,0.3);
  font-size:0.85rem;
  color:var(--muted);
  white-space:nowrap;
}

.follower-count svg{
  color:#12a8ff;
  flex-shrink:0;
}

.video-description{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.video-description h4{
  margin:0;
  font-size:1.2rem;
  font-weight:800;
  color:#fff;
  line-height:1.3;
}

.video-description p{
  margin:0;
  font-size:0.95rem;
  color:var(--muted);
  line-height:1.5;
}

.video-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.1);
}

.product-tag{
  display:flex;
  align-items:center;
  gap:6px;
  padding:6px 12px;
  background:linear-gradient(135deg,rgba(18,168,255,0.15),rgba(86,210,255,0.1));
  border:1px solid rgba(18,168,255,0.3);
  border-radius:12px;
  font-size:0.9rem;
  font-weight:600;
  color:#12a8ff;
}

.product-tag svg{
  flex-shrink:0;
}

.view-cta{
  font-size:0.9rem;
  font-weight:600;
  color:#12a8ff;
  transition:all .3s ease;
}

.influencer-card:hover .view-cta{
  color:#56d2ff;
  transform:translateX(4px);
}

/* Placeholder Cards */
.influencer-placeholder{
  background:linear-gradient(135deg,rgba(18,168,255,0.08),rgba(86,210,255,0.05));
  border:2px dashed rgba(18,168,255,0.3);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.influencer-placeholder:hover{
  border-color:rgba(18,168,255,0.5);
  background:linear-gradient(135deg,rgba(18,168,255,0.12),rgba(86,210,255,0.08));
}

.placeholder-thumbnail{
  aspect-ratio:9/16;
  width:100%;
  background:linear-gradient(135deg,rgba(18,168,255,0.1),rgba(86,210,255,0.05));
  display:grid;
  place-items:center;
}

.placeholder-thumbnail .placeholder-icon{
  width:80px;
  height:80px;
  background:linear-gradient(135deg,#12a8ff,#56d2ff);
  border-radius:16px;
  display:grid;
  place-items:center;
  box-shadow:0 12px 32px rgba(18,168,255,0.25);
  animation:float 3s ease-in-out infinite;
}

.placeholder-thumbnail .placeholder-icon svg{
  color:#fff;
  filter:drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.influencer-placeholder .influencer-info{
  flex:1;
  display:grid;
  place-items:center;
}

.influencer-placeholder h4{
  margin:0;
  font-size:1.2rem;
  font-weight:800;
  color:#fff;
}

.influencer-placeholder p{
  margin:8px 0 0;
  font-size:0.95rem;
  color:var(--muted);
}

.badge-hot{
  background:linear-gradient(135deg,#ff6b6b,#ff4757);
  color:#fff;
  animation:pulse 2s ease-in-out infinite;
}

/* Responsive adjustments for Influencer Grid */
@media(max-width:768px){
  .influencer-grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .follower-count span{
    display:none;
  }

  .follower-count{
    padding:8px;
  }
}

/* Influencer Marquee Slider */
.influencer-marquee{
  position:relative;
  overflow:hidden;
  height:180px;
  margin-top:24px;
  mask-image:linear-gradient(to right,transparent,black 6%,black 94%,transparent);
}

.influencer-marquee .track{
  display:flex;
  gap:24px;
  animation:marqueeScroll 30s linear infinite;
  width:fit-content;
  will-change:transform;
}

.influencer-marquee:hover .track{
  animation-play-state:paused;
}

@keyframes marqueeScroll{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}

/* Navigation Buttons */
.marquee-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:20;
  width:48px;
  height:48px;
  border-radius:50%;
  background:rgba(18,168,255,0.9);
  border:2px solid rgba(18,168,255,1);
  color:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
  transition:all .3s ease;
  box-shadow:0 4px 16px rgba(0,0,0,.4);
}

.marquee-nav:hover{
  background:rgba(18,168,255,1);
  transform:translateY(-50%) scale(1.1);
  box-shadow:0 6px 24px rgba(18,168,255,0.5);
}

.marquee-nav-prev{
  left:10px;
}

.marquee-nav-next{
  right:10px;
}

.influencer-tile{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  min-width:140px;
  padding:16px;
  background:rgba(13,29,43,.95);
  border:1px solid rgba(255,255,255,.15);
  border-radius:16px;
  transition:all .3s ease;
  text-decoration:none;
  box-shadow:0 4px 16px rgba(0,0,0,.3);
}

.influencer-tile:hover{
  transform:translateY(-4px);
  box-shadow:0 8px 24px rgba(18,168,255,0.3);
  border-color:rgba(18,168,255,0.5);
  background:rgba(13,29,43,1);
}

.influencer-tile img{
  width:80px;
  height:80px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid rgba(18,168,255,0.3);
  transition:all .3s ease;
  background:linear-gradient(135deg,#12a8ff,#56d2ff);
}

.influencer-tile:hover img{
  border-color:#12a8ff;
  transform:scale(1.1);
  box-shadow:0 0 20px rgba(18,168,255,0.5);
}

.influencer-name{
  font-size:0.85rem;
  font-weight:600;
  color:var(--muted);
  text-align:center;
  transition:color .3s ease;
}

.influencer-tile:hover .influencer-name{
  color:#12a8ff;
}

/* Responsive adjustments for Influencer Marquee */
@media(max-width:768px){
  .influencer-marquee{
    height:160px;
  }

  .influencer-tile{
    min-width:120px;
    padding:12px;
  }

  .influencer-tile img{
    width:60px;
    height:60px;
  }

  .influencer-name{
    font-size:0.75rem;
  }
}

/* Available Products Grid */
.available-products-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:32px;
  margin-top:32px;
}

.product-card{
  background:rgba(13,29,43,.95);
  border:1px solid rgba(255,255,255,.15);
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 12px 32px rgba(0,0,0,.4);
  transition:all .4s ease;
  position:relative;
  display:flex;
  flex-direction:column;
}

.product-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 48px rgba(18,168,255,0.35);
  border-color:rgba(18,168,255,0.5);
}

.product-link{
  text-decoration:none;
  color:inherit;
  display:flex;
  flex-direction:column;
  height:100%;
}

.product-image{
  position:relative;
  aspect-ratio:4/3;
  overflow:hidden;
  background:linear-gradient(135deg,#f5f5f5,#e0e0e0);
  display:grid;
  place-items:center;
}

.product-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}

.product-card:hover .product-image img{
  transform:scale(1.08);
}

.product-image-froozly{
  background:linear-gradient(135deg,#56d2ff,#12a8ff);
}

.product-image-froozly img{
  object-fit:cover;
  padding:40px;
}

/* POS Display Images - Show Complete Displays */
#pos-displays .product-image{
  aspect-ratio:3/4;
  background:linear-gradient(135deg,#1a2332,#0d1926);
}

#pos-displays .product-image img{
  object-fit:contain;
  padding:20px;
  width:100%;
  height:100%;
}

#pos-displays .product-card:hover .product-image img{
  transform:scale(1.05);
}

.product-badge{
  position:absolute;
  top:16px;
  right:16px;
  padding:8px 12px;
  border-radius:20px;
  font-size:0.85rem;
  font-weight:700;
  display:flex;
  align-items:center;
  gap:6px;
  box-shadow:0 4px 16px rgba(0,0,0,.3);
  z-index:10;
  animation:float 3s ease-in-out infinite;
}

.product-badge svg{
  flex-shrink:0;
}

.badge-new{
  background:linear-gradient(135deg,#ffd700,#ffa500);
  color:#1a1a1a;
}

.badge-trending{
  background:linear-gradient(135deg,#ff6b6b,#ff4757);
  color:#fff;
}

.badge-fresh{
  background:linear-gradient(135deg,#4ade80,#22c55e);
  color:#fff;
}

.badge-success{
  background:linear-gradient(135deg,#4ade80,#22c55e);
  color:#fff;
  font-weight:700;
}

.badge-upcoming{
  background:linear-gradient(135deg,#fbbf24,#f59e0b);
  color:#1a1a1a;
  font-weight:700;
}

.badge-schmeckt{
  background:linear-gradient(135deg,#ff6b9d,#ff4757);
  color:#fff;
  font-weight:800;
  font-size:0.95rem;
  padding:8px 14px;
}

/* Future Product Cards */
.future-product-card .product-info{
  padding:28px;
}

.future-product-details{
  margin-top:20px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.1);
}

.future-product-details h4{
  margin:0 0 12px 0;
  font-size:1.1rem;
  font-weight:700;
  color:#12a8ff;
}

.variants-list{
  list-style:none;
  padding:0;
  margin:0 0 20px 0;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.variants-list li{
  padding-left:20px;
  position:relative;
  color:var(--muted);
  font-size:0.95rem;
  line-height:1.5;
}

.variants-list li::before{
  content:'•';
  position:absolute;
  left:0;
  color:#12a8ff;
  font-weight:900;
  font-size:1.2rem;
}

.variants-list li strong{
  color:#fff;
  font-weight:700;
}

.future-meta{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:16px;
  padding:16px;
  background:rgba(18,168,255,0.05);
  border-radius:12px;
  border:1px solid rgba(18,168,255,0.2);
}

.future-meta strong{
  display:block;
  margin-bottom:6px;
  color:#12a8ff;
  font-size:0.9rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.5px;
}

.future-meta p{
  margin:0;
  color:#fff;
  font-size:0.95rem;
  font-weight:600;
}

/* Placeholder Card */
.future-placeholder{
  background:rgba(13,29,43,.7);
  border:2px dashed rgba(255,255,255,.2);
  display:flex;
  align-items:center;
  justify-content:center;
}

.future-placeholder:hover{
  background:rgba(13,29,43,.85);
  border-color:rgba(18,168,255,0.4);
  transform:translateY(-4px);
}

.placeholder-content{
  text-align:center;
  padding:40px 20px;
}

.placeholder-icon{
  display:flex;
  justify-content:center;
  margin-bottom:20px;
  opacity:0.5;
}

.placeholder-icon svg{
  stroke:#12a8ff;
}

.future-placeholder h3{
  margin:0 0 12px 0;
  font-size:1.3rem;
  font-weight:700;
  color:#fff;
}

.future-placeholder p{
  margin:0;
  color:var(--muted);
  font-size:0.95rem;
  line-height:1.6;
}

.product-info{
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:12px;
  flex:1;
}

.product-info h3{
  margin:0;
  font-size:1.5rem;
  font-weight:800;
  color:#fff;
  line-height:1.2;
}

.product-info p{
  margin:0;
  font-size:0.95rem;
  color:var(--muted);
  line-height:1.6;
  flex:1;
}

.product-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.1);
  margin-top:auto;
}

.availability-tag{
  display:flex;
  align-items:center;
  gap:6px;
  padding:8px 14px;
  background:linear-gradient(135deg,rgba(18,168,255,0.15),rgba(86,210,255,0.1));
  border:1px solid rgba(18,168,255,0.3);
  border-radius:12px;
  font-size:0.85rem;
  font-weight:600;
  color:#12a8ff;
}

.availability-tag svg{
  flex-shrink:0;
  color:#12a8ff;
}

.product-cta{
  font-size:0.9rem;
  font-weight:600;
  color:#12a8ff;
  transition:all .3s ease;
}

.product-card:hover .product-cta{
  color:#56d2ff;
  transform:translateX(4px);
}

.products-cta{
  display:flex;
  justify-content:center;
  align-items:center;
}

.products-cta .btn{
  display:flex;
  align-items:center;
  gap:8px;
}

/* Responsive adjustments for Available Products */
@media(max-width:768px){
  .available-products-grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .product-image{
    aspect-ratio:16/9;
  }

  /* POS Displays bleiben hochformat auf Mobile */
  #pos-displays .product-image{
    aspect-ratio:4/5;
  }

  #pos-displays .product-image img{
    padding:16px;
  }

  .product-info h3{
    font-size:1.3rem;
  }
}

/* Case Bites */
.case-bites{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:16px;margin-top:12px}
.bite{
  padding:16px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:16px;
  background:rgba(13,29,43,.9);
  box-shadow:0 10px 28px rgba(0,0,0,.4);
  transition:transform .3s ease, box-shadow .3s ease;
}
.bite:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 32px rgba(0,0,0,.5);
}
.bite strong{font-size:1.05rem}
.bite p{margin:.4rem 0 0;color:var(--muted)}

/* Marquee Slider */
.marquee{position:relative;overflow:hidden;height:110px;margin-top:12px;mask-image:linear-gradient(to right,transparent,black 6%,black 94%,transparent)}
.marquee .track{display:flex;align-items:center;gap:24px;animation:marq 28s linear infinite;will-change:transform}
.marquee:hover .track{animation-play-state:paused}
@keyframes marq{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.logo-tile{flex:0 0 auto;width:184px;height:86px;padding:12px;display:grid;place-items:center;border-radius:16px;background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));border:1px solid rgba(255,255,255,.18);box-shadow:0 6px 18px rgba(0,0,0,.28)}
.logo-tile img{max-height:62px;width:auto;height:auto;object-fit:contain}
.logo-tile.brand{width:200px;height:96px}
.logo-tile.brand img{max-height:72px;filter:drop-shadow(0 2px 6px rgba(0,0,0,.35))}

/* Wide Visual */
.wide-visual{position:relative;border-radius:22px;overflow:hidden;background:#0b1626;min-height:320px;border:1px solid rgba(255,255,255,.18)}
.wide-visual.bg{background-image:var(--bg-url);background-size:cover;background-position:center center;background-repeat:no-repeat}
.wide-visual .label{position:absolute;left:20px;bottom:18px;text-shadow:0 2px 10px rgba(0,0,0,.45)}
.wide-visual .label strong{font-size:clamp(1.2rem,1.2vw+1rem,1.8rem)}

/* Instagram Coming Soon */
/* Instagram Feed Container */
.instagram-feed-container{
  margin-top:30px;
  min-height:400px;
  position:relative;
  z-index:1;
}

/* EmbedSocial Widget Styling Override */
.embedsocial-hashtag,
.embedsocial-instagram{
  max-width:100%;
  margin:0 auto;
  background:transparent !important;
}

/* Override EmbedSocial default background */
.embedsocial-hashtag > div,
.embedsocial-hashtag .es-feed-header,
.embedsocial-hashtag .es-feed-container{
  background:transparent !important;
  background-color:transparent !important;
}

/* Profile Header Styling */
.embedsocial-hashtag .es-feed-header{
  padding:20px !important;
  border-radius:16px !important;
  background:rgba(11,26,42,.85) !important;
  backdrop-filter:blur(12px) !important;
  border:1px solid rgba(255,255,255,.18) !important;
  margin-bottom:20px !important;
}

.embedsocial-hashtag .es-feed-header .es-feed-avatar{
  border:3px solid #12a8ff !important;
  box-shadow:0 4px 12px rgba(18,168,255,.3) !important;
}

.embedsocial-hashtag .es-feed-header h3,
.embedsocial-hashtag .es-feed-header p,
.embedsocial-hashtag .es-feed-header a{
  color:#fff !important;
}

/* Follow Button Styling */
.embedsocial-hashtag .es-feed-header button,
.embedsocial-hashtag .es-feed-header .es-follow-btn{
  background:linear-gradient(135deg,#12a8ff,#0d7fc7) !important;
  border:none !important;
  color:#fff !important;
  font-weight:600 !important;
  padding:10px 24px !important;
  border-radius:10px !important;
  transition:all .3s ease !important;
}

.embedsocial-hashtag .es-feed-header button:hover,
.embedsocial-hashtag .es-feed-header .es-follow-btn:hover{
  transform:translateY(-2px) !important;
  box-shadow:0 8px 20px rgba(18,168,255,.4) !important;
}

/* Post Cards Styling */
.instagram-feed-container .embedsocial-hashtag .es-feed-item,
.instagram-feed-container .embedsocial-hashtag .es-post{
  background:rgba(11,26,42,.85) !important;
  backdrop-filter:blur(12px) !important;
  border:1px solid rgba(255,255,255,.18) !important;
  border-radius:16px !important;
  overflow:hidden !important;
  transition:all .3s ease !important;
  box-shadow:0 4px 20px rgba(0,0,0,.3) !important;
}

.instagram-feed-container .embedsocial-hashtag .es-feed-item:hover,
.instagram-feed-container .embedsocial-hashtag .es-post:hover{
  transform:translateY(-8px) !important;
  box-shadow:0 12px 40px rgba(18,168,255,.3) !important;
  border-color:rgba(18,168,255,.4) !important;
}

/* Post Images */
.instagram-feed-container .embedsocial-hashtag img{
  border-radius:12px !important;
}

/* Post Meta (likes, comments) */
.embedsocial-hashtag .es-post-footer,
.embedsocial-hashtag .es-post-meta{
  background:transparent !important;
  color:rgba(255,255,255,.8) !important;
  padding:12px !important;
}

.embedsocial-hashtag .es-post-footer svg,
.embedsocial-hashtag .es-post-meta svg{
  fill:#12a8ff !important;
}

/* Grid Spacing */
.embedsocial-hashtag .es-feed-container{
  gap:20px !important;
  padding:0 !important;
}

/* Hide EmbedSocial Branding - Enhanced */
.feed-powered-by-es,
.es-widget-branding,
.embedsocial-hashtag .feed-powered-by-es,
.embedsocial-hashtag .es-widget-branding,
a[href*="embedsocial.com"],
.embedsocial-hashtag a[href*="embedsocial.com"],
.feed-powered-by-es-feed-img,
.es-widget-branding-text,
[class*="powered-by"],
[class*="widget-branding"]{
  display:none !important;
  visibility:hidden !important;
  opacity:0 !important;
  height:0 !important;
  width:0 !important;
  max-height:0 !important;
  max-width:0 !important;
  overflow:hidden !important;
  position:absolute !important;
  left:-9999px !important;
  z-index:-9999 !important;
  pointer-events:none !important;
}

/* Load More Button */
.embedsocial-hashtag .es-load-more-btn{
  background:linear-gradient(135deg,#12a8ff,#0d7fc7) !important;
  border:none !important;
  color:#fff !important;
  font-weight:600 !important;
  padding:14px 32px !important;
  border-radius:10px !important;
  margin:30px auto !important;
  transition:all .3s ease !important;
}

.embedsocial-hashtag .es-load-more-btn:hover{
  transform:translateY(-2px) !important;
  box-shadow:0 8px 20px rgba(18,168,255,.4) !important;
}

/* Instagram Loader */
.instagram-loader{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:300px;
  flex-direction:column;
  gap:16px;
}

.loader-spinner{
  width:48px;
  height:48px;
  border:4px solid rgba(18,168,255,0.2);
  border-top-color:#12a8ff;
  border-radius:50%;
  animation:spin 1s linear infinite;
}

@keyframes spin{
  to{ transform:rotate(360deg); }
}

/* Fallback wenn JavaScript deaktiviert oder Widget nicht lädt */
.instagram-fallback{
  padding:60px 40px;
  text-align:center;
  background:linear-gradient(135deg,rgba(131,58,180,0.1) 0%,rgba(253,29,29,0.1) 50%,rgba(252,176,69,0.1) 100%);
  border-radius:16px;
}

.instagram-fallback p{
  color:var(--muted);
  margin-bottom:24px;
  font-size:var(--step-0);
}

.instagram-fallback p:first-of-type{
  color:#fff;
  font-size:1.1rem;
  font-weight:600;
}

/* Instagram CTA Button */
.instagram-cta .btn-large{
  padding:16px 32px;
  font-size:1.1rem;
  display:inline-flex;
  align-items:center;
  gap:12px;
}

/* Instagram Feed Mobile Adjustments */
@media (max-width:768px) {
  .instagram-feed-container{
    padding:0 8px !important;
    min-height:300px !important;
    overflow:visible !important;
  }

  .embedsocial-hashtag,
  .embedsocial-instagram{
    width:100% !important;
    max-width:100% !important;
    overflow-x:hidden !important;
  }

  .instagram-feed-container .embedsocial-hashtag .es-feed-item,
  .instagram-feed-container .embedsocial-hashtag .es-post{
    max-width:100% !important;
    width:100% !important;
  }

  .instagram-feed-container .embedsocial-hashtag img,
  .instagram-feed-container .embedsocial-hashtag video{
    max-width:100% !important;
    max-height:400px !important;
    width:100% !important;
    height:auto !important;
    object-fit:cover !important;
  }

  .embedsocial-hashtag .es-feed-container{
    gap:12px !important;
    grid-template-columns:1fr !important;
  }

  .embedsocial-hashtag .es-feed-header{
    padding:16px !important;
  }

  .instagram-cta .btn-large{
    padding:14px 24px;
    font-size:1rem;
  }
}

/* FAQ Section */
.faq-grid{
  display:grid;
  gap:16px;
  margin-top:20px;
  max-width:900px;
}

.faq-item{
  background:var(--card);
  border:1px solid rgba(255,255,255,.18);
  border-radius:16px;
  padding:20px;
  cursor:pointer;
  transition:background .2s ease, border-color .2s ease;
}

.faq-item:hover{
  background:rgba(13,29,43,.95);
  border-color:rgba(18,168,255,.35);
}

.faq-item[open]{
  border-color:rgba(18,168,255,.45);
  box-shadow:0 8px 24px rgba(18,168,255,.15);
}

.faq-item summary{
  font-weight:700;
  font-size:1.1rem;
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

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

.faq-item summary::after{
  content:'▼';
  font-size:0.8rem;
  transition:transform .3s ease;
}

.faq-item[open] summary::after{
  transform:rotate(180deg);
}

.faq-item p{
  margin:16px 0 0;
  color:var(--muted);
  line-height:1.7;
}

/* Team Section */
/* Company Timeline (SPECIAL FEATURE!) */
.timeline-wrapper{
  margin:40px 0 60px;
  padding:30px 0;
}

.timeline{
  position:relative;
  max-width:900px;
  margin:0 auto;
}

.timeline::before{
  content:'';
  position:absolute;
  left:50%;
  top:0;
  bottom:0;
  width:3px;
  background:linear-gradient(180deg, rgba(18,168,255,.3), rgba(18,168,255,.8), rgba(18,168,255,.3));
  transform:translateX(-50%);
}

.timeline-item{
  position:relative;
  margin-bottom:50px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:30px;
}

.timeline-item:nth-child(odd) .timeline-content{
  grid-column:1;
  text-align:right;
}

.timeline-item:nth-child(even) .timeline-content{
  grid-column:3;
  text-align:left;
}

.timeline-item:nth-child(odd)::before{
  content:attr(data-year);
  grid-column:3;
  color:var(--muted);
  font-weight:700;
  font-size:1.2rem;
}

.timeline-item:nth-child(even)::before{
  content:attr(data-year);
  grid-column:1;
  text-align:right;
  color:var(--muted);
  font-weight:700;
  font-size:1.2rem;
}

.timeline-dot{
  grid-column:2;
  width:20px;
  height:20px;
  background:linear-gradient(135deg, #12a8ff, #56d2ff);
  border-radius:50%;
  border:4px solid var(--bg);
  box-shadow:0 0 0 4px rgba(18,168,255,.3);
  z-index:2;
  transition:transform .3s ease, box-shadow .3s ease;
}

.timeline-item.active .timeline-dot{
  width:28px;
  height:28px;
  background:linear-gradient(135deg, #ff6b6b, #ffa500);
  box-shadow:0 0 0 6px rgba(255,107,107,.4), 0 0 20px rgba(255,107,107,.6);
  animation:timeline-pulse 2s infinite;
}

.timeline-item:hover .timeline-dot{
  transform:scale(1.3);
  box-shadow:0 0 0 6px rgba(18,168,255,.5), 0 0 16px rgba(18,168,255,.4);
}

.timeline-content{
  background:rgba(11,26,42,.6);
  padding:20px 24px;
  border-radius:12px;
  border:1px solid rgba(18,168,255,.25);
  backdrop-filter:blur(8px);
  transition:all .3s ease;
}

.timeline-item:hover .timeline-content{
  background:rgba(11,26,42,.85);
  border-color:rgba(18,168,255,.5);
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(18,168,255,.2);
}

.timeline-content h4{
  margin:0 0 8px;
  color:#12a8ff;
  font-size:1.25rem;
}

.timeline-content p{
  margin:0;
  color:var(--muted);
  font-size:.95rem;
  line-height:1.5;
}

@keyframes timeline-pulse{
  0%, 100%{
    box-shadow:0 0 0 6px rgba(255,107,107,.4), 0 0 20px rgba(255,107,107,.6);
  }
  50%{
    box-shadow:0 0 0 10px rgba(255,107,107,.2), 0 0 30px rgba(255,107,107,.8);
  }
}

/* Premium Team Section */
.team-section-premium {
  margin-top: 80px;
  padding: 60px 0;
  background: transparent;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
}

.team-header-premium {
  text-align: center;
  margin-bottom: 60px;
}

.team-label-premium {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-heading-premium {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin: 12px 0 24px;
  letter-spacing: -1px;
}

.team-divider-premium {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  margin: 0 auto;
}

.team-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.person-premium {
  position: relative;
}

.person-premium-inner {
  background: linear-gradient(145deg, rgba(13, 29, 43, 0.95), rgba(7, 16, 26, 0.95));
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 24px;
  padding: 28px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.person-premium-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.person-premium:hover .person-premium-inner {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.2);
}

.person-premium:hover .person-premium-inner::before {
  opacity: 1;
}

.img-wrap-premium {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
}

.img-ring-premium {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #c9a961, #d4af37);
  opacity: 0.6;
  transition: all 0.4s ease;
  animation: rotateGlow 8s linear infinite;
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.person-premium:hover .img-ring-premium {
  opacity: 1;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.img-wrap-premium img {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(7, 16, 26, 1);
  transition: transform 0.4s ease;
}

.person-premium:hover .img-wrap-premium img {
  transform: scale(1.05);
}

.department-badge-premium {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d4af37, #c9a961);
  color: #0d1d2b;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  white-space: nowrap;
}

.person-content-premium {
  text-align: center;
}

.person-content-premium h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.role-premium {
  font-size: 0.9rem;
  color: #d4af37;
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 500;
}

.skills-premium {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

.skill-tag-premium {
  display: inline-block;
  font-size: 0.75rem;
  padding: 6px 12px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  color: rgba(212, 175, 55, 0.9);
  transition: all 0.3s ease;
  font-weight: 500;
}

.skill-tag-premium:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
  color: #d4af37;
  transform: translateY(-2px);
}

/* Premium Team Responsive */
@media (max-width: 768px) {
  .team-section-premium {
    padding: 40px 0;
  }

  .team-heading-premium {
    font-size: 2.2rem;
  }

  .team-grid-premium {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .person-premium-inner {
    padding: 24px;
  }

  .img-wrap-premium,
  .img-wrap-premium img {
    width: 120px;
    height: 120px;
  }

  .img-ring-premium {
    inset: -5px;
  }
}

/* Old Team Styles (hidden/removed) */
.team-heading{
  display: none;
}

.team{
  display: none;
}
.person{
  display: none;
  background:rgba(13,29,43,.8);
  box-shadow:0 12px 28px rgba(0,0,0,.35);
  overflow:hidden;
  transition:transform .3s ease, box-shadow .3s ease;
}
.person:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(0,0,0,.45);
}
.person .img-wrap{aspect-ratio:4/5;background:#0e1e30;overflow:hidden}
.person img{width:100%;height:100%;object-fit:cover}
.person .body{padding:16px 18px}
.person h3{margin:0 0 4px;font-size:1.35rem}
.person .role{margin:0 0 8px;color:#a7d9f7}
.person ul{margin:0;padding-left:18px;color:#cfe3f5}
.person ul li{margin:.18rem 0}

/* Flip Cards for Team */
.flip-card{
  perspective:1000px;
  cursor:pointer;
}

.flip-card-inner{
  position:relative;
  width:100%;
  height:100%;
  transition:transform .6s;
  transform-style:preserve-3d;
}

.flip-card:hover .flip-card-inner{
  transform:rotateY(180deg);
}

.flip-card-front,
.flip-card-back{
  position:absolute;
  width:100%;
  height:100%;
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  border-radius:20px;
  overflow:hidden;
}

.flip-card-front{
  background:rgba(13,29,43,.8);
  display:grid;
  grid-template-rows:auto 1fr;
  gap:14px;
}

.flip-card-back{
  background:linear-gradient(135deg, rgba(18,168,255,.2), rgba(11,26,42,.9));
  transform:rotateY(180deg);
  padding:30px 24px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  border:1px solid rgba(18,168,255,.4);
}

.flip-card-back h4{
  margin:0 0 20px;
  font-size:1.4rem;
  color:#12a8ff;
  text-align:center;
}

.flip-card-back ul{
  margin:0;
  padding-left:20px;
  color:#fff;
  font-size:.95rem;
}

.flip-card-back ul li{
  margin:12px 0;
  line-height:1.5;
}

/* Jobs Section */
.jobs{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:16px}
.job{
  border:1px solid rgba(255,255,255,.2);
  border-radius:16px;
  background:rgba(13,29,43,.86);
  padding:16px;
  transition:transform .3s ease, box-shadow .3s ease;
}
.job:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 32px rgba(0,0,0,.45);
}
.job h4{margin:.1rem 0 .4rem}
.job small{display:block;color:#a7d9f7;margin-bottom:.5rem}

/* Contact Form */
#contactForm{display:grid;gap:.8rem;margin-top:12px}
@media (min-width:900px){ #contactForm{grid-template-columns:repeat(3,1fr)} }
#contactForm .full{grid-column:1/-1}
#contactForm input,#contactForm textarea,#contactForm select{
  width:100%;
  padding:1rem;
  border-radius:12px;
  background:#0f2233;
  border:1px solid rgba(255,255,255,.28);
  color:#fff;
  transition:border-color .2s ease;
}
#contactForm input:focus,#contactForm textarea:focus,#contactForm select:focus{
  border-color:#12a8ff;
}
#contactForm textarea{min-height:150px}
#contactForm button{justify-self:start}

#contactFormStatus{
  grid-column:1/-1;
  padding:12px;
  border-radius:8px;
  font-weight:600;
  display:none;
}

#contactFormStatus.show{
  display:block;
}

#contactFormStatus.success{
  background:rgba(81,207,102,0.15);
  color:#51cf66;
  border:1px solid rgba(81,207,102,0.3);
}

#contactFormStatus.error{
  background:rgba(255,107,107,0.15);
  color:#ff6b6b;
  border:1px solid rgba(255,107,107,0.3);
}

#contactFormStatus.loading{
  background:rgba(18,168,255,0.15);
  color:#12a8ff;
  border:1px solid rgba(18,168,255,0.3);
}

/* Sample FAB & Sheet */
.sample-fab{
  position:fixed;
  right:24px;
  bottom:260px;
  z-index:49;
  opacity:0.85;
  transition:all 0.4s ease;
}
.sample-fab:hover{
  opacity:1;
  transform:scale(1.05);
}
.sample-fab.hidden{
  transform:translateX(200px);
  opacity:0;
  pointer-events:none;
}
.sample-fab .btn{
  border-radius:999px;
  padding:.85rem 1.05rem;
  font-size:0.95rem;
  box-shadow:0 4px 20px rgba(0,0,0,.4);
}
.sheet{position:fixed;inset:0;background:rgba(0,0,0,.6);backdrop-filter:blur(6px);display:none;align-items:flex-end;z-index:130}
.sheet[open]{display:flex}
.sheet .panel{width:100%;max-width:560px;margin:0 auto;background:var(--card);border:1px solid rgba(255,255,255,.22);border-radius:18px 18px 0 0;padding:18px 18px 22px;box-shadow:0 18px 48px rgba(0,0,0,.55)}
.sheet h3{margin:0 0 8px}.sheet form{display:grid;gap:.6rem}
.sheet .row{display:grid;grid-template-columns:1fr 1fr;gap:.6rem}
.sheet input,.sheet textarea,.sheet select{width:100%;padding:.9rem;border-radius:12px;background:#0f2233;border:1px solid rgba(255,255,255,.28);color:#fff}
.sheet textarea{min-height:120px}
.close-x{position:absolute;right:16px;top:12px;background:none;border:none;color:#fff;font-size:1.4rem;cursor:pointer}

/* Scroll to Top Button with Progress Ring */
.scroll-top-btn{
  position:fixed;
  bottom:32px;
  left:24px;
  width:56px;
  height:56px;
  border-radius:50%;
  background:rgba(13, 29, 43, 0.95);
  border:2px solid rgba(212, 175, 55, 0.2);
  color:#fff;
  cursor:pointer;
  box-shadow:0 8px 24px rgba(0,0,0,.4);
  z-index:99999;
  opacity:0;
  visibility:hidden;
  transform:scale(0.8) translateY(20px);
  transition:all .3s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

.scroll-top-btn.show{
  opacity:1;
  visibility:visible;
  transform:scale(1) translateY(0);
}

.scroll-top-btn:hover{
  transform:scale(1.1);
  box-shadow:0 12px 32px rgba(212, 175, 55,.4);
  border-color:rgba(212, 175, 55, 0.4);
}

.scroll-progress-ring{
  position:absolute;
  top:0;
  left:0;
  width:56px;
  height:56px;
  transform:rotate(-90deg);
}

.scroll-progress-ring-bg{
  fill:none;
  stroke:rgba(212, 175, 55, 0.1);
  stroke-width:3;
}

.scroll-progress-ring-progress{
  fill:none;
  stroke:#d4af37;
  stroke-width:3;
  stroke-linecap:round;
  stroke-dasharray:150.8;
  stroke-dashoffset:150.8;
  transition:stroke-dashoffset 0.1s linear;
  filter:drop-shadow(0 0 4px rgba(212, 175, 55, 0.6));
}

.scroll-top-icon{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
}

.scroll-percentage{
  position:absolute;
  bottom:-24px;
  left:50%;
  transform:translateX(-50%);
  font-size:0.7rem;
  font-weight:600;
  color:#d4af37;
  white-space:nowrap;
  opacity:0;
  transition:opacity 0.3s ease;
}

.scroll-top-btn:hover .scroll-percentage{
  opacity:1;
}

/* Delayed button appearance after loading screen */
@keyframes delayedButtonAppear {
  from {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(20px);
  }
  to {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
  }
}

/* WhatsApp Business Button */
.whatsapp-btn{
  position:fixed;
  bottom:116px;
  right:24px;
  width:56px;
  height:56px;
  border-radius:50%;
  background:linear-gradient(135deg,#25d366,#128c7e);
  color:#fff;
  display:grid;
  place-items:center;
  text-decoration:none;
  box-shadow:0 8px 24px rgba(37,211,102,.4);
  z-index:99999;
  opacity: 1;
  visibility: visible;
  transition:all .4s ease;
  animation: whatsapp-pulse 2s infinite 1s;
}

.whatsapp-btn:hover{
  transform:scale(1.1);
  box-shadow:0 12px 32px rgba(37,211,102,.6);
  animation:none;
}

.whatsapp-btn.hidden{
  transform:translateX(120px);
  opacity:0;
  pointer-events:none;
}

.whatsapp-tooltip{
  position:absolute;
  right:70px;
  background:rgba(7,16,26,.95);
  color:#fff;
  padding:8px 14px;
  border-radius:8px;
  font-size:.9rem;
  white-space:nowrap;
  opacity:0;
  pointer-events:none;
  transition:opacity .3s ease;
  border:1px solid rgba(37,211,102,.3);
}

.whatsapp-btn:hover .whatsapp-tooltip{
  opacity:1;
}

@keyframes whatsapp-pulse{
  0%, 100% {
    box-shadow:0 8px 24px rgba(37,211,102,.4);
  }
  50% {
    box-shadow:0 8px 24px rgba(37,211,102,.4), 0 0 0 10px rgba(37,211,102,.1);
  }
}

/* Call Button */
.call-btn{
  position:fixed;
  bottom:184px;
  right:24px;
  width:56px;
  height:56px;
  border-radius:50%;
  background:linear-gradient(135deg,#12a8ff,#0d7fc7);
  color:#fff;
  display:grid;
  place-items:center;
  text-decoration:none;
  box-shadow:0 8px 24px rgba(18,168,255,.4);
  z-index:99999;
  opacity:1;
  visibility:visible;
  transition:all .4s ease;
  animation:call-pulse 2s infinite 0.5s;
}

.call-btn:hover{
  transform:scale(1.1) rotate(12deg);
  box-shadow:0 12px 32px rgba(18,168,255,.6);
  animation:none;
}

.call-btn.hidden{
  transform:translateX(120px);
  opacity:0;
  pointer-events:none;
}

.call-tooltip{
  position:absolute;
  right:70px;
  background:rgba(11,26,42,.98);
  color:#fff;
  padding:12px 16px;
  border-radius:12px;
  white-space:nowrap;
  font-size:0.85rem;
  font-weight:500;
  border:1px solid rgba(255,255,255,.2);
  box-shadow:0 8px 24px rgba(0,0,0,.4);
  opacity:0;
  pointer-events:none;
  transition:opacity .3s ease, transform .3s ease;
  transform:translateX(10px);
}

.call-btn:hover .call-tooltip{
  opacity:1;
  transform:translateX(0);
}

@keyframes call-pulse{
  0%, 100% {
    box-shadow:0 8px 24px rgba(18,168,255,.4);
  }
  50% {
    box-shadow:0 8px 24px rgba(18,168,255,.4), 0 0 0 10px rgba(18,168,255,.1);
  }
}

/* Floating Buttons Toggle */
.floating-toggle{
  position:fixed;
  right:0;
  top:50%;
  transform:translateY(-50%);
  width:32px;
  height:64px;
  background:linear-gradient(135deg,#12a8ff,#0d7fc7);
  border:none;
  border-radius:12px 0 0 12px;
  color:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:100000;
  box-shadow:-4px 0 16px rgba(18,168,255,.3);
  transition:all .3s ease;
}

.floating-toggle:hover{
  width:36px;
  box-shadow:-6px 0 24px rgba(18,168,255,.5);
}

.floating-toggle svg{
  transition:transform .3s ease;
}

.floating-toggle.active svg{
  transform:rotate(180deg);
}

/* Dubai Chocolate Verfügbarkeits-Badge */
.stock-badge{
  background:linear-gradient(135deg, rgba(81,207,102,.12), rgba(81,207,102,.05));
  border:1px solid rgba(81,207,102,.35);
  border-radius:var(--radius);
  padding:14px 18px;
  max-width:fit-content;
  box-shadow:0 8px 24px rgba(81,207,102,.15);
}

.stock-indicator{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:1rem;
  color:#fff;
}

.stock-dot{
  width:12px;
  height:12px;
  background:#51cf66;
  border-radius:50%;
  animation:stock-pulse 2s infinite;
  box-shadow:0 0 0 0 rgba(81,207,102,.7);
}

.stock-status{
  color:#51cf66;
  font-weight:600;
  font-size:.95rem;
}

.stock-subtext{
  margin:6px 0 0 22px;
  font-size:.85rem;
  color:var(--muted);
  opacity:.8;
}

@keyframes stock-pulse{
  0% {
    box-shadow:0 0 0 0 rgba(81,207,102,.7);
  }
  50% {
    box-shadow:0 0 0 8px rgba(81,207,102,0);
  }
  100% {
    box-shadow:0 0 0 0 rgba(81,207,102,0);
  }
}

/* Reveal Animation */
.reveal{opacity:0;transform:translateY(14px);transition:opacity .6s ease,transform .6s ease}
.reveal.in{opacity:1;transform:none}

/* Footer Navigation */
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

footer nav a {
  color: #fff;
  text-decoration: none;
  transition: color .2s ease;
}

footer nav a:hover {
  color: var(--brand-2);
  text-decoration: underline;
}

/* Responsive */
@media (max-width:768px) {
  .sample-fab{
    bottom:240px;
    right:12px;
    opacity:0.75;
  }
  .sample-fab:active{
    opacity:1;
  }
  .sample-fab .btn{
    padding:.55rem .75rem;
    font-size:0.7rem;
    white-space:nowrap;
    max-width:160px;
    overflow:hidden;
    text-overflow:ellipsis;
  }
  .scroll-top-btn{
    bottom:16px;
    left:16px;
    width:48px;
    height:48px;
  }

  .call-btn{
    bottom:152px;
    right:16px;
    width:52px;
    height:52px;
  }

  .call-tooltip{
    display:none;
  }

  .whatsapp-btn{
    bottom:88px;
    right:16px;
    width:52px;
    height:52px;
  }

  .whatsapp-tooltip{
    display:none;
  }

  .floating-toggle{
    width:28px;
    height:56px;
    border-radius:10px 0 0 10px;
  }

  .floating-toggle:hover{
    width:30px;
  }

  .floating-toggle svg{
    width:18px;
    height:18px;
  }

  /* Timeline Mobile */
  .timeline::before{
    left:20px;
  }

  .timeline-item{
    grid-template-columns:auto 1fr;
    gap:20px;
  }

  .timeline-item::before{
    grid-column:2 !important;
    text-align:left !important;
    font-size:1rem;
    margin-bottom:8px;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content{
    grid-column:2;
    text-align:left;
  }

  .timeline-dot{
    grid-column:1;
  }

  .flip-card:hover .flip-card-inner{
    transform:none;
  }

  .flip-card{
    cursor:default;
  }
}

/* Legal Modal Panel */
.legal-panel {
  max-width: 900px !important;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 18px !important;
}

.legal-panel .legal-content {
  padding: 20px;
}

.legal-content h2 {
  font-size: 2.2rem;
  margin-bottom: 28px;
  color: #fff;
  font-weight: 700;
}

.legal-content h3 {
  font-size: 1.4rem;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #12a8ff;
  font-weight: 600;
}

.legal-content h4 {
  font-size: 1.15rem;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 600;
}

.legal-content p {
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--muted);
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 16px;
  line-height: 1.8;
  color: var(--muted);
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: #12a8ff;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #3db8ff;
}

.legal-content strong {
  color: #fff;
  font-weight: 600;
}

/* Legal Modal Responsive */
@media (max-width:768px) {
  .legal-panel {
    max-height: 90vh;
    border-radius: 18px 18px 0 0 !important;
  }

  .legal-panel .legal-content {
    padding: 12px;
  }

  .legal-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .legal-content h3 {
    font-size: 1.2rem;
    margin-top: 24px;
  }

  .legal-content h4 {
    font-size: 1.05rem;
    margin-top: 20px;
  }
}

/* Stats Section - Crypto Chart Style */
.stats-section {
  background: linear-gradient(180deg, rgba(7,16,26,0.6) 0%, rgba(13,29,43,0.8) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.stat-card {
  background: linear-gradient(145deg, rgba(13, 29, 43, 0.95), rgba(7, 16, 26, 0.95));
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.2);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-highlight {
  border-color: rgba(212, 175, 55, 0.4);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.08), rgba(13, 29, 43, 0.95));
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #d4af37;
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
  font-feature-settings: 'tnum';
  font-variant-numeric: tabular-nums;
}

.stat-plus, .stat-unit {
  font-size: 2rem;
  color: rgba(212, 175, 55, 0.8);
  margin-left: 4px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: 500;
}

/* Crypto Chart Styling */
.stat-chart {
  margin-top: 20px;
  height: 60px;
  position: relative;
}

.mini-chart {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-line {
  fill: none;
  stroke: #d4af37;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawLine 2s ease-out forwards;
}

.chart-line-glow {
  fill: none;
  stroke: #d4af37;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.3;
  filter: blur(4px);
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawLine 2s ease-out forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.stat-card:hover .chart-line {
  stroke: #ffd700;
  animation: pulse 2s ease-in-out infinite;
}

.stat-card:hover .chart-line-glow {
  opacity: 0.6;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Achievement Banner */
.achievement-banner {
  margin-top: 60px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.achievement-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.05), transparent);
  animation: shine 3s linear infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.achievement-icon {
  font-size: 4rem;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
  animation: rotate-trophy 4s ease-in-out infinite;
}

@keyframes rotate-trophy {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

.achievement-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.achievement-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 8px;
}

.achievement-content p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Stats Responsive */
@media (max-width: 768px) {
  .stats-section {
    padding: 50px 0;
  }

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

  .stat-number {
    font-size: 2.8rem;
  }

  .stat-icon {
    font-size: 2.5rem;
  }

  .achievement-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .achievement-content h3 {
    font-size: 1.4rem;
  }
}

/* Micro-Animations */
.btn, button:not(.close-x):not(.marquee-nav) {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn::before, button:not(.close-x):not(.marquee-nav)::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before, button:not(.close-x):not(.marquee-nav):hover::before {
  width: 300px;
  height: 300px;
}

/* Icon bounce on hover */
.stat-icon, .achievement-icon {
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.stat-card:hover .stat-icon {
  transform: scale(1.2) rotateZ(5deg);
}

.achievement-banner:hover .achievement-icon {
  transform: scale(1.1);
  animation: none;
}

/* Link underline animation */
a:not(.btn):not(.logo):not([class*="tile"]):not([class*="card"]) {
  position: relative;
  text-decoration: none;
}

a:not(.btn):not(.logo):not([class*="tile"]):not([class*="card"])::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.3s ease;
}

a:not(.btn):not(.logo):not([class*="tile"]):not([class*="card"]):hover::after {
  width: 100%;
}

/* Badge pulse */
.badge {
  animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Card lift on hover */
.card:not(.project-card):not(.product-card):not(.stat-card):not(.person-premium-inner) {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:not(.project-card):not(.product-card):not(.stat-card):not(.person-premium-inner):hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Nav link smooth highlight */
.nav-links a {
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #12a8ff, #56d2ff);
  transition: width 0.3s ease;
}

.nav-links a:hover::before,
.nav-links a.active::before {
  width: 80%;
}

/* Smooth icon rotate */
.loading-spinner-modern::before,
.loading-spinner-modern::after {
  will-change: transform;
}

/* Input focus effect */
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #12a8ff;
  box-shadow: 0 0 0 3px rgba(18, 168, 255, 0.1);
  transform: scale(1.01);
  transition: all 0.2s ease;
}

/* Emoji pop */
@keyframes emojiPop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.stat-icon:hover {
  animation: emojiPop 0.5s ease;
}

/* ===================================
   Cookie Consent Banner (DSGVO)
   =================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(13, 29, 43, 0.98), rgba(7, 16, 26, 0.98));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  padding: 20px;
  animation: cookieSlideUp 0.5s ease-out;
}

@keyframes cookieSlideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 300px;
}

.cookie-banner-text h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #d4af37;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-banner-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0 0 8px 0;
}

.cookie-link {
  display: inline-block;
  font-size: 0.9rem;
  color: #12a8ff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-link:hover {
  color: #56d2ff;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.cookie-btn-primary {
  background: linear-gradient(135deg, #d4af37, #f0c040);
  color: #0a1625;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.cookie-btn-primary:hover {
  background: linear-gradient(135deg, #f0c040, #ffd700);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 16px;
  }

  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .cookie-banner-text {
    min-width: auto;
  }

  .cookie-banner-text h4 {
    font-size: 1.1rem;
  }

  .cookie-banner-text p {
    font-size: 0.9rem;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}

/* ===================================
   Animated Stats with Bar Charts
   =================================== */

.stats-bars-section {
  background: linear-gradient(135deg, rgba(7, 16, 26, 0.95), rgba(13, 29, 43, 0.95));
  position: relative;
  overflow: hidden;
}

.stats-bars-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.stats-bars-grid {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

.stat-bar-item {
  background: linear-gradient(135deg, rgba(18, 168, 255, 0.05), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.stat-bar-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.stat-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 16px;
}

.stat-bar-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.stat-bar-icon {
  font-size: 1.75rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.stat-bar-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.stat-bar-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #d4af37;
  white-space: nowrap;
  font-feature-settings: 'tnum';
  font-variant-numeric: tabular-nums;
}

.stat-bar-counter {
  display: inline-block;
}

.stat-bar-track {
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.stat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--bar-color, #12a8ff), var(--bar-color, #12a8ff));
  border-radius: 10px;
  width: 0;
  transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 0 12px var(--bar-color, #12a8ff);
}

.stat-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: barShimmer 2s linear infinite;
}

@keyframes barShimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Animate bars when in viewport */
.stats-bars-grid.in .stat-bar-fill {
  width: var(--bar-percent, 100%) !important;
}

@media (max-width: 768px) {
  .stat-bar-item {
    padding: 20px;
  }

  .stat-bar-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .stat-bar-value {
    font-size: 1.25rem;
    align-self: flex-end;
  }

  .stat-bar-label {
    font-size: 0.95rem;
  }

  .stat-bar-icon {
    font-size: 1.5rem;
  }
}

/* ===================================
   Trust Badges
   =================================== */

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(18, 168, 255, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: default;
}

.trust-badge:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(212, 175, 55, 0.15);
}

.trust-badge-icon {
  font-size: 1.5rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  flex-shrink: 0;
}

.trust-badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.trust-badge-text strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #d4af37;
  line-height: 1.2;
  white-space: nowrap;
}

.trust-badge-text span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.2;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .trust-badge {
    padding: 10px 12px;
  }

  .trust-badge-icon {
    font-size: 1.25rem;
  }

  .trust-badge-text strong {
    font-size: 0.85rem;
  }

  .trust-badge-text span {
    font-size: 0.7rem;
  }
}

/* ===================================
   Enhanced Smooth Scroll Animations
   =================================== */

/* Base reveal styles */
.reveal {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.in {
  opacity: 1;
}

/* Fade Up Animation */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

/* Fade Left Animation */
.reveal-fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-fade-left.in {
  opacity: 1;
  transform: translateX(0);
}

/* Fade Right Animation */
.reveal-fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-fade-right.in {
  opacity: 1;
  transform: translateX(0);
}

/* Scale In Animation */
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.in {
  opacity: 1;
  transform: scale(1);
}

/* Slide Up Animation (faster) */
.reveal-slide-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-slide-up.in {
  opacity: 1;
  transform: translateY(0);
}

/* Fade In Only */
.reveal-fade {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.reveal-fade.in {
  opacity: 1;
}

/* Staggered children animation */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.6s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 0.7s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 0.8s; }

.reveal-stagger.in > * {
  opacity: 1;
  transform: translateY(0);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-fade-up,
  .reveal-fade-left,
  .reveal-fade-right,
  .reveal-scale,
  .reveal-slide-up,
  .reveal-fade,
  .reveal-stagger > * {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ===================================
   Enhanced Product Hover Effects
   =================================== */

.product-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

.product-card:hover::before {
  left: 100%;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(212, 175, 55, 0.3);
}

.product-card .product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card .product-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.product-card .product-image img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.product-card:hover .product-image img {
  transform: scale(1.1) rotate(1deg);
}

.product-card .product-badge {
  transition: all 0.3s ease;
}

.product-card:hover .product-badge {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.product-card .product-info {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.product-card:hover .product-info h3 {
  color: #d4af37;
  transform: translateX(4px);
  transition: all 0.3s ease;
}

.product-card .product-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
}

.product-card:hover .product-cta {
  gap: 8px;
  color: #12a8ff;
  font-weight: 600;
}

/* Animated gradient border on hover */
.product-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(212, 175, 55, 0.3),
    rgba(18, 168, 255, 0.3),
    transparent
  );
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  pointer-events: none;
}

.product-card:hover::after {
  opacity: 1;
  animation: rotateBorder 3s linear infinite;
}

@keyframes rotateBorder {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

/* Enhanced meta tag animations */
.product-card .availability-tag {
  transition: all 0.3s ease;
}

.product-card:hover .availability-tag {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateX(4px);
}

.product-card:hover .availability-tag svg {
  animation: bounce 0.6s ease;
}

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

/* Shimmer effect on product image */
.product-card .product-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.8s ease;
}

.product-card:hover .product-image::after {
  left: 100%;
}

/* Stagger animation for product grid */
.available-products-grid .product-card:nth-child(1) {
  transition-delay: 0.05s;
}

.available-products-grid .product-card:nth-child(2) {
  transition-delay: 0.1s;
}

.available-products-grid .product-card:nth-child(3) {
  transition-delay: 0.15s;
}

.available-products-grid .product-card:nth-child(4) {
  transition-delay: 0.2s;
}

.available-products-grid .product-card:nth-child(5) {
  transition-delay: 0.25s;
}

.available-products-grid .product-card:nth-child(6) {
  transition-delay: 0.3s;
}

/* Mobile: Reduce hover effects */
@media (max-width: 768px) {
  .product-card:hover {
    transform: translateY(-4px);
  }

  .product-card:hover .product-image img {
    transform: scale(1.05);
  }
}
