:root {
  --primary-crimson: #c41e3a;
  --deep-steel-blue: #1a2a3a;
  --electric-crimson: #e63946;
  --chrome-accent: #c0c0c0;
  --metallic-dark: #2d3436;
  --radiator-copper: #d35400;
  --glass-dark: rgba(26, 42, 58, 0.85);
  --glass-light: rgba(255, 255, 255, 0.95);
  --gradient-metallic: linear-gradient(135deg, #1a2a3a 0%, #2d3436 50%, #1a2a3a 100%);
  --gradient-crimson: linear-gradient(135deg, #c41e3a 0%, #e63946 100%);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-premium: 0 10px 40px rgba(0, 0, 0, 0.3);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: var(--deep-steel-blue);
  background-color: #f8f9fa;
  overflow-x: hidden;
}

strong, b, p {
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--gradient-crimson);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: var(--deep-steel-blue);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid var(--deep-steel-blue);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: var(--deep-steel-blue);
  color: white;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--deep-steel-blue);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.btn-ghost:hover {
  background: white;
  transform: translateY(-2px);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 42, 58, 0.95);
  backdrop-filter: blur(20px);
  padding: 16px 0;
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow-premium);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-crimson);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--electric-crimson);
}

.nav-desktop {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-desktop a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--electric-crimson);
  transition: var(--transition-smooth);
}

.nav-desktop a:hover {
  color: white;
}

.nav-desktop a:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--deep-steel-blue);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-premium);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-metallic);
  overflow: hidden;
}

.hero::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.15) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 57, 70, 0.15);
  color: var(--electric-crimson);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  color: white;
  margin-bottom: 24px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-title span {
  background: var(--gradient-crimson);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

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

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--electric-crimson);
}

.hero-stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 80px;
  }
  
  .hero-stats {
    gap: 32px;
  }
  
  .hero-stat-number {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 57, 70, 0.1);
  color: var(--electric-crimson);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.section-title {
  color: var(--deep-steel-blue);
  margin-bottom: 16px;
}

.section-description {
  color: #6c757d;
  font-size: 1.1rem;
}

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

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gradient-crimson);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

.feature-card:hover::before {
  height: 100%;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(230, 57, 70, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.25rem;
  color: var(--deep-steel-blue);
  margin-bottom: 12px;
}

.feature-text {
  color: #6c757d;
  font-size: 0.95rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

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

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

.service-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-content {
  padding: 32px;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.service-title {
  font-size: 1.35rem;
  color: var(--deep-steel-blue);
}

.service-price {
  background: var(--gradient-crimson);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
}

.service-text {
  color: #6c757d;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--electric-crimson);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.service-link:hover {
  gap: 12px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: var(--gradient-metallic);
  border-radius: 20px;
  padding: 40px;
  color: white;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 80px;
  color: rgba(230, 57, 70, 0.3);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  color: #ffc107;
  font-size: 1.25rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  opacity: 0.9;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--electric-crimson);
}

.author-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.author-role {
  opacity: 0.7;
  font-size: 0.9rem;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 1024px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-premium);
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  margin-bottom: 20px;
  color: #4a5568;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(230, 57, 70, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--electric-crimson);
}

.about-feature-text {
  font-weight: 600;
  color: var(--deep-steel-blue);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

.team-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.team-card:hover .team-photo {
  transform: scale(1.05);
}

.team-content {
  padding: 24px;
}

.team-name {
  font-size: 1.35rem;
  color: var(--deep-steel-blue);
  margin-bottom: 8px;
}

.team-role {
  color: var(--electric-crimson);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-bio {
  color: #6c757d;
  font-size: 0.95rem;
}

.cta-section {
  background: var(--gradient-metallic);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(230, 57, 70, 0.2) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  color: white;
  margin-bottom: 24px;
}

.cta-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-premium);
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: rgba(230, 57, 70, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 4px;
}

.contact-value {
  font-weight: 700;
  color: var(--deep-steel-blue);
  text-decoration: none;
  font-size: 1.1rem;
}

.contact-value:hover {
  color: var(--electric-crimson);
}

.contact-form {
  background: white;
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow-premium);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--deep-steel-blue);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition-smooth);
  background: #f8f9fa;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--electric-crimson);
  background: white;
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 42, 58, 0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

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

.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  padding: 24px 32px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--deep-steel-blue);
  text-align: left;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  color: var(--electric-crimson);
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: rgba(230, 57, 70, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--electric-crimson);
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--gradient-crimson);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer-content {
  padding: 0 32px 24px;
  color: #6c757d;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

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

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

.blog-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.blog-content {
  padding: 32px;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--electric-crimson);
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-title {
  font-size: 1.35rem;
  color: var(--deep-steel-blue);
  margin-bottom: 16px;
  text-decoration: none;
  display: block;
  transition: var(--transition-smooth);
}

.blog-title:hover {
  color: var(--electric-crimson);
}

.blog-excerpt {
  color: #6c757d;
  margin-bottom: 20px;
  line-height: 1.7;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--electric-crimson);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.blog-link:hover {
  gap: 12px;
}

.page-hero {
  background: var(--gradient-metallic);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-title {
  color: white;
  margin-bottom: 16px;
}

.page-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-current {
  color: var(--electric-crimson);
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--electric-crimson);
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

.pricing-card.featured {
  background: var(--gradient-metallic);
  color: white;
}

.pricing-icon {
  width: 80px;
  height: 80px;
  background: rgba(230, 57, 70, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 24px;
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--deep-steel-blue);
}

.pricing-card.featured .pricing-title {
  color: white;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--electric-crimson);
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-price {
  color: white;
}

.pricing-period {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 32px;
}

.pricing-card.featured .pricing-period {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-card.featured .pricing-features li {
  border-color: rgba(255, 255, 255, 0.2);
}

.pricing-features li::before {
  content: '✓';
  color: var(--electric-crimson);
  font-weight: 700;
}

footer {
  background: var(--deep-steel-blue);
  color: white;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

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

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

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
  line-height: 1.7;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--electric-crimson);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-legal a:hover {
  color: white;
}

.cookie-consent-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--deep-steel-blue);
  color: white;
  padding: 24px 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-premium);
  z-index: 9999;
  max-width: 400px;
  display: block;
}

.cookie-consent-banner h4 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.cookie-consent-banner p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 16px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

.cookie-btn-accept {
  background: var(--gradient-crimson);
  color: white;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.cookie-btn-decline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
  border-color: white;
}

.cookie-link {
  color: var(--electric-crimson);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cookie-consent-banner {
    bottom: 0;
    right: 0;
    left: 0;
    max-width: none;
    border-radius: 16px 16px 0 0;
  }
}

.service-detail-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

@media (max-width: 1024px) {
  .service-detail-content {
    grid-template-columns: 1fr;
  }
}

.detail-main h2 {
  margin: 32px 0 16px;
}

.detail-main h3 {
  margin: 24px 0 12px;
}

.detail-main p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: #4a5568;
}

.detail-features {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-glass);
}

.detail-features h3 {
  margin-bottom: 20px;
}

.detail-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e9ecef;
}

.detail-feature-item:last-child {
  border-bottom: none;
}

.detail-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(230, 57, 70, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.detail-feature-text strong {
  display: block;
  margin-bottom: 4px;
  color: var(--deep-steel-blue);
}

.detail-feature-text span {
  color: #6c757d;
  font-size: 0.9rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.process-step {
  background: white;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  position: relative;
}

.process-step-number {
  width: 48px;
  height: 48px;
  background: var(--gradient-crimson);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 auto 20px;
}

.process-step-title {
  font-size: 1.2rem;
  color: var(--deep-steel-blue);
  margin-bottom: 12px;
}

.process-step-text {
  color: #6c757d;
  font-size: 0.95rem;
}

.error-section {
  text-align: center;
  padding: 100px 0;
}

.error-code {
  font-size: 120px;
  font-weight: 800;
  color: var(--electric-crimson);
  line-height: 1;
  margin-bottom: 24px;
}

.error-title {
  font-size: 2rem;
  color: var(--deep-steel-blue);
  margin-bottom: 16px;
}

.error-text {
  color: #6c757d;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}