/* ===========================
   FERRARI RACING STYLE - Premium Design
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Ferrari Racing Colors - Metallisch & Premium */
  --ferrari-red: #DC0000; /* Rosso Corsa */
  --ferrari-red-dark: #A00000;
  --ferrari-red-metallic: linear-gradient(135deg, #DC0000 0%, #FF0000 50%, #DC0000 100%);
  --gold: #D4AF37; /* Metallisches Gold */
  --gold-light: #FFD700; /* Glänzendes Gold */
  --carbon: #1A1A1A; /* Carbon Schwarz */
  --carbon-light: #2A2A2A;
  --silver: #C0C0C0; /* Metallisches Silber */
  --white: #FFFFFF;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  
  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: var(--white);
  background: #0a0a0a;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ===========================
   HERO SECTION - Ferrari Premium
   =========================== */
.hero {
  background: 
    linear-gradient(135deg, rgba(220, 0, 0, 0.98) 0%, rgba(160, 0, 0, 0.95) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="carbon" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="10" height="10" fill="%23000"/><rect x="10" y="10" width="10" height="10" fill="%23000"/><rect x="10" width="10" height="10" fill="%231a1a1a"/><rect y="10" width="10" height="10" fill="%231a1a1a"/></pattern></defs><rect width="100" height="100" fill="url(%23carbon)"/></svg>');
  color: var(--white);
  padding: var(--spacing-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 
    inset 0 2px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(212, 175, 55, 0.5),
    0 10px 60px rgba(220, 0, 0, 0.4);
  border-top: 4px solid var(--gold);
  border-bottom: 2px solid rgba(212, 175, 55, 0.5);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  pointer-events: none;
  animation: shimmerBg 8s infinite alternate;
}

@keyframes shimmerBg {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.1), 
    transparent
  );
  animation: shine 6s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  50%, 100% { left: 200%; }
}

/* Logo Container */
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--spacing-md);
  animation: fadeInDown 1s ease-out;
  position: relative;
  z-index: 2;
}

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

.hero-logo {
  width: 140px;
  height: 140px;
  filter: 
    drop-shadow(0 0 20px rgba(255, 215, 0, 0.6))
    drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
  transition: var(--transition);
}

.hero-logo:hover {
  transform: scale(1.08) rotate(5deg);
  filter: 
    drop-shadow(0 0 30px rgba(255, 215, 0, 0.8))
    drop-shadow(0 15px 40px rgba(0, 0, 0, 0.5));
}

.brand-name {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  background: linear-gradient(135deg, 
    #FFD700 0%, 
    #FFFFFF 20%, 
    #D4AF37 40%,
    #FFFFFF 60%,
    #FFD700 80%,
    #D4AF37 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -3px;
  text-shadow: 
    0 0 40px rgba(255, 215, 0, 0.6),
    0 0 80px rgba(212, 175, 55, 0.4),
    0 5px 20px rgba(0, 0, 0, 0.5);
  margin: 0;
  position: relative;
  animation: shimmer 4s infinite linear;
  filter: brightness(1.2);
}

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

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--carbon);
  padding: calc(var(--spacing-xs) + 2px) var(--spacing-md);
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: var(--spacing-md);
  animation: pulse 2.5s infinite;
  box-shadow: 
    0 5px 20px rgba(212, 175, 55, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5); }
  50% { transform: scale(1.05); box-shadow: 0 8px 30px rgba(255, 215, 0, 0.7); }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  margin-top: var(--spacing-md);
  text-shadow: 
    0 0 20px rgba(255, 215, 0, 0.4),
    0 4px 15px rgba(0, 0, 0, 0.7);
}

.highlight {
  color: var(--gold-light);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 4px;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  margin-bottom: var(--spacing-lg);
  opacity: 0.95;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.countdown-box {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  padding: calc(var(--spacing-md) + 4px);
  border-radius: 20px;
  margin: var(--spacing-lg) auto;
  max-width: 550px;
  box-shadow: 
    0 10px 40px rgba(212, 175, 55, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.5),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.countdown-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  font-size: 1.3rem;
  color: var(--carbon);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.countdown-header .icon {
  font-size: 2.2rem;
  animation: shake 1.2s infinite;
}

@keyframes shake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-12deg); }
  75% { transform: rotate(12deg); }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  font-size: 1rem;
  opacity: 0.95;
}

.hero-trust span {
  background: rgba(255, 255, 255, 0.1);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===========================
   BUTTONS - Ferrari Premium
   =========================== */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  color: var(--carbon);
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.2rem;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 
    0 8px 25px rgba(212, 175, 55, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 12px 40px rgba(255, 215, 0, 0.7),
    inset 0 2px 0 rgba(255, 255, 255, 0.6);
  filter: brightness(1.1);
}

/* ===========================
   PROBLEM SECTION - Dark Premium
   =========================== */
.problem-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
}

.problem-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.problem-section h2 {
  text-align: center;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  color: var(--white);
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.problem-card {
  background: linear-gradient(135deg, rgba(220, 0, 0, 0.1) 0%, rgba(26, 26, 26, 0.9) 100%);
  padding: calc(var(--spacing-md) + 4px);
  border-radius: 20px;
  box-shadow: 
    0 5px 20px rgba(220, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  text-align: center;
  border: 2px solid rgba(220, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 15px 40px rgba(220, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: var(--ferrari-red);
}

.problem-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: var(--spacing-sm);
  filter: drop-shadow(0 0 10px rgba(220, 0, 0, 0.5));
}

.problem-icon-svg {
  width: 80px;
  height: 80px;
  display: block;
  margin: 0 auto var(--spacing-sm);
  filter: drop-shadow(0 0 15px rgba(220, 0, 0, 0.6));
  transition: var(--transition);
}

.problem-card:hover .problem-icon-svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 25px rgba(220, 0, 0, 0.9));
}

.problem-card h3 {
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: var(--spacing-sm);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.problem-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.7;
}

/* Continue with similar premium styling for other sections... */
/* (Rest of the CSS continues with the same Ferrari premium theme) */

/* SOLUTION SECTION */
.solution-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

.solution-section h2 {
  text-align: center;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  color: var(--white);
  margin-bottom: var(--spacing-sm);
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.timeline {
  max-width: 900px;
  margin: var(--spacing-lg) auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--ferrari-red) 0%, var(--gold) 100%);
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(220, 0, 0, 0.5);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: calc(var(--spacing-lg) + var(--spacing-md));
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-number {
  min-width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--ferrari-red) 0%, var(--ferrari-red-dark) 100%);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  z-index: 2;
  box-shadow: 
    0 8px 30px rgba(220, 0, 0, 0.6),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
  border: 4px solid var(--gold);
}

.timeline-content {
  flex: 1;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(42, 42, 42, 0.8) 100%);
  padding: calc(var(--spacing-md) + 4px);
  border-radius: 20px;
  margin: 0 var(--spacing-md);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(10px);
}

.timeline-content h3 {
  color: var(--gold-light);
  font-size: 1.8rem;
  margin-bottom: var(--spacing-sm);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.timeline-content ul {
  list-style: none;
  padding: 0;
}

.timeline-content li {
  padding: var(--spacing-xs) 0;
  padding-left: 2rem;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.timeline-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: bold;
  font-size: 1.3rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-top: calc(var(--spacing-lg) + var(--spacing-md));
}

.feature-box {
  background: linear-gradient(135deg, rgba(220, 0, 0, 0.1) 0%, rgba(26, 26, 26, 0.9) 100%);
  padding: calc(var(--spacing-md) + 4px);
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid rgba(220, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.feature-box:hover {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(26, 26, 26, 0.95) 100%);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.feature-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: var(--spacing-sm);
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
}

.feature-box h4 {
  color: var(--gold-light);
  font-size: 1.4rem;
  margin-bottom: var(--spacing-xs);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.feature-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

/* TESTIMONIALS */
.testimonial-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, var(--ferrari-red) 0%, var(--ferrari-red-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="carbon" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="10" height="10" fill="%23000" opacity="0.2"/><rect x="10" y="10" width="10" height="10" fill="%23000" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23carbon)"/></svg>');
  opacity: 0.3;
}

.testimonial-section h2 {
  text-align: center;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 2;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-md);
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: rgba(0, 0, 0, 0.4);
  padding: calc(var(--spacing-md) + 4px);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(212, 175, 55, 0.4);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-light);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.testimonial-stars {
  color: var(--gold-light);
  margin-bottom: var(--spacing-sm);
  font-size: 1.4rem;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
  font-size: 1.05rem;
}

.testimonial-author strong {
  color: var(--gold-light);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* PRICING SECTION */
.pricing-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.pricing-section h2 {
  text-align: center;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  color: var(--white);
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.pricing-box {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.9) 100%);
  border-radius: 25px;
  padding: calc(var(--spacing-lg) + var(--spacing-md));
  box-shadow: 
    0 15px 60px rgba(220, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 3px solid var(--ferrari-red);
  backdrop-filter: blur(10px);
}

.pricing-header {
  text-align: center;
  margin-bottom: calc(var(--spacing-md) + var(--spacing-sm));
  padding-bottom: var(--spacing-md);
  border-bottom: 2px solid var(--gold);
}

.pricing-header h3 {
  font-size: 2.2rem;
  color: var(--gold-light);
  margin-bottom: var(--spacing-xs);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.pricing-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.pricing-details {
  background: rgba(0, 0, 0, 0.3);
  padding: calc(var(--spacing-md) + 4px);
  border-radius: 20px;
  margin-bottom: calc(var(--spacing-md) + var(--spacing-sm));
  border: 2px solid rgba(212, 175, 55, 0.2);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(var(--spacing-xs) + 4px) 0;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

.price-row.original span:first-child {
  color: rgba(255, 255, 255, 0.6);
}

.price-old {
  text-decoration: line-through;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

.price-row.total-with-vat {
  background: rgba(212, 175, 55, 0.15);
  padding: var(--spacing-sm);
  margin: var(--spacing-sm) 0;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.price-total {
  color: var(--gold-light);
  font-size: 2rem;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.price-row.discount {
  color: var(--gold-light);
  font-weight: 700;
}

.price-discount {
  color: var(--gold-light);
  font-weight: 900;
  font-size: 1.4rem;
}

.price-row.final {
  border-top: 3px solid var(--ferrari-red);
  padding-top: var(--spacing-sm);
  margin-top: var(--spacing-sm);
  font-weight: 900;
  font-size: 1.6rem;
}

.price-final {
  color: var(--ferrari-red);
  font-size: 2.8rem;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(220, 0, 0, 0.6);
}

.price-note {
  text-align: left;
  margin-top: var(--spacing-md);
  padding: calc(var(--spacing-md) + 4px);
  background: rgba(212, 175, 55, 0.1);
  border-radius: 15px;
  border-left: 4px solid var(--gold);
}

.price-note p {
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
  color: var(--gold-light);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.price-note ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-note li {
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.7;
}

.pricing-includes {
  margin-bottom: calc(var(--spacing-md) + var(--spacing-sm));
}

.pricing-includes h4 {
  color: var(--gold-light);
  margin-bottom: var(--spacing-md);
  font-size: 1.5rem;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.include-category {
  background: rgba(0, 0, 0, 0.3);
  padding: calc(var(--spacing-md) + 4px);
  border-radius: 15px;
  border-left: 4px solid var(--ferrari-red);
  transition: var(--transition);
  border: 2px solid rgba(220, 0, 0, 0.3);
}

.include-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(220, 0, 0, 0.4);
  border-color: var(--gold);
  border-left-color: var(--gold);
}

.category-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 2px solid var(--ferrari-red);
}

.category-icon {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
}

.category-header h5 {
  color: var(--gold-light);
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.include-category ul {
  padding-left: 0;
  list-style: none;
}

.include-category li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* TEAM SECTION - Rennleiter Ferrari Style */
.team-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, rgba(220, 0, 0, 0.95) 0%, rgba(160, 0, 0, 0.9) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: '🏁';
  position: absolute;
  font-size: 25rem;
  opacity: 0.05;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
}

.team-section h2 {
  text-align: center;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  margin-bottom: var(--spacing-sm);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.section-subtitle {
  position: relative;
  z-index: 2;
}

.rennleiter-card {
  max-width: 1100px;
  margin: var(--spacing-lg) auto;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 25px;
  overflow: hidden;
  backdrop-filter: blur(15px);
  border: 3px solid var(--gold);
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: calc(var(--spacing-lg) + var(--spacing-sm));
  transition: var(--transition);
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.rennleiter-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 80px rgba(212, 175, 55, 0.4);
  border-color: var(--gold-light);
}

.rennleiter-image {
  position: relative;
  padding: calc(var(--spacing-md) + var(--spacing-sm));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(42, 42, 42, 0.8) 100%);
}

.rennleiter-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  object-fit: cover;
  max-height: 480px;
  border: 3px solid var(--gold);
}

.rennleiter-badge {
  position: absolute;
  top: calc(var(--spacing-md) + 4px);
  right: calc(var(--spacing-md) + 4px);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--carbon);
  padding: calc(var(--spacing-xs) + 2px) var(--spacing-md);
  border-radius: 50px;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
  animation: pulse 2.5s infinite;
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rennleiter-content {
  padding: calc(var(--spacing-lg) + var(--spacing-sm));
  padding-left: 0;
}

.rennleiter-content h3 {
  font-size: 2.8rem;
  color: var(--gold-light);
  margin-bottom: var(--spacing-xs);
  font-weight: 900;
  text-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}

.rennleiter-title {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: calc(var(--spacing-md) + var(--spacing-sm));
  font-weight: 700;
}

.rennleiter-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-bottom: calc(var(--spacing-lg) + var(--spacing-sm));
}

.stat-box {
  background: rgba(212, 175, 55, 0.15);
  border: 3px solid var(--gold);
  border-radius: 18px;
  padding: calc(var(--spacing-md) + 4px);
  text-align: center;
  transition: var(--transition);
}

.stat-box:hover {
  background: rgba(212, 175, 55, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  border-color: var(--gold-light);
}

.stat-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: var(--spacing-xs);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.stat-label {
  display: block;
  font-size: 1rem;
  opacity: 0.95;
  font-weight: 600;
}

.rennleiter-bio {
  margin-bottom: calc(var(--spacing-lg) + var(--spacing-sm));
}

.rennleiter-bio p {
  line-height: 1.9;
  margin-bottom: var(--spacing-md);
  font-size: 1.05rem;
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin: var(--spacing-md) 0;
}

.expertise-list li {
  padding: calc(var(--spacing-sm) + 2px) 0;
  padding-left: 2.5rem;
  position: relative;
  line-height: 1.7;
  font-size: 1.05rem;
}

.expertise-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: 900;
  font-size: 1.4rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.rennleiter-quote {
  background: rgba(0, 0, 0, 0.3);
  border-left: 5px solid var(--gold);
  padding: calc(var(--spacing-md) + 4px);
  border-radius: 15px;
  font-style: italic;
  margin: calc(var(--spacing-md) + var(--spacing-sm)) 0;
  line-height: 1.8;
  font-size: 1.05rem;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-left-width: 5px;
}

.rennleiter-cta {
  text-align: center;
  margin-top: calc(var(--spacing-lg) + var(--spacing-sm));
}

.team-trust {
  display: flex;
  justify-content: center;
  gap: calc(var(--spacing-lg) + var(--spacing-sm));
  flex-wrap: wrap;
  margin-top: calc(var(--spacing-lg) + var(--spacing-sm));
  padding-top: calc(var(--spacing-lg) + var(--spacing-sm));
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  position: relative;
  z-index: 2;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 1rem;
  opacity: 0.95;
  padding: var(--spacing-sm) var(--spacing-md);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.trust-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.4));
}

/* FAQ SECTION */
.faq-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

.faq-section h2 {
  text-align: center;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  color: var(--white);
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-md);
  max-width: 1100px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, rgba(220, 0, 0, 0.1) 0%, rgba(26, 26, 26, 0.9) 100%);
  padding: calc(var(--spacing-md) + 4px);
  border-radius: 20px;
  border-left: 5px solid var(--ferrari-red);
  border: 2px solid rgba(220, 0, 0, 0.3);
  border-left-width: 5px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.faq-item:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  border-left-color: var(--gold);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.faq-item h4 {
  color: var(--gold-light);
  margin-bottom: var(--spacing-sm);
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.faq-item p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 1rem;
}

/* APPLICATION FORM - Ferrari Premium */
.application-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, var(--ferrari-red) 0%, var(--ferrari-red-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.application-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="carbon" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="10" height="10" fill="%23000" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23carbon)"/></svg>');
  opacity: 0.3;
}

.form-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 2;
}

.form-header h2 {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  margin-bottom: var(--spacing-sm);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.form-header p {
  font-size: 1.2rem;
  opacity: 0.95;
}

.form-container {
  max-width: 750px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.9) 100%);
  padding: calc(var(--spacing-lg) + var(--spacing-md));
  border-radius: 25px;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.5);
  border: 3px solid var(--gold);
  backdrop-filter: blur(15px);
  position: relative;
  z-index: 2;
}

.application-form {
  color: var(--white);
}

.form-group {
  margin-bottom: calc(var(--spacing-md) + 4px);
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  color: var(--gold-light);
  font-size: 1.05rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  font-size: 1.05rem;
  transition: var(--transition);
  font-family: inherit;
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-light);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
  background: rgba(0, 0, 0, 0.4);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.form-group.checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-xs);
}

.form-group.checkbox input {
  width: auto;
  margin-top: 4px;
}

.form-group.checkbox span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.form-message {
  margin-top: var(--spacing-md);
  padding: calc(var(--spacing-md) + 4px);
  border-radius: 15px;
  text-align: center;
  font-weight: 700;
  display: none;
  font-size: 1.05rem;
}

.form-message.success {
  background: rgba(6, 214, 160, 0.2);
  color: var(--gold-light);
  border: 2px solid var(--gold);
  display: block;
}

.form-message.error {
  background: rgba(220, 0, 0, 0.2);
  color: #ffcccc;
  border: 2px solid var(--ferrari-red);
  display: block;
}

.form-trust {
  margin-top: calc(var(--spacing-md) + var(--spacing-sm));
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.form-trust p {
  margin: var(--spacing-xs) 0;
}

/* FOOTER - Premium Dark */
/* ===========================
   FOOTER - F1 Command Center / Telemetry Style
   =========================== */
.footer {
  position: relative;
  background: #000000;
  color: var(--white);
  padding: 0;
  border-top: 3px solid var(--ferrari-red);
  overflow: hidden;
  font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
}

/* Digital Grid Pattern Background */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(220, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.6;
  pointer-events: none;
}

/* Scanline Effect */
.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    transparent 50%,
    rgba(0, 0, 0, 0.3) 50%
  );
  background-size: 100% 4px;
  pointer-events: none;
  animation: scanline 8s linear infinite;
  opacity: 0.1;
}

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

/* Command Center Header Bar */
.footer-top {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(220, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
  border-bottom: 2px solid var(--ferrari-red);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(220, 0, 0, 0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(220, 0, 0, 0.2);
  padding: 2px;
}

/* Monitor Panel Style */
.footer-column {
  position: relative;
  background: rgba(0, 0, 0, 0.9);
  border: 2px solid rgba(220, 0, 0, 0.4);
  padding: 1.5rem;
  text-align: left;
  box-shadow: 
    inset 0 0 20px rgba(220, 0, 0, 0.1),
    0 0 10px rgba(220, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.footer-column::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--ferrari-red) 50%, 
    transparent 100%
  );
  animation: pulse-line 2s ease-in-out infinite;
}

@keyframes pulse-line {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.footer-column:hover {
  border-color: var(--gold);
  box-shadow: 
    inset 0 0 30px rgba(212, 175, 55, 0.15),
    0 0 20px rgba(212, 175, 55, 0.3);
}

/* Footer Brand - Command Center Style */
.footer-brand {
  grid-column: 1 / -1;
  background: rgba(0, 0, 0, 0.95) !important;
  border: 2px solid var(--ferrari-red) !important;
  box-shadow: 
    inset 0 0 30px rgba(220, 0, 0, 0.2),
    0 0 20px rgba(220, 0, 0, 0.4) !important;
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(220, 0, 0, 0.3);
}

.footer-logo-img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 0 15px rgba(220, 0, 0, 0.6));
  animation: logo-pulse 3s ease-in-out infinite;
}

@keyframes logo-pulse {
  0%, 100% { 
    filter: drop-shadow(0 0 15px rgba(220, 0, 0, 0.6));
    transform: scale(1);
  }
  50% { 
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.8));
    transform: scale(1.05);
  }
}

.footer-brand-name {
  font-family: 'Courier New', monospace;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--ferrari-red);
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 
    0 0 10px rgba(220, 0, 0, 0.8),
    0 0 20px rgba(220, 0, 0, 0.5),
    0 0 30px rgba(220, 0, 0, 0.3);
  animation: text-flicker 5s infinite;
}

@keyframes text-flicker {
  0%, 100% { opacity: 1; }
  2% { opacity: 0.9; }
  4% { opacity: 1; }
  50% { opacity: 1; }
  52% { opacity: 0.95; }
  54% { opacity: 1; }
}

.footer-brand-tagline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.racing-flag {
  font-size: 1.2rem;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 49%, 100% { opacity: 1; }
  50%, 99% { opacity: 0.3; }
}

.footer-slogan {
  font-family: 'Courier New', monospace;
  color: var(--gold-light);
  font-size: 0.85rem;
  line-height: 1.6;
  font-style: italic;
  text-transform: none;
  letter-spacing: 1px;
  padding: 0.75rem 1rem;
  background: rgba(220, 0, 0, 0.1);
  border-left: 3px solid var(--ferrari-red);
  box-shadow: inset 0 0 10px rgba(220, 0, 0, 0.2);
}

/* Footer Heading - Terminal Style */
.footer-heading {
  font-family: 'Courier New', monospace;
  color: var(--ferrari-red);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(220, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-shadow: 0 0 10px rgba(220, 0, 0, 0.6);
}

.footer-heading::before {
  content: '▶';
  color: var(--gold);
  font-size: 0.8rem;
  animation: blink 1s ease-in-out infinite;
}

.footer-heading i {
  color: var(--gold);
  font-size: 1rem;
}

/* Footer List - Digital Display Style */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Courier New', monospace;
}

.footer-list li {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-left: 2px solid transparent;
  padding-left: 0.5rem;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.footer-list li:hover {
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.05);
  border-left-color: var(--gold);
  transform: translateX(3px);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.footer-list li::before {
  content: '◆';
  color: var(--ferrari-red);
  font-size: 0.6rem;
  opacity: 0.6;
}

.footer-list li i {
  color: var(--gold);
  width: 18px;
  text-align: center;
  font-size: 0.9rem;
}

.footer-list a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-list a:hover {
  color: var(--gold-light);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

/* Footer Badge - Digital Chip Style */
.footer-badge {
  margin-top: 1.5rem;
  padding: 0.75rem 1rem;
  background: rgba(220, 0, 0, 0.15);
  border: 2px solid var(--ferrari-red);
  border-radius: 0;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold-light);
  font-family: 'Courier New', monospace;
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 
    inset 0 0 15px rgba(220, 0, 0, 0.3),
    0 0 15px rgba(220, 0, 0, 0.4);
  animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: inset 0 0 15px rgba(220, 0, 0, 0.3), 0 0 15px rgba(220, 0, 0, 0.4); }
  50% { box-shadow: inset 0 0 20px rgba(220, 0, 0, 0.5), 0 0 25px rgba(220, 0, 0, 0.6); }
}

.footer-badge i {
  color: var(--gold);
  font-size: 1rem;
  animation: rotate-badge 4s linear infinite;
}

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

/* Footer Divider - Data Stream */
.footer-divider {
  position: relative;
  height: 2px;
  background: rgba(220, 0, 0, 0.3);
  margin: 0;
  overflow: hidden;
}

.footer-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--gold) 30%, 
    var(--ferrari-red) 50%, 
    var(--gold) 70%, 
    transparent 100%
  );
  animation: data-stream 3s linear infinite;
}

@keyframes data-stream {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Footer Bottom - Status Bar */
.footer-bottom {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.95);
  border-top: 2px solid var(--ferrari-red);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  box-shadow: 0 -4px 20px rgba(220, 0, 0, 0.3);
}

.footer-copyright {
  text-align: left;
  flex: 1;
  font-family: 'Courier New', monospace;
}

.copyright-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.copyright-text::before {
  content: '© ';
  color: var(--ferrari-red);
  font-weight: 900;
}

.copyright-text strong {
  color: var(--gold-light);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.copyright-subtext {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  letter-spacing: 0.5px;
}

/* Footer Social - Radar/Sensor Style */
.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid var(--ferrari-red);
  clip-path: polygon(
    10px 0, 
    calc(100% - 10px) 0, 
    100% 10px, 
    100% calc(100% - 10px), 
    calc(100% - 10px) 100%, 
    10px 100%, 
    0 calc(100% - 10px), 
    0 10px
  );
  color: var(--gold);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  box-shadow: 
    inset 0 0 10px rgba(220, 0, 0, 0.3),
    0 0 10px rgba(220, 0, 0, 0.4);
}

.social-link::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--ferrari-red);
  clip-path: polygon(
    10px 0, 
    calc(100% - 10px) 0, 
    100% 10px, 
    100% calc(100% - 10px), 
    calc(100% - 10px) 100%, 
    10px 100%, 
    0 calc(100% - 10px), 
    0 10px
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.social-link:hover {
  color: var(--white);
  transform: scale(1.15);
  box-shadow: 
    inset 0 0 20px rgba(220, 0, 0, 0.5),
    0 0 25px rgba(220, 0, 0, 0.8),
    0 0 35px rgba(212, 175, 55, 0.5);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.social-link:hover::before {
  opacity: 0.3;
}

/* Digital Status Indicator Bar */
.footer-racing-line {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  display: flex;
  gap: 2px;
  background: #000;
  overflow: hidden;
}

.racing-stripe {
  flex: 1;
  background: rgba(220, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.racing-stripe::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--ferrari-red) 50%, 
    var(--gold) 100%
  );
  animation: status-scan 2s linear infinite;
}

.racing-stripe:nth-child(2)::before {
  animation-delay: 0.66s;
}

.racing-stripe:nth-child(3)::before {
  animation-delay: 1.33s;
}

@keyframes status-scan {
  0% { left: -100%; }
  100% { left: 150%; }
}

/* Responsive Command Center */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
  
  .footer-logo-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-brand-tagline {
    justify-content: center;
  }
  
  .footer-slogan {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-column {
    text-align: center;
  }
  
  .footer-heading {
    justify-content: center;
  }
  
  .footer-heading::before {
    display: none;
  }
  
  .footer-list li {
    justify-content: center;
  }
  
  .footer-list li::before {
    display: none;
  }
  
  .footer-badge {
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  .footer-copyright {
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }
  
  .timeline::before {
    left: 25px;
  }
  
  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 110px;
  }
  
  .timeline-number {
    position: absolute;
    left: 0;
    min-width: 90px;
    height: 90px;
    font-size: 1.4rem;
  }
  
  .timeline-content {
    margin: var(--spacing-md) 0 0 0;
  }
  
  .hero-trust {
    flex-direction: column;
    gap: var(--spacing-xs);
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .rennleiter-card {
    grid-template-columns: 1fr;
  }
  
  .rennleiter-image {
    padding: var(--spacing-md);
  }
  
  .rennleiter-content {
    padding: var(--spacing-md);
  }
  
  .rennleiter-stats {
    grid-template-columns: 1fr;
  }
  
  .team-trust {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .hero {
    padding: calc(var(--spacing-lg) + var(--spacing-sm)) 0;
  }
  
  /* Optimized Hero for Mobile */
  .hero-logo {
    width: 100px;
    height: 100px;
  }
  
  .brand-name {
    font-size: clamp(2rem, 8vw, 3rem);
    letter-spacing: -1px;
  }
  
  .hero-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-top: var(--spacing-sm);
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: var(--spacing-md);
  }
  
  .hero-badge {
    font-size: 0.9rem;
    padding: var(--spacing-xs) var(--spacing-sm);
  }
  
  .countdown-box {
    padding: var(--spacing-md);
    max-width: 100%;
  }
  
  .countdown-header {
    font-size: 1.1rem;
    flex-direction: column;
    gap: var(--spacing-xs);
  }
  
  .countdown-header .icon {
    font-size: 1.8rem;
  }
  
  /* CTA Buttons Mobile-Optimized */
  .cta-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1.1rem 2rem;
    font-size: 1.05rem;
    margin-bottom: var(--spacing-sm);
  }
  
  /* Hero Trust Elements Stacked */
  .hero-trust span {
    font-size: 0.9rem;
    padding: calc(var(--spacing-xs) + 2px) var(--spacing-sm);
  }
  
  /* Includes Grid */
  .includes-grid {
    grid-template-columns: 1fr;
  }
  
  /* Problem/Feature Cards Mobile */
  .problem-grid,
  .feature-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
  
  .problem-card,
  .feature-box {
    padding: var(--spacing-md);
  }
  
  /* Pricing Mobile */
  .pricing-box {
    padding: var(--spacing-md);
  }
  
  .price-total,
  .price-final {
    font-size: 2rem;
  }
  
  /* Testimonials Mobile */
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
  
  /* Form Mobile */
  .form-container {
    padding: var(--spacing-md);
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.9rem;
    font-size: 1rem;
  }
}
