/* ============================================
   HERO - GRADIENT SHIMMER EFFECT
   Light reflecting through text like glass
   ============================================ */

/* Hero */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--white);
      overflow: hidden;
    }

    /* Subtle grid background */
    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image:
        linear-gradient(rgba(115, 115, 115, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(115, 115, 115, 0.03) 1px, transparent 1px);
      background-size: 80px 80px;
      z-index: 0;
    }

    .hero-container {
      position: relative;
      z-index: 1;
      max-width: 1000px;
      padding: 0 24px;
      text-align: center;
    }

    /* Overline */
    .hero-overline {
      font-size: 13px;
      font-weight: 600;
      color: var(--grey-600);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 24px;
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards;
      animation-delay: 0.2s;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Main Headline with Gradient Shimmer */
    .hero-headline {
      font-size: clamp(48px, 8vw, 96px);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-bottom: 32px;
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards;
      animation-delay: 0.4s;

      /* Gradient shimmer effect */
      background: linear-gradient(
        110deg,
        var(--grey-900) 0%,
        var(--grey-900) 40%,
        rgba(255, 107, 74, 0.4) 45%,
        rgba(255, 107, 74, 0.6) 50%,
        rgba(255, 107, 74, 0.4) 55%,
        var(--grey-900) 60%,
        var(--grey-900) 100%
      );
      background-size: 200% 100%;
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: shimmer 8s ease-in-out infinite, fadeInUp 0.8s ease forwards;
      animation-delay: 0s, 0.4s;
    }

    @keyframes shimmer {
      0%, 100% {
        background-position: 200% center;
      }
      50% {
        background-position: 0% center;
      }
    }

    /* Accent word gets solid orange (no shimmer through it) */
    .hero-headline .accent {
      background: var(--orange-500);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      position: relative;
    }

    /* Subtle underline under accent */
    .hero-headline .accent::after {
      content: '';
      position: absolute;
      bottom: 8px;
      left: 0;
      right: 0;
      height: 10px;
      background: rgba(255, 107, 74, 0.12);
      z-index: -1;
    }

    /* Subheadline */
    .hero-subheadline {
      font-size: clamp(18px, 3vw, 24px);
      font-weight: 400;
      color: var(--grey-600);
      line-height: 1.6;
      margin-bottom: 48px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards;
      animation-delay: 0.6s;
    }

    /* CTA Buttons */
    .hero-cta {
      display: flex;
      gap: 16px;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards;
      animation-delay: 0.8s;
    }

    .btn {
      padding: 16px 32px;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      position: relative;
      overflow: hidden;
    }

    .btn-primary {
      background: var(--orange-500);
      color: var(--white);
      box-shadow: 0 4px 16px rgba(255, 107, 74, 0.25);
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }

    .btn-primary:hover::before {
      width: 300px;
      height: 300px;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(255, 107, 74, 0.35);
    }

    .btn-secondary {
      background: transparent;
      color: var(--grey-900);
      border: 2px solid var(--grey-900);
    }

    .btn-secondary:hover {
      background: var(--grey-900);
      color: var(--white);
      transform: translateY(-2px);
    }

    .arrow-icon {
      width: 18px;
      height: 18px;
      transition: transform 0.3s ease;
    }

    .btn:hover .arrow-icon {
      transform: translateX(4px);
    }

    /* Trust Bar */
    .hero-trust {
      margin-top: 64px;
      padding-top: 48px;
      border-top: 1px solid rgba(115, 115, 115, 0.1);
      display: flex;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards;
      animation-delay: 1s;
    }

    .trust-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .trust-number {
      font-size: 32px;
      font-weight: 700;
      color: var(--grey-900);
      line-height: 1;
    }

    .trust-label {
      font-size: 13px;
      color: var(--grey-600);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* Scroll Indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 48px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards, bounce 2s ease-in-out infinite;
      animation-delay: 1.2s, 2s;
    }

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

    .scroll-text {
      font-size: 11px;
      color: var(--grey-600);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--grey-600), transparent);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero {
        min-height: 90vh;
      }

      .hero-headline {
        font-size: 48px;
      }

      .hero-subheadline {
        font-size: 18px;
      }

      .hero-cta {
        flex-direction: column;
      }

      .btn {
        width: 100%;
        justify-content: center;
      }

      .hero-trust {
        gap: 32px;
      }

      .scroll-indicator {
        display: none;
      }
    }
