/* ===================================
   ROARING SPEED - INDUSTRIAL MODERN CSS
   Design Style: Industrial Modern Aesthetic
   ================================== */

/* CSS RESET & NORMALIZE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2C2C2C;
  background-color: #1A1A1A;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', 'Impact', 'Arial Black', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #E63946;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

p {
  margin-bottom: 16px;
  color: #E0E0E0;
}

strong {
  font-weight: 700;
  color: #FFFFFF;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* HEADER */
header {
  background: linear-gradient(135deg, #1D3557 0%, #0D1B2A 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  border-bottom: 3px solid #E63946;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  max-width: 180px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(230, 57, 70, 0.3));
}

/* MAIN NAVIGATION */
.main-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.main-nav a {
  color: #F1FAEE;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #E63946;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #E63946;
  background: rgba(230, 57, 70, 0.1);
}

.main-nav a:hover::after {
  width: 80%;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  width: 50px;
  height: 50px;
  background: #E63946;
  color: #FFFFFF;
  font-size: 24px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #C41E2A;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #1D3557 0%, #0D1B2A 100%);
  z-index: 2500;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #E63946;
  color: #FFFFFF;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #C41E2A;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  color: #F1FAEE;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-nav a:hover {
  color: #E63946;
  border-left-color: #E63946;
  background: rgba(230, 57, 70, 0.1);
  padding-left: 24px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  min-width: 160px;
  border: 2px solid transparent;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  color: #FFFFFF;
  border-color: #E63946;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #C41E2A 0%, #A01621 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(230, 57, 70, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #F1FAEE;
  border: 2px solid #F1FAEE;
}

.btn-secondary:hover {
  background: #F1FAEE;
  color: #1D3557;
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, rgba(29, 53, 87, 0.95) 0%, rgba(13, 27, 42, 0.95) 100%), url('data:image/svg+xml,%3Csvg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%23E63946" fill-opacity="0.05"%3E%3Cpath d="M0 0h20L0 20z"/%3E%3C/g%3E%3C/svg%3E');
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #E63946;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  color: #F1FAEE;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subheadline {
  font-size: 18px;
  color: #E0E0E0;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-badges p {
  color: #F1FAEE;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  background: rgba(230, 57, 70, 0.2);
  border-radius: 20px;
  border: 1px solid rgba(230, 57, 70, 0.3);
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #1D3557 0%, #0D1B2A 100%);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  border-bottom: 3px solid #E63946;
}

.page-hero h1 {
  color: #F1FAEE;
  font-size: 48px;
  margin-bottom: 16px;
}

.page-hero p {
  color: #E0E0E0;
  font-size: 18px;
  max-width: 800px;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 24px;
  color: #B0B0B0;
}

.breadcrumbs a {
  color: #E63946;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #F1FAEE;
}

.last-updated {
  font-size: 14px;
  color: #B0B0B0;
  font-style: italic;
  margin-bottom: 16px;
}

/* BENEFITS SECTION */
.benefits {
  background: #252525;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.benefits h2 {
  text-align: center;
  color: #E63946;
  margin-bottom: 48px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefit-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  background: #1A1A1A;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #E63946 0%, #C41E2A 100%);
  border-radius: 8px 8px 0 0;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: #E63946;
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.3);
  background: #2A2A2A;
}

.benefit-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: brightness(0) saturate(100%) invert(38%) sepia(87%) saturate(3024%) hue-rotate(338deg) brightness(95%) contrast(88%);
}

.benefit-card h3 {
  color: #F1FAEE;
  margin-bottom: 12px;
}

.benefit-card p {
  color: #B0B0B0;
  font-size: 14px;
}

/* SERVICES SECTION */
.services-preview,
.services-overview {
  background: #1A1A1A;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.services-preview h2,
.services-overview h2 {
  text-align: center;
  margin-bottom: 48px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #252525;
  padding: 32px 24px;
  border-radius: 8px;
  border-left: 4px solid #E63946;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateX(8px);
  box-shadow: -4px 4px 16px rgba(230, 57, 70, 0.3);
  background: #2A2A2A;
}

.service-card h3 {
  color: #F1FAEE;
  margin-bottom: 16px;
}

.service-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #E63946;
  margin-bottom: 16px;
  font-family: 'Bebas Neue', sans-serif;
}

.service-card p {
  color: #B0B0B0;
  font-size: 14px;
  line-height: 1.6;
}

/* PRICING TABLE */
.pricing-table {
  background: #252525;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.pricing-table h2 {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.price-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #1A1A1A;
  padding: 40px 24px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.price-card.popular {
  border-color: #E63946;
  transform: scale(1.05);
}

.price-card.popular::before {
  content: 'NAJPOPULARNIEJSZY';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #E63946;
  color: #FFFFFF;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.price-card:hover {
  border-color: #E63946;
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.3);
  background: #2A2A2A;
}

.price-card h3 {
  color: #F1FAEE;
  margin-bottom: 24px;
}

.price-card .price {
  font-size: 48px;
  font-weight: 700;
  color: #E63946;
  margin-bottom: 24px;
  font-family: 'Bebas Neue', sans-serif;
}

.price-card p {
  color: #B0B0B0;
  margin-bottom: 24px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* HOW IT WORKS */
.how-it-works {
  background: #1A1A1A;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: 48px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 24px;
  background: #252525;
  border-radius: 8px;
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  color: #FFFFFF;
  font-size: 32px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
  font-family: 'Bebas Neue', sans-serif;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
}

.step h3 {
  color: #F1FAEE;
  margin-bottom: 12px;
}

.step p {
  color: #B0B0B0;
  font-size: 14px;
}

/* TESTIMONIALS */
.testimonials {
  background: #252525;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 500px;
  background: #E0E0E0;
  padding: 32px 24px;
  border-radius: 8px;
  border-left: 4px solid #E63946;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: #2C2C2C;
  font-style: italic;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.6;
}

.testimonial-card .author {
  color: #1D3557;
  font-weight: 700;
  font-size: 14px;
  font-style: normal;
}

.testimonials .rating {
  text-align: center;
  color: #F1FAEE;
  font-size: 18px;
  font-weight: 700;
}

/* CATEGORIES */
.comparison-categories,
.knowledge-categories {
  background: #1A1A1A;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.category-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  background: #252525;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #E63946;
  position: relative;
  margin-bottom: 20px;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.3);
  background: #2A2A2A;
}

.category-card h3 {
  color: #F1FAEE;
  margin-bottom: 12px;
}

.category-card p {
  color: #B0B0B0;
  font-size: 14px;
  margin-bottom: 20px;
}

/* FEATURED SECTIONS */
.featured-comparisons,
.featured-articles {
  background: #252525;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.featured-grid,
.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.featured-card,
.article-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #1A1A1A;
  padding: 32px 24px;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.featured-card::before,
.article-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #E63946 0%, #C41E2A 100%);
  border-radius: 8px 8px 0 0;
}

.featured-card:hover,
.article-card:hover {
  border-color: #E63946;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.3);
  background: #2A2A2A;
}

.featured-card h3,
.article-card h3 {
  color: #F1FAEE;
  margin-bottom: 16px;
}

.featured-card p,
.article-card p {
  color: #B0B0B0;
  margin-bottom: 24px;
  min-height: 60px;
}

/* METHODOLOGY */
.methodology,
.methodology-box {
  background: #1A1A1A;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.methodology-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.method-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: #252525;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #E63946;
  margin-bottom: 20px;
}

.method-item h3 {
  color: #F1FAEE;
  margin-bottom: 12px;
}

.method-item p {
  color: #B0B0B0;
  font-size: 14px;
}

.method-content p {
  color: #E0E0E0;
  margin-bottom: 16px;
  line-height: 1.8;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23FFFFFF" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
  opacity: 0.3;
}

.cta-section h2 {
  color: #FFFFFF;
  font-size: 40px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: #F1FAEE;
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-section .btn {
  position: relative;
  z-index: 1;
}

.guarantee,
.turnaround {
  color: #F1FAEE;
  font-weight: 600;
  margin-top: 20px;
  font-size: 16px;
}

/* RANKINGS */
.top-rankings,
.special-rankings {
  background: #252525;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.rankings-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ranking-item {
  background: #1A1A1A;
  padding: 32px 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border-left: 4px solid #E63946;
  transition: all 0.3s ease;
}

.ranking-item:hover {
  background: #2A2A2A;
  transform: translateX(8px);
}

.ranking-item h3 {
  color: #F1FAEE;
  margin-bottom: 8px;
  flex: 1 1 60%;
}

.ranking-item p {
  color: #B0B0B0;
  font-size: 14px;
  flex: 1 1 100%;
}

.special-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.special-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: #1A1A1A;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  border-top: 4px solid #E63946;
  margin-bottom: 20px;
}

.special-card h3 {
  color: #F1FAEE;
  margin-bottom: 12px;
}

.special-card p {
  color: #B0B0B0;
  font-size: 14px;
}

/* PACKAGES */
.packages {
  background: #1A1A1A;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.package-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  background: #252525;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid #E63946;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.package-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
  background: #2A2A2A;
}

.package-card h3 {
  color: #F1FAEE;
  margin-bottom: 16px;
}

.package-price {
  font-size: 40px;
  font-weight: 700;
  color: #E63946;
  margin-bottom: 16px;
  font-family: 'Bebas Neue', sans-serif;
}

.savings {
  font-size: 14px;
  color: #4CAF50;
  font-weight: 600;
}

/* ADD-ONS */
.add-ons {
  background: #252525;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.addons-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.addon-item {
  background: #1A1A1A;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #E63946;
}

.addon-item h4 {
  color: #F1FAEE;
  margin-bottom: 8px;
}

.addon-item p {
  color: #B0B0B0;
  font-size: 14px;
}

/* COMPANY STORY */
.company-story,
.values,
.team,
.statistics {
  background: #1A1A1A;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.story-content,
.method-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-content p {
  color: #E0E0E0;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* VALUES */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.value-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: #252525;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  border-top: 4px solid #E63946;
  margin-bottom: 20px;
}

.value-card h3 {
  color: #F1FAEE;
  margin-bottom: 12px;
}

.value-card p {
  color: #B0B0B0;
  font-size: 14px;
}

/* TEAM */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.team-member {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: #252525;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.team-member:hover {
  background: #2A2A2A;
  transform: translateY(-4px);
}

.team-member h3 {
  color: #F1FAEE;
  margin-bottom: 8px;
}

.team-member p {
  color: #B0B0B0;
  font-size: 14px;
}

.team-size {
  text-align: center;
  color: #E0E0E0;
  font-weight: 600;
}

/* STATISTICS */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.stat-item {
  flex: 1 1 calc(20% - 24px);
  min-width: 180px;
  text-align: center;
  padding: 24px;
  background: #252525;
  border-radius: 8px;
  border: 2px solid #E63946;
  margin-bottom: 20px;
}

.stat-item h3 {
  font-size: 48px;
  color: #E63946;
  margin-bottom: 8px;
  font-family: 'Bebas Neue', sans-serif;
}

.stat-item p {
  color: #B0B0B0;
  font-size: 14px;
}

/* QUALITY GUARANTEE */
.quality-guarantee {
  background: #252525;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.guarantee-list {
  max-width: 600px;
  margin: 0 auto;
}

.guarantee-list p {
  color: #E0E0E0;
  padding: 16px;
  margin-bottom: 12px;
  border-left: 4px solid #E63946;
  background: #1A1A1A;
  font-weight: 600;
}

/* CONTACT METHODS */
.contact-methods {
  background: #1A1A1A;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.method-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  background: #252525;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}

.method-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: brightness(0) saturate(100%) invert(38%) sepia(87%) saturate(3024%) hue-rotate(338deg) brightness(95%) contrast(88%);
}

.method-card h3 {
  color: #F1FAEE;
  margin-bottom: 12px;
}

.method-card p {
  color: #B0B0B0;
  font-size: 14px;
  margin-bottom: 8px;
}

.method-card .response {
  color: #4CAF50;
  font-weight: 600;
  font-size: 14px;
}

.response-time {
  text-align: center;
  color: #E0E0E0;
  font-weight: 600;
  font-size: 18px;
}

/* CONTACT FORM */
.contact-form-section {
  background: #252525;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #1A1A1A;
  padding: 40px;
  border-radius: 8px;
  border: 2px solid #E63946;
}

.form-info p {
  color: #E0E0E0;
  padding: 12px;
  margin-bottom: 16px;
  background: #252525;
  border-radius: 4px;
  border-left: 4px solid #E63946;
}

.form-info .note {
  color: #B0B0B0;
  font-size: 14px;
  font-style: italic;
  background: transparent;
  border: none;
}

/* OFFICE INFO */
.office-info {
  background: #1A1A1A;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.office-details {
  max-width: 600px;
  margin: 0 auto;
}

.office-details p {
  color: #E0E0E0;
  padding: 12px 0;
  border-bottom: 1px solid #333;
}

/* DEPARTMENTS */
.departments {
  background: #252525;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.dept-list {
  max-width: 600px;
  margin: 0 auto;
}

.dept-list p {
  color: #E0E0E0;
  padding: 16px;
  margin-bottom: 12px;
  background: #1A1A1A;
  border-left: 4px solid #E63946;
  border-radius: 4px;
}

/* FAQ */
.faq-quick {
  background: #1A1A1A;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto 32px;
}

.faq-item {
  background: #252525;
  padding: 24px;
  margin-bottom: 16px;
  border-radius: 8px;
  border-left: 4px solid #E63946;
}

.faq-item h4 {
  color: #F1FAEE;
  margin-bottom: 12px;
}

.faq-item p {
  color: #B0B0B0;
  font-size: 14px;
}

.faq-quick a {
  display: inline-block;
  color: #E63946;
  font-weight: 600;
  text-align: center;
  margin: 0 auto;
  padding: 8px 16px;
  border: 2px solid #E63946;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.faq-quick a:hover {
  background: #E63946;
  color: #FFFFFF;
}

/* NEWSLETTER */
.newsletter-box,
.newsletter-signup {
  background: linear-gradient(135deg, #1D3557 0%, #0D1B2A 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 8px;
}

.newsletter-box h2,
.newsletter-signup h2 {
  color: #F1FAEE;
  margin-bottom: 16px;
}

.newsletter-box p,
.newsletter-signup p {
  color: #E0E0E0;
  margin-bottom: 24px;
}

.frequency,
.privacy,
.privacy-note {
  color: #B0B0B0;
  font-size: 14px;
  margin-top: 16px;
}

.privacy a,
.privacy-note a {
  color: #E63946;
  text-decoration: underline;
}

/* LEGAL CONTENT */
.legal-content {
  background: #1A1A1A;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2,
.content-wrapper h3 {
  color: #F1FAEE;
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-wrapper p {
  color: #E0E0E0;
  margin-bottom: 16px;
  line-height: 1.8;
}

.content-wrapper a {
  color: #E63946;
  text-decoration: underline;
}

/* CONTACT DPO */
.contact-dpo,
.rights-overview {
  background: #252525;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.rights-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 32px 0;
}

.right-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  background: #1A1A1A;
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  border-top: 4px solid #E63946;
  margin-bottom: 20px;
}

.right-item h4 {
  color: #F1FAEE;
  margin-bottom: 12px;
}

.right-item p {
  color: #B0B0B0;
  font-size: 14px;
}

.rights-overview p {
  max-width: 800px;
  margin: 0 auto;
  color: #E0E0E0;
}

/* DATA REQUEST FORM */
.data-request-form {
  background: #1A1A1A;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.data-request-form .form-info {
  max-width: 600px;
  margin: 0 auto;
  background: #252525;
  padding: 32px;
  border-radius: 8px;
}

.processing-time {
  text-align: center;
  color: #B0B0B0;
  font-size: 14px;
  margin-top: 20px;
}

/* COOKIE TABLE */
.cookie-table {
  background: #252525;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.table-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.table-wrapper p {
  color: #E0E0E0;
  padding: 16px;
  margin-bottom: 12px;
  background: #1A1A1A;
  border-left: 4px solid #E63946;
  border-radius: 4px;
}

/* COOKIE SETTINGS */
.cookie-settings {
  background: #1A1A1A;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.settings-list {
  max-width: 600px;
  margin: 32px auto;
  text-align: left;
}

.settings-list p {
  color: #E0E0E0;
  padding: 16px;
  margin-bottom: 12px;
  background: #252525;
  border-left: 4px solid #E63946;
  border-radius: 4px;
  font-weight: 600;
}

/* COMPLAINT INFO */
.complaint-info,
.withdrawal-form {
  background: #252525;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.complaint-info p,
.withdrawal-form p {
  color: #E0E0E0;
  margin-bottom: 12px;
}

/* EXPERT TIPS */
.expert-tips {
  background: #252525;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.tips-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.tip-item {
  background: #1A1A1A;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #E63946;
}

.tip-item h4 {
  color: #F1FAEE;
  margin-bottom: 12px;
}

.tip-item p {
  color: #B0B0B0;
  font-size: 14px;
}

/* GUIDES */
.guides-section {
  background: #1A1A1A;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.guides-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.guide-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #252525;
  padding: 32px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-top: 4px solid #E63946;
  margin-bottom: 20px;
}

.guide-card:hover {
  background: #2A2A2A;
  transform: translateY(-4px);
}

.guide-card h3 {
  color: #F1FAEE;
  margin-bottom: 12px;
}

.guide-card p {
  color: #B0B0B0;
  font-size: 14px;
}

/* OVERVIEW ITEMS */
.overview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.overview-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 24px;
  background: #252525;
  border-radius: 8px;
  border-top: 4px solid #E63946;
  margin-bottom: 20px;
}

.overview-item h3 {
  color: #F1FAEE;
  margin-bottom: 12px;
  font-size: 18px;
}

.overview-item p {
  color: #B0B0B0;
  font-size: 14px;
}

/* THANK YOU PAGE */
.confirmation-hero {
  background: linear-gradient(135deg, #1D3557 0%, #0D1B2A 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #4CAF50;
  color: #FFFFFF;
  font-size: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(76, 175, 80, 0.4);
}

.confirmation-hero h1 {
  color: #F1FAEE;
  margin-bottom: 16px;
}

.confirmation-message {
  color: #E0E0E0;
  font-size: 20px;
  margin-bottom: 12px;
}

.next-steps {
  color: #B0B0B0;
  font-size: 16px;
}

/* WHAT NEXT */
.what-next {
  background: #1A1A1A;
  padding: 60px 20px;
  margin-bottom: 60px;
}

/* SUGGESTED CONTENT */
.suggested-content {
  background: #252525;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.suggestion-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  background: #1A1A1A;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid #E63946;
  margin-bottom: 20px;
}

.suggestion-card h3 {
  color: #F1FAEE;
  margin-bottom: 20px;
}

/* POPULAR LINKS */
.popular-links {
  background: #1A1A1A;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.links-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.links-list a {
  color: #E0E0E0;
  padding: 16px;
  background: #252525;
  border-left: 4px solid #E63946;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.links-list a:hover {
  background: #2A2A2A;
  color: #F1FAEE;
  padding-left: 24px;
}

/* CONTACT INFO REMINDER */
.contact-info-reminder {
  background: #252525;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.contact-info-reminder p {
  color: #E0E0E0;
  margin-bottom: 12px;
}

/* TESTIMONIAL SINGLE */
.testimonial-single {
  background: #1A1A1A;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonial-single .testimonial-card {
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-single .rating {
  color: #FFD700;
  font-size: 18px;
  margin-top: 16px;
  font-style: normal;
}

/* BACK NAVIGATION */
.back-navigation {
  background: #252525;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1D3557 0%, #0D1B2A 100%);
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.5);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid #E63946;
}

.cookie-consent.show {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 60%;
  color: #E0E0E0;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
  min-width: 120px;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #1A1A1A;
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
  padding: 32px;
  border: 2px solid #E63946;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal-header h2 {
  color: #F1FAEE;
}

.modal-close {
  width: 32px;
  height: 32px;
  background: #E63946;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #C41E2A;
  transform: rotate(90deg);
}

.cookie-category {
  background: #252525;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 4px solid #E63946;
}

.cookie-category h3 {
  color: #F1FAEE;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-category p {
  color: #B0B0B0;
  font-size: 14px;
  margin-bottom: 8px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 24px;
  background: #444;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #4CAF50;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active::after {
  transform: translateX(26px);
}

.cookie-category.disabled .toggle-switch {
  opacity: 0.5;
  cursor: not-allowed;
}

.modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #0D1B2A 0%, #000000 100%);
  padding: 60px 20px 20px;
  border-top: 3px solid #E63946;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 calc(25% - 40px);
  min-width: 220px;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 16px;
  filter: brightness(0) saturate(100%) invert(100%);
}

.footer-col h4 {
  color: #E63946;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-col p,
.footer-col a {
  color: #B0B0B0;
  font-size: 14px;
  line-height: 1.8;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #E63946;
  padding-left: 4px;
}

.copyright {
  text-align: center;
  color: #666;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid #333;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hero */
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
  }
  
  /* Page Hero */
  .page-hero h1 {
    font-size: 28px;
  }
  
  /* Cards */
  .benefit-card,
  .service-card,
  .price-card,
  .category-card,
  .featured-card,
  .article-card,
  .guide-card,
  .suggestion-card,
  .method-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Steps */
  .step {
    flex: 1 1 100%;
  }
  
  /* Stats */
  .stat-item {
    flex: 1 1 calc(50% - 24px);
  }
  
  /* Value Cards */
  .value-card,
  .team-member,
  .special-card,
  .overview-item {
    flex: 1 1 100%;
  }
  
  /* CTA Section */
  .cta-section h2 {
    font-size: 28px;
  }
  
  /* Cookie Consent */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  /* Footer */
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Spacing */
  .section {
    padding: 30px 20px;
    margin-bottom: 40px;
  }
  
  /* Form Wrapper */
  .form-wrapper {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 24px; }
  h2 { font-size: 20px; }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .stat-item {
    flex: 1 1 100%;
  }
  
  .modal-content {
    padding: 20px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
}

/* ACCESSIBILITY */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus Styles */
a:focus,
button:focus,
.btn:focus {
  outline: 2px solid #E63946;
  outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}