/* ==============================
   Hero Section — SVG + Text Layout
   ============================== */

.hp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #020c1b 0%, #051a3a 50%, #0b2c5f 100%);
    /* gradient from provided variables */
    overflow: hidden;
}

/* Wrapper căn giữa toàn bộ nội dung */
.hp-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0px;
    padding: 120px 20px 60px;
    /* padding-top để tránh header absolute */
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* SVG Logo */
.hp-hero-visual {
    width: 100%;
    max-width: 560px;
    position: relative;
    overflow: visible;
}

.hp-hero-logo {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
}

/* Text content */
.hp-hero-content {
    width: 100%;
    margin-top: 32px;
}

.hp-hero-title {
    color: #ffffff;
    font-size: 2.6rem;
    line-height: 1.35;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hp-hero-highlight {
    color: #fe7c03;
    /* updated to new secondary-color */
}

.hp-hero-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 680px;
}

.hp-hero-subscribe {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.hp-subscribe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.hp-subscribe-btn .btn-text {
    margin-right: 12px;
    letter-spacing: 0.3px;
}

.hp-subscribe-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #fe7c03;
    border-radius: 50%;
    color: #ffffff;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hp-subscribe-btn:hover {
    border-color: #fe7c03;
    color: #fe7c03;
}

.hp-subscribe-btn:hover .btn-icon {
    transform: translateX(4px);
    background-color: #ffffff;
    color: #fe7c03;
}


/* Responsive */
@media (max-width: 768px) {
    .hp-hero-br {
        display: none;
    }

    .hp-hero-title {
        font-size: 1.8rem;
    }

    .hp-hero-visual {
        max-width: 85vw;
    }

    .hp-hero-inner {
        gap: 24px;
        padding: 110px 16px 48px;
    }
}

@media (max-width: 480px) {
    .hp-hero-title {
        font-size: 1.5rem;
    }

    .hp-hero-desc {
        font-size: 0.95rem;
    }
}