/* ===== Data Gate (Lead Capture) Styles - Dark Theme ===== */

/* Override section padding for datagate */
#datagate {
    padding-top: 80px;
}

.gate-icon {
    font-size: 70px;
    margin-bottom: 25px;
}

.gate-icon i {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 10px 30px rgba(0, 105, 214, 0.8)) 
            drop-shadow(0 0 20px rgba(4, 237, 245, 0.6));
    color: var(--accent-color);
}

.gate-form {
    border-radius: 0 0 20px 20px;
}

/* Consent Group */
.consent-group {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.consent-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.consent-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.consent-item:last-child {
    margin-bottom: 0;
}

.consent-item input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-right: 15px;
    cursor: pointer;
    accent-color: var(--accent-color);
}

.consent-item input[type="checkbox"]:checked {
    filter: drop-shadow(0 0 5px rgba(4, 237, 245, 0.8));
}

.consent-item span {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
}

.consent-link {
    color: var(--accent-color);
    text-decoration: underline;
    margin-left: 8px;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.consent-link:hover {
    color: var(--primary-color);
}

/* Gate Benefits */
.gate-benefits {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    border: 2px solid rgba(0, 105, 214, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* Decorative glow effect */
.gate-benefits::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(4, 237, 245, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.gate-benefits h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.gate-benefits h3 i {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 10px;
    filter: drop-shadow(0 0 10px rgba(4, 237, 245, 0.6));
}

.gate-benefits ul {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.gate-benefits li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.gate-benefits li i {
    color: var(--accent-color);
    margin-right: 12px;
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px rgba(4, 237, 245, 0.5));
}

