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

:root {
    --primary: #1800ad;
    --secondary: #00bf63;
    --accent: #00bf63;
    --dark: #0a0a0a;
    --light: #f5f7fa;
    --white: #ffffff;
}

body {
    font-family: 'Orbitron', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--light);
}

h1, h2, h3, .logo, .section-title {
    font-family: 'Orbitron', sans-serif;
}

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

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    background: #1800ad;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    top: 0;
    border-bottom: 3px solid #00bf63;
}

nav .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1px;
}

.logo img {
    width: 45px;
    height: 45px;
    filter: drop-shadow(0 2px 8px rgba(24, 0, 173, 0.2));
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #00bf63;
    font-weight: 1000;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-family: 'Orbitron', sans-serif;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: #00bf63;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: var(--primary);
    padding: 90px 0 120px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 191, 99, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 191, 99, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

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

.login-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-login {
    background: transparent;
    border: 2px solid #00bf63;
    color: #00bf63;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 36px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-login:hover {
    background: #00bf63;
    color: #1800ad;
    box-shadow: 0 0 20px rgba(0, 191, 99, 0.4);
    transform: translateY(-2px);
}

.hero-logo {
    width: 280px;
    height: 280px;
    margin: 0 auto 30px;
    animation: logoEntrance 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: transparent;
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
    background: transparent;
    mix-blend-mode: normal;
}

.hero h1 {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -2px;
    color: #00bf63;
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero p {
    font-size: 20px;
    margin-bottom: 20px;
    opacity: 0.95;
    font-weight: 400;
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
    font-family: 'Orbitron', sans-serif;
}

.app-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 14px 32px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-family: 'Orbitron', sans-serif;
}

.badge:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(0, 191, 99, 0.3);
}

.badge svg {
    width: 24px;
    height: 24px;
}

.coming-soon {
    background: var(--secondary);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(0, 191, 99, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(0, 191, 99, 0.4); }
    50% { box-shadow: 0 8px 32px rgba(0, 191, 99, 0.6); }
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--light);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 70px;
    color: #1800ad;
    letter-spacing: -1.5px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

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

.feature-card {
    background: white;
    padding: 45px 35px;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #00bf63;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(24, 0, 173, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary), #00d67a);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(0, 191, 99, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -0.5px;
    font-family: 'Orbitron', sans-serif;
}

.feature-card p {
    color: #1800ad;
    line-height: 1.8;
    font-size: 15px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
}

/* How It Works */
.how-it-works {
    padding: 120px 0;
    background: rgb(210, 210, 241);
    position: relative;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-top: 80px;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 90px;
    height: 90px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    font-weight: 900;
    margin: 0 auto 25px;
    box-shadow: 0 12px 36px rgba(24, 0, 173, 0.35);
    position: relative;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 3px solid var(--secondary);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover .step-number {
    transform: scale(1.15);
}

.step:hover .step-number::after {
    opacity: 1;
    inset: -12px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1800ad;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
}

.step p {
    color: #1800ad;
    font-size: 15px;
    line-height: 1.7;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
}

/* Pricing */
.pricing {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--light) 0%, white 100%);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border-radius: 28px;
    padding: 50px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.pricing-card.premium {
    border: 2px solid var(--secondary);
    background: linear-gradient(135deg, #ffffff 0%, #f0fff8 100%);
    transform: scale(1.05);
}

.pricing-card.premium:hover {
    transform: scale(1.08);
}

.popular-badge {
    position: absolute;
    top: -18px;
    right: 30px;
    background: var(--secondary);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(0, 191, 99, 0.4);
}

.plan-name {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #1800ad;
    letter-spacing: -1px;
}

.pricing-card.premium .plan-name {
    font-family: 'Orbitron', sans-serif;
}

.plan-price {
    font-size: 40px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 40px;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: -2px;
}

.plan-price span {
    font-size: 18px;
    color: #5a5a5a;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
}

.plan-features {
    list-style: none;
    margin-bottom: 35px;
}

.plan-features li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
}

.plan-features li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: bold;
    font-size: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 191, 99, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.plan-features li.disabled {
    color: #ec0707;
}

.plan-features li.disabled::before {
    content: '✗';
    color: #ec0707;
    background: rgba(206, 22, 22, 0.05);
}

/* Benefits */
.benefits {
    padding: 120px 0;
    background: rgb(210, 210, 241);
    color: #1800ad;
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.benefits .section-title {
    color: #1800ad;
}

.benefits .section-title::after {
    background: #00bf63;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.benefit-item {
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 56px;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.2));
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.5px;
    font-family: 'Orbitron', sans-serif;
}

.benefit-item p {
    opacity: 0.95;
    line-height: 1.8;
    font-size: 15px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
}

/* FAQ */
.faq {
    padding: 120px 0;
    background: white;
}

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

.faq-item {
    background: var(--light);
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: rgba(0, 191, 99, 0.2);
}

.faq-item.active {
    border-color: var(--secondary);
    box-shadow: 0 8px 24px rgba(0, 191, 99, 0.15);
}

.faq-question {
    padding: 28px 35px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Orbitron', sans-serif;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    padding: 0 35px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary);
    font-size: 15px;
    line-height: 1.8;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
}

.faq-item.active .faq-answer {
    padding: 0 35px 28px;
    max-height: 500px;
}

.faq-toggle {
    font-size: 28px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--secondary);
    font-weight: 300;
}

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

/* Account Deletion */
.account-deletion {
    padding: 100px 0;
    background: linear-gradient(180deg, #f7f9ff 0%, #eef3ff 100%);
    text-align: center;
}

.deletion-intro {
    max-width: 820px;
    margin: 0 auto 30px;
    color: #1800ad;
    font-size: 16px;
    line-height: 1.8;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
}

.deletion-btn {
    display: inline-block;
    background: #1800ad;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 999px;
    border: 2px solid #00bf63;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.deletion-btn:hover {
    transform: translateY(-2px);
    background: #2612be;
    box-shadow: 0 10px 24px rgba(24, 0, 173, 0.25);
}

/* Footer */
footer {
    background: rgb(210, 210, 241);
    color: #1800ad;
    padding: 80px 0 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    text-align: center;
}

.footer-section h3 {
    margin-bottom: 24px;
    color: var(--secondary);
    font-weight: 900;
    font-size: 18px;
    letter-spacing: -0.5px;
    font-family: 'Orbitron', sans-serif;
}

.footer-section p {
    color: #1800ad;
    font-family: 'Orbitron', sans-serif;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #1800ad;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #1800ad;
    font-size: 14px;
    font-family: 'Orbitron', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 17px;
    }

    .section-title {
        font-size: 36px;
    }

    .nav-links {
        gap: 1px;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 10px;
        padding: 4px 5px;
    }

    .app-badges {
        flex-direction: column;
        align-items: center;
    }

    .hero-logo {
        width: 140px;
        height: 140px;
    }

    .pricing-card.premium {
        transform: scale(1);
    }

    /* Features grid para móvil */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .feature-card {
        padding: 20px 10px;
        border-radius: 12px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin: 0 auto 12px;
        border-radius: 10px;
    }

    .feature-card h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .feature-card p {
        font-size: 12px;
        line-height: 1.4;
    }

    /* Steps grid para móvil */
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 50px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .step h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .step p {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Pricing grid para móvil */
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 50px;
    }

    .pricing-card {
        padding: 20px 15px;
        border-radius: 16px;
    }

    .plan-name {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .plan-price {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .plan-price span {
        font-size: 14px;
    }

    .plan-features li {
        padding: 8px 0;
        font-size: 12px;
        gap: 6px;
    }

    .plan-features li::before {
        font-size: 12px;
        width: 16px;
        height: 16px;
    }

    .popular-badge {
        font-size: 8px;
        padding: 4px 10px;
        top: -12px;
        right: 10px;
    }

    /* Benefits grid para móvil */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 50px;
    }

    .benefit-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .benefit-item h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .benefit-item p {
        font-size: 13px;
        line-height: 1.5;
    }

    .account-deletion {
        padding: 70px 0;
    }

    .deletion-intro {
        font-size: 13px;
    }

    .deletion-btn {
        font-size: 12px;
        padding: 12px 18px;
    }
}
