
    

    .home-page {
        background:
        radial-gradient(circle at 50% -20%, rgba(128,128,128,0.50), transparent 32%),
        linear-gradient(180deg, #a1a1a1 0%, #868686 42%, #727272 100%);
    }

    .hero {
      min-height: 80vh;
      display: grid;
      place-items: center;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .hero-inner {
      width: min(920px, calc(100% - 32px));
      text-align: center;
      padding: 34px 0;
    }

    .eyebrow {
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 0.82rem;
      margin-bottom: 14px;
    }

    .hero h1 {
      margin: 0;
      font-size: clamp(2.2rem, 7vw, 4.9rem);
      line-height: 1.04;
      letter-spacing: -0.03em;
    }

    .hero p {
      max-width: 760px;
      margin: 18px auto 0;
      color: #d7dce2;
      font-size: clamp(1rem, 2vw, 1.15rem);
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 28px;
    }

    .btn {
      padding: 12px 18px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.02);
      color: var(--text);
      font-weight: 700;
      transition: 0.2s ease;
    }

    .btn:hover,
    .btn:focus {
      transform: translateY(-1px);
      border-color: #3a4452;
    }

    .btn.primary {
      background: var(--accent);
      color: #111;
      border-color: var(--accent);
    }
    
    /* HOME PAGE SECTION HEADINGS */
    .home-page .section-head h2 {
        font-size: clamp(2.2rem, 5vw, 3.2rem);
        font-weight: 800;
        letter-spacing: -0.02em;
    }
    
    .home-page #categories .section-head {
        text-align: center;
        max-width: 920px;
        margin: 0 auto 40px;
    }

    .home-page #categories .section-head h2 {
        font-size: clamp(2.2rem, 5vw, 3.2rem);
        font-weight: 800;
        letter-spacing: -0.02em;
        margin-bottom: 14px;
    }
    
    .home-page #categories .section-head h2::after {
        content: "";
        display: block;
        width: 80px;
        height: 3px;
        margin: 16px auto 0;
        border-radius: 999px;
        background: var(--accent);
    }
    
    .home-page .section-head h2::after {
        content: "";
        display: block;
        width: 80px;
        height: 3px;
        margin: 16px auto 0;
        border-radius: 999px;
        background: var(--accent);
    }

    .home-page #categories .section-head p {
        margin: 0 auto;
        max-width: 760px;
        font-size: 1.38rem;
        line-height: 1.7;
        color: #c4ccd6;
    }
    
    /* Same style for Featured */
    .home-page #featured .section-head {
        text-align: center;
        max-width: 920px;
        margin: 0 auto 36px;
    }
    .home-page #featured {
        padding-top: 88px;
        padding-bottom: 88px;
        background: linear-gradient(180deg, #777777 0%, #313638 100%);
        border-bottom: 3px solid rgba(255,255,255,0.04);
    }

    .home-page #featured .section-head p {
        margin: 0 auto;
        max-width: 760px;
        font-size: 1.38rem;
        line-height: 1.7;
        color: #c4ccd6;
    }
    
    .home-page #categories {
        padding-top: 88px;
        padding-bottom: 88px;
        background: linear-gradient(180deg, #202020 0%, #777777 100%);
        border-top: 3px solid rgba(255,255,255,0.04);
        border-bottom: 3px solid rgba(255,255,255,0.04);
    }
    
    .home-page #about {
        background:
            linear-gradient(180deg, #4f5d66 0%, #55636d 45%, #47545d 100%);
        border-top: 3px solid rgba(255,255,255,0.06);
        border-bottom: 3px solid rgba(255,255,255,0.06);
    }
    
    .home-page #contact {
        background:
            linear-gradient(180deg, #5f6c74 0%, #687780 50%, #55626b 100%);
    }


    
   