:root {
    --bg-void: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --primary: #FF005C;
    /* Neon Pink/Red for urgency/shopping */
    --secondary: #7000FF;
    /* Deep Purple */
    --accent: #00FF94;
    /* Green for Success/Money */
    --text-main: #ffffff;
    --text-muted: #a0a0a0;

    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-void);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background Mesh */
.mesh-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: floatBlob 20s infinite ease-in-out;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 40%;
    left: 40%;
    animation-delay: -10s;
    opacity: 0.1;
}

@keyframes floatBlob {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.main-content {
    flex-grow: 1;
    padding-top: 140px;
    /* Space for fixed header */
    padding-bottom: 80px;
}

/* HEADER OVERRIDE (For consistency) */
header {
    padding: 20px 0 !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: white;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 101;
}

/* HERO SECTION */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 80vh;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* BUTTONS */
.btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 10px 30px rgba(255, 0, 92, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 92, 0.5);
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-ghost:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}

/* HERO VISUAL (3D Card Effect) */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-card {
    width: 380px;
    height: 550px;
    background: rgba(20, 20, 25, 0.6);
    backdrop-filter: blur(20px);
    border: var(--glass-border);
    border-radius: 30px;
    padding: 20px;
    position: relative;
    transform: perspective(1000px) rotateY(-15deg);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: perspective(1000px) rotateY(-15deg) translateY(0);
    }

    50% {
        transform: perspective(1000px) rotateY(-15deg) translateY(-20px);
    }
}

.store-header {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.store-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    margin-right: 5px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 10px;
}

.product-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    height: 140px;
    position: relative;
    overflow: hidden;
}

.product-img {
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.product-line {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    margin: 10px 10px 0;
    border-radius: 4px;
    width: 60%;
}

.product-price {
    height: 8px;
    background: var(--primary);
    margin: 5px 10px 0;
    border-radius: 4px;
    width: 30%;
    opacity: 0.6;
}

.add-to-cart {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 0.7rem;
}

/* Floating Elements */
.float-tag {
    position: absolute;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--accent);
    color: white;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.tag-sales {
    top: 20%;
    right: -40px;
    animation: bounce 4s infinite;
}

.tag-secure {
    bottom: 20%;
    left: -40px;
    animation: bounce 4s infinite 1s;
    border-color: var(--primary);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* FEATURES GRID */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    font-family: var(--font-heading);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.feature-card {
    background: var(--bg-card);
    border: var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-10px);
    border-color: var(--primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 0, 92, 0.1), rgba(112, 0, 255, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.5;
}

/* STEPS/PROCESS */
.process-section {
    padding: 80px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 100px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.step-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    font-family: var(--font-heading);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.step-content-inner {
    position: relative;
    z-index: 1;
}

/* PRICING PLANS */
.pricing-grid {
    display: flex;
    /* Changed from grid to flex for centering if needed, but grid usually better for responsiveness. Keeping grid-like behavior */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.plan-card.popular {
    border-color: var(--secondary);
    background: linear-gradient(180deg, rgba(112, 0, 255, 0.1), rgba(255, 255, 255, 0.02));
    transform: scale(1.05);
    z-index: 10;
}

.plan-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.plan-price {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.plan-features li i {
    color: var(--accent);
}

.plan-btn {
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none !important;
    font-size: 1rem;
    display: block;
    /* Ensure it behaves like a block for width */
}

.plan-card.popular .plan-btn {
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border: none;
    box-shadow: 0 4px 15px rgba(112, 0, 255, 0.4);
}

.plan-btn:hover {
    background: white;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
    border-color: white;
}

.plan-card.popular .plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 92, 0.5);
    color: white;
    /* Keep white text on gradient */
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    filter: brightness(1.2);
}

/* Final CTA */
.cta-section {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, rgba(255, 0, 92, 0.1), rgba(112, 0, 255, 0.1));
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 50px;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

/* Responsive */
@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: black;
        flex-direction: column;
        justify-content: center;
        z-index: 1000;
        transition: 0.4s;
    }

    .nav-links.active {
        right: 0;
        display: flex !important;
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-links .btn-primary {
        background: transparent !important;
        color: white !important;
        font-size: 1.5rem !important;
        padding: 0 !important;
        box-shadow: none !important;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .store-card {
        zoom: 0.8;
    }

    .plan-card.popular {
        transform: scale(1);
    }
}