/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
}

p {
    margin-bottom: 1rem;
    color: #ccc;
}

strong {
    color: #fff;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-button.primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.cta-button.secondary:hover {
    background: #007bff;
    color: white;
}

.cta-button.large {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #007bff;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-subtitle {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #007bff;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 2rem;
    color: #ccc;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.2);
}

.hero-img {
    width: 100%;
    height: auto;
    max-width: 500px;
    display: block;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #111;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: #ccc;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.feature-description {
    font-size: 18px;
    margin-bottom: 2rem;
    color: #ccc;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.feature-list i {
    color: #007bff;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-image {
    display: flex;
    justify-content: center;
}

.feature-img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: #0a0a0a;
}

.step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 80px;
}

.step.reverse {
    direction: rtl;
}

.step.reverse .step-content {
    direction: ltr;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.step-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.step-description {
    font-size: 18px;
    color: #ccc;
}

.step-image {
    display: flex;
    justify-content: center;
}

.step-img {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #111;
}

.pricing-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    margin: 0 auto;
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #007bff;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-category {
    font-size: 14px;
    color: #007bff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.pricing-price {
    margin-bottom: 2rem;
}

.old-price {
    font-size: 1.2rem;
    color: #888;
    text-decoration: line-through;
    margin-right: 1rem;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
}

.pricing-btn {
    margin-bottom: 2rem;
    width: 100%;
    justify-content: center;
}

.pricing-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.pricing-features i {
    color: #007bff;
    margin-top: 2px;
    flex-shrink: 0;
}

/* News Section */
.news {
    padding: 80px 0;
    background: #0a0a0a;
}

.news-content {
    text-align: center;
}

.news-image {
    margin-bottom: 3rem;
}

.news-img {
    width: 100%;
    height: auto;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.news-quote {
    font-size: 24px;
    line-height: 1.6;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #111;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 123, 255, 0.1);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 123, 255, 0.05);
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    margin: 0;
    color: #ccc;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo a {
    font-size: 28px;
    font-weight: 700;
    color: #007bff;
    text-decoration: none;
}

.footer-description {
    font-size: 18px;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content,
    .features-content,
    .step,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .step.reverse {
        direction: ltr;
    }

    .pricing-card {
        padding: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-title,
    .step-title {
        font-size: 2rem;
    }

    .news-quote {
        font-size: 18px;
    }

    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 16px;
    }

    .faq-answer p {
        padding: 0 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content,
    .features-content,
    .step {
        gap: 1.5rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .cta-button.large {
        padding: 14px 24px;
        font-size: 16px;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-price {
        margin-bottom: 1.5rem;
    }

    .current-price {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header,
.features-content,
.step,
.pricing-card,
.news-content,
.faq-list {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.cta-button:focus,
.faq-question:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}