:root {
    --gold-primary: #D4AF37;
    --gold-gradient: linear-gradient(135deg, #D4AF37, #AA8222);
    --gold-glow: rgba(212, 175, 55, 0.3);
    --bg-dark: #050505;
    --bg-card: #111111;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-gold {
    color: var(--gold-primary);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Premium Navigation --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gold-primary);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: #444;
    bottom: 100px;
    left: -50px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    position: relative;
    z-index: 1;
    align-items: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 900;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

/* --- Form Styling --- */
.hero-form-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.hero-form-card h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.3rem;
}

.hero-form-card input, 
.hero-form-card select {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: 0.3s;
    outline: none;
}

.hero-form-card input:focus, 
.hero-form-card select:focus {
    border-color: var(--gold-primary);
    background: rgba(0, 0, 0, 0.5);
}

.file-input-container {
    margin-bottom: 20px;
}

.file-input-container label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

/* Custom File Input */
input[type="file"] {
    background: rgba(255, 255, 255, 0.05) !important;
    padding: 10px !important;
    cursor: pointer;
}

input[type="file"]::file-selector-button {
    background: var(--gold-gradient);
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    color: #000;
    font-weight: 700;
    margin-right: 15px;
    cursor: pointer;
}

.btn-premium {
    background: var(--gold-gradient);
    color: #000;
    padding: 18px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    display: inline-block;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

/* --- Sections --- */
section {
    padding: 100px 0;
}

/* --- Stats --- */
.stats-bar {
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Security Hub Styling --- */
.security-hub {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.scanning-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-primary);
    box-shadow: 0 0 15px var(--gold-primary);
    animation: scan 3s infinite linear;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}

.hub-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.status-indicator {
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pulse {
    width: 10px;
    height: 10px;
    background: #4CAF50;
    border-radius: 50%;
    box-shadow: 0 0 10px #4CAF50;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

.data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.data-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}

.data-item span {
    display: block;
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.data-item strong {
    color: var(--gold-primary);
    font-size: 1.1rem;
}

/* --- Features --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 50px 40px;
    border-radius: 20px;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 25px;
}

/* --- Timeline --- */
.timeline {
    max-width: 900px;
    margin: 60px auto;
    position: relative;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: #222;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
}

.timeline-progress {
    position: absolute;
    width: 4px;
    background: var(--gold-gradient);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    border-radius: 4px;
    transition: 0.1s;
}

.journey-step {
    width: 50%;
    padding: 20px 50px;
    position: relative;
    box-sizing: border-box;
}

.journey-step.left { left: 0; text-align: right; }
.journey-step.right { left: 50%; text-align: left; }

.journey-step::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #000;
    border: 4px solid var(--gold-primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.journey-step.left::before { right: -12px; }
.journey-step.right::before { left: -12px; }

.step-content {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold-primary);
    opacity: 0.1;
    line-height: 1;
    margin-bottom: 10px;
}

/* --- Simulator --- */
.simulator-section {
    background: #080808;
}

.simulator-card {
    background: var(--bg-card);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.type-pills {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.type-pill {
    cursor: pointer;
}

.type-pill input {
    display: none;
}

.type-pill span {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: 0.3s;
    font-weight: 600;
    color: var(--text-secondary);
}

.type-pill input:checked + span {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
    box-shadow: 0 0 15px var(--gold-primary);
}

.slider-container {
    margin: 50px 0;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: bold;
}

input[type="range"] {
    width: 100%;
    height: 8px;
    background: #222;
    border-radius: 10px;
    appearance: none;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 25px;
    height: 25px;
    background: var(--gold-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 15px var(--gold-primary);
}

.result-box {
    text-align: center;
    margin-top: 40px; 
    padding: 40px 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--gold-primary);
    border-radius: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    overflow: hidden;
}

.result-value {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 900;
    color: var(--gold-primary);
    font-family: var(--font-heading);
    word-break: break-all;
    line-height: 1;
    margin-top: 15px;
}

.result-box p {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin: 5px 0;
    max-width: 90%;
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128c7e;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(37, 211, 102, 0.4);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Fix for mobile */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}

/* --- FAQ --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    text-transform: none;
    font-size: 1.1rem;
    letter-spacing: 0;
}

.toggle-icon {
    font-size: 1.5rem;
    color: var(--gold-primary);
    transition: 0.3s;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease-out;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    padding-bottom: 25px;
    max-height: 200px;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

/* --- Footer --- */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
}

/* --- Animations --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .timeline::after {
        left: 20px;
    }
    
    .timeline-progress {
        left: 20px;
    }
    
    .journey-step {
        width: 100%;
        padding-left: 60px;
        text-align: left !important;
    }
    
    .journey-step.left, .journey-step.right { left: 0; }
    
    .journey-step::before {
        left: 8px !important;
        right: auto !important;
    }
    
    .result-value {
        font-size: 2.5rem;
    }
    
    .stat-item h3 {
        font-size: 2.2rem;
    }
}