/* ============================================================
   SECTION 1: HERO FORGE
   ============================================================ */
.hero-forge {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark-deep) 100%);
    overflow: hidden;
    padding-top: 180px; /* Space for logo */
    padding-bottom: 100px;
}

.forge-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 45px 45px;
    z-index: 1;
}

.hero-nav {
    position: absolute;
    top: 0; left: 0; width: 100%;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.brand-logo {
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    text-align: center;
    color: var(--white);
}

h1 {
    font-family: 'League Spartan', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.text-accent { color: var(--accent); }

.hero-sub {
    font-size: 21px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.value-promise-strip {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.promise-item {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon { color: var(--accent); font-weight: bold; }

.cta-row { display: flex; gap: 20px; justify-content: center; }

.btn {
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    padding: 22px 44px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary { background: var(--white); color: var(--primary); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
