/* =======================================================================
   GLOBAL RESET
======================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background: linear-gradient(180deg, #0d0f17, #101226);
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
    animation: fadeIn 0.9s ease-in-out;
}

/* =======================================================================
   ANIMATIONS
======================================================================= */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glowText {
    0% { text-shadow: 0 0 6px #00eaff, 0 0 12px #4a6cf7; }
    50% { text-shadow: 0 0 12px #00eaff, 0 0 20px #4a6cf7; }
    100% { text-shadow: 0 0 6px #00eaff, 0 0 12px #4a6cf7; }
}

@keyframes floatText {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

/* =======================================================================
   CUSTOM SCROLLBAR
======================================================================= */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #101226; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #4a6cf7, #00eaff);
    border-radius: 10px;
}

/* =======================================================================
   HEADER
======================================================================= */
.header {
    position: sticky;
    top: 0;
    background: rgba(12, 15, 30, 0.85);
    backdrop-filter: blur(12px);
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    transition: 0.4s ease;
    box-shadow: 0 0 15px rgba(0,255,255,0.1);
}

.header.scrolled {
    background: rgba(12, 15, 30, 0.95);
    box-shadow: 0 5px 25px rgba(0,255,255,0.25);
}

.logo {
    font-size: 1.9rem;
    font-weight: 800;
    color: #00eaff;
    letter-spacing: 1px;
    text-shadow: 0 0 6px #00eaff, 0 0 12px #4a6cf7;
    animation: glowText 2.7s ease-in-out infinite alternate;
}

/* NAVIGATION */
.nav ul {
    list-style: none;
    display: flex;
    gap: 26px;
}

.nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: 0.3s ease;
}

.nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 0; height: 2px;
    background: linear-gradient(90deg, #00eaff, #4a6cf7);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.nav a:hover::after { width: 100%; }

.nav .cta {
    background: linear-gradient(120deg, #4a6cf7, #00eaff);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 0 15px rgba(0,255,255,0.6);
    transition: 0.3s ease;
}

.nav .cta:hover {
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(0,255,255,0.8);
}

/* =======================================================================
   HERO / PAGE HEADER
======================================================================= */
.page-header,
.hero {
    text-align: center;
    padding: 140px 30px 180px;
    position: relative;
    overflow: hidden;
}

.page-header {
    background: url('img/security-bg.jpg') center/cover no-repeat;
}

.page-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero {
    background: radial-gradient(circle at 30% 40%, #4a6cf7 0%, #101226 70%);
    border-bottom: 2px solid rgba(0,255,255,0.15);
}

.page-header h1,
.hero h1,
.page-header p,
.hero p {
    position: relative;
    z-index: 2;
    animation: fadeIn 1.2s ease-out;
}

/* TEXT STYLES */
.page-header h1 { font-size: 2.8rem; margin-bottom: 10px; }
.page-header p {
    color: #d8eff7;
    max-width: 650px;
    margin: 0 auto;
    opacity: 0.9;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, #00eaff, #4a6cf7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: floatText 3s ease-in-out infinite alternate;
}

.hero p {
    margin-top: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #cfdfff;
    font-size: 1.2rem;
}

/* =======================================================================
   FRAUDE / FORM SECTION
======================================================================= */
.fraude-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 28px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    backdrop-filter: blur(6px);
    border-left: 4px solid #48cae4;
    animation: fadeIn 1.1s ease;
}

.fraude-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 25px;
    animation: glowText 2.5s infinite alternate;
}

/* FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px;
    border-radius: 8px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1rem;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: rgba(255,255,255,0.18);
    outline: none;
    box-shadow: 0 0 12px #48cae4;
}

/* =======================================================================
   BUTTONS
======================================================================= */
.btn-primary,
.btn-secondary {
    border: none;
    cursor: pointer;
    transition: 0.35s ease;
}

.btn-primary {
    padding: 14px 28px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(120deg, #00eaff, #4a6cf7);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,255,255,0.5);
}

.btn-primary:hover {
    transform: scale(1.12);
    box-shadow: 0 0 35px rgba(0,255,255,0.8);
}

.btn-secondary {
    padding: 12px 26px;
    font-weight: 600;
    background: #00eaff;
    color: #101226;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,255,255,0.5);
}

.btn-secondary:hover {
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(0,255,255,0.7);
}

/* =======================================================================
   FOOTER
======================================================================= */
.footer {
    background: rgba(12,15,30,0.95);
    padding: 45px 20px;
    text-align: center;
    font-size: 0.95rem;
    color: #cfdfff;
    border-top: 1px solid rgba(0,255,255,0.15);
}

/* =======================================================================
   RESPONSIVE DESIGN
======================================================================= */

/* Tablet */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
}

/* Mobile Large */
@media (max-width: 768px) {
    .header { padding: 16px 22px; }
    .nav ul { gap: 14px; }
    .hero { padding: 110px 20px 150px; }
    .page-header h1 { font-size: 2.2rem; }
    .fraude-section h2 { font-size: 1.9rem; }
}

/* Mobile Small */
@media (max-width: 480px) {
    .hero h1 { font-size: 1.9rem; }
    .btn-primary, .btn-secondary { padding: 11px 20px; }
    .logo { font-size: 1.5rem; }
}
.counter {
    font-size: 2.4rem;
    font-weight: 700;
    color: #48cae4;
}
.sticker-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.sticker {
    width: 70px;
    animation: floatSticker 3s infinite ease-in-out;
}

@keyframes floatSticker {
    0% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-15px) rotate(6deg); }
    100% { transform: translateY(0) rotate(0); }
}
.breathing {
    animation: breathe 2s infinite ease-in-out;
}

@keyframes breathe {
    0% { transform: scale(1); box-shadow: 0 0 8px #25D366; }
    50% { transform: scale(1.15); box-shadow: 0 0 16px #25D366; }
    100% { transform: scale(1); box-shadow: 0 0 8px #25D366; }
}