/* Base Styles - Dark Theme */
:root {
    --primary-color: #6A4DFF; /* Purple/Blue accent from image */
    --secondary-color: #1A1A2E; /* Dark background */
    --accent-color: #00C4FF; /* Bright blue accent */
    --text-color: #E0E0E0; /* Light gray text */
    --text-color-secondary: #A0A0B0; /* Slightly darker gray text */
    --light-color: #2A2A3E; /* Slightly lighter dark background for cards/elements */
    --dark-color: #0F0F1A; /* Very dark background */
    --gray-color: #808090; /* Medium gray for borders/less important text */
    --border-color: #40405A; /* Darker border color */
    --shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Adjusted shadow for dark theme */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-color); /* Use the darkest background for body */
}

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

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

a {
    text-decoration: none;
    color: var(--accent-color); /* Use bright blue for links */
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color); /* Use purple/blue on hover */
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background-color: #523ACC; /* Slightly darker purple/blue */
    color: white;
    transform: translateY(-2px) scale(1.02); /* Subtle lift and scale */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4); /* Adjusted shadow */
}

.btn-secondary {
    background-color: var(--light-color); /* Use lighter dark bg for secondary */
    color: var(--text-color);
    border: 1px solid var(--border-color); /* Add border */
    box-shadow: none; /* Remove shadow for secondary */
}

.btn-secondary:hover {
    background-color: var(--border-color); /* Darken slightly on hover */
    color: white;
    transform: translateY(-2px) scale(1.02); /* Subtle lift and scale */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); /* Add subtle shadow on hover */
}

/* Header Styles */
header {
    background-color: var(--dark-color); /* Use darkest background */
    color: var(--text-color);
    padding: 15px 0; /* Slightly reduced padding */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img { /* Style the logo image if needed */
    max-height: 40px; /* Adjust logo size */
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 15px; /* Adjust padding */
    border-radius: 4px;
}

nav ul li a:hover {
    color: var(--primary-color); /* Purple/blue on hover */
    background-color: rgba(255, 255, 255, 0.05); /* Subtle background on hover */
}

/* Hero Section */
.hero {
    background-color: var(--dark-color); /* Match header background */
    color: var(--text-color);
    padding: 100px 0;
    position: relative;
    /* Maybe add a subtle gradient or pattern later if needed */
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem; /* Larger heading */
    margin-bottom: 20px;
    line-height: 1.2;
    color: white; /* Ensure main heading is bright white */
}
/* Highlight part of the heading like in the image */
.hero-content h1 span {
    color: var(--primary-color); /* Purple/blue highlight */
}


.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-color-secondary); /* Use secondary text color */
    max-width: 600px; /* Limit width */
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.trust-badges span {
    background-color: var(--light-color); /* Use lighter dark bg */
    padding: 8px 15px;
    border-radius: 50px;
    color: var(--text-color); /* Ensure text is readable */
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.trust-badges i {
    color: var(--primary-color); /* Use primary accent color */
    margin-right: 8px;
}

/* Product Highlights Section */
.product-highlights {
    background-color: var(--secondary-color); /* Dark background */
}

.product-highlights h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: var(--text-color); /* Light text */
}

.benefits-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.benefits {
    flex: 1;
}

.benefits h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--text-color); /* Light text */
}

.benefits ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.benefits ul li i {
    color: var(--accent-color); /* Bright blue accent */
    margin-right: 10px;
    font-size: 1.2rem;
    margin-top: 3px;
}

.benefits ul li:last-child i {
    color: var(--primary-color); /* Use primary accent for gift */
}

.benefits ul li:last-child {
    font-weight: 600;
}

.product-image {
    flex: 1;
    text-align: center;
}

.product-image img {
    max-width: 80%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--secondary-color); /* Dark background */
    text-align: left; /* Align content left within cards */
}

/* Use section-header styles */
/* .testimonials h2 { ... } */

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

.testimonial-card {
    background-color: var(--light-color); /* Lighter dark background for cards */
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color); /* Add subtle border */
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4); /* Adjusted shadow */
    border-left: 4px solid var(--primary-color); /* Keep accent border on hover */
    padding-left: 26px; /* Adjust padding to account for border */
    border-top: 1px solid var(--border-color); /* Keep other borders */
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover; /* Ensure image covers the area */
}

.author-info h4 {
    color: var(--text-color); /* Light text */
    margin-bottom: 3px;
    font-size: 1rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-color-secondary); /* Lighter gray text */
    font-style: normal;
}

.testimonial-rating {
    margin-bottom: 15px;
    color: var(--accent-color); /* Or a gold color like #FFD700 */
}

.testimonial-rating i {
    font-size: 1rem;
    margin-right: 2px;
}


.testimonial-content p {
    font-style: normal; /* Remove italic */
    margin-bottom: 20px;
    color: var(--text-color); /* Main text color */
    font-size: 1rem;
    line-height: 1.7;
}

.testimonial-results {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-color-secondary);
}

.testimonial-results strong {
    color: var(--text-color);
}

/* --- Enhanced Animation --- */
/* Add this class via JS */
.fade-slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-slide-up.animate {
    opacity: 1;
    transform: translateY(0);
}
/* Add a slight delay for elements within a section */
.fade-slide-up.animate > * { 
    transition-delay: 0.2s; 
}

/* --- Section Divider (Optional) --- */
/* Example: Add <hr class="section-divider"> between sections */
.section-divider {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
    margin: 60px auto;
    width: 80%;
}


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

.pricing .section-header h2 span {
    color: var(--primary-color); /* Highlight color */
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch; /* Make cards same height */
    margin-bottom: 40px;
}

.pricing-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column; /* Align items vertically */
    transition: var(--transition);
    position: relative; /* For featured tag */
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.pricing-card.featured {
    background-color: var(--secondary-color); /* Darker background for featured */
    border: 2px solid var(--primary-color); /* Highlight border */
    transform: scale(1.03); /* Slightly larger */
}

.pricing-card.featured:hover {
     transform: scale(1.03) translateY(-5px); /* Keep scale on hover */
}


.pricing-card .featured-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color); /* Match border */
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}


.pricing-card h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 10px;
    text-align: center;
}

.plan-description {
    font-size: 0.9rem;
    color: var(--text-color-secondary);
    text-align: center;
    margin-bottom: 25px;
    min-height: 30px; /* Ensure space even if no description */
}

.pricing-price {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    display: block;
    line-height: 1;
}
.pricing-card.featured .pricing-price .amount {
    color: var(--primary-color); /* Highlight price on featured */
}


.pricing-price .term {
    font-size: 0.9rem;
    color: var(--text-color-secondary);
    text-transform: uppercase;
}

.pricing-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
    flex-grow: 1; /* Make list take available space */
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.pricing-features li i {
    width: 20px;
    text-align: center;
    margin-right: 10px;
    color: var(--accent-color); /* Blue check */
}

.pricing-features li.disabled {
    color: var(--gray-color); /* Gray out disabled features */
    text-decoration: line-through;
}

.pricing-features li.disabled i {
    color: var(--gray-color); /* Gray out icon */
}

.pricing-card .btn {
    margin-top: auto; /* Push button to bottom */
    width: 100%;
}

.pricing-footer {
    text-align: center;
    margin-top: 40px;
}

.pricing-footer p {
    color: var(--text-color-secondary);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.guarantee-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.guarantee-badges span {
    color: var(--text-color-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.guarantee-badges span i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Remove old Upsell Section styles */
/* .upsell, .upsell-options, .upsell-card, .upsell-price, etc. are removed */

/* Comprehensive NIL Services Section */
.nil-services {
    background-color: var(--secondary-color); /* Dark background */
}

.nil-services .section-header h2 span {
    color: var(--accent-color); /* Highlight color */
}

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

.service-card {
    background-color: var(--light-color); /* Lighter dark bg */
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column; /* Align items vertically */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-color-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1; /* Push list and button down */
}

.service-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.service-card ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--text-color-secondary);
    font-size: 0.9rem;
}

.service-card ul li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1rem;
}

.service-card .btn {
    margin-top: auto; /* Push button to bottom */
    width: 100%;
}


/* FAQ Section */
.faq {
    background-color: var(--dark-color); /* Darkest background */
}

/* Use section-header styles */
/* .faq h2 { ... } */

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

.faq-item {
    background-color: var(--secondary-color); /* Dark background */
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color); /* Add border */
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-color); /* Light text */
    font-weight: 600; /* Slightly bolder question */
}

.faq-toggle {
    color: var(--accent-color); /* Bright blue toggle */
    font-size: 1.2rem;
    transition: transform 0.3s ease; /* Add transition for toggle icon */
}

.faq-answer {
    padding: 0 20px 20px;
    display: none; /* Keep hidden by default */
    color: var(--text-color-secondary); /* Lighter gray for answer */
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle { /* Rotate the whole toggle span */
    transform: rotate(45deg);
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #523ACC 100%); /* Gradient using primary color */
    color: white;
    text-align: center;
    padding: 80px 0;
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.urgency-reminder {
    margin-top: 30px;
    font-weight: 600;
}

.urgency-reminder i {
    color: white; /* White icon */
    margin-right: 8px;
}

#copies-left-reminder {
    color: white; /* White text */
    font-weight: 700;
    background-color: rgba(0,0,0,0.2); /* Subtle background */
    padding: 2px 6px;
    border-radius: 3px;
}

/* Footer */
footer {
    background-color: var(--dark-color); /* Darkest background */
    color: var(--text-color-secondary); /* Lighter gray text */
    padding: 60px 0 20px;
}

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

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color); /* Brighter text for heading */
}

.footer-logo p {
    opacity: 0.8; /* Keep opacity */
}

.footer-links h4,
.footer-social h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-color); /* Brighter text for headings */
}

.footer-links ul li a {
    color: var(--text-color-secondary); /* Lighter gray */
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--accent-color); /* Bright blue on hover */
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--text-color-secondary); /* Lighter gray */
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--accent-color); /* Bright blue on hover */
    transform: translateY(-3px);
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-color); /* Bright blue icons */
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color); /* Use border color */
}

/* Discord Widget Section Styles */
.discord-widget-section {
    background-color: var(--secondary-color); /* Match surrounding sections */
    padding: 60px 0; /* Slightly less padding than main sections */
}

.discord-widget-section .section-header h2 span {
    color: var(--accent-color); /* Use accent color */
}

.discord-widget-container {
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Center horizontally */
    margin-top: 30px; /* Space below header */
}

.discord-widget-container iframe {
    border-radius: 8px; /* Match other elements */
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color); /* Subtle border */
    max-width: 100%; /* Ensure responsiveness */
    /* Apply fade-in animation */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s 0.2s ease-out, transform 0.6s 0.2s ease-out; /* Add delay */
}

/* Trigger animation (can be done via JS or simply always visible) */
.discord-widget-container iframe.visible { /* Updated selector */
    opacity: 1;
    transform: translateY(0);
}


.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7; /* Keep opacity */
}

/* Contact Form Section Styles */
.contact-form-section {
    background-color: var(--secondary-color); /* Dark background */
    padding: 80px 0;
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.2rem;
    color: var(--text-color); /* Light text */
}

.contact-form-section p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--text-color-secondary); /* Lighter gray text */
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--light-color); /* Lighter dark bg for form */
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color); /* Add border */
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color); /* Light text */
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--secondary-color); /* Dark input background */
    color: var(--text-color); /* Light text in input */
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color); /* Purple/blue focus border */
    box-shadow: 0 0 0 2px rgba(106, 77, 255, 0.3); /* Adjusted focus shadow */
}

.form-group textarea {
    resize: vertical; /* Allow vertical resizing */
}

.form-group button {
    width: 100%;
}

.form-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    display: none; /* Hidden by default */
}

.form-status.success {
    background-color: rgba(0, 196, 255, 0.1); /* Use accent color */
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    display: block;
}

.form-status.error {
    background-color: rgba(230, 0, 0, 0.1); /* Use a red tone */
    color: #ff4d4d; /* Lighter red text */
    border: 1px solid #ff4d4d;
    display: block;
}

/* --- Lead Capture Modal Styles --- */
.modal-overlay {
    position: fixed; /* Stay in place */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000; /* Ensure it's on top */
    opacity: 0; /* Start hidden */
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--light-color); /* Lighter dark bg */
    padding: 30px 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.9); /* Start slightly small */
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1); /* Scale to full size when active */
}

.modal-content h2 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--text-color); /* Light text */
    text-align: center;
}
.modal-content p {
    margin-bottom: 25px;
    text-align: center;
    color: var(--text-color-secondary); /* Lighter gray text */
}

.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-color-secondary); /* Lighter gray */
    cursor: pointer;
    line-height: 1;
}
.modal-close-btn:hover {
    color: var(--text-color); /* Brighter gray on hover */
}

/* Use existing form styles within modal */
#lead-capture-form .form-group {
    margin-bottom: 15px;
}
#lead-capture-form label {
    margin-bottom: 5px;
    font-size: 0.9em;
}

/* Trusted By Section */
.trusted-by {
    background-color: var(--dark-color); /* Match hero/header */
    padding: 40px 0; /* Reduced padding */
    border-top: 1px solid var(--border-color); /* Separator line */
    border-bottom: 1px solid var(--border-color); /* Separator line */
}

.trusted-by .container {
    text-align: center;
}

.trusted-by p {
    color: var(--text-color-secondary);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.trusted-by .logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px; /* Adjust gap as needed */
    flex-wrap: wrap;
}

.trusted-by .logos img {
    max-height: 35px; /* Adjust logo size */
    opacity: 0.7; /* Make logos slightly faded */
    transition: var(--transition);
}

.trusted-by .logos img:hover {
    opacity: 1; /* Full opacity on hover */
}

/* Features Section */
.features {
    background-color: var(--secondary-color); /* Dark background */
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background-color: rgba(0, 196, 255, 0.1); /* Accent color with opacity */
    color: var(--accent-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--primary-color); /* Highlight color */
}

.section-header p {
    color: var(--text-color-secondary);
    max-width: 700px;
    margin: 0 auto;
}

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

.feature-card {
    background-color: var(--light-color); /* Lighter dark bg */
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-color-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.feature-card ul {
    list-style: none;
    padding-left: 0;
}

.feature-card ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--text-color-secondary);
    font-size: 0.9rem;
}

.feature-card ul li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1rem;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--dark-color); /* Darkest background */
    padding: 80px 0;
}

.how-it-works .section-header h2 span {
    color: var(--accent-color); /* Use accent color for highlight */
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative; /* For pseudo-element lines */
    margin-top: 40px;
}

/* Optional: Add connecting lines (pseudo-elements) - might need refinement */
/* .steps-grid::before { ... } */

.step-card {
    background-color: var(--light-color); /* Lighter dark bg */
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative; /* For step number */
    transition: var(--transition);
}

.step-card:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow);
}

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background-color: var(--primary-color);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1rem;
    border: 3px solid var(--dark-color); /* Match background */
}

.step-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-color-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.step-timeline {
    display: inline-block;
    background-color: var(--secondary-color); /* Darker bg for tag */
    color: var(--text-color-secondary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Real Results Section */
.real-results {
    background-color: var(--secondary-color); /* Dark background */
    padding: 80px 0;
}

.real-results .section-header h2 span {
    color: var(--primary-color); /* Highlight color */
}

.results-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow wrapping */
}

.stats-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2x2 grid */
    gap: 30px;
    min-width: 300px; /* Ensure stats have space */
}

.stat-item {
    background-color: var(--light-color); /* Lighter dark bg */
    padding: 25px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color); /* Highlight color for numbers */
    margin-bottom: 10px;
    line-height: 1.1;
}

.stat-description {
    font-size: 0.95rem;
    color: var(--text-color-secondary);
}

.results-image {
    flex: 1;
    min-width: 300px; /* Ensure image has space */
    text-align: center; /* Center image if it wraps */
}

.results-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}


/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .benefits-container {
        flex-direction: column;
    }
    
    .benefits {
        text-align: center;
    }
    
    .benefits ul li {
        justify-content: center;
    }
}

/* --- Animations & Effects --- */

/* General Fade-in Animation (Apply class 'fade-in' to elements) */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Add this class via JS when element is in view or on load */
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Button Hover Effects (Already partially implemented, enhance slightly) */
.btn {
    /* Existing styles */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smoother transition */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Subtle initial shadow */
}

.btn:hover {
    /* Existing styles */
    transform: translateY(-3px) scale(1.03); /* Slightly more lift */
    box-shadow: 0 6px 12px rgba(0,0,0,0.2); /* Enhanced shadow on hover */
}

/* Card Hover Effects (Apply to .feature-card, .testimonial-card, .service-card, .step-card, .pricing-card) */
.feature-card, .testimonial-card, .service-card, .step-card, .pricing-card {
    /* Existing styles */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover, .testimonial-card:hover, .service-card:hover, .step-card:hover, .pricing-card:hover {
    /* Existing styles */
    transform: translateY(-6px); /* More noticeable lift */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* Softer, larger shadow */
    border-color: var(--primary-color); /* Highlight border on hover */
}

/* Specific hover for featured pricing card */
.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-6px); /* Keep scale, add lift */
    box-shadow: 0 12px 24px rgba(106, 77, 255, 0.2); /* Primary color shadow */
}

/* Hero Image Subtle Animation */
.hero-image img {
    /* Existing styles */
    transition: transform 0.4s ease-out;
}

.hero-image:hover img {
    transform: scale(1.02); /* Slight zoom on hover */
}

/* Download Button Specific Animation */
.cta-button a.btn-secondary {
    position: relative;
    overflow: hidden;
}

.cta-button a.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button a.btn-secondary:hover::before {
    left: 100%;
}

.cta-button a.btn-secondary i {
    transition: transform 0.3s ease;
    display: inline-block; /* Needed for transform */
}

.cta-button a.btn-secondary:hover i {
    transform: scale(1.1) rotate(5deg); /* Slight scale and rotate */
}

@media (max-width: 768px) {
    header .container {
        flex-direction: row; /* Keep logo and button on same line */
        justify-content: space-between; /* Space them out */
        position: relative; /* Needed for absolute positioning of nav */
        padding-top: 10px; /* Add some padding */
        padding-bottom: 10px;
    }

    nav {
        /* Position nav below header when active */
        position: absolute;
        top: 100%; /* Position below the header */
        left: 0;
        width: 100%;
        background-color: var(--dark-color); /* Match header */
        max-height: 0; /* Start hidden */
        overflow: hidden;
        transition: max-height 0.4s ease-out; /* Smooth transition */
        z-index: 1050; /* Ensure it's above content */
    }

    nav.active {
         max-height: 500px; /* Or enough height to show all items */
    }
    
    nav ul {
        margin-top: 0; /* Remove previous margin */
        flex-direction: column; /* Stack links vertically */
        width: 100%;
        padding: 0; /* Remove previous padding */
    }

    nav ul li {
        margin-left: 0;
        text-align: center; /* Center nav links */
        width: 100%;
    }
    nav ul li a {
        display: block; /* Make links take full width */
        padding: 15px 20px; /* Adjust padding */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
     nav ul li:last-child a {
        border-bottom: none;
    }

    /* Mobile Menu Button Styles - Initially hide it */
     .mobile-menu-btn {
         display: block; /* Show the button */
         font-size: 1.8rem;
         color: var(--text-color); /* Light text */
         cursor: pointer;
         background: none; /* Ensure no background */
         border: none; /* Ensure no border */
         padding: 5px; /* Add padding for easier tapping */
     }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .upsell-card.featured {
        transform: scale(1);
    }
    
    .upsell-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 576px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .offer-content {
        padding: 20px;
    }
    
    .original-price {
        font-size: 1.2rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
}
