/* Cowboy Roof Support - Main Stylesheet */
/* Theme: Western/Rustic inspired by logo */
/* Colors: Dark Brown #3D2314, Copper #C4652A, Cream #F5F0E6 */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Oswald', 'Arial Black', sans-serif;
  background: #3D2314;
  color: #F5F0E6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ========================================
   NAVIGATION
   ======================================== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 60px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #F5F0E6;
  border-bottom: 3px solid #C4652A;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.logo-container {
  display: flex;
  align-items: center;
}
.nav-icon-logo {
  height: 55px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s;
}
.nav-icon-logo:hover {
  transform: scale(1.03);
}

/* Desktop Nav Links */
.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-links a {
  color: #3D2314;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: #C4652A; }
.nav-cta {
  background: #C4652A;
  color: #F5F0E6 !important;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  border: 2px solid #C4652A;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: transparent;
  color: #C4652A !important;
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  z-index: 200;
  background: none;
  border: none;
}
.hamburger:focus {
  outline: 2px solid #C4652A;
  outline-offset: 2px;
}
.hamburger span {
  width: 28px;
  height: 3px;
  background: #3D2314;
  transition: transform 0.3s, opacity 0.3s;
  will-change: transform, opacity;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(61, 35, 20, 0.98);
  z-index: 150;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  color: #F5F0E6;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: #C4652A; }
.mobile-menu .mobile-phone {
  margin-top: 20px;
  background: #C4652A;
  padding: 20px 40px;
  font-size: 20px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(196, 101, 42, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(196, 101, 42, 0.1) 0%, transparent 40%),
    linear-gradient(180deg, #3D2314 0%, #2A180E 100%);
}

/* Animated Scrolling Text Background */
.scrolling-text-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 60px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
}
.scrolling-text {
  display: flex;
  white-space: nowrap;
  animation: scroll-left 25s linear infinite;
  will-change: transform;
}
.scrolling-text-reverse {
  animation: scroll-right 25s linear infinite;
}
.scrolling-text span {
  font-size: 120px;
  font-weight: 900;
  letter-spacing: 20px;
  color: #C4652A;
  padding-right: 100px;
  text-transform: uppercase;
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.hero-logo-bg {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: auto;
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
}
.hero-line {
  position: absolute;
  top: 0;
  right: 35%;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #C4652A, transparent);
  transform: skewX(-15deg);
  opacity: 0.4;
}
.hero-bg-text {
  display: none;
}
.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-tag {
  display: inline-block;
  background: rgba(196, 101, 42, 0.25);
  border: 1px solid rgba(196, 101, 42, 0.5);
  padding: 10px 20px;
  margin-bottom: 30px;
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 700;
  color: #C4652A;
}
.hero h1 {
  font-size: 72px;
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 30px;
  letter-spacing: -3px;
  color: #F5F0E6;
}
.hero h1 span {
  color: #C4652A;
  display: inline-block;
  position: relative;
}
.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #C4652A;
  border-radius: 2px;
}
.hero p {
  font-size: 16px;
  color: rgba(245, 240, 230, 0.7);
  line-height: 1.8;
  margin-bottom: 45px;
  max-width: 480px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: #C4652A;
  color: #F5F0E6;
  border: 2px solid #C4652A;
  padding: 20px 45px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  min-height: 54px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-primary:hover {
  background: transparent;
  color: #C4652A;
}
.video-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(245, 240, 230, 0.6);
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
}
.video-btn {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(245, 240, 230, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.video-btn:hover {
  border-color: #C4652A;
  color: #C4652A;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: rgba(196, 101, 42, 0.3);
}
.stat-item {
  background: #3D2314;
  padding: 45px 35px;
  position: relative;
  overflow: hidden;
}
.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 30%;
  background: #C4652A;
}
.stat-num {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  color: #F5F0E6;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: #C4652A;
  font-weight: 700;
}
.stat-sub {
  font-size: 10px;
  color: rgba(245, 240, 230, 0.5);
  letter-spacing: 1px;
  margin-top: 3px;
  font-family: 'Open Sans', sans-serif;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-text {
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(245, 240, 230, 0.4);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, #C4652A, transparent);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
  padding: 120px 60px;
  background: #F5F0E6;
  color: #3D2314;
  position: relative;
}
.services-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}
.section-tag {
  font-size: 11px;
  letter-spacing: 4px;
  color: #C4652A;
  font-weight: 700;
  margin-bottom: 15px;
}
.section-title {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
  color: #3D2314;
}
.services-header p {
  font-size: 14px;
  color: #6B5344;
  max-width: 400px;
  line-height: 1.7;
  font-family: 'Open Sans', sans-serif;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  padding: 50px 40px;
  border-right: 1px solid rgba(61, 35, 20, 0.15);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  will-change: transform, background;
}
.service-card:last-child { border-right: none; }
.service-card:hover {
  background: #3D2314;
}
.service-card:hover .service-num { color: #C4652A; opacity: 1; }
.service-card:hover .service-title { color: #F5F0E6; }
.service-card:hover .service-desc { color: rgba(245, 240, 230, 0.7); }
.service-num {
  font-size: 60px;
  font-weight: 900;
  color: #C4652A;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.service-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 15px;
  transition: color 0.3s;
  color: #3D2314;
}
.service-desc {
  font-size: 14px;
  color: #6B5344;
  line-height: 1.6;
  font-family: 'Open Sans', sans-serif;
  transition: color 0.3s;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
  background: #C4652A;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.cta-circle {
  position: absolute;
  right: 10%;
  top: -50%;
  width: 400px;
  height: 400px;
  border: 80px solid rgba(61, 35, 20, 0.15);
  border-radius: 50%;
}
.cta-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta h3 {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 10px;
  color: #F5F0E6;
}
.cta p {
  color: rgba(245, 240, 230, 0.85);
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
}
.cta-phone {
  background: #3D2314;
  color: #F5F0E6;
  padding: 25px 50px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
  border: 2px solid #3D2314;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
}
.cta-phone:hover {
  background: transparent;
  border-color: #F5F0E6;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: #2A180E;
  padding: 50px 60px;
  border-top: 3px solid #C4652A;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.footer-name {
  font-size: 18px;
  font-weight: 900;
  color: #F5F0E6;
}
.footer-divider {
  color: rgba(245, 240, 230, 0.3);
}
.footer-tagline {
  color: #C4652A;
  font-size: 12px;
  letter-spacing: 2px;
}
footer p {
  font-size: 12px;
  color: rgba(245, 240, 230, 0.5);
  font-family: 'Open Sans', sans-serif;
}

/* ========================================
   RESPONSIVE - TABLET (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {
  nav { padding: 20px 40px; }
  .nav-links { gap: 25px; }
  .nav-links a { font-size: 11px; }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 0 40px;
    gap: 60px;
  }
  .hero h1 { font-size: 56px; }
  .hero-bg-text { font-size: 200px; right: -10%; }

  .stats-grid { margin-top: 20px; }

  .services { padding: 80px 40px; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .section-title { font-size: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card {
    border-right: none;
    border-bottom: 1px solid rgba(61, 35, 20, 0.15);
    padding: 40px 30px;
  }
  .service-card:last-child { border-bottom: none; }

  .cta { padding: 60px 40px; }
  .cta-inner {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .cta h3 { font-size: 32px; }

  footer { padding: 40px; }
  .footer-inner { justify-content: center; text-align: center; }
}

/* ========================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
  /* Navigation - show hamburger */
  nav { padding: 20px 25px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .banner-logo { height: 50px; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content {
    padding: 120px 25px 100px;
    gap: 50px;
  }
  .hero-tag {
    font-size: 9px;
    letter-spacing: 2px;
    padding: 8px 15px;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: 42px;
    letter-spacing: -2px;
    margin-bottom: 20px;
  }
  .hero h1 span::after { height: 3px; }
  .hero p {
    font-size: 15px;
    margin-bottom: 35px;
    line-height: 1.7;
  }
  .hero-logo-bg {
    width: 300px;
    right: 50%;
    transform: translate(50%, -50%);
    opacity: 0.04;
  }
  .hero-line { display: none; }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }
  .btn-primary {
    width: 100%;
    text-align: center;
    padding: 18px 35px;
    justify-content: center;
    display: flex;
  }
  .video-link {
    width: 100%;
    justify-content: center;
    padding: 10px 0;
  }

  /* Stats */
  .stats-grid { gap: 2px; }
  .stat-item { padding: 30px 20px; }
  .stat-num { font-size: 36px; }
  .stat-label { font-size: 10px; }
  .stat-sub { font-size: 9px; }

  /* Scroll indicator - hide on mobile */
  .scroll-indicator { display: none; }

  /* Services */
  .services { padding: 60px 25px; }
  .section-tag { font-size: 10px; letter-spacing: 3px; }
  .section-title { font-size: 32px; letter-spacing: -1px; }
  .services-header { margin-bottom: 40px; }
  .services-header p { font-size: 14px; }
  .service-card { padding: 35px 25px; }
  .service-num { font-size: 48px; margin-bottom: 15px; }
  .service-title { font-size: 20px; }
  .service-desc { font-size: 14px; }

  /* CTA */
  .cta { padding: 50px 25px; }
  .cta h3 { font-size: 28px; }
  .cta p { font-size: 15px; }
  .cta-phone {
    padding: 20px 40px;
    font-size: 18px;
    width: 100%;
    justify-content: center;
  }
  .cta-circle { display: none; }

  /* Footer */
  footer { padding: 35px 25px; }
  .footer-brand {
    flex-direction: column;
    gap: 8px;
  }
  .footer-divider { display: none; }
  .footer-name { font-size: 16px; }
  footer p { font-size: 11px; margin-top: 15px; }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (max-width: 400px)
   ======================================== */
@media (max-width: 400px) {
  nav { padding: 15px 20px; }
  .banner-logo { height: 40px; }

  .hero-content { padding: 110px 20px 80px; }
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 14px; }

  .stat-item { padding: 25px 15px; }
  .stat-num { font-size: 30px; }

  .services { padding: 50px 20px; }
  .section-title { font-size: 28px; }

  .cta { padding: 40px 20px; }
  .cta h3 { font-size: 24px; }
}

/* ========================================
   WOW FACTOR - ANIMATIONS & EFFECTS
   ======================================== */

/* Entrance Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Hero Content Animations */
.hero-tag {
  animation: fadeInUp 0.8s ease-out 0.2s both;
  will-change: opacity, transform;
}
.hero h1 {
  animation: fadeInUp 0.8s ease-out 0.4s both;
  will-change: opacity, transform;
}
.hero p {
  animation: fadeInUp 0.8s ease-out 0.6s both;
  will-change: opacity, transform;
}
.hero-actions {
  animation: fadeInUp 0.8s ease-out 0.8s both;
  will-change: opacity, transform;
}
.stats-grid {
  animation: fadeInRight 1s ease-out 0.6s both;
  will-change: opacity, transform;
}

/* Stats Counter Animation */
.stat-item {
  transition: transform 0.4s ease, background 0.4s ease;
  will-change: transform, background;
}
.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(196, 101, 42, 0.15);
}
.stat-item:hover .stat-num {
  color: #C4652A;
}

/* Button Enhancements */
.btn-primary {
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out 0.8s both;
  will-change: transform, opacity;
}
.btn-primary:hover {
  transform: translateY(-2px);
}

/* Video Button Pulse Effect */
.video-btn {
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.video-btn:hover {
  transform: scale(1.1);
  background: rgba(196, 101, 42, 0.2);
}

/* Nav CTA Glow Effect */
.nav-cta {
  position: relative;
  overflow: hidden;
}

/* Service Cards Enhanced Animation */
.service-card {
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #C4652A;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  will-change: transform;
}
.service-card:hover::after {
  transform: scaleX(1);
}
.service-card:hover {
  transform: translateY(-5px);
}

/* CTA Phone Number Animation */
.cta-phone {
  position: relative;
  overflow: hidden;
}
.cta-phone:hover {
  transform: scale(1.03);
}

/* Scroll Indicator Animation */
.scroll-line {
  animation: scrollBounce 2s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.5; }
}

/* Parallax effect for hero background elements */
.hero-logo-bg {
  animation: float 6s ease-in-out infinite;
  will-change: transform;
}

/* Section reveal on scroll */
.services,
.cta {
  opacity: 1;
}

/* Enhanced hover states for all links */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #C4652A;
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}

/* Mobile Menu Animations */
.mobile-menu a {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}
.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.5s; }

/* Gradient text effect for hero title */
.hero h1 span {
  background: linear-gradient(135deg, #C4652A 0%, #E8884D 50%, #C4652A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
}

/* Hero tag enhanced styling */
.hero-tag {
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  will-change: opacity, transform;
}

/* ========================================
   RESPONSIVE ANIMATIONS - TABLET
   ======================================== */
@media (max-width: 1024px) {
  .scrolling-text span {
    font-size: 80px;
    letter-spacing: 15px;
    padding-right: 60px;
  }
  .scrolling-text-container {
    gap: 40px;
  }
}

/* ========================================
   RESPONSIVE ANIMATIONS - MOBILE
   ======================================== */
@media (max-width: 768px) {
  .nav-icon-logo {
    height: 45px;
    width: auto;
  }

  .scrolling-text span {
    font-size: 50px;
    letter-spacing: 10px;
    padding-right: 40px;
  }
  .scrolling-text-container {
    gap: 25px;
    opacity: 0.06;
  }
  .scrolling-text {
    animation-duration: 15s;
  }
  .scrolling-text-reverse {
    animation-duration: 15s;
  }

  /* Reduce animation complexity on mobile for performance */
  .hero-logo-bg {
    animation: none;
  }

  /* Keep important animations but simplify others */
  .stat-item:hover {
    transform: none;
  }
  .service-card:hover {
    transform: none;
  }
  .btn-primary:hover {
    transform: none;
  }
}

/* ========================================
   RESPONSIVE ANIMATIONS - SMALL MOBILE
   ======================================== */
@media (max-width: 400px) {
  .nav-icon-logo {
    height: 38px;
    width: auto;
  }

  .scrolling-text span {
    font-size: 36px;
    letter-spacing: 8px;
    padding-right: 30px;
  }
  .scrolling-text-container {
    gap: 20px;
  }
}

/* ========================================
   REDUCED MOTION ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  .scrolling-text,
  .scrolling-text-reverse {
    animation: none;
  }
  .hero-tag,
  .hero h1,
  .hero p,
  .hero-actions,
  .stats-grid,
  .btn-primary {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .video-btn {
    animation: none;
  }
  .hero-logo-bg {
    animation: none;
  }
  .scroll-line {
    animation: none;
  }
  .cta-phone::before {
    animation: none;
  }
  .hero h1 span {
    animation: none;
    background: none;
    -webkit-text-fill-color: #C4652A;
  }
}
