/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #0a0c12;
    color: #e0e0e0;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .3s ease;
}

/* ===== VARIABLES ===== */
:root {
    --blue: #3b82f6;
    --blue-light: #60a5fa;
    --red: #e63946;
    --gold: #f4c430;
    --dark-bg: #0a0c12;
    --card-bg: rgba(255, 255, 255, 0.04);
    --card-border: rgba(255, 255, 255, 0.08);
    --text: #e0e0e0;
    --text-muted: #8a8a9a;
    --container: 1200px;
}

/* ===== UTILITIES ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.text-blue {
    color: var(--blue-light);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    transition: all .3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 4px 20px rgba(230, 57, 70, .3);
}

.btn-primary:hover {
    background: #c5303c;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(230, 57, 70, .45);
}

.btn-blue {
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(59, 130, 246, .3);
}

.btn-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, .5);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .2);
}

.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue-light);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: 12px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: .85rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 12, 18, .85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding: 12px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 45px;
    width: auto;
}

.header-nav {
    display: flex;
    gap: 30px;
}

.header-nav a {
    font-weight: 500;
    font-size: .9rem;
    color: var(--text-muted);
}

.header-nav a:hover {
    color: var(--blue-light);
}

.header-cta {
    display: flex;
    gap: 12px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(10, 12, 18, .97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    z-index: 999;
    border-bottom: 1px solid var(--card-border);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: 1rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--card-border);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #080a14 0%, #0d1020 40%, #0f1428 70%, #0a0c12 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, .08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 10% 20%, rgba(59, 130, 246, .3), transparent),
        radial-gradient(2px 2px at 30% 60%, rgba(96, 165, 250, .2), transparent),
        radial-gradient(1px 1px at 50% 10%, rgba(255, 255, 255, .3), transparent),
        radial-gradient(1px 1px at 70% 80%, rgba(59, 130, 246, .2), transparent),
        radial-gradient(2px 2px at 90% 40%, rgba(96, 165, 250, .2), transparent);
    animation: float-particles 20s linear infinite;
}

@keyframes float-particles {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-30px);
    }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, .12);
    border: 1px solid rgba(59, 130, 246, .3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: .85rem;
    color: var(--blue-light);
    margin-bottom: 20px;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .7;
    }
}

.hero-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: var(--blue-light);
    font-weight: 500;
}

.trust-item i {
    font-size: .75rem;
}

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

.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, .12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.shield-container {
    position: relative;
    z-index: 1;
    width: 250px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: hero-float 6s ease-in-out infinite;
}

.shield-icon {
    font-size: 10rem;
    color: var(--blue);
    filter: drop-shadow(0 0 40px rgba(59, 130, 246, .3));
    animation: shield-glow 3s ease-in-out infinite;
}

@keyframes shield-glow {

    0%,
    100% {
        filter: drop-shadow(0 0 40px rgba(59, 130, 246, .3));
    }

    50% {
        filter: drop-shadow(0 0 60px rgba(59, 130, 246, .5));
    }
}

@keyframes hero-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
}

.hero-wave svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== SECTIONS ===== */
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    color: #fff;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1.05rem;
}

/* ===== SECURITY FEATURES ===== */
.security-features {
    padding: 100px 0;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.security-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
}

.security-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    opacity: 0;
    transition: opacity .4s ease;
}

.security-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, .2);
    background: rgba(255, 255, 255, .06);
}

.security-card:hover::before {
    opacity: 1;
}

.security-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, .15), rgba(96, 165, 250, .08));
    border-radius: 18px;
    font-size: 1.6rem;
    color: var(--blue-light);
}

.security-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: #fff;
}

.security-card p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== WHY SAFE ===== */
.why-safe {
    padding: 100px 0;
    background: rgba(255, 255, 255, .01);
}

.why-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.why-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: #fff;
    text-align: left;
}

.why-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.why-list {
    list-style: none;
    margin-bottom: 30px;
}

.why-list li {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--card-border);
}

.why-list li i {
    color: var(--blue-light);
    font-size: 1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.why-list li strong {
    color: #fff;
    display: block;
    margin-bottom: 4px;
    font-size: .95rem;
}

.why-list li p {
    color: var(--text-muted);
    font-size: .85rem;
    margin: 0;
    line-height: 1.5;
}

.why-visual {
    display: flex;
    justify-content: center;
}

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

.badge-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all .3s ease;
}

.badge-item:hover {
    border-color: rgba(59, 130, 246, .3);
    transform: translateY(-4px);
}

.badge-item i {
    font-size: 2.5rem;
    color: var(--blue-light);
    margin-bottom: 12px;
    display: block;
}

.badge-item span {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
}

/* ===== BONUS GALLERY ===== */
.bonuses {
    padding: 100px 0;
}

.bonus-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.bonus-item {
    border-radius: 16px;
    overflow: hidden;
    transition: transform .3s ease;
}

.bonus-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.bonus-item:hover {
    transform: scale(1.03);
}

.bonus-cta {
    text-align: center;
}

/* ===== PAYMENT METHODS ===== */
.payment-methods {
    padding: 100px 0;
    background: rgba(255, 255, 255, .01);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.payment-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all .3s ease;
}

.payment-card:hover {
    border-color: rgba(59, 130, 246, .25);
    transform: translateY(-5px);
}

.payment-card i {
    font-size: 2rem;
    color: var(--blue-light);
    margin-bottom: 12px;
}

.payment-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: .95rem;
    color: #fff;
    margin-bottom: 6px;
}

.payment-card p {
    font-size: .78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 32px;
    transition: all .3s ease;
}

.testimonial-card:hover {
    border-color: rgba(59, 130, 246, .2);
    transform: translateY(-5px);
}

.testimonial-stars {
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: .9rem;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .9rem;
}

.testimonial-author strong {
    color: #fff;
    font-size: .9rem;
    display: block;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: .78rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 80px 0;
}

.cta-inner {
    background: linear-gradient(135deg, #0d1428 0%, #0f1020 50%, #0d1428 100%);
    border: 1px solid rgba(59, 130, 246, .15);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, .08), transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    margin-bottom: 12px;
    color: #fff;
}

.cta-content p {
    color: var(--text-muted);
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
    background: rgba(255, 255, 255, .01);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--card-border);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    background: var(--card-bg);
    transition: border-color .3s ease;
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, .2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-align: left;
}

.faq-question i {
    transition: transform .3s ease;
    color: var(--blue);
    font-size: .85rem;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 0;
    max-height: 0;
    overflow: hidden;
    transition: all .4s ease;
}

.faq-answer.active {
    padding: 0 24px 20px;
    max-height: 300px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.7;
}

/* ===== SEO CONTENT ===== */
.seo-content {
    padding: 80px 0;
}

.seo-content article {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
}

.seo-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    color: var(--blue-light);
    margin: 28px 0 12px;
}

.seo-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: .95rem;
}

.seo-content strong {
    color: #fff;
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--card-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-muted);
    transition: all .3s ease;
}

.footer-social a:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.footer-links h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: .85rem;
    color: var(--text-muted);
    padding: 5px 0;
}

.footer-links a:hover {
    color: var(--blue-light);
}

.footer-bottom {
    border-top: 1px solid var(--card-border);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: .8rem;
    color: var(--text-muted);
}

.footer-warning {
    margin-top: 10px;
    color: var(--red);
    font-size: .78rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-desc {
        margin: 0 auto 32px;
    }

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

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-content h2 {
        text-align: center;
    }

    .why-desc {
        text-align: center;
    }

    .bonus-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .payment-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

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

@media (max-width: 768px) {

    .header-nav,
    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .security-grid {
        grid-template-columns: 1fr;
    }

    .bonus-gallery {
        grid-template-columns: 1fr;
    }

    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .payment-grid {
        grid-template-columns: 1fr;
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}