/* Enhanced hero.css with improved animations and pink theme compatibility */

:root {
  --brand-color-1: #e91e63; /* Pink primary to match logo */
  --brand-color-2: #ff5c8d; /* Lighter pink */
  --brand-color-3: #ad1457; /* Darker pink */
  --brand-color-4: #651fff; /* Accent purple */
  --text-color-main: #1a1a2e;
  --text-color-secondary: #404055;
  --white: #ffffff;
  --bg-light: #f8f9ff;
}
  .hero {
    position: relative;
    overflow: hidden;
    padding: 9rem 0 7rem;
    min-height: 95vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: var(--bg-light);
  }
  
  /* Background elements */
  .hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
  }
  
  /* The large gradient blob shapes with more complex animations */
  .hero-shape-main {
    position: absolute;
    width: 160%;
    height: 110%;
    top: -40%;
    left: -30%;
    background: linear-gradient(120deg, var(--brand-color-1), var(--brand-color-2), var(--brand-color-3));
    transform: rotate(-12deg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.07;
    animation: morph 18s ease-in-out infinite alternate, shift 25s ease-in-out infinite;
  }
  
  .hero-shape-secondary {
    position: absolute;
    width: 140%;
    height: 100%;
    top: -25%;
    right: -25%;
    background: linear-gradient(-60deg, var(--brand-color-3), var(--brand-color-1), var(--brand-color-4));
    transform: rotate(5deg);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.05;
    animation: morph 15s ease-in-out infinite alternate-reverse, shift 20s ease-in-out infinite reverse;
  }
  
  .hero-shape-tertiary {
    position: absolute;
    width: 150%;
    height: 90%;
    bottom: -40%;
    left: -25%;
    background: linear-gradient(60deg, var(--brand-color-4), var(--brand-color-1), var(--brand-color-2));
    transform: rotate(-8deg);
    border-radius: 70% 30% 50% 50% / 40% 60% 40% 60%;
    opacity: 0.04;
    animation: morph 20s ease-in-out infinite alternate, shift 30s ease-in-out infinite;
  }
  /* Enhanced form group styles */


/* Input styling */
#vehicle-reg {
  background-color: var(--white);
  color: var(--text-color-main);
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  width: 220px;
  height: 100%;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

#vehicle-reg:focus {
  outline: none;
  border-color: var(--brand-color-1);
  box-shadow: 0 8px 16px rgba(233, 30, 99, 0.1);
}

#vehicle-reg::placeholder {
  color: var(--text-color-secondary);
  opacity: 0.6;
}

/* Create capsule effect by modifying button and hero-buttons */
.hero-buttons {
  display: flex;
  position: relative;
  animation: fade-in-up 1s ease-out 0.6s backwards;
}

/* Adjust cta-button to create capsule appearance with input */
.cta-button {
  z-index: 0;
  padding-left: 2rem;
}

  
  /* Enhanced morphing keyframes */
  @keyframes morph {
    0% {
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
      border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%;
    }
    50% {
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    75% {
      border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
    }
    100% {
      border-radius: 30% 70% 60% 40% / 50% 60% 40% 50%;
    }
  }
  
  @keyframes shift {
    0% {
      transform: rotate(-12deg) translateY(0);
    }
    50% {
      transform: rotate(-8deg) translateY(20px);
    }
    100% {
      transform: rotate(-12deg) translateY(0);
    }
  }
  
  /* Grid lines with perspective and animation */
  .grid-lines {
    position: absolute;
    width: 250%;
    height: 250%;
    top: -75%;
    left: -75%;
    z-index: 0;
    opacity: 0.04;
    background-size: 40px 40px;
    background-image:
      linear-gradient(to right, var(--brand-color-1) 1px, transparent 1px),
      linear-gradient(to bottom, var(--brand-color-1) 1px, transparent 1px);
    transform: perspective(1000px) rotateX(60deg) scale(2.5);
    transform-origin: center center;
    animation: grid-pulse 15s infinite alternate ease-in-out;
  }
  
  @keyframes grid-pulse {
    0% {
      opacity: 0.03;
      transform: perspective(1000px) rotateX(60deg) scale(2.5);
    }
    50% {
      opacity: 0.05;
      transform: perspective(1000px) rotateX(65deg) scale(2.7);
    }
    100% {
      opacity: 0.03;
      transform: perspective(1000px) rotateX(60deg) scale(2.5);
    }
  }
  
  /* ANPR Scanner effect */
  .anpr-scanner {
    position: absolute;
    width: 160px;
    height: 60px;
    top: 40%;
    right: 15%;
    background: rgba(233, 30, 99, 0.05);
    border: 1px solid rgba(233, 30, 99, 0.1);
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.2);
    overflow: hidden;
    z-index: 2;
    animation: scanner-float 10s ease-in-out infinite;
  }
  
  .anpr-scanner::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, rgba(233, 30, 99, 0.8), transparent);
    top: 0;
    left: 0;
    animation: scan-line 2s linear infinite;
  }
  
  @keyframes scan-line {
    0% {
      top: 0;
    }
    100% {
      top: 100%;
    }
  }
  
  @keyframes scanner-float {
    0% {
      transform: translateY(0) rotate(0deg);
    }
    25% {
      transform: translateY(-15px) rotate(-2deg);
    }
    50% {
      transform: translateY(0) rotate(0deg);
    }
    75% {
      transform: translateY(15px) rotate(2deg);
    }
    100% {
      transform: translateY(0) rotate(0deg);
    }
  }
  
  /* License plate animation */
  .license-plate {
    position: absolute;
    width: 130px;
    height: 40px;
    bottom: 20%;
    left: 80%;
    z-index: 2;
    animation: plate-float 14s ease-in-out infinite;
  }
  
  .plate-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    border: 2px solid #000;
    border-radius: 4px;
  }
  
  .plate-text {
    position: absolute;
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-family: 'Roboto Mono', monospace;
    font-size: 1rem;
    line-height: 40px;
    color: #000;
    animation: plate-text-change 8s infinite;
  }
  
  .scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: rgba(233, 30, 99, 0.8);
    top: 50%;
    left: 0;
    box-shadow: 0 0 10px rgba(233, 30, 99, 0.8);
    animation: plate-scan 3s infinite;
  }
  
  @keyframes plate-float {
    0% {
      transform: translateY(0) rotate(2deg);
    }
    50% {
      transform: translateY(-20px) rotate(-2deg);
    }
    100% {
      transform: translateY(0) rotate(2deg);
    }
  }
  
  @keyframes plate-scan {
    0% {
      top: 0;
      opacity: 0.8;
    }
    50% {
      opacity: 1;
    }
    100% {
      top: 100%;
      opacity: 0.8;
    }
  }
  
  @keyframes plate-text-change {
    0%, 45% {
      content: "AB12 CDE";
    }
    50%, 95% {
      content: "XY98 ZWV";
    }
  }
  
  /* Parking icons animation */
  .parking-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .parking-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.2;
  }
  
  .icon1 {
    top: 20%;
    right: 30%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23e91e63' d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
    animation: float-rotate 15s infinite;
  }
  
  .icon2 {
    bottom: 25%;
    left: 15%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23e91e63' d='M13 3H6v18h4v-6h3c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 8h-3V7h3c1.1 0 2 .9 2 2s-.9 2-2 2z'/%3E%3C/svg%3E");
    animation: float-rotate 18s infinite reverse;
  }
  
  .icon3 {
    top: 60%;
    right: 20%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23e91e63' d='M18 8c0-3.31-2.69-6-6-6S6 4.69 6 8c0 4.5 6 11 6 11s6-6.5 6-11zm-8 0c0-1.1.9-2 2-2s2 .9 2 2-.89 2-2 2c-1.1 0-2-.9-2-2zM5 20v2h14v-2H5z'/%3E%3C/svg%3E");
    animation: float-rotate 20s infinite;
  }
  
  @keyframes float-rotate {
    0% {
      transform: translateY(0) rotate(0deg);
      opacity: 0.15;
    }
    25% {
      transform: translateY(-15px) rotate(5deg);
      opacity: 0.25;
    }
    50% {
      transform: translateY(0) rotate(0deg);
      opacity: 0.15;
    }
    75% {
      transform: translateY(15px) rotate(-5deg);
      opacity: 0.25;
    }
    100% {
      transform: translateY(0) rotate(0deg);
      opacity: 0.15;
    }
  }
  
  /* Enhanced floating elements */
  .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
  }
  
  .floating-element {
    position: absolute;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    opacity: 0.6;
    filter: blur(1px);
    z-index: 1;
  }
  
  .square-element {
    border-radius: 8px;
    transform: rotate(45deg);
  }
  
  .triangle-element {
    width: 0;
    height: 0;
    background: transparent;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 30px solid rgba(255, 255, 255, 0.8);
    box-shadow: none;
    filter: blur(0.5px);
  }
  
  .payment-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23e91e63' d='M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z'/%3E%3C/svg%3E");
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.1);
  }
  
  .security-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23e91e63' d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z'/%3E%3C/svg%3E");
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    width: 45px;
    height: 45px;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.1);
  }
  
  .data-pulse {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(233, 30, 99, 0.1);
    position: absolute;
    animation: data-pulse 3s infinite;
  }
  
  @keyframes data-pulse {
    0% {
      transform: scale(0.5);
      opacity: 1;
      border-width: 2px;
    }
    100% {
      transform: scale(2);
      opacity: 0;
      border-width: 1px;
    }
  }
  
  .e1 {
    width: 40px;
    height: 40px;
    top: 20%;
    left: 10%;
    animation: float 20s ease-in-out infinite;
  }
  .e2 {
    width: 60px;
    height: 60px;
    top: 15%;
    right: 15%;
    animation: float 15s ease-in-out infinite;
    animation-delay: 2s;
  }
  .e3 {
    width: 35px;
    height: 35px;
    top: 50%;
    left: 20%;
    animation: float 18s ease-in-out infinite;
    animation-delay: 1s;
  }
  .e4 {
    width: 25px;
    height: 25px;
    top: 65%;
    right: 25%;
    animation: float 22s ease-in-out infinite;
    animation-delay: 3s;
  }
  .e5 {
    width: 50px;
    height: 50px;
    bottom: 20%;
    left: 30%;
    animation: float 17s ease-in-out infinite;
    animation-delay: 2.5s;
  }
  .e6 {
    width: 30px;
    height: 30px;
    bottom: 35%;
    right: 10%;
    animation: float 19s ease-in-out infinite;
    animation-delay: 1.5s;
  }
  .e7 {
    top: 30%;
    left: 50%;
    animation: float 21s ease-in-out infinite;
    animation-delay: 0.5s;
  }
  .e8 {
    width: 45px;
    height: 45px;
    bottom: 15%;
    right: 40%;
    animation: float 16s ease-in-out infinite;
    animation-delay: 4s;
  }
  .e9 {
    width: 50px;
    height: 50px;
    top: 25%;
    left: 35%;
    animation: float 18s ease-in-out infinite;
    animation-delay: 1s;
  }
  .e10 {
    width: 50px;
    height: 50px;
    bottom: 30%;
    right: 30%;
    animation: float 19s ease-in-out infinite;
    animation-delay: 2s;
  }
  .e11 {
    width: 70px;
    height: 70px;
    top: 45%;
    right: 40%;
    animation: float 15s ease-in-out infinite, data-pulse 4s infinite;
    animation-delay: 0s, 1s;
  }
  
  @keyframes float {
    0% {
      transform: translateY(0) translateX(0) rotate(0deg);
      opacity: 0.6;
    }
    25% {
      transform: translateY(-20px) translateX(10px) rotate(5deg);
      opacity: 0.8;
    }
    50% {
      transform: translateY(0) translateX(20px) rotate(10deg);
      opacity: 0.6;
    }
    75% {
      transform: translateY(20px) translateX(10px) rotate(5deg);
      opacity: 0.8;
    }
    100% {
      transform: translateY(0) translateX(0) rotate(0deg);
      opacity: 0.6;
    }
  }
  
  /* Smart city silhouette */
  .city-silhouette {
    position: absolute;
    width: 100%;
    height: 100px;
    bottom: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23e91e63' fill-opacity='0.05' d='M0,64L40,69.3C80,75,160,85,240,80C320,75,400,53,480,48C560,43,640,53,720,58.7C800,64,880,64,960,58.7C1040,53,1120,43,1200,42.7C1280,43,1360,53,1400,58.7L1440,64L1440,120L1400,120C1360,120,1280,120,1200,120C1120,120,1040,120,960,120C880,120,800,120,720,120C640,120,560,120,480,120C400,120,320,120,240,120C160,120,80,120,40,120L0,120Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    z-index: 1;
  }
  
  /* Main container styling */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
  }
  
  .hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
  }
  
  /* Hero content (left side) */
  .hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
  }
  
  .hero-content::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(233, 30, 99, 0.1), rgba(240, 98, 146, 0.1));
    border-radius: 50%;
    top: -70px;
    left: -100px;
    z-index: -1;
    filter: blur(40px);
  }
  
  /* Badge */
  .badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(233, 30, 99, 0.1);
    color: var(--brand-color-1);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(233, 30, 99, 0.2);
  }
  
  /* Title & text */
  .hero h1 {
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-color-main);
    position: relative;
    animation: fade-in-up 1s ease-out;
  }
  
  .hero h1::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--brand-color-1), transparent);
    bottom: -15px;
    left: 0;
  }
  
  .hero p {
    font-size: 1.25rem;
    color: var(--text-color-secondary);
    margin-bottom: 2.5rem;
    position: relative;
    animation: fade-in-up 1s ease-out 0.2s backwards;
  }
  
  @keyframes fade-in-up {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Features list */
  .hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fade-in-up 1s ease-out 0.4s backwards;
  }
  
  .feature {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--text-color-secondary);
    font-size: 0.85rem;
  }
  
  .feature-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: .2rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .feature-icon.anpr {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23e91e63' d='M12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm8-9h-3.5l-1.7-2.55c-.2-.31-.54-.45-.86-.45H10c-.32 0-.67.14-.87.45L7.5 6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 14H4V8h4.05l.59-.65.56-.55h5.6l.56.55.59.65H20v12z'/%3E%3C/svg%3E");
  }
  
  .feature-icon.payment {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23e91e63' d='M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z'/%3E%3C/svg%3E");
  }
  
  .feature-icon.security {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23e91e63' d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z'/%3E%3C/svg%3E");
  }
  
  /* Buttons */
  .hero-buttons {
    display: flex;
    gap: 1rem;
    position: relative;
    animation: fade-in-up 1s ease-out 0.6s backwards;
  }
  
  .cta-button {
    background: linear-gradient(to right, var(--brand-color-3), var(--brand-color-1));
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  
  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(233, 30, 99, 0.3);
  }
  
  .cta-button .button-arrow {
    transition: transform 0.3s ease;
  }
  
  .cta-button:hover .button-arrow {
    transform: translateX(3px);
  }
  
  .secondary-button {
    background-color: var(--white);
    color: var(--brand-color-1);
    border: 1px solid #e0e0e0;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  
  .secondary-button:hover {
    border-color: var(--brand-color-1);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(233, 30, 99, 0.1);
  }
  
  
  
  .scan-effect {
    position: absolute;
    width: 100px;
    height: 60px;
    top: 235px;
    left: 42%;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 50%;
    opacity: 0;
    z-index: 4;
    animation: scan-pulse 15s infinite;
  }
  
  @keyframes scan-pulse {
    0%, 40%, 52%, 100% {
      opacity: 0;
      transform: scale(0.5);
    }
    45%, 48% {
      opacity: 0.7;
      transform: scale(1.2);
    }
  }
  
  .data-points {
    position: absolute;
    top: 50px;
    left: 50%;
    width: 200px;
    height: 150px;
    transform: translateX(-50%);
    z-index: 5;
  }
  
  .data-points::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 40px;
    top: 50px;
    left: 10px;
    background-color: rgba(233, 30, 99, 0.05);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.1);
    animation: data-highlight 15s infinite;
  }
  
  @keyframes data-highlight {
    0%, 40%, 52%, 100% {
      opacity: 0;
    }
    45%, 48% {
      opacity: 1;
    }
  }
  
  /* Stats ticker */
  .stats-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, rgba(233, 30, 99, 0.08), rgba(255, 255, 255, 0.05), rgba(233, 30, 99, 0.08));
    backdrop-filter: blur(5px);
    padding: 0.75rem 0;
    overflow: hidden;
    z-index: 5;
  }
  
  .ticker-content {
    display: flex;
    white-space: nowrap;
    animation: ticker 25s linear infinite;
  }
  
  .ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 2rem;
    color: var(--text-color-secondary);
    font-size: 0.95rem;
  }
  
  .highlight {
    color: var(--brand-color-1);
    font-weight: 700;
    margin-right: 0.5rem;
  }
  
  @keyframes ticker {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  @keyframes fade-in-left {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .hero-inner {
      gap: 1rem;
    }
    
    .hero h1 {
      font-size: 3.2rem;
    }
    
    .hero-illustration {
      max-width: 400px;
    }
  }
  
  @media (max-width: 768px) {
    .hero {
      padding: 6rem 0;
    }
    
    
    .hero-inner {
      display: column;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      gap: 1rem;
    }
    
    .hero-content {
      text-align: center;
      margin-bottom: 3rem;
      max-width: 100%;
      
    }
    
    .hero-content::before {
      top: -50px;
      left: 50%;
      transform: translateX(-50%);
    }
    
    .hero h1 {
      font-size: 2.8rem;
    }
    
    .hero h1::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .hero-features {
      justify-content: center;
    }
    
    .hero-buttons {
      justify-content: center;
    }
    
    .hero-illustration {
      max-width: 100%;
    }
    
    .car1 {
      animation: car-move1-mobile 15s infinite linear;
    }
    
    .car2 {
      animation: car-move2-mobile 18s infinite linear;
    }
    
    @keyframes car-move1-mobile {
      0% {
        left: -10%;
      }
      45% {
        left: 38%;
      }
      50% {
        left: 38%;
      }
      100% {
        left: 110%;
      }
    }
    
    @keyframes car-move2-mobile {
      0% {
        right: -10%;
      }
      45% {
        right: 35%;
      }
      50% {
        right: 35%;
      }
      100% {
        right: 110%;
      }
    }
    
    .scan-effect {
      left: 38%;
    }
  }
  
  @media (max-width: 576px) {
    .hero {
      padding: 5rem 0;
    }
    
    .hero h1 {
      font-size: 2.2rem;
    }
    
    .hero p {
      font-size: 1rem;
    }
    
    .hero-features {
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
    
    .illustration-container {
      height: 300px;
    }
    .hero-buttons {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
    
    .form-group {
      margin-right: 0;
      width: 100%;
      max-width: 280px;
    }
    
    #vehicle-reg {
      width: 100%;
    }
    
    .cta-button {
      padding-left: 1.5rem;
    }
  }