/* HITEK Brand Colors */
:root {
    --hitek-blue: #1B2A6B;
    --hitek-gold: #F5A623;
    --hitek-dark: #0f1a45;
    --hitek-light-gold: #FFB800;
}

/* ===== SECTION TITLES ===== */
.hitek-section-title {
    text-align: center;
    margin-bottom: 50px;
}
.hitek-section-title .pre-label {
    display: inline-block;
    background: var(--hitek-gold);
    color: var(--hitek-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.hitek-section-title h2 {
    font-size: 38px;
    font-weight: 900;
    color: var(--hitek-blue);
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 14px;
}
.hitek-section-title h2 span { color: var(--hitek-gold); }
.hitek-title-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}
.hitek-title-line span { display: block; height: 3px; border-radius: 2px; }
.hitek-title-line .line-long { width: 60px; background: var(--hitek-gold); }
.hitek-title-line .line-short { width: 12px; background: var(--hitek-blue); }
.hitek-section-title p { color: #555; font-size: 16px; max-width: 650px; margin: 0 auto; line-height: 1.8; }
.hitek-section-title.white h2 { color: #fff; }
.hitek-section-title.white p { color: rgba(255,255,255,0.75); }
.hitek-section-title.white .hitek-title-line .line-short { background: rgba(255,255,255,0.4); }

/* ===== INTRO STRIP ===== */
.commitment-intro-strip {
    background: linear-gradient(135deg, var(--hitek-dark) 0%, var(--hitek-blue) 60%, #2a3d8f 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.commitment-intro-strip::before {
    content: '';
    position: absolute;
    top: -60px; right: -80px;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: rgba(245,166,35,0.10);
    pointer-events: none;
}
.commitment-intro-strip::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(245,166,35,0.07);
    pointer-events: none;
}
.commitment-intro-strip h2 {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}
.commitment-intro-strip h2 span { color: var(--hitek-gold); }
.commitment-intro-strip p {
    color: rgba(255,255,255,0.80);
    font-size: 17px;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* ===== COMMITMENT CARDS SECTION ===== */
.hitek-commitments {
    padding: 80px 0;
    background: #f4f6fb;
}

.commitment-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px 30px;
    box-shadow: 0 8px 30px rgba(27,42,107,0.10);
    border-top: 4px solid var(--hitek-gold);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}
.commitment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(27,42,107,0.18);
}

.commitment-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hitek-blue), #2a3d8f);
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background 0.3s;
}
.commitment-card:hover .commitment-icon {
    background: linear-gradient(135deg, var(--hitek-gold), #e8950a);
    color: var(--hitek-blue);
}

.commitment-card h4 {
    font-size: 18px;
    font-weight: 900;
    color: var(--hitek-blue);
    text-transform: uppercase;
    margin-bottom: 14px;
    line-height: 1.3;
}

.commitment-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
    margin: 0;
}

/* ===== CTA STRIP ===== */
.commitment-cta-strip {
    background: linear-gradient(135deg, var(--hitek-dark) 0%, var(--hitek-blue) 100%);
    padding: 60px 0;
    text-align: center;
}
.commitment-cta-strip h2 {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.commitment-cta-strip h2 span { color: var(--hitek-gold); }
.commitment-cta-strip p {
    color: rgba(255,255,255,0.78);
    font-size: 16px;
    margin-bottom: 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.btn-commit-cta {
    display: inline-block;
    background: var(--hitek-gold);
    color: var(--hitek-blue);
    font-size: 15px;
    font-weight: 800;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-commit-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245,166,35,0.4);
    color: var(--hitek-blue);
    text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .commitment-intro-strip h2 { font-size: 28px; }
    .hitek-section-title h2 { font-size: 28px; }
    .commitment-card { padding: 28px 20px 24px; }
}
