.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
  }

  .hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    backdrop-filter: blur(0px);
  }

  .hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 1.5rem;
    max-width: 800px;
  }

  .hero__title {
    font-size: clamp(2rem, 5vw, 4rem) !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    margin-bottom: 1rem !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    color: white;
    min-height: clamp(5rem, 12vw, 10rem);
  }

  .hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.9;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
    margin-bottom: 2rem;
  }

  .hero__cta {
    display: inline-block;
    padding: 0.5rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 0.5rem;
    text-decoration: none !important;
    backdrop-filter: blur(6px);
    transition:
      background 0.3s,
      border-color 0.3s !important;
  }

  .hero__cta:hover,
  .hero__cta:focus-visible {
    background: rgba(255, 255, 255, 0.3);
    border-color: #fff;
  }

  .hero__title .cursor {
    display: inline-block;
    width: 3px;
    margin-left: 2px;
    background: #fff;
    animation: blink 0.7s step-end infinite;
  }

  @keyframes blink {
    50% {
      opacity: 0;
    }
  }
  
  .hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none !important;
    transition: color 0.3s !important;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .hero__scroll:hover {
    color: #fff !important;
  }

  .hero__scroll-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .hero__scroll-chevrons {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s ease infinite;
  }

  .hero__scroll-chevrons svg {
    width: clamp(24px, 4vw, 40px);
    height: clamp(24px, 4vw, 40px);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .hero__scroll-chevrons svg:last-child {
    margin-top: clamp(-12px, -1.5vw, -20px);
    opacity: 0.5;
  }

  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
  }