﻿/* --- RESET & BASICS --- */
:root {
    --bg-dark: #0A192F;
    --bg-light: #112240;
    --text-main: #8892b0;
    --text-bright: #ccd6f6;
    --accent: #64FFDA;
    --font-main: 'Inter', sans-serif;
    --nav-height: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { color: var(--text-bright); margin-bottom: 20px; font-weight: 700; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- UTILITIES --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
}
.btn:hover { background: rgba(100, 255, 218, 0.1); }
.btn-fill { background: var(--accent); color: var(--bg-dark); border: none; width: 100%; font-size: 1rem; padding: 15px;}
.btn-fill:hover { opacity: 0.8; }
.section-pad { padding: 80px 0; }

/* --- HEADER --- */
header {
    height: var(--nav-height);
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-wrap { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; font-weight: 700; color: var(--text-bright); }
.logo img { width: 32px; }

.desktop-menu { display: flex; gap: 30px; }
.desktop-menu a:hover { color: var(--accent); }
.mobile-toggle { display: none; font-size: 24px; color: var(--accent); cursor: pointer; }

/* --- HERO --- */
.hero {
    margin-top: var(--nav-height);
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(10,25,47,0.85), rgba(10,25,47,0.9)), url('https://images.pexels.com/photos/8370752/pexels-photo-8370752.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
}
.hero-content { max-width: 700px; }
.hero h1 { font-size: 3.5rem; line-height: 1.1; }
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(100, 255, 218, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* --- QUIZ SECTION --- */
.sgn--quiz-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    margin-top: 40px;
    max-width: 600px;
}
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-opt {
    display: block;
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    background: var(--bg-dark);
    border: 1px solid #333;
    color: var(--text-main);
    text-align: left;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.2s;
}
.quiz-opt:hover { border-color: var(--accent); color: var(--accent); background: rgba(100,255,218,0.05); }
.progress-bar { height: 4px; background: #333; margin-bottom: 20px; }
.progress-fill { height: 100%; background: var(--accent); width: 0%; transition: 0.3s; }

/* --- FORMS & INPUTS --- */
.form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.form-group { flex: 1; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.9rem; color: var(--accent); }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    background: #020c1b;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
    font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }

/* Success Message hidden by default */
.success-message {
    display: none;
    text-align: center;
    padding: 40px;
    background: rgba(100, 255, 218, 0.1);
    border: 1px solid var(--accent);
    border-radius: 8px;
    color: #fff;
}
.success-icon { font-size: 3rem; margin-bottom: 20px; color: var(--accent); }

/* --- SERVICES & CARDS --- */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 6px;
    transition: 0.3s;
    border: 1px solid transparent;
}
.card:hover { transform: translateY(-5px); border-color: var(--accent); }
.card-icon { font-size: 2rem; color: var(--accent); margin-bottom: 20px; }

/* --- COMPLIANCE --- */
.cert-section { background: var(--bg-light); border-top: 1px solid #333; }
.cert-box { display: flex; gap: 20px; align-items: center; border: 1px solid #333; padding: 20px; margin-bottom: 20px; }
.cert-badge { width: 60px; height: 60px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; color: #000; font-size: 10px; text-align: center; }

/* --- FOOTER --- */
footer { background: #020c1b; padding: 60px 0 20px; text-align: center; font-size: 0.9rem; }
.disclaimer-box {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    color: #555;
    font-size: 0.8rem;
    text-align: justify;
}
.footer-links a { margin: 0 10px; }

/* --- MOBILE --- */
@media (max-width: 768px) {
    .desktop-menu {
        position: fixed; top: var(--nav-height); right: -100%; width: 80%; height: 100vh;
        background: var(--bg-light); flex-direction: column; padding: 40px; transition: 0.4s;
    }
    .desktop-menu.active { right: 0; }
    .mobile-toggle { display: block; }
    .hero h1 { font-size: 2.2rem; }
    .form-row { flex-direction: column; gap: 0; }
    .form-group { margin-bottom: 20px; }
}
