/* ================================
   ULTRA PREMIUM PRIJZEN CSS
   Complete Redesign - Consistent met Homepage & Diensten
   ================================ */

:root {
  --primary: #e63946;
  --primary-dark: #c42532;
  --primary-light: #ff4d5a;
  --accent: #1d3557;
  --accent-light: #457b9d;
  --dark: #0a0e27;
  --light: #f8f9fa;
  --white: #ffffff;
  --chrome: #e8f0f7;
  --chrome-shine: #f5f9fc;
  --muted: #6b7280;
  --gradient-primary: linear-gradient(135deg, #e63946 0%, #c42532 100%);
  --gradient-dark: linear-gradient(135deg, #1d3557 0%, #0a0e27 100%);
  --gradient-chrome: linear-gradient(135deg, #ffffff 0%, #e8f0f7 50%, #ffffff 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 40px rgba(230, 57, 70, 0.3);
  --shadow-glow-strong: 0 0 60px rgba(230, 57, 70, 0.5);
}

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

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

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== HERO SECTION - Same as Homepage ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
  width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-car.jpg') center/cover no-repeat;
  filter: brightness(0.65) contrast(1.15) saturate(1.1);
  z-index: 0;
  transform: translateZ(0);
  will-change: transform;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(230, 57, 70, 0.15), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(232, 240, 247, 0.08), transparent 45%),
    linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.5) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 100vh;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: heroFadeIn 1s ease-out forwards;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-eyebrow .eyebrow-icon {
  font-size: 1rem;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -3px;
}

.hero h1 .word {
  display: inline-block;
  opacity: 0;
  animation: wordFadeIn 0.8s ease-out forwards;
}

.hero h1 .word:nth-child(1) { animation-delay: 0.2s; }
.hero h1 .word:nth-child(2) { animation-delay: 0.3s; }
.hero h1 .word:nth-child(3) { animation-delay: 0.4s; }

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

.hero h1 .highlight {
  background: linear-gradient(135deg, #ffffff 0%, #e8f0f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(232, 240, 247, 0.5);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

.cta-button.primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.cta-button.primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(230, 57, 70, 0.5);
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 600;
}

.trust-icon {
  color: var(--primary);
  font-weight: 900;
  font-size: 1.1rem;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stats {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.stat-badge {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(30px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 28px;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 220px;
  max-width: 280px;
}

.stat-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.15), rgba(29, 53, 87, 0.1));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.stat-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 1;
}

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

.stat-badge:hover::after {
  transform: scaleX(1);
}

.stat-badge:hover {
  transform: translateY(-8px) scale(1.03);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.1));
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 
    0 16px 48px rgba(230, 57, 70, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

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

.stat-icon {
  font-size: 3.5rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 2;
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: transform 0.4s ease;
}

.stat-badge:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
}

.stat-badge .number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white) !important;
  line-height: 1;
  text-shadow: 
    0 2px 12px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(230, 57, 70, 0.3);
  position: relative;
  z-index: 2;
  letter-spacing: -2px;
  font-family: 'Urbanist', sans-serif;
  background: linear-gradient(135deg, #ffffff 0%, #e8f0f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.stat-badge .label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 1) !important;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Urbanist', sans-serif;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 10;
  animation: bounce 2s infinite;
}

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

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: rgba(255, 255, 255, 0.4);
  position: relative;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  transform: translateX(-50%) rotate(45deg);
}

@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 8rem 1rem 4rem;
    min-height: auto;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .stat-badge {
    flex: 1;
    min-width: 180px;
    max-width: 100%;
    padding: 1.75rem 2rem;
  }
  
  .stat-icon {
    font-size: 3rem;
  }
  
  .stat-badge .number {
    font-size: 3rem;
  }
  
  .stat-badge .label {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .hero-stats {
    flex-direction: column;
    gap: 1.25rem;
  }
  
  .stat-badge {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
}

/* ===== DIENSTEN SECTION - Premium ===== */
.diensten {
  background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
  position: relative;
  padding: 8rem 0 6rem;
  min-height: 400px;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.3), transparent);
  margin: 0 auto 4rem;
  max-width: 1400px;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  padding: 0 1rem;
}

.section-label {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--white) !important;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--accent);
  margin: 0 0 1rem;
  letter-spacing: -2px;
}

.section-description {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

/* ===== PRICING TOOLS ===== */
.pricing-tools {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.search-wrapper,
.sort-wrapper {
  position: relative;
  flex: 1;
  min-width: 250px;
}

.search-wrapper svg,
.sort-wrapper svg {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  z-index: 1;
  pointer-events: none;
}

.search-wrapper input,
.sort-wrapper select {
  width: 100%;
  padding: 1rem 1rem 1rem 3.5rem;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(230, 57, 70, 0.1);
  border-radius: 16px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--accent);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.search-wrapper input:focus,
.sort-wrapper select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1), var(--shadow-md);
  background: var(--white);
}

.search-wrapper input::placeholder {
  color: var(--muted);
}

.sort-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%231d3557' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 12px 8px;
  padding-right: 3.5rem;
}

.sort-wrapper select option {
  background: var(--white);
  color: var(--accent);
  padding: 0.75rem;
}

/* ===== PRICING TABLE ===== */
.table-wrap {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(230, 57, 70, 0.08);
  overflow-x: auto;
  margin-bottom: 2rem;
}

.prices-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.prices-table thead {
  background: var(--gradient-dark);
  border-radius: 16px 16px 0 0;
}

.prices-table th {
  padding: 1.5rem 1.75rem;
  text-align: left;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
}

.prices-table tbody tr {
  border-bottom: 1px solid rgba(226, 232, 240, 1);
  transition: all 0.3s ease;
}

.prices-table tbody tr:last-child {
  border-bottom: none;
}

.prices-table tbody tr:hover {
  background: rgba(230, 57, 70, 0.05);
  transform: scale(1.01);
}

.prices-table td {
  padding: 1.5rem 1.75rem;
  vertical-align: middle;
}

.prices-table td.name {
  font-weight: 800;
  color: var(--accent);
  font-size: 1.1rem;
}

.prices-table td.desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.prices-table td.price {
  font-weight: 900;
  font-size: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.prices-table td.dur {
  color: var(--accent-light);
  font-weight: 700;
  font-size: 1rem;
}

.fineprint {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(226, 232, 240, 1);
}

/* ===== PAKKETTEN SECTION ===== */
.pakketten {
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
  position: relative;
  padding: 8rem 0 6rem;
  min-height: 400px;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.pakketten-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)) !important;
  gap: 2.5rem;
  margin-top: 4rem;
  visibility: visible !important;
  opacity: 1 !important;
  align-items: start !important;
}

.pakket-card {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(20px);
  border-radius: 28px;
  box-shadow: var(--shadow-md) !important;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex !important;
  flex-direction: column;
  border: 2px solid rgba(230, 57, 70, 0.08);
  position: relative;
  overflow: visible !important;
  height: auto !important;
  min-height: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  animation: cardFadeIn 0.8s ease-out forwards;
  transform: translateY(0) scale(1) !important;
  align-self: start !important;
}

.pakket-card:nth-child(1) { animation-delay: 0.1s; opacity: 0; }
.pakket-card:nth-child(2) { animation-delay: 0.2s; opacity: 0; }
.pakket-card:nth-child(3) { animation-delay: 0.3s; opacity: 0; }
.pakket-card:nth-child(n+4) { animation-delay: 0.4s; opacity: 0; }

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pakket-card.featured {
  border-color: var(--primary);
  border-width: 3px;
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.featured-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 3;
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
}

.pakket-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.pakket-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.pakket-card:hover .pakket-overlay {
  opacity: 1;
}

.pakket-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pakket-card:hover .pakket-image-wrapper img {
  transform: scale(1.1);
}

.pakket-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1.5rem;
  min-height: 0;
}

.pakket-header h3 {
  margin: 0;
  color: var(--accent);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.pakket-description {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

.pakket-price {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.05), rgba(29, 53, 87, 0.05));
  border-radius: 20px;
  border: 2px solid rgba(230, 57, 70, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-duration {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.pakket-includes {
  margin-top: 0.5rem;
}

.pakket-includes summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--primary) !important;
  padding: 0.75rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  user-select: none;
  list-style: none;
  position: relative;
}

.pakket-includes summary::-webkit-details-marker {
  display: none;
}

.pakket-includes summary::marker {
  display: none;
}

.pakket-includes summary::after {
  content: '+';
  position: absolute;
  right: 0.75rem;
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  color: var(--primary);
}

.pakket-includes[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.pakket-includes summary:hover {
  background: rgba(230, 57, 70, 0.05);
  color: var(--primary-dark) !important;
}

.includes-content {
  padding: 1rem;
  color: var(--muted) !important;
  font-size: 0.9rem;
}

.includes-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.includes-content li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.includes-content li:hover {
  background: rgba(230, 57, 70, 0.05);
}

.includes-content li svg {
  flex-shrink: 0;
  color: var(--primary);
}

.includes-content .duration {
  color: var(--muted);
  font-size: 0.85rem;
}

.total-duration {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(226, 232, 240, 1);
  font-weight: 700;
  color: var(--accent);
}

.select-package-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
  text-decoration: none;
}

.select-package-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
}

.premium-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
}

.scroll-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-to-top:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 12px 40px rgba(230, 57, 70, 0.5);
}

.scroll-to-top:active {
  transform: translateY(-2px) scale(1.05);
}

@media (max-width: 768px) {
  .pricing-tools {
    flex-direction: column;
  }
  
  .search-wrapper,
  .sort-wrapper {
    width: 100%;
  }
  
  .table-wrap {
    padding: 1rem;
    overflow-x: auto;
  }
  
  .prices-table {
    font-size: 0.9rem;
  }
  
  .prices-table th,
  .prices-table td {
    padding: 1rem;
  }
  
  .pakketten-grid {
    grid-template-columns: 1fr !important;
  }
  
  .section-container {
    padding: 0 1rem;
  }
}
