/* Base Styles - Detroit Edition */
:root {
  --detroit-blue: #0a2463;
  --detroit-blue-dark: #051533;
  --detroit-blue-light: #1e3a8a;
  --detroit-steel: #6b7280;
  --detroit-chrome: #b8c5d6;
  --detroit-red: #c1272d;
  --detroit-red-dark: #9c1f24;
  --dark: #0f0f0f;
  --light: #ffffff;
  --gray: #1a1d29;
  --gray-dark: #2d3748;
  --text: #e5e7eb;
  --text-light: #9ca3af;
  --shadow: rgba(0, 0, 0, 0.3);
  --shadow-md: rgba(0, 0, 0, 0.4);
  --shadow-lg: rgba(0, 0, 0, 0.5);
  --gradient: linear-gradient(135deg, var(--detroit-blue) 0%, var(--detroit-blue-light) 100%);
  --chrome-gradient: linear-gradient(135deg, #d4dce6 0%, #8b98a8 50%, #d4dce6 100%);
  --red-gradient: linear-gradient(135deg, var(--detroit-red) 0%, #e63946 100%);
}

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

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--dark);
  background-image:
    linear-gradient(rgba(10, 36, 99, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 36, 99, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

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

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

ul {
  list-style: none;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--light);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(10, 36, 99, 0.5);
}

.section-header h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: var(--red-gradient);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0;
  box-shadow: 0 0 10px rgba(193, 39, 45, 0.5);
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.pricing .section-header p {
  max-width: 800px;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  background: var(--red-gradient);
  color: var(--light);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--detroit-red);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(193, 39, 45, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.cta-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(193, 39, 45, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: var(--light);
}

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

/* Header */
header {
  background-color: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px var(--shadow), 0 1px 0 rgba(10, 36, 99, 0.5);
  border-bottom: 1px solid rgba(10, 36, 99, 0.3);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

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

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

.logo-image {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--light);
  letter-spacing: -0.5px;
  margin: 0;
  text-transform: uppercase;
}

.logo span {
  background: var(--red-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
}

.nav-links li {
  margin: 0 18px;
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--red-gradient);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px rgba(193, 39, 45, 0.6);
}

.nav-links a:hover {
  color: var(--detroit-red);
}

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

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--red-gradient);
  margin: 6px 0;
  transition: all 0.3s ease;
  border-radius: 0;
  box-shadow: 0 0 8px rgba(193, 39, 45, 0.4);
}

/* Hero Section */
.hero {
  padding: 180px 0 120px;
  background: linear-gradient(135deg, #0a0e1a 0%, #0f1623 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(10, 36, 99, 0.4) 0%, rgba(10, 36, 99, 0) 70%);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--detroit-red), transparent);
  box-shadow: 0 0 20px rgba(193, 39, 45, 0.5);
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.hero .stat-box {
  background-color: rgba(10, 36, 99, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(10, 36, 99, 0.5);
  border-left: 3px solid var(--detroit-red);
  min-width: 160px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-content h1 {
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--light);
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -2px;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-tagline {
  font-size: 1.1rem !important;
  color: var(--detroit-chrome) !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px !important;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-shape {
  width: 450px;
  height: 450px;
  background: var(--gradient);
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
  animation: pulse-glow 3s ease-in-out infinite, rotate-shape 20s linear infinite;
  box-shadow:
    0 0 40px rgba(10, 36, 99, 0.6),
    0 0 80px rgba(193, 39, 45, 0.3),
    inset 0 0 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-shape::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--chrome-gradient);
  opacity: 0.1;
  z-index: 1;
  animation: shine 4s ease-in-out infinite;
}

.hero-shape::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  border: 2px solid rgba(193, 39, 45, 0.5);
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
  animation: pulse-border 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow:
      0 0 40px rgba(10, 36, 99, 0.6),
      0 0 80px rgba(193, 39, 45, 0.3),
      inset 0 0 60px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow:
      0 0 60px rgba(10, 36, 99, 0.8),
      0 0 120px rgba(193, 39, 45, 0.5),
      inset 0 0 80px rgba(0, 0, 0, 0.2);
  }
}

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

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

@keyframes pulse-border {
  from {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Accessibility: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .hero-shape {
    animation: none;
    transition: none;
  }
}

/* About / What We Do Section */
.about {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--gray) 0%, rgba(10, 36, 99, 0.1) 100%);
  position: relative;
}

.about .section-header p {
  max-width: 900px;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.credibility-points {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.cred-point {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  background: rgba(26, 29, 41, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  border: 1px solid rgba(10, 36, 99, 0.4);
  border-left: 3px solid var(--detroit-red);
  box-shadow: 0 4px 15px var(--shadow);
  transition: all 0.3s ease;
}

.cred-point:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow-md);
  border-left-color: var(--detroit-blue-light);
}

.cred-point i {
  color: var(--detroit-red);
  font-size: 1.3rem;
}

.cred-point span {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Services Section */
.services {
  padding: 120px 0;
  background-color: var(--dark);
  background-image:
    linear-gradient(rgba(10, 36, 99, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 36, 99, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--detroit-blue), transparent);
}

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

.service-card {
  background-color: rgba(26, 29, 41, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(10, 36, 99, 0.4);
  border-left: 4px solid var(--detroit-blue);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.3) 0%, rgba(193, 39, 45, 0.1) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 0;
  background: var(--red-gradient);
  transition: height 0.4s ease;
  box-shadow: 0 0 10px rgba(193, 39, 45, 0.6);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px var(--shadow-md), 0 0 20px rgba(10, 36, 99, 0.4);
  border-color: var(--detroit-blue-light);
  border-left-color: var(--detroit-red);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  height: 100%;
}

.service-icon {
  font-size: 2.8rem;
  color: var(--detroit-chrome);
  margin-bottom: 25px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(10, 36, 99, 0.6));
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  color: var(--detroit-red);
  filter: drop-shadow(0 0 15px rgba(193, 39, 45, 0.8));
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 18px;
  color: var(--light);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.service-card p {
  margin-bottom: 25px;
  color: var(--text-light);
}

.service-card ul {
  padding-left: 5px;
}

.service-card ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
  color: var(--text);
}

.service-card ul li::before {
  content: "✓";
  color: var(--light);
  font-weight: bold;
  position: absolute;
  left: 0;
  background: var(--red-gradient);
  width: 20px;
  height: 20px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  box-shadow: 0 0 8px rgba(193, 39, 45, 0.4);
}

/* Logos Section */
.logos-section {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.1) 0%, rgba(26, 29, 41, 0.5) 100%);
  border-top: 1px solid rgba(10, 36, 99, 0.4);
  border-bottom: 1px solid rgba(10, 36, 99, 0.4);
  position: relative;
  overflow: hidden;
}

.logos-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(10, 36, 99, 0.02) 10px,
      rgba(10, 36, 99, 0.02) 20px
    );
}

.logos-container {
  display: flex;
  align-items: center;
  gap: 160px;
  animation: scroll 40s linear infinite;
  width: max-content;
}

.logos-section .container {
  overflow: hidden;
  display: flex;
  justify-content: center;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-item {
  max-width: 220px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: rgba(26, 29, 41, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  filter: grayscale(80%) brightness(1.2);
  opacity: 0.7;
  transition: all 0.4s ease;
  border: 1px solid rgba(10, 36, 99, 0.3);
  border-bottom: 2px solid rgba(10, 36, 99, 0.5);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.logos-container:hover {
  animation-play-state: paused;
}

.logo-item:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(10, 36, 99, 0.6), 0 0 15px rgba(193, 39, 45, 0.3);
  border-color: var(--detroit-blue-light);
  border-bottom-color: var(--detroit-red);
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
}

/* Testimonials Section */
.testimonials {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--gray) 0%, rgba(10, 36, 99, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 90%, rgba(193, 39, 45, 0.08) 0%, rgba(10, 36, 99, 0) 70%);
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.stat-box {
  text-align: center;
  padding: 30px;
  min-width: 220px;
  background: rgba(26, 29, 41, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  border: 1px solid rgba(10, 36, 99, 0.4);
  border-top: 3px solid var(--detroit-blue);
  box-shadow: 0 10px 30px var(--shadow);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px var(--shadow-md), 0 0 20px rgba(10, 36, 99, 0.4);
  border-top-color: var(--detroit-red);
}

.stat-number {
  display: block;
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--chrome-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 15px;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(10, 36, 99, 0.6));
}

.stat-text {
  font-size: 1.2rem;
  color: var(--text);
  font-weight: 500;
}

.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
}

.testimonial-slide {
  display: none;
  animation: fadeEffect 1s;
}

.testimonial-slide.active {
  display: block;
}

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

.testimonial-content {
  background: rgba(26, 29, 41, 0.6);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 4px;
  border: 1px solid rgba(10, 36, 99, 0.4);
  border-left: 4px solid var(--detroit-red);
  box-shadow: 0 10px 30px var(--shadow), 0 0 20px rgba(10, 36, 99, 0.2);
  text-align: center;
  position: relative;
}

.testimonial-content::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 6rem;
  color: rgba(10, 36, 99, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 0;
}

.testimonial-content p {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  color: var(--text);
}

.client-info h4 {
  color: var(--dark);
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 1.1rem;
}

.client-info p {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.testimonial-controls {
  text-align: center;
  margin-top: 30px;
}

.control-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gray-dark);
  margin: 0 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.control-dot.active {
  background: var(--red-gradient);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(193, 39, 45, 0.6);
}

/* How We Work / Process Section */
.process {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.05) 0%, var(--dark) 100%);
  position: relative;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  padding: 40px 30px;
  background: rgba(26, 29, 41, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  border: 1px solid rgba(10, 36, 99, 0.4);
  border-top: 4px solid var(--detroit-blue);
  box-shadow: 0 10px 30px var(--shadow);
  transition: all 0.4s ease;
  position: relative;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-md);
  border-top-color: var(--detroit-red);
}

.step-number {
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: var(--red-gradient);
  color: var(--light);
  font-size: 2rem;
  font-weight: 900;
  border-radius: 4px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(193, 39, 45, 0.4);
}

.process-step h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--light);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.process-step p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Results Snapshot Section */
.results {
  padding: 120px 0;
  background-color: var(--dark);
  background-image:
    linear-gradient(rgba(10, 36, 99, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 36, 99, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  position: relative;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.result-card {
  padding: 40px 30px;
  background: rgba(26, 29, 41, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  border: 1px solid rgba(10, 36, 99, 0.4);
  border-left: 4px solid var(--detroit-red);
  box-shadow: 0 10px 30px var(--shadow);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.result-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-md);
  border-left-color: var(--detroit-blue-light);
}

.result-icon {
  font-size: 3rem;
  color: var(--detroit-chrome);
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(10, 36, 99, 0.6));
  transition: all 0.3s ease;
}

.result-card:hover .result-icon {
  color: var(--detroit-red);
  filter: drop-shadow(0 0 15px rgba(193, 39, 45, 0.8));
  transform: scale(1.1);
}

.result-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 10px;
  text-align: center;
}

.result-metric {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--detroit-red);
  margin-bottom: 15px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.result-description {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
  text-align: center;
}

/* Pricing Section */
.pricing {
  padding: 120px 0;
  background-color: var(--dark);
  background-image:
    linear-gradient(rgba(10, 36, 99, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 36, 99, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 70%;
  background: radial-gradient(circle at 70% 70%, rgba(193, 39, 45, 0.1) 0%, rgba(10, 36, 99, 0) 70%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.pricing-card {
  background-color: rgba(26, 29, 41, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(10, 36, 99, 0.4);
  border-top: 3px solid var(--detroit-blue);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px var(--shadow-md), 0 0 20px rgba(10, 36, 99, 0.4);
  border-top-color: var(--detroit-red);
}

.pricing-card.featured {
  border: 2px solid var(--detroit-red);
  transform: scale(1.05);
  z-index: 3;
  box-shadow: 0 15px 40px var(--shadow-md), 0 0 30px rgba(193, 39, 45, 0.4);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 25px 50px var(--shadow-lg), 0 0 40px rgba(193, 39, 45, 0.6);
}

.pricing-header {
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.3) 0%, rgba(26, 29, 41, 0.8) 100%);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(10, 36, 99, 0.3);
}

.pricing-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(10, 36, 99, 0.2) 0%, rgba(10, 36, 99, 0) 70%);
}

.pricing-card.featured .pricing-header {
  background: var(--gradient);
  color: var(--light);
  border-bottom: 2px solid var(--detroit-red);
  box-shadow: 0 4px 20px rgba(193, 39, 45, 0.3);
}

.pricing-header h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 900;
  position: relative;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--light);
}

.price {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 15px;
  position: relative;
  line-height: 1;
  color: var(--light);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.price span {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.8;
}

.price-subtitle {
  font-size: 1rem;
  opacity: 0.8;
  position: relative;
}

.pricing-features {
  padding: 40px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-features ul li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: var(--text);
}

.pricing-features ul li::before {
  content: "✓";
  color: var(--light);
  position: absolute;
  left: 0;
  font-weight: bold;
  background: var(--detroit-blue);
  width: 22px;
  height: 22px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  box-shadow: 0 0 8px rgba(10, 36, 99, 0.4);
}

.pricing-cta {
  display: block;
  text-align: center;
  background: var(--red-gradient);
  color: var(--light);
  padding: 18px;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: auto;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-top: 1px solid rgba(10, 36, 99, 0.3);
}

.pricing-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  z-index: 1;
  transition: left 0.5s ease;
}

.pricing-cta:hover {
  background: linear-gradient(135deg, var(--detroit-blue) 0%, var(--detroit-blue-light) 100%);
  box-shadow: inset 0 0 20px rgba(193, 39, 45, 0.3);
}

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

/* CTA Section */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--detroit-blue-dark) 0%, var(--detroit-blue) 100%);
  color: var(--light);
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--detroit-red);
  border-bottom: 2px solid var(--detroit-red);
  box-shadow:
    inset 0 2px 20px rgba(193, 39, 45, 0.3),
    inset 0 -2px 20px rgba(193, 39, 45, 0.3);
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(193, 39, 45, 0.2) 0%, rgba(193, 39, 45, 0) 50%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.02) 2px,
      rgba(255, 255, 255, 0.02) 4px
    );
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
}

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

.cta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 50px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(10, 36, 99, 0.5);
  border-radius: 4px;
  background-color: rgba(5, 21, 51, 0.4);
  color: var(--light);
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background-color: rgba(5, 21, 51, 0.6);
  border-color: var(--detroit-red);
  outline: none;
  box-shadow: 0 0 15px rgba(193, 39, 45, 0.3);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.contact-form select {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form select option {
  color: var(--dark);
  background-color: var(--light);
}

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

.submit-button {
  background: var(--red-gradient);
  color: var(--light);
  padding: 16px 36px;
  border: 2px solid var(--detroit-red);
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

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

.submit-button:hover {
  background: linear-gradient(135deg, var(--detroit-chrome) 0%, #a0aec0 100%);
  color: var(--detroit-blue-dark);
  border-color: var(--light);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(193, 39, 45, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

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

/* Footer */
footer {
  background: linear-gradient(180deg, var(--dark) 0%, var(--detroit-blue-dark) 100%);
  color: var(--light);
  padding: 90px 0 30px;
  border-top: 2px solid var(--detroit-red);
  box-shadow: inset 0 2px 20px rgba(193, 39, 45, 0.2);
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(10, 36, 99, 0.1) 2px,
      rgba(10, 36, 99, 0.1) 4px
    );
  pointer-events: none;
}

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

.footer-logo {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo-image {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: invert(1);
}

.footer-logo h2 {
  font-size: 2rem;
  margin: 0;
  font-weight: 800;
}

.footer-logo span {
  background: var(--red-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.footer-column {
  min-width: 180px;
  margin-bottom: 30px;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  font-weight: 600;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background: var(--red-gradient);
  bottom: 0;
  left: 0;
  border-radius: 0;
  box-shadow: 0 0 10px rgba(193, 39, 45, 0.5);
}

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

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: var(--detroit-red);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons {
  margin-bottom: 25px;
}

.social-icons a {
  display: inline-block;
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin: 0 8px;
  text-align: center;
  line-height: 45px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--red-gradient);
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(193, 39, 45, 0.6);
}

.footer-bottom p {
  font-size: 0.95rem;
  opacity: 0.7;
}

/* Pricing Toggle Styles */
.pricing-toggle-container {
  display: flex;
  background-color: rgba(10, 36, 99, 0.3);
  border-radius: 4px;
  padding: 4px;
  margin: 30px 30px 25px 30px;
  position: relative;
  border: 1px solid rgba(10, 36, 99, 0.5);
}

/* Add top padding to cards without toggle to match spacing */
.pricing-card:not(:has(.pricing-toggle-container)) .pricing-header {
  padding-top: 70px;
}

.pricing-toggle {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background: transparent;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.pricing-toggle.active {
  background: var(--red-gradient);
  color: var(--light);
  box-shadow: 0 2px 8px rgba(193, 39, 45, 0.4), 0 0 12px rgba(193, 39, 45, 0.3);
}

.pricing-toggle:hover:not(.active) {
  color: var(--text);
}

/* Pricing content transitions */
.pricing-header h3,
.pricing-header .price,
.pricing-features ul {
  transition: opacity 0.15s ease;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3.2rem;
  }

  .hero-shape {
    width: 380px;
    height: 380px;
  }

  header .cta-button {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .nav-links li {
    margin: 0 12px;
  }

  .nav-links a {
    font-size: 0.85rem;
  }
}

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-shape {
    width: 320px;
    height: 320px;
  }

  .logos-container {
    gap: 100px;
    animation-duration: 30s;
  }

  .logo-item {
    max-width: 160px;
    height: 80px;
    padding: 18px;
  }

  header .cta-button {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .nav-links li {
    margin: 0 10px;
  }

  .nav-links a {
    font-size: 0.8rem;
  }

  .logo h1 {
    font-size: 1.5rem;
  }

  .logo-image {
    height: 28px;
  }
}

@media (max-width: 768px) {
  .credibility-points {
    flex-direction: column;
    gap: 20px;
  }

  .cred-point {
    justify-content: center;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  header .container {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 16px 16px;
    margin-top: 0;
    order: 3;
    z-index: 1000;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .nav-links.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links li {
    margin: 0;
    border-bottom: 1px solid rgba(60, 141, 124, 0.1);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
  .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    transition: all 0.3s ease;
    position: relative;
  }

  .nav-links a:hover {
    background-color: var(--juniper-ultra-light);
    color: var(--juniper);
    padding-left: 40px;
  }

  .nav-links a::after {
    display: none;
  }

  .mobile-cta {
    padding: 15px 20px;
    border-top: 2px solid rgba(60, 141, 124, 0.2);
  }

  .mobile-cta-button {
    display: block;
    background: var(--gradient);
    color: var(--light) !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(60, 141, 124, 0.2);
  }

  .mobile-cta-button:hover {
    background: linear-gradient(135deg, #2c6b5d 0%, #1a6b7a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(60, 141, 124, 0.3);
    padding-left: 24px;
  }

  .hamburger {
    display: block;
    order: 2;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  header .cta-button {
    display: none;
  }

  .logo {
    order: 1;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    margin-bottom: 60px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .rotating-text {
    min-width: 160px;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-15px);
  }

  .logos-container {
    gap: 30px;
  }

  .logo-item {
    max-width: 120px;
    height: 50px;
  }

  .logo-image {
    height: 28px;
  }

  .footer-logo-image {
    height: 35px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .rotating-text {
    min-width: 140px;
  }

  .hero-shape {
    width: 280px;
    height: 280px;
  }

  .stat-box {
    width: 100%;
    margin-bottom: 30px;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
  }

  .logos-container {
    gap: 80px;
    animation-duration: 25s;
  }

  .logo-item {
    max-width: 120px;
    height: 60px;
    padding: 15px;
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }

  .logo-image {
    height: 24px;
  }

  .footer-logo-image {
    height: 30px;
  }
}

/* Rotating Text Styles */
.rotating-text {
  display: inline-block;
  position: relative;
  overflow: hidden;
  color: var(--detroit-red);
  font-weight: 900;
  vertical-align: baseline;
  height: 1.2em;
  line-height: 1.2;
  text-align: left;
  min-width: 200px;
}

.rotating-word {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(0);
  white-space: nowrap;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1.2;
  text-align: left;
  width: 100%;
}

.rotating-word.slide-up {
  transform: translateY(-1.2em);
}

.rotating-word.slide-from-bottom {
  transform: translateY(1.2em);
}
