/* HaveIBeenPwned Section Styles */
.hibp-card {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 87, 34, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.hibp-card:hover {
    transform: translateY(-5px);
    border-color: #ff5722;
    box-shadow: 0 0 50px rgba(255, 87, 34, 0.2);
}

/* Header & Logo */
.hibp-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hibp-logo-text {
    font-family: 'Courier New', monospace;
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    background: #ff5722;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transform: rotate(-2deg);
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.5);
}

.verified-badge {
    background: rgba(0, 255, 140, 0.1);
    color: #00ff8c;
    border: 1px solid #00ff8c;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Description */
.hibp-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

/* Services Grid */
.hibp-services {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hibp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #e0e0e0;
}

.hibp-item i {
    font-size: 1.5rem;
    color: #ff5722;
    background: rgba(255, 87, 34, 0.1);
    padding: 1rem;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.hibp-item:hover i {
    transform: scale(1.1);
    background: #ff5722;
    color: white;
    box-shadow: 0 0 15px #ff5722;
}

/* CTA Button */
.hibp-btn {
    background: transparent;
    border: 2px solid #ff5722;
    color: #ff5722;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hibp-btn:hover {
    background: #ff5722;
    color: white;
    box-shadow: 0 0 30px rgba(255, 87, 34, 0.4);
    transform: scale(1.05);
}