/* ============================================================
   COMPONENT STYLES: Hero
   ============================================================ */

   .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 76px;
  }
  
  /* ---- Background ---- */
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      115deg,
      rgba(7, 29, 77, 0.95) 0%,
      rgba(11, 45, 114, 0.88) 50%,
      rgba(0, 174, 239, 0.40) 100%
    );
  }
  
  .hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(0, 174, 239, 0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 174, 239, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  
  /* ---- Content ---- */
  .hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding-top: 48px;
    padding-bottom: 80px;
  }
  
  /* ---- Text Side ---- */
  .hero-text {
    color: var(--color-white);
  }
  
  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-sky);
    margin-bottom: 24px;
    animation: fadeSlideUp 0.7s 0.1s both;
  }
  
  .hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-sky);
    animation: pulse 2s infinite;
  }
  
  .hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.025em;
    color: var(--color-white);
    animation: fadeSlideUp 0.7s 0.2s both;
  }
  
  .hero-title-accent {
    color: var(--color-sky);
    display: block;
  }
  
  .hero-subtitle {
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    max-width: 480px;
    line-height: 1.75;
    margin-top: 20px;
    animation: fadeSlideUp 0.7s 0.3s both;
  }
  
  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 36px;
    animation: fadeSlideUp 0.7s 0.4s both;
  }
  
  /* ---- Visual Side ---- */
  .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeSlideUp 0.7s 0.35s both;
  }
  
  .hero-img-frame {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 174, 239, 0.3);
  }
  
  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-img-frame.hero-img-placeholder {
    background: linear-gradient(135deg, var(--color-navy-dark), var(--color-navy));
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-img-frame.hero-img-placeholder::after {
    content: 'Add your image to\A assets/images/hero-feature.jpg';
    white-space: pre;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
    text-align: center;
    font-family: var(--font-primary);
  }
  
  /* ---- Scroll Hint ---- */
  .hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }
  
  .hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    animation: scrollLine 2s infinite;
  }
  
  /* ---- Animations ---- */
  @keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.4); }
  }
  
  @keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }
  
  /* ---- Responsive ---- */
  @media (max-width: 900px) {
    .hero-content {
      grid-template-columns: 1fr;
      gap: 48px;
      text-align: center;
      padding-top: 40px;
      padding-bottom: 60px;
    }
  
    .hero-subtitle { margin: 20px auto 0; }
    .hero-actions  { justify-content: center; }
  
    .hero-visual { order: -1; }
  
    .hero-img-frame {
      max-width: 340px;
      margin: 0 auto;
      aspect-ratio: 16/9;
    }
  }
  
  @media (max-width: 600px) {
    .hero-title { font-size: 2.4rem; }
    .hero-actions { flex-direction: column; align-items: center; }
  }