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

:root {
    --primary-color: #f5a623;
    --secondary-color: #1a1a1a;
    --dark-color: #0d0d0d;
    --bg-dark: #1a1a1a;
    --bg-darker: #0d0d0d;
    --bg-card: #242424;
    --text-color: #e0e0e0;
    --text-light: #b0b0b0;
    --text-white: #ffffff;
    --accent-color: #f5a623;
    --border-color: #333;
    --border-radius: 8px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-yellow: 0 0 20px rgba(245, 166, 35, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-dark);
    font-size: 16px;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

strong {
    font-weight: 700;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    color: var(--text-white);
    padding: 100px 20px;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(245, 166, 35, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.hero-title strong {
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(245, 166, 35, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    color: var(--text-light);
}

.hero-subtitle strong {
    color: var(--text-white);
    font-weight: 600;
}

.btn-hero {
    margin-top: 2.5rem;
    font-size: 1.3rem;
    padding: 1.3rem 3.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Section Styles */
.section {
    padding: 80px 20px;
    background-color: var(--bg-dark);
}

.section:nth-child(even) {
    background-color: var(--bg-darker);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-white);
    font-size: 2.2rem;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Problems Section */
.section-problems {
    background-color: var(--bg-dark);
}

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

.problem-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-yellow);
    border-left-color: var(--primary-color);
    background: var(--bg-darker);
}

.problem-highlight {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.15) 0%, var(--bg-card) 100%);
    border-left-width: 6px;
    border-left-color: var(--primary-color);
    box-shadow: var(--shadow-yellow);
    animation: glow 2s ease-in-out infinite;
}

.problem-highlight p {
    font-size: 1.1rem;
}

.problem-highlight strong {
    color: var(--primary-color);
    font-size: 1.2em;
    text-transform: uppercase;
}

@keyframes glow {
    0%, 100% {
        box-shadow: var(--shadow-yellow);
    }
    50% {
        box-shadow: 0 0 30px rgba(245, 166, 35, 0.3);
    }
}

.problem-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.problem-item p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-color);
}

/* About Section */
.section-about {
    background-color: var(--bg-darker);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.about-text strong {
    color: var(--text-white);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid var(--border-color);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-yellow);
    border-color: var(--primary-color);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.feature-item p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-color);
}

.feature-item strong {
    color: var(--text-white);
}

/* Results Section */
.section-results {
    background: linear-gradient(135deg, var(--bg-darker) 0%, #0a0a0a 100%);
    color: var(--text-white);
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    position: relative;
}

.section-results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(245, 166, 35, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.section-results .section-title {
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

.results-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.result-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-yellow);
    transform: translateX(5px);
}

.result-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.result-item p {
    margin: 0;
}

/* CTA Section */
.section-cta {
    background: var(--bg-darker);
    color: var(--text-white);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.cta-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(245, 166, 35, 0.3);
}

.cta-subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

/* Pricing Section */
.section-pricing {
    background-color: var(--bg-dark);
}

.pricing-card {
    max-width: 650px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-yellow);
    text-align: center;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #ffcd4d 100%);
}

.pricing-title {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.pricing-badge {
    background: linear-gradient(135deg, #ff4444 0%, #ff6b35 100%);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pricing-price {
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.price-original {
    font-size: 2.5rem;
    color: var(--text-white);
    opacity: 0.9;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.price-original::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 4px;
    background-color: #ff4444;
    transform: translateY(-50%) rotate(-5deg);
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    font-size: 1.5rem;
    color: var(--text-color);
}

.pricing-disclaimer {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.pricing-note {
    background: rgba(245, 166, 35, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    color: var(--text-color);
    text-align: left;
    line-height: 1.6;
}

.pricing-note strong {
    color: var(--primary-color);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li strong {
    color: var(--text-white);
}

.pricing-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-darker);
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: #ffcd4d;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(245, 166, 35, 0.6);
}

/* How It Works Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-yellow);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--bg-darker);
    font-size: 2rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(245, 166, 35, 0.5);
}

.step-item h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-item p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-color);
}

/* Testimonials Section */
.section-testimonials {
    background-color: var(--bg-darker);
}

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

.testimonial-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-yellow);
    transform: translateY(-5px);
}

.testimonial-stars {
    font-size: 1.2rem;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-color);
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
    margin: 0;
}

.testimonial-author {
    color: var(--text-white);
    font-weight: 600;
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.testimonial-author strong {
    color: var(--primary-color);
}

.testimonials-placeholder {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 3rem;
    border: 1px solid var(--border-color);
}

.testimonials-placeholder p {
    color: var(--text-light);
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-yellow);
}

.faq-question {
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.faq-answer {
    margin: 0;
    line-height: 1.7;
    padding-left: 2.5rem;
    color: var(--text-color);
}

/* Contact Section */
.section-contact {
    background: linear-gradient(135deg, var(--bg-darker) 0%, #0a0a0a 100%);
    color: var(--text-white);
    text-align: center;
    border-top: 2px solid var(--primary-color);
    position: relative;
}

.section-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(245, 166, 35, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-contact .section-title {
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

.contact-info {
    font-size: 1.3rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.contact-info p {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

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

.contact-info a {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    color: var(--text-light);
    padding: 3rem 20px;
    font-size: 0.9rem;
    line-height: 1.8;
    border-top: 1px solid var(--border-color);
}

.footer h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer h4 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ffcd4d;
    text-decoration: underline;
}

.footer p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

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

    .section-title {
        font-size: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .price-original {
        font-size: 2.2rem;
        color: var(--text-white);
        opacity: 0.95;
        font-weight: 700;
    }
    
    .price-original::after {
        height: 5px;
        background-color: #ff4444;
    }

    .price-amount {
        font-size: 2.8rem;
    }

    .price-period {
        font-size: 1.2rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .section {
        padding: 40px 15px;
    }
    
    .btn-hero {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease-out;
}