/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.2rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFD700 !important;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FFD700;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.login-btn {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-btn:hover {
    color: #FFD700;
}

.cta-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000000;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #FFC107, #FF8F00);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #FFD700;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

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

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #FFD700;
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.badge-text {
    color: #FFD700;
    font-size: 0.9rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.highlight {
    color: #FFD700;
}

.hero-description {
    font-size: 1.25rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.primary-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 250px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.primary-btn:hover {
    background: linear-gradient(135deg, #FFC107, #FF8F00);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.secondary-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 1rem 2rem;
    border-radius: 250px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.5);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    color: #999999;
    font-size: 0.9rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    color: #FFD700;
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 5rem auto 0;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid #333333;
    transition: all 0.5s ease;
}

.feature-card.active {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
}

.card-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    justify-content: center;
    padding: 1rem;
    border-radius: 50%;
    background: #333333;
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-card.active .card-icon {
    background: #FFD700;
    color: #000000;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #999999;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #1a1a1a;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #999999;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-item-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.feature-item-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    background: #FFD700;
    color: #000000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.feature-item-card p {
    color: #999999;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: #000000;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: #1a1a1a;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.pricing-card.popular {
    border-color: #FFD700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.popular-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

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

.price {
    margin-bottom: 1rem;
}

.amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFD700;
}

.period {
    color: #999999;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #cccccc;
}

.features-list i {
    color: #FFD700;
    flex-shrink: 0;
}

.plan-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 25px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: #333333;
    color: #ffffff;
    border: 1px solid #555555;
}

.plan-btn:hover {
    background: #444444;
    border-color: rgba(255, 215, 0, 0.3);
}

.plan-btn.primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000000;
    border: none;
}

.plan-btn.primary:hover {
    background: linear-gradient(135deg, #FFC107, #FF8F00);
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: #1a1a1a;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 1rem;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333333;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #FFD700;
}

.testimonial-card p {
    color: #cccccc;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.author {
    color: #FFD700;
    font-weight: 600;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #999999;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: #000000;
}

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

.faq-item {
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333333;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.05);
}

.faq-question i {
    color: #FFD700;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #999999;
}

.faq-toggle:checked + .faq-question i {
    transform: rotate(180deg);
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 200px;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.cta-content {
    text-align: center;
    color: #000000;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: #000000;
    color: #FFD700;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cta-note {
    margin-top: 1rem;
    opacity: 0.6;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: #000000;
    border-top: 1px solid #333333;
}

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

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFD700;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #999999;
    margin-bottom: 1.5rem;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    gap: 1rem;
}

.copyright {
    color: #999999;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

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

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

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

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .primary-btn, .secondary-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .feature-card, .feature-item-card, .pricing-card, .testimonial-card {
        padding: 1.5rem;
    }

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

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 500px) {
    .cta-btn {
        padding: 0.3rem 1rem;
    }
}

@media (max-width: 400px) {
    .cta-btn {
       display: none;
    }
}

/* Animation for feature cards cycling */
@keyframes cardCycle {
    0%, 30% {
        background: rgba(255, 215, 0, 0.1);
        border-color: rgba(255, 215, 0, 0.3);
        transform: scale(1.05);
    }
    35%, 100% {
        background: rgba(26, 26, 26, 0.5);
        border-color: #333333;
        transform: scale(1);
    }
}

.feature-card:nth-child(1) {
    animation: cardCycle 9s infinite;
}

.feature-card:nth-child(2) {
    animation: cardCycle 9s infinite 3s;
}

.feature-card:nth-child(3) {
    animation: cardCycle 9s infinite 6s;
}

.feature-card:nth-child(1) .card-icon {
    animation: iconCycle 9s infinite;
}

.feature-card:nth-child(2) .card-icon {
    animation: iconCycle 9s infinite 3s;
}

.feature-card:nth-child(3) .card-icon {
    animation: iconCycle 9s infinite 6s;
}

@keyframes iconCycle {
    0%, 30% {
        background: #FFD700;
        color: #000000;
    }
    35%, 100% {
        background: #333333;
        color: #FFD700;
    }
}
