/* ===== Data Gate — 라이트 카드 ===== */

#datagate {
    padding-top: calc(var(--header-top-inset, 20px) + var(--header-height, 70px) + 20px);
}

.gate-icon {
    font-size: 64px;
    margin-bottom: var(--space-6);
}

.gate-icon i {
    color: var(--primary-color);
    filter: none;
}

.gate-form {
    border-radius: 0 0 16px 16px;
}

.consent-group {
    background: var(--surface-muted);
    padding: var(--space-8);
    border-radius: var(--radius-card);
    margin-bottom: var(--space-8);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.consent-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-1);
    cursor: pointer;
    padding: var(--space-3);
    border-radius: var(--radius-soft);
    transition: all 0.3s ease;
}

.consent-item:hover {
    background: var(--surface-tint);
}

.consent-item:last-child {
    margin-bottom: 0;
}

.consent-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: var(--space-3);
    cursor: pointer;
    accent-color: var(--primary-color);
}

.consent-item input[type="checkbox"]:checked {
    filter: none;
}

.consent-item span {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--text-color);
    flex: 1;
}

.consent-link {
    color: var(--primary-color);
    text-decoration: underline;
    margin-left: var(--space-2);
    font-size: var(--fs-xs);
    transition: color 0.3s ease;
}

.consent-link:hover {
    color: var(--primary-dark);
}

.gate-benefits {
    background: var(--surface-tint);
    padding: var(--space-8);
    border-radius: var(--radius-card);
    margin-bottom: var(--space-8);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.gate-benefits::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.gate-benefits h3 {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: var(--space-5);
    position: relative;
    z-index: 1;
}

.gate-benefits h3 i {
    color: var(--primary-color);
    -webkit-text-fill-color: currentColor;
    background: none;
    margin-right: 10px;
    filter: none;
}

.gate-benefits ul {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.gate-benefits li {
    padding: var(--space-3) 0;
    color: var(--text-muted);
    font-size: var(--fs-sm);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.gate-benefits li i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.1rem;
    filter: none;
}
