@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #064e3b 0%, #022c22 100%);
    color: #ecfdf5;
    scroll-behavior: smooth;
}

.hardware-image { filter: drop-shadow(0 0 35px rgba(16, 185, 129, 0.4)); }

.form-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ecfdf5;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.form-input:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

.text-gray-300 { color: rgb(209, 213, 219); }

.glass-card {
    background: rgba(2, 44, 34, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.border-cyberGreen { border-color: #10b981 !important; }
.bg-cyberGreen { background-color: #10b981 !important; }
.text-cyberGreen { color: #10b981 !important; }

.cookie-banner {
    background: linear-gradient(135deg, #064e3b 0%, #022c22 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

.btn-primary {
    background: #10b981;
    color: #ffffff;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #10b981;
    border: 2px solid #10b981;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover { background: rgba(16, 185, 129, 0.1); }

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.5);
}

.compliance-banner {
    background: #10b981;
    color: #ffffff;
    text-align: center;
    padding: 12px 0;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 1000;
}