body {
  font-family: "Roboto", sans-serif;
}
:root {
  --brand-red: #c74832;
  --brand-blue: #2f6ea4;
}

.blur-bg {
  filter: blur(5px);
  background: #0000;
  opacity: 0.1;
}

.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.neumorphic {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  box-shadow:
    20px 20px 60px #0a0a0a,
    -20px -20px 60px #202020;
}

.gradient-bg {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0a0a0a 100%);
  background-attachment: fixed;
}

.aurora-gradient {
  background: linear-gradient(
    135deg,
    rgba(199, 72, 50, 0.1) 0%,
    rgba(47, 110, 164, 0.1) 25%,
    rgba(199, 72, 50, 0.05) 50%,
    rgba(47, 110, 164, 0.1) 75%,
    rgba(199, 72, 50, 0.1) 100%
  );
  animation: aurora 20s ease-in-out infinite;
}

@keyframes aurora {
  0%,
  100% {
    transform: translateX(0) translateY(0) scale(1);
  }

  33% {
    transform: translateX(-20px) translateY(-10px) scale(1.05);
  }

  66% {
    transform: translateX(20px) translateY(10px) scale(0.95);
  }
}

.hero-headline {
  opacity: 0;
  transform: translateY(50px);
}

.hero-subtext {
  opacity: 0;
  transform: translateY(30px);
}

.hero-cta {
  opacity: 0;
  transform: translateY(20px);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
}

.sticky-header {
  backdrop-filter: blur(20px);
  background: rgba(15, 15, 15, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pulse-cta {
  animation: pulse-cta 2s infinite;
}

@keyframes pulse-cta {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(199, 72, 50, 0.7);
  }

  50% {
    box-shadow: 0 0 0 20px rgba(199, 72, 50, 0);
  }
}

.testimonial-card {
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(199, 72, 50, 0.2);
}

.process-step {
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: scale(1.05);
}

.btn-lg {
  padding: 25px;
  width: 100%;
  text-align: center;
}

.xl-text {
  font-size: 5.1em;
}

.bolder-text {
  font-weight: 900;
}
.main-gradient {
  display: inline-block;
  background: linear-gradient(90deg, #c74832, #2f6ea4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2.top-heading {
  font-size: 2.1em;
  font-weight: 300;
}

h2.sub-heading {
  font-size: 3em;
  font-weight: 900;
}
.lh-1 {
  line-height: 1;
}

.glow {
  text-shadow:
    0 0 1px #fff,
    0 0 14px #fff,
    0 0 30px #2f6ea4,
    0 0 40px #2f6ea4,
    0 0 50px #2f6ea4,
    0 0 60px #2f6ea4,
    0 0 70px #2f6ea4;
}

@media (min-width: 768px) {
  .btn-lg {
    padding: 20px !important;
    width: 14em;
  }
}
