/* ==========================================================================
   SECURE ME - MODERN DARK CYBER / GLASSMORPHISM DESIGN SYSTEM
   ========================================================================== */

:root {
    --bg-primary: #07090e;
    --bg-secondary: #0e121a;
    --bg-card: rgba(15, 20, 31, 0.65);
    --bg-card-hover: rgba(22, 29, 45, 0.85);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(0, 240, 255, 0.3);
    --accent-cyan: #00f0ff;
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --accent-emerald: #10b981;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --glow-cyan: 0 0 35px rgba(0, 240, 255, 0.25);
    --glow-card: 0 16px 36px -10px rgba(0, 0, 0, 0.6);
    --glow-accent: 0 0 20px rgba(0, 240, 255, 0.35);
}

/* ---------------- Global Reset & Typography ---------------- */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 240, 255, 0.08), transparent 70%),
        radial-gradient(ellipse 60% 40% at 90% 40%, rgba(139, 92, 246, 0.06), transparent 60%),
        radial-gradient(ellipse 60% 40% at 10% 80%, rgba(59, 130, 246, 0.05), transparent 60%);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6, .heading-font {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

p {
    color: var(--text-secondary);
}

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: all 0.25s ease;
}

a:hover {
    color: #ffffff;
}

/* ---------------- Ambient Background Glows ---------------- */
.ambient-glow-wrapper {
    position: relative;
    overflow: hidden;
}

.ambient-glow-1 {
    position: absolute;
    width: 350px;
    height: 350px;
    top: 5%;
    left: -100px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.ambient-glow-2 {
    position: absolute;
    width: 450px;
    height: 450px;
    top: 30%;
    right: -150px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

/* ---------------- Text Gradients ---------------- */
.text-gradient-cyan {
    background: linear-gradient(135deg, #ffffff 30%, #00f0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
    background: linear-gradient(135deg, #00f0ff 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---------------- Glassmorphic Cards ---------------- */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    box-shadow: var(--glow-card);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
                border-color 0.35s ease, 
                box-shadow 0.35s ease, 
                background-color 0.35s ease;
    position: relative;
    z-index: 1;
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(0, 240, 255, 0.15);
}

.glass-card-sm {
    padding: 1.25rem;
    border-radius: 16px;
}

.glass-card-md {
    padding: 2rem;
    border-radius: 22px;
}

.glass-card-lg {
    padding: 3rem;
    border-radius: 28px;
}

/* ---------------- Badges ---------------- */
.cyber-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.25);
    color: var(--accent-cyan);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.12);
    margin-bottom: 1.25rem;
}

.cyber-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-cyan);
    box-shadow: 0 0 8px var(--accent-cyan);
}

/* ---------------- Buttons ---------------- */
.btn-cyber-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, #00f0ff 0%, #3b82f6 100%);
    color: #050811 !important;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
}

.btn-cyber-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.55);
    color: #000000 !important;
}

.btn-cyber-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.btn-cyber-outline:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan) !important;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
    transform: translateY(-2px);
}

/* ---------------- Floating Animations ---------------- */
@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

.float-animation {
    animation: floatSlow 5s ease-in-out infinite;
}

/* ---------------- Responsive Navigation Bar ---------------- */
.cyber-navbar-wrapper {
    position: sticky;
    top: 16px;
    z-index: 1050;
    margin: 0 auto;
    max-width: 1240px;
    padding: 0 16px;
}

.cyber-navbar {
    background: rgba(10, 14, 23, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 12px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.cyber-nav-logo {
    max-height: 42px;
    width: auto;
    object-fit: contain;
}

.cyber-nav-link {
    color: var(--text-secondary) !important;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 30px;
    transition: all 0.25s ease;
}

.cyber-nav-link:hover, .cyber-nav-link.active {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.navbar-toggler.cyber-toggler {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 8px 12px;
    box-shadow: none;
}

.navbar-toggler.cyber-toggler:focus {
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
    border-color: var(--accent-cyan);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* ---------------- Hero Section ---------------- */
.hero-section {
    padding: 4rem 0 3rem 0;
    position: relative;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mockup-img {
    max-width: 100%;
    height: auto;
    max-height: 540px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8))
           drop-shadow(0 0 30px rgba(0, 240, 255, 0.2));
}

/* ---------------- Feature Cards & Grids ---------------- */
.feature-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
}

.feature-icon-box img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.feature-card-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

/* ---------------- Form Controls ---------------- */
.cyber-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 14px !important;
    color: #ffffff !important;
    padding: 14px 18px !important;
    font-size: 1rem;
    transition: all 0.25s ease;
}

.cyber-input:focus {
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: var(--accent-cyan) !important;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3) !important;
    outline: none !important;
}

.cyber-input::placeholder {
    color: var(--text-muted) !important;
}

textarea.cyber-input {
    min-height: 130px;
    resize: vertical;
}

/* ---------------- Footer ---------------- */
.cyber-footer {
    border-top: 1px solid var(--border-subtle);
    background: rgba(6, 8, 13, 0.9);
    padding: 4rem 0 2rem 0;
    margin-top: 5rem;
    position: relative;
}

.footer-logo {
    max-height: 48px;
    width: auto;
    margin-bottom: 1.25rem;
}

.footer-heading {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-cyan);
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 0.75rem;
}

.footer-links-list a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.footer-links-list a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-copyright {
    border-top: 1px solid var(--border-subtle);
    padding-top: 1.75rem;
    margin-top: 3rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ---------------- Responsive Media Queries ---------------- */
@media (max-width: 991.98px) {
    .cyber-navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .cyber-nav-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 1rem;
        width: 100%;
    }
    
    .cyber-nav-actions a {
        text-align: center;
        width: 100%;
    }

    .hero-section {
        padding: 2.5rem 0 2rem 0;
        text-align: center;
    }

    .hero-mockup-wrapper {
        margin-top: 2.5rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .cyber-navbar {
        padding: 10px 16px;
    }

    .cyber-nav-logo {
        max-height: 36px;
    }

    .glass-card-md {
        padding: 1.5rem;
    }

    .glass-card-lg {
        padding: 1.75rem;
    }

    .hero-title {
        font-size: 2.1rem;
    }
}
