:root {
  --danger-orange: #ff6b35;
  --tactical-amber: #ffb627;
  --concrete-dark: #0a0a0a;
  --concrete-mid: #1a1a1a;
  --concrete-light: #2a2a2a;
  --steel: #4a4a4a;
  --grid-line: rgba(255, 107, 53, 0.1);
}

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

html {
  scroll-padding-top: 110px;
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  background: var(--concrete-dark);
  color: #e8e8e8;
  overflow-x: hidden;
  line-height: 1.8;
  font-size: 16px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 49px,
      var(--grid-line) 49px,
      var(--grid-line) 50px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 49px,
      var(--grid-line) 49px,
      var(--grid-line) 50px
    );
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

.content-wrapper {
  position: relative;
  z-index: 2;
}

nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--danger-orange);
  padding: 1.2rem 2rem;
  z-index: 1000;
  animation: slideDown 0.6s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo {
  margin-right: 0;
  flex-shrink: 0;
}

.logo img {
  height: 40px;
  width: auto;
  max-width: 100%;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.45rem;
  min-width: 0;
  flex: 1 1 auto;
}

.nav-links a {
  color: #c8c8c8;
  text-decoration: none;
  font-size: 0.79rem;
  text-transform: uppercase;
  letter-spacing: 0.95px;
  line-height: 1.45;
  transition: all 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--danger-orange);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--danger-orange);
}

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

.cta-button {
  background: var(--danger-orange);
  color: white;
  padding: 0.78rem 1.45rem;
  border: none;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.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);
  transition: left 0.5s;
}

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

.cta-button:hover {
  background: #ff8555;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.nav-links .cta-button {
  color: #ffffff !important;
  margin-left: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links .cta-button:hover,
.nav-links .cta-button:focus {
  color: #ffffff !important;
}

.nav-links .cta-button::after {
  display: none;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #e8e8e8;
  background: none;
  border: none;
  padding: 0.5rem;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 182, 39, 0.08) 0%, transparent 50%);
}

.hero-content {
  max-width: 1200px;
  text-align: center;
  position: relative;
  animation: fadeInUp 1s ease;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tag {
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--danger-orange);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  font-weight: 600;
}

.hero-tag::before,
.hero-tag::after {
  content: "//";
  margin: 0 1rem;
  opacity: 0.5;
}

.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 0.95;
  margin-bottom: 2rem;
  letter-spacing: 3px;
}

.hero h1 .bad-guys {
  color: var(--danger-orange);
  display: block;
}

.hero h1 .good-reasons {
  color: #e8e8e8;
  display: block;
  position: relative;
  padding-left: 2rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: #c8c8c8;
  margin-bottom: 1rem;
  font-weight: 400;
}

.hero-subtitle strong {
  color: var(--tactical-amber);
}

.hero-description {
  font-size: 1rem;
  color: #aaaaaa;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  text-decoration: none;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--danger-orange);
  color: white;
  padding: 1.2rem 3rem;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #ff8555;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #e8e8e8;
  padding: 1.2rem 3rem;
  border: 2px solid var(--steel);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--danger-orange);
  color: var(--danger-orange);
  background: rgba(255, 107, 53, 0.1);
}

.hero-meta {
  margin-top: 3rem;
  font-size: 0.85rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-meta strong {
  color: var(--danger-orange);
}

.video-section {
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
  border-top: 1px solid var(--concrete-light);
  border-bottom: 1px solid var(--concrete-light);
  padding: 4rem 2rem;
}

.video-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border: 2px solid var(--danger-orange);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  background: #000;
}

.video-lite {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #000;
  color: #fff;
  overflow: hidden;
}

.video-lite::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.42) 100%);
}

.video-lite img,
.video-lite picture {
  width: 100%;
  height: 100%;
  display: block;
}

.video-lite img {
  object-fit: cover;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 62px;
  transform: translate(-50%, -50%);
  background: rgba(255, 107, 53, 0.92);
  border-radius: 14px;
  z-index: 2;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.video-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 21px solid #fff;
}

.video-lite:hover .video-play,
.video-lite:focus-visible .video-play {
  background: #ff7f52;
  transform: translate(-50%, -50%) scale(1.04);
}

.video-lite-label {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 2;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.35rem 0.55rem;
  white-space: nowrap;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  text-align: center;
  margin-top: 1rem;
  color: #aaaaaa;
  font-size: 0.95rem;
}

.testimonial-bar {
  background: var(--concrete-mid);
  border-top: 1px solid var(--concrete-light);
  border-bottom: 1px solid var(--concrete-light);
  padding: 2rem;
  text-align: center;
}

.testimonial-bar p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #c8c8c8;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-bar cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--tactical-amber);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
}

section {
  padding: 6rem 2rem;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--danger-orange);
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #e8e8e8;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #aaaaaa;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.courses-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.course-card {
  background: var(--concrete-mid);
  border: 2px solid var(--concrete-light);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform, border-color, box-shadow;
}

.course-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  transition: left 0.6s;
}

.course-card:hover {
  transform: translateY(-10px);
  border-color: var(--danger-orange);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.course-card:hover::before {
  left: 100%;
}

.course-image {
  width: 100%;
  height: 250px;
  background: var(--concrete-light);
  position: relative;
  overflow: hidden;
}

.course-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.7) 100%);
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.course-content {
  padding: 2rem;
  text-align: center;
}

.course-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  color: #e8e8e8;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.course-description {
  color: #aaaaaa;
  margin: 0 auto 2rem;
  line-height: 1.6;
  max-width: 34ch;
}

.course-cta {
  display: block;
  text-align: center;
  padding: 1rem;
  background: var(--danger-orange);
  color: white;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.course-cta:hover {
  background: #ff8555;
}

.course-cta.secondary {
  background: transparent;
  border: 2px solid var(--steel);
  color: #e8e8e8;
}

.course-cta.secondary:hover {
  border-color: var(--danger-orange);
  color: var(--danger-orange);
  background: rgba(255, 107, 53, 0.1);
}

.scenarios-section {
  background: linear-gradient(135deg, #0c0c0c 0%, #171717 100%);
}

.scenario-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.scenario-card {
  background: var(--concrete-mid);
  border: 1px solid var(--concrete-light);
  overflow: hidden;
}

.scenario-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.scenario-copy {
  padding: 1rem;
}

.scenario-copy h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #e8e8e8;
  letter-spacing: 0.5px;
}

.scenario-copy p {
  color: #afafaf;
  font-size: 0.9rem;
  line-height: 1.55;
}

.scenarios-cta {
  margin-top: 2rem;
  text-align: center;
}

.events-section {
  background: var(--concrete-mid);
}

.events-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.event-card {
  background: var(--concrete-dark);
  border-left: 4px solid var(--danger-orange);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  will-change: transform, box-shadow;
}

.event-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.event-card:hover {
  transform: translateX(10px);
  box-shadow: -5px 5px 30px rgba(255, 107, 53, 0.2);
}

.event-card.featured {
  border-left-width: 6px;
  background: linear-gradient(135deg, var(--concrete-dark) 0%, rgba(255, 107, 53, 0.05) 100%);
}

.event-date {
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--danger-orange);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.event-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: #e8e8e8;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.event-description {
  color: #aaaaaa;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.event-urgency {
  color: var(--tactical-amber);
  font-size: 0.85rem;
  margin-bottom: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--danger-orange);
  color: white;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.event-cta:hover {
  background: #ff8555;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.event-cta.secondary {
  background: transparent;
  border: 2px solid var(--steel);
}

.event-cta.secondary:hover {
  border-color: var(--danger-orange);
  background: rgba(255, 107, 53, 0.1);
}

.protection-section {
  background: linear-gradient(135deg, #0a0a0a 0%, var(--concrete-mid) 100%);
  text-align: center;
}

.protection-content {
  max-width: 800px;
  margin: 0 auto;
}

.protection-content h2 {
  margin-bottom: 1.5rem;
}

.protection-content p {
  color: #aaaaaa;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.contact-info {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #888;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.contact-info a {
  color: #c8c8c8;
  text-decoration: none;
}

.contact-info a:hover {
  color: var(--danger-orange);
  text-decoration: underline;
}

.about-section {
  background: var(--concrete-dark);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: #c8c8c8;
}

.profile-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
}

.faq-section {
  background: var(--concrete-mid);
  padding: 6rem 2rem;
}

.faq-item {
  margin-bottom: 2rem;
}

.faq-question {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  color: #e8e8e8;
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: #aaaaaa;
  line-height: 1.6;
}

footer {
  background: #000;
  border-top: 2px solid var(--danger-orange);
  padding: 4rem 2rem 3rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-cta {
  margin-bottom: 3rem;
}

.footer-cta h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: #e8e8e8;
  margin-bottom: 2rem;
  letter-spacing: 2px;
}

.lead-capture {
  max-width: 600px;
  margin: 3rem auto;
  padding: 2.5rem;
  background: var(--concrete-mid);
  border: 2px solid var(--concrete-light);
}

.lead-capture h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  color: var(--tactical-amber);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.lead-capture p {
  color: #aaaaaa;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.traffic-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.traffic-links .btn-primary,
.traffic-links .btn-secondary {
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.footer-meta {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--concrete-light);
  color: #888;
  font-size: 0.85rem;
}

.footer-meta a {
  color: var(--danger-orange);
  text-decoration: none;
}

.footer-meta a:hover {
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.section-image {
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
  display: block;
}

@media (max-width: 1280px) {
  body::before,
  body::after {
    display: none;
  }

  nav {
    backdrop-filter: none;
    padding: 1rem;
  }

  .nav-container {
    gap: 0.75rem;
  }

  .logo img {
    height: 36px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1.35rem 1.25rem 1.5rem;
    gap: 1rem;
    border-top: 2px solid var(--danger-orange);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  }

  .nav-links.active {
    display: flex;
  }

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

  .nav-links .cta-button {
    margin-left: 0;
    width: 100%;
  }

  .hamburger {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 6.25rem 1.5rem 2.75rem;
  }

  .hero-content {
    max-width: 960px;
  }

  .hero-tag {
    margin-bottom: 1.25rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 8vw, 5.4rem);
    margin-bottom: 1.25rem;
    letter-spacing: 2px;
  }

  .hero-subtitle {
    margin-bottom: 0.75rem;
  }

  .hero-description {
    margin-bottom: 1.5rem;
  }

  .hero-meta {
    margin-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0.9rem 1rem;
  }

  .logo img {
    height: 34px;
  }

  .hero {
    min-height: auto;
    padding: 5rem 1rem 2.25rem;
  }

  .hero-content {
    width: min(100%, 32rem);
  }

  .hero-tag {
    margin-bottom: 1rem;
    font-size: 0.76rem;
    letter-spacing: 2px;
  }

  .hero h1 {
    font-size: 2.85rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
  }

  .hero h1 .good-reasons {
    padding-left: 0;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .hero-description {
    font-size: 0.95rem;
    max-width: 26rem;
    margin-bottom: 1.25rem;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 1rem 1.15rem;
    font-size: 0.95rem;
  }

  .hero-meta {
    margin-top: 1rem;
    font-size: 0.8rem;
    line-height: 1.6;
    max-width: 24rem;
    margin-inline: auto;
  }

  section {
    padding: 4rem 1rem;
  }

  .video-section {
    padding: 3rem 1rem;
  }

  .video-play {
    width: 72px;
    height: 52px;
  }

  .video-play::before {
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 18px;
  }

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

  .traffic-links .btn-primary,
  .traffic-links .btn-secondary {
    width: 100%;
  }
}
