:root {
    --primary: #ff69b4;
    --primary-dark: #ff1493;
    --secondary: #ffb6c1;
    --background: #0a0a0f;
    --card-bg: #1a1a24;
    --text: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--background);
    color: var(--text);
    overflow-x: hidden;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo span {
    color: var(--primary);
    font-size: 2rem;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    margin: 0 1.5rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.get-started {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.get-started:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 4rem 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(255,105,180,0.15) 100%);
}

.hero-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

.badge {
    background: rgba(255, 105, 180, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 105, 180, 0.2);
}

.badge i {
    color: var(--primary);
}

h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h1 span {
    color: var(--primary);
    position: relative;
}

h1 span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: -4px;
    left: 0;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    animation: underline 1.5s ease-out forwards;
}

@keyframes underline {
    to {
        transform: scaleX(1);
        transform-origin: left;
    }
}

.stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 105, 180, 0.1);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 105, 180, 0.2);
}

.stat-box i {
    color: var(--primary);
    font-size: 1.5rem;
}

.counter {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.primary-btn, .secondary-btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.primary-btn {
    background: var(--primary);
    color: white;
    border: none;
}

.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid var(--primary);
}

.primary-btn:hover, .secondary-btn:hover {
    transform: translateY(-2px);
}

.products {
    padding: 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

.hero-content > * {
    animation: fadeUp 0.6s ease-out forwards;
    opacity: 0;
}

.hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.hero-content > *:nth-child(2) { animation-delay: 0.4s; }
.hero-content > *:nth-child(3) { animation-delay: 0.6s; }
.hero-content > *:nth-child(4) { animation-delay: 0.8s; }
.hero-content > *:nth-child(5) { animation-delay: 1s; }

.product-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 105, 180, 0.1);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.15);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-badge.top-seller {
    background: #ffd700;
    color: #000;
}

.product-badge.popular {
    background: #ff69b4;
    color: white;
}

.product-badge.new {
    background: #00bfff;
    color: white;
}

.product-image {
    margin: -2rem -2rem 1rem -2rem;
    background: rgba(255, 105, 180, 0.1);
    padding: 2rem;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-type {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-list {
    margin: 1.5rem 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-list li i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 24px;
}

.price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
}

.price-tag {
    display: flex;
    align-items: baseline;
}

.currency {
    font-size: 1.2rem;
    color: var(--primary);
    margin-right: 2px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.status-badge {
    background: rgba(46, 213, 115, 0.15);
    color: #2ed573;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-status {
    margin: 1rem 0;
}

.purchase-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.purchase-btn:hover {
    background: var(--primary-dark);
}

.testimonials {
    padding: 6rem 4rem;
    background: radial-gradient(circle at bottom left, rgba(255, 105, 180, 0.1) 0%, transparent 70%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: rgba(255, 105, 180, 0.05);
    border: 1px solid rgba(255, 105, 180, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-rating {
    color: #ffd700;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    color: white;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--primary);
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        margin: 0 auto;
    }

    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .stats {
        justify-content: center;
    }

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

    h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 2rem;
    }

    .nav-links {
        display: none;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo span {
        font-size: 1.5rem;
    }

    .get-started {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 4rem 1.5rem 2rem;
        min-height: auto;
    }

    h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-image {
        max-width: 100%;
        padding: 0 1rem;
    }

    .badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-box {
        width: 100%;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .primary-btn, .secondary-btn {
        width: 100%;
    }

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

    .testimonials {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0.8rem 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 4rem 1rem 2rem;
    }

    .product-card {
        padding: 1.5rem;
    }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 2rem auto;
    background: rgba(20, 20, 30, 0.95);
    border-radius: 16px;
    border: 1px solid rgba(255, 105, 180, 0.2);
    padding: 2rem;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 105, 180, 0.2);
    color: var(--primary);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.product-preview {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.product-preview img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.undetected-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(46, 213, 115, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.rating i {
    color: #ffd700;
}

.tags {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.subscription-options {
    margin: 2rem 0;
}

.option-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.option {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option:hover {
    background: rgba(255, 105, 180, 0.1);
}

.option input[type="radio"] {
    display: none;
}

.option input[type="radio"]:checked + .option-text {
    color: var(--primary);
}

.option-text {
    flex: 1;
    margin-left: 1rem;
}

.option-price {
    font-weight: 600;
    color: var(--primary);
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.req-column h4 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.req-column ul {
    list-style: none;
    padding: 0;
}

.req-column ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.purchase-section {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.quantity {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.5rem;
}

.qty-btn {
    background: none;
    border: none;
    color: white;
    padding: 0.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.qty-btn:hover {
    color: var(--primary);
}

.quantity input {
    width: 50px;
    background: none;
    border: none;
    color: white;
    text-align: center;
    font-size: 1.1rem;
}

.payment-methods {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-methods p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
} 

.total {
    font-size: 1.2rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.total-price {
    color: var(--primary);
    font-weight: 600;
}