:root {
    --bg-main: #06060c;
    --bg-card: rgba(13, 13, 24, 0.65);
    --accent: #00e676;
    --accent-hover: #00c853;
    --accent-gradient: linear-gradient(135deg, #00e676 0%, #00b0ff 100%);
    --text-main: #f0f3f8;
    --text-muted: #8b96a5;
    --glass-border: rgba(255, 255, 255, 0.06);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: 
        radial-gradient(circle at 80% 0%, rgba(0, 230, 118, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(0, 176, 255, 0.04) 0%, transparent 45%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #ffffff;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Nav */
nav {
    border-bottom: 1px solid var(--glass-border);
    background: rgba(6, 6, 12, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
}

.logo-badge {
    background: var(--accent-gradient);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 900;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(0, 230, 118, 0.2);
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--accent);
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.15);
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
}

/* Pricing Grid */
.pricing-section {
    padding: 40px 0 80px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 230, 118, 0.25);
    box-shadow: 0 20px 40px rgba(0, 230, 118, 0.03);
}

.pricing-card.featured {
    border-color: rgba(0, 230, 118, 0.3);
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.05);
}

.popular-ribbon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gradient);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 30px;
}

.plan-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.plan-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.plan-price {
    font-size: 3.25rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.plan-price sub {
    font-size: 1.5rem;
    font-weight: 700;
    align-self: flex-start;
    margin-top: 4px;
    margin-right: 2px;
    color: var(--accent);
}

.price-subtext {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    display: block;
}

.plan-features {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-features li {
    font-size: 0.9rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 900;
    font-size: 1rem;
}

.btn-checkout {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    margin-top: auto;
    display: block;
    text-align: center;
}

.pricing-card.featured .btn-checkout,
.pricing-card:hover .btn-checkout {
    background: var(--accent-gradient);
    color: #000000;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.2);
}

/* Trust block */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.5;
    padding: 40px 0 80px;
    border-top: 1px solid var(--glass-border);
}

.trust-badge-item {
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

/* Footer */
footer {
    background: #040408;
    border-top: 1px solid var(--glass-border);
    padding: 40px 0;
    margin-top: auto;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
}

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

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .footer-wrapper {
        flex-direction: column;
        text-align: center;
    }
}
