/* ============================================
   KENZO Reifen — style.css
   Bold & Energisch Dark Theme
   Purple / Red / Orange Palette
   GSAP + ScrollTrigger Animations
   ============================================ */

:root {
  /* Brand Colors */
  --purple: #642e8e;
  --deep-purple: #433096;
  --red: #ed1e28;
  --orange: #f86c20;

  /* Extended Palette */
  --purple-light: #8a4fbf;
  --purple-glow: rgba(100, 46, 142, 0.4);
  --red-glow: rgba(237, 30, 40, 0.35);
  --orange-glow: rgba(248, 108, 32, 0.35);
  --gradient-main: linear-gradient(135deg, #642e8e 0%, #433096 40%, #ed1e28 80%, #f86c20 100%);
  --gradient-purple: linear-gradient(135deg, #433096, #642e8e);
  --gradient-fire: linear-gradient(135deg, #ed1e28, #f86c20);
  --gradient-hero: linear-gradient(160deg, #0a0a1a 0%, #1a0a2e 30%, #0f0f1f 70%, #0a0a1a 100%);

  /* Dark Theme */
  --dark: #0a0a0f;
  --dark-alt: #0f0f1a;
  --dark-card: #151520;
  --dark-card-hover: #1c1c2e;
  --dark-elevated: #1a1a2e;
  --white: #ffffff;
  --off-white: #f0f0f5;
  --text-light: #c0c0d0;
  --text-muted: #808095;
  --border: rgba(100, 46, 142, 0.15);
  --border-accent: rgba(248, 108, 32, 0.25);

  /* Effects */
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-purple: 0 8px 40px rgba(100, 46, 142, 0.25);
  --shadow-red: 0 8px 40px rgba(237, 30, 40, 0.2);
  --shadow-orange: 0 8px 40px rgba(248, 108, 32, 0.2);
  --glow-purple: 0 0 60px rgba(100, 46, 142, 0.3);
  --glow-red: 0 0 60px rgba(237, 30, 40, 0.25);

  /* Layout */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --max-width: 1200px;
  --header-height: 72px;
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

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

/* --- Gradient Text --- */
.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 10, 15, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  height: 60px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.logo .accent {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-main a {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.nav-main a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-fire);
  transition: width var(--transition);
}

.nav-main a:hover { color: var(--white); }
.nav-main a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gradient-fire) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: transform var(--transition), box-shadow var(--transition) !important;
  cursor: pointer;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .nav-main {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--dark-elevated);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--border);
  }

  .nav-main.open { right: 0; }

  .nav-main a { font-size: 1.1rem; }

  .nav-cta {
    text-align: center;
    display: block;
    padding: 14px 28px !important;
  }
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  padding: calc(var(--header-height) + 16px) 0 16px;
  background: var(--dark-alt);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb-list a { color: var(--text-muted); }
.breadcrumb-list a:hover { color: var(--orange); }
.breadcrumb-current { color: var(--orange); }
.breadcrumb-sep { opacity: 0.5; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-fire);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(248, 108, 32, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(248, 108, 32, 0.45);
  color: var(--white);
}

.btn-primary:active { transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-purple {
  background: var(--gradient-purple);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(100, 46, 142, 0.3);
}

.btn-purple:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(100, 46, 142, 0.45);
  color: var(--white);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 60px) 0 80px;
  background: var(--gradient-hero);
  overflow: hidden;
}

/* Animated gradient orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(100, 46, 142, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-orb 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(248, 108, 32, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-orb 10s ease-in-out infinite reverse;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Geometric accent shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}

.hero-shape-1 {
  top: 15%;
  right: 8%;
  width: 120px;
  height: 120px;
  border: 3px solid var(--purple);
  animation: spin-slow 20s linear infinite;
}

.hero-shape-2 {
  bottom: 20%;
  left: 5%;
  width: 80px;
  height: 80px;
  background: var(--red);
  animation: pulse-shape 4s ease-in-out infinite;
}

.hero-shape-3 {
  top: 40%;
  right: 25%;
  width: 40px;
  height: 40px;
  background: var(--orange);
  transform: rotate(45deg);
  animation: float-shape 6s ease-in-out infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse-shape {
  0%, 100% { transform: scale(1); opacity: 0.1; }
  50% { transform: scale(1.2); opacity: 0.2; }
}

@keyframes float-shape {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(-20px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(100, 46, 142, 0.2);
  border: 1px solid rgba(100, 46, 142, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--purple-light);
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

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

.hero-text h1 {
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Visual Card */
.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 440px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-main);
}

.hero-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-purple);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-purple);
}

.hero-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.stat-item { text-align: center; }

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { margin-top: 20px; }
  .hero-badge { margin-left: auto; margin-right: auto; }
}

@media (max-width: 480px) {
  .hero { padding-top: calc(var(--header-height) + 30px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}

/* ============================================
   SECTIONS (General)
   ============================================ */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(100, 46, 142, 0.15);
  border: 1px solid rgba(100, 46, 142, 0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--purple-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.section-desc {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-top: 16px;
  line-height: 1.7;
}

/* Section Divider */
.section-divider {
  width: 60px;
  height: 4px;
  background: var(--gradient-fire);
  border-radius: 2px;
  margin: 20px auto 0;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover {
  border-color: rgba(100, 46, 142, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-purple);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(100, 46, 142, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--purple-light);
  transition: color var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gradient-purple);
  box-shadow: var(--shadow-purple);
}

.service-card:hover .service-icon svg { color: var(--white); }

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   HOW IT WORKS (3 Steps)
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 16.5%;
  right: 16.5%;
  height: 2px;
  background: var(--gradient-main);
  opacity: 0.3;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--dark-card);
  border: 2px solid var(--purple);
  color: var(--purple-light);
  position: relative;
  z-index: 2;
  transition: all var(--transition);
}

.step-card:hover .step-number {
  background: var(--gradient-purple);
  border-color: var(--purple);
  color: var(--white);
  box-shadow: var(--glow-purple);
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .steps-grid::before { display: none; }
}

/* ============================================
   REGIONS / QUARTIERE GRID
   ============================================ */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.region-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  transition: all var(--transition);
  text-decoration: none;
  cursor: pointer;
}

.region-card:hover {
  border-color: var(--purple);
  transform: translateX(8px);
  box-shadow: var(--shadow-purple);
  background: var(--dark-card-hover);
}

.region-icon {
  width: 44px;
  height: 44px;
  background: rgba(237, 30, 40, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.region-icon svg {
  width: 22px;
  height: 22px;
  color: var(--red);
}

.region-name {
  font-weight: 600;
  font-size: 1rem;
}

.region-plz {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.region-arrow {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: all var(--transition);
}

.region-card:hover .region-arrow {
  color: var(--orange);
  transform: translateX(4px);
}

/* ============================================
   BENEFITS GRID
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.benefit-item:hover {
  border-color: rgba(248, 108, 32, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-orange);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: rgba(248, 108, 32, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
  color: var(--orange);
}

.benefit-item:hover .benefit-icon {
  background: var(--gradient-fire);
  box-shadow: var(--shadow-orange);
}

.benefit-item:hover .benefit-icon svg { color: var(--white); }

.benefit-item h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.benefit-item p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

.price-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
}

.price-card.featured {
  border-color: var(--purple);
  box-shadow: var(--shadow-purple);
}

.price-card.featured::before {
  content: 'Beliebt';
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--gradient-fire);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 0 0 8px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-purple);
}

.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.price-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  margin: 20px 0;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-amount span {
  font-size: 0.9rem;
  font-weight: 500;
  -webkit-text-fill-color: var(--text-muted);
}

.price-features {
  margin-bottom: 28px;
}

.price-features li {
  padding: 8px 0;
  color: var(--text-light);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: rgba(100, 46, 142, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23642e8e' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  text-align: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(100, 46, 142, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section h2 {
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cta-section > .container > p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.cta-phone {
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.cta-phone a {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: opacity var(--transition);
}

.cta-phone a:hover { opacity: 0.8; }

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover, .faq-item.open {
  border-color: rgba(100, 46, 142, 0.3);
}

.faq-question {
  width: 100%;
  background: var(--dark-card);
  border: none;
  padding: 20px 24px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--dark-card-hover); }

.faq-arrow {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--orange); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: 60px 0 30px;
  background: var(--dark-alt);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--orange); }

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

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

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

/* ============================================
   GSAP ANIMATION STATES
   ============================================ */

/* Initial hidden states for GSAP */
.gsap-fade-up {
  opacity: 0;
  transform: translateY(60px);
}

.gsap-fade-left {
  opacity: 0;
  transform: translateX(-60px);
}

.gsap-fade-right {
  opacity: 0;
  transform: translateX(60px);
}

.gsap-scale-up {
  opacity: 0;
  transform: scale(0.85);
}

.gsap-hero-text {
  opacity: 0;
  transform: translateY(40px);
}

/* Fallback for no-JS */
.no-js .gsap-fade-up,
.no-js .gsap-fade-left,
.no-js .gsap-fade-right,
.no-js .gsap-scale-up,
.no-js .gsap-hero-text {
  opacity: 1;
  transform: none;
}

/* Legacy animation support */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  color: white;
}

/* ============================================
   TRUST / SOCIAL PROOF BAR
   ============================================ */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 32px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

/* ============================================
   HERO SHOWCASE (Right Side Visual)
   ============================================ */
.hero-showcase {
  position: relative;
  width: 420px;
  height: 420px;
  margin: 0 auto;
}

/* Animated gradient ring */
.showcase-ring {
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(
    from 0deg,
    #642e8e,
    #433096,
    #ed1e28,
    #f86c20,
    #642e8e
  );
  animation: ring-rotate 6s linear infinite;
  box-shadow:
    0 0 60px rgba(100, 46, 142, 0.4),
    0 0 120px rgba(237, 30, 40, 0.15);
}

.showcase-ring-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%,
    #1a1028 0%,
    #0f0f1a 60%,
    #0a0a0f 100%
  );
}

@keyframes ring-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Pulsing outer glow */
.showcase-ring::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(100, 46, 142, 0.2);
  animation: showcase-pulse 3s ease-in-out infinite;
}

.showcase-ring::after {
  content: '';
  position: absolute;
  inset: -44px;
  border-radius: 50%;
  border: 1px solid rgba(248, 108, 32, 0.12);
  animation: showcase-pulse 3s ease-in-out infinite 1.5s;
}

@keyframes showcase-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.04); opacity: 1; }
}

/* Center van icon */
.showcase-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: var(--gradient-purple);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 40px rgba(100, 46, 142, 0.5),
    0 0 80px rgba(100, 46, 142, 0.2);
  z-index: 5;
  animation: center-float 4s ease-in-out infinite;
}

.showcase-center svg {
  width: 44px;
  height: 44px;
  color: white;
}

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

/* Floating service cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(21, 21, 32, 0.9);
  border: 1px solid rgba(100, 46, 142, 0.25);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: 6;
  white-space: nowrap;
}

.float-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-card-icon svg {
  width: 20px;
  height: 20px;
}

.float-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
}

.float-card-price {
  font-size: 0.78rem;
  color: var(--orange);
  font-weight: 600;
  margin-top: 2px;
}

.float-card-1 {
  top: 10px;
  right: -10px;
  animation: float-1 5s ease-in-out infinite;
}

.float-card-2 {
  bottom: 90px;
  left: -20px;
  animation: float-2 6s ease-in-out infinite 1s;
}

.float-card-3 {
  bottom: 0;
  right: 20px;
  animation: float-3 5.5s ease-in-out infinite 0.5s;
}

@keyframes float-1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

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

@keyframes float-3 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

/* Stats badges */
.showcase-stat {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(21, 21, 32, 0.9);
  border: 1px solid rgba(248, 108, 32, 0.2);
  border-radius: 50px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 6;
  white-space: nowrap;
}

.showcase-stat .stat-number {
  font-size: 1rem;
}

.showcase-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.showcase-stat-1 {
  top: 60px;
  left: -30px;
  animation: float-2 5s ease-in-out infinite 0.3s;
}

.showcase-stat-2 {
  bottom: 50px;
  right: -20px;
  animation: float-1 5.5s ease-in-out infinite 1.5s;
}

@media (max-width: 900px) {
  .hero-showcase {
    width: 320px;
    height: 320px;
  }
  .showcase-ring { inset: 20px; }
  .showcase-center { width: 70px; height: 70px; border-radius: 18px; }
  .showcase-center svg { width: 34px; height: 34px; }
  .float-card { padding: 10px 14px; }
  .float-card-icon { width: 34px; height: 34px; }
  .float-card-icon svg { width: 17px; height: 17px; }
  .float-card-title { font-size: 0.8rem; }
  .float-card-price { font-size: 0.72rem; }
  .float-card-1 { right: -5px; }
  .float-card-2 { left: -10px; }
  .showcase-stat-1 { left: -15px; }
  .showcase-stat-2 { right: -10px; }
}

@media (max-width: 480px) {
  .hero-showcase {
    width: 260px;
    height: 260px;
  }
  .showcase-ring { inset: 10px; }
  .showcase-center { width: 60px; height: 60px; border-radius: 16px; }
  .showcase-center svg { width: 28px; height: 28px; }
  .float-card-2 { display: none; }
  .showcase-stat { padding: 8px 14px; }
  .showcase-stat .stat-number { font-size: 0.9rem; }
  .showcase-stat-1 { left: 0; top: 40px; }
  .showcase-stat-2 { right: 0; }
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .regions-grid { grid-template-columns: 1fr; }
  .trust-bar { gap: 24px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .gsap-fade-up, .gsap-fade-left, .gsap-fade-right,
  .gsap-scale-up, .gsap-hero-text,
  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}
