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

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    color: #e0e0e0;
    background: #0a0a0a;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Fix for Twitter and other in-app browsers */
@media screen and (max-width: 900px) {
  html, body {
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  * {
    max-width: 100%;
  }
}

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

/* Enhanced Offer Banner */
.offer-banner {
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ff6b35);
    color: #fff;
    padding: 12px 0;
    text-align: center;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(255, 107, 53, 0.3);
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background: linear-gradient(135deg, #ff6b35, #f7931e, #ff6b35); }
    50% { background: linear-gradient(135deg, #f7931e, #ff6b35, #f7931e); }
}



/* Enhanced Header */
header {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

header .logo a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    gap: 10px;
}

header .logo img {
    height: 24px;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Desktop Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    color: #b0b0b0;
    text-decoration: none;
    padding: 10px 16px;
    font-size: 0.95em;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-links a.active {
    color: #4CAF50;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    color: #b0b0b0;
    text-decoration: none;
    padding: 10px 16px;
    font-size: 0.95em;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-trigger:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-dropdown-trigger .arrow {
    font-size: 0.7em;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger .arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
    color: #fff;
    background: rgba(76, 175, 80, 0.15);
}

.nav-dropdown-menu a .nav-emoji {
    font-size: 1.1em;
}

/* Enhanced CTA Buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
    position: relative;
    overflow: hidden;
    min-height: 44px; /* Minimum touch target size */
    touch-action: manipulation; /* Improves touch responsiveness */
}

.cta-btn.primary {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: #fff;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.6);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-btn.large {
    padding: 18px 36px;
    font-size: 1.2em;
    font-weight: 700;
}

.cta-btn.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(76, 175, 80, 0.8); }
    100% { box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4); }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('../images/hero-image.jpg') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}



.hero h1 {
    font-size: clamp(2.5em, 5vw, 4em);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Text Highlight Colors */
.highlight-green {
    color: #4CAF50;
    font-weight: 800;
}

.highlight-blue {
    color: #2196F3;
    font-weight: 800;
}

.highlight-orange {
    color: #ff9800;
    font-weight: 800;
}



.hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #b0b0b0;
    font-weight: 400;
}



.hero-cta {
    margin-top: 40px;
}

.cta-subtext {
    margin-top: 15px;
    font-size: 0.9em;
    color: #888;
}



/* Trust Bar */
.trust-bar {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b0b0b0;
    font-size: 0.9em;
}

.trust-icon {
    font-size: 1.2em;
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background: #111;
}

.social-proof h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #fff;
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    border-color: rgba(76, 175, 80, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial.featured {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(69, 160, 73, 0.1));
    border-color: rgba(76, 175, 80, 0.3);
}

.testimonial-rating {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.testimonial p {
    font-size: 1.1em;
    margin-bottom: 20px;
    font-style: italic;
}

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

.avatar {
    width: 40px;
    height: 40px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
}

.author-info .name {
    display: block;
    font-weight: 600;
    color: #fff;
}





/* About Section */
.about {
    padding: 80px 0;
    background: #0a0a0a;
}

.about .container {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.emojis {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.emoji {
    font-size: 2.5em;
    animation: float 3s ease-in-out infinite;
}

.emoji:nth-child(odd) {
    animation-delay: -1s;
}

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

.about h2 {
    font-size: 2.5em;
    margin-bottom: 25px;
    color: #fff;
}

.about p {
    font-size: 1.2em;
    color: #b0b0b0;
    margin-bottom: 30px;
}



/* Features Section */
.features {
    padding: 80px 0;
    background: #111;
}

.features h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #fff;
}

/* Key Features Section */
.key-features {
    padding: 80px 0;
    background: #111;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.key-features h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #fff;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #b0b0b0;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.key-features-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.key-feature-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.key-feature-item:hover {
    transform: translateX(5px);
    border-color: rgba(76, 175, 80, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.key-feature-icon {
    font-size: 2.5em;
    margin-right: 20px;
    min-width: 60px;
    text-align: center;
}

.key-feature-content h3 {
    font-size: 1.3em;
    margin-bottom: 5px;
    color: #fff;
}

.key-feature-content p {
    color: #b0b0b0;
    font-size: 1em;
    margin: 0;
}

.key-feature-content p a {
    color: #4CAF50;
    text-decoration: none;
    transition: all 0.3s ease;
}

.key-feature-content p a:hover {
    color: #45a049;
    text-decoration: underline;
}

.tool-feature {
    border-color: rgba(76, 175, 80, 0.3);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(69, 160, 73, 0.05));
}

@media (max-width: 768px) {
    .key-feature-item {
        padding: 20px;
    }
    
    .key-feature-icon {
        font-size: 2em;
        margin-right: 15px;
        min-width: 50px;
    }
    
    .key-feature-content h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .key-feature-item {
        padding: 15px;
    }
    
    .key-feature-icon {
        font-size: 1.8em;
        margin-right: 12px;
        min-width: 40px;
    }
    
    .key-feature-content h3 {
        font-size: 1.1em;
    }
    
    .key-feature-content p {
        font-size: 0.9em;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: rgba(76, 175, 80, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-emoji {
    font-size: 3em;
    margin-bottom: 20px;
    display: block;
}

.feature h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #fff;
}

.feature p {
    color: #b0b0b0;
    margin-bottom: 15px;
    line-height: 1.6;
}



/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #0a0a0a;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-header h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #fff;
}

.pricing-subtitle {
    font-size: 1.1em;
    color: #b0b0b0;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .pricing-header h2 {
        font-size: 1.6em;
        margin-bottom: 12px;
    }
    
    .pricing-subtitle {
        font-size: 0.95em;
        margin-bottom: 25px;
        padding: 0 20px;
    }
    
    .pricing-header {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .pricing-header h2 {
        font-size: 1.4em;
    }
    
    .pricing-subtitle {
        font-size: 0.85em;
        margin-bottom: 18px;
    }
}



.pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-option {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.pricing-option.premium {
    border-color: rgba(76, 175, 80, 0.7);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(69, 160, 73, 0.08));
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.3), 0 10px 40px rgba(0, 0, 0, 0.3);
}

.pricing-option.premium:hover {
    box-shadow: 0 0 40px rgba(76, 175, 80, 0.5), 0 15px 50px rgba(0, 0, 0, 0.4);
}

.pricing-option.trial {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.pricing-option.trial:hover {
    border-color: rgba(255, 255, 255, 0.25);
}

.pricing-option.trial .currency,
.pricing-option.trial .amount {
    color: #b0b0b0;
}

.pricing-option:not(.premium) .currency,
.pricing-option:not(.premium) .amount {
    color: #b0b0b0;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.plan-header h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #fff;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5em;
    color: #4CAF50;
}

.amount {
    font-size: 3.5em;
    font-weight: 800;
    color: #4CAF50;
}

.period {
    font-size: 1.2em;
    color: #888;
}



.plan-description {
    color: #b0b0b0;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.features-list li {
    padding: 8px 0;
    font-size: 1em;
}

.features-list .included {
    color: #4CAF50;
}

.features-list .excluded {
    color: #888;
}

.features-list .bonus {
    color: #ff6b35;
    font-weight: 600;
}

.plan-note {
    color: #888;
    font-size: 0.9em;
    margin-top: 10px;
}



/* Testimonials Scroll Section */
.testimonials {
    padding: 80px 0;
    background: #111;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #fff;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(76, 175, 80, 0.3);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #0a0a0a;
}

.faq h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #fff;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(76, 175, 80, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.faq-question h3 {
    font-size: 1.25em;
    color: #fff;
    font-weight: 600;
    margin: 0;
    flex-grow: 1;
}

.faq-icon {
    font-size: 1.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
}

.faq-arrow {
    font-size: 0.8em;
    color: #888;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 30px;
    border-top: 0px solid transparent;
    transition: all 0.4s ease-in-out;
}

.faq-answer p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 1.1em;
    margin: 0;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    background: rgba(255, 255, 255, 0.03);
}

/* Media queries for FAQ section */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 1.2em;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 25px 20px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1em;
    }
    
    .faq-icon {
        font-size: 1.5em;
        margin: 0 10px;
    }
    
    .faq-answer p {
        font-size: 1em;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 18px;
    }
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(69, 160, 73, 0.05));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-header h2 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 800;
}

.cta-header .cta-subtitle {
    font-size: 1.3em;
    color: #b0b0b0;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.cta-option {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.cta-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(76, 175, 80, 0.3);
}

.cta-option.featured {
    border-color: rgba(76, 175, 80, 0.5);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(69, 160, 73, 0.1));
    transform: scale(1.05);
}

.cta-option.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.option-icon {
    font-size: 4em;
    margin-bottom: 20px;
    display: block;
}

.cta-option h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
}

.cta-option p {
    color: #b0b0b0;
    margin-bottom: 30px;
    font-size: 1.1em;
    line-height: 1.6;
}

.option-note {
    display: block;
    margin-top: 15px;
    font-size: 0.9em;
    color: #888;
    font-style: italic;
}

.final-trust-signals {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.trust-signal {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b0b0b0;
    font-size: 1em;
}

.trust-icon {
    font-size: 1.3em;
}

.final-message {
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

.final-message p {
    font-size: 1.3em;
    color: #4CAF50;
    font-weight: 500;
}

/* Recent Wins Section */
.recent-wins {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}

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

.recent-wins h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #fff;
}

.recent-wins .section-subtitle {
    text-align: center;
    color: #888;
    font-size: 1.1em;
    margin-bottom: 40px;
}

.wins-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.win-item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #1a1a1a;
    cursor: pointer;
}

.win-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
}

.win-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Lightbox for zoomed images */
.win-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: zoom-out;
}

.win-lightbox.active {
    display: flex;
}

.win-lightbox img {
    max-width: 95%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.win-lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.win-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 900px) {
    .wins-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .wins-showcase {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding-bottom: 15px;
        max-width: none;
    }
    
    .wins-showcase::-webkit-scrollbar {
        height: 6px;
    }
    
    .wins-showcase::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 3px;
    }
    
    .wins-showcase::-webkit-scrollbar-thumb {
        background: rgba(76, 175, 80, 0.5);
        border-radius: 3px;
    }
    
    .win-item {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
    
    .recent-wins h2 {
        font-size: 2em;
    }
    
    .recent-wins .section-subtitle {
        padding: 0 10px;
    }
}

/* Footer */
footer {
    background: #0a0a0a;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links-group {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links-group a {
    color: #888;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.footer-links-group a:hover {
    color: #4CAF50;
}

footer nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

footer nav a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer nav a:hover {
    color: #4CAF50;
}

.copyright {
    color: #666;
    font-size: 0.9em;
}

.footer-disclaimer {
    color: #444;
    font-size: 0.75em;
    max-width: 800px;
    margin: 15px auto 0;
    line-height: 1.5;
    text-align: center;
}

/* New Footer Grid Styles */
.footer {
    background: #0a0a0a;
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #4CAF50;
}

.footer-logo {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.footer-description {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #555;
    font-size: 13px;
    margin: 5px 0;
}

.footer-bottom .disclaimer {
    font-size: 11px;
    color: #444;
    max-width: 800px;
    margin: 10px auto 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto 15px;
    }
}

/* Modal Styles (Enhanced) */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #1a1a1a;
    color: #e0e0e0;
    margin: 5% auto;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 90%;
    max-width: 600px;
    border-radius: 15px;
    max-height: 80vh;
    overflow-y: auto;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #4CAF50;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 80px 0;
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: 2.2em;
        line-height: 1.2;
        margin-bottom: 25px;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
        margin-bottom: 35px;
    }
    
    .about, .features, .pricing, .testimonials, .social-proof {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 2em !important;
        margin-bottom: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature {
        padding: 30px 25px;
    }
    
    .pricing-options {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pricing-option.premium,
    .pricing-option.trial {
        transform: none;
    }
    
    .testimonials-grid,
    .testimonials-scroll {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .nav-cta {
        flex-direction: column;
        gap: 10px;
    }
    
    .trust-items {
        gap: 20px;
        justify-content: center;
    }
    
    .trust-item {
        font-size: 0.8em;
        flex-direction: row;
        text-align: left;
        gap: 6px;
    }
    
    .trust-icon {
        font-size: 1em;
    }
    
    .final-cta {
        padding: 80px 0;
    }
    
    .cta-header h2 {
        font-size: 2.2em;
        line-height: 1.2;
    }
    
    .cta-options {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-option {
        padding: 40px 30px;
    }
    
    .cta-option.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .offer-banner {
        font-size: 0.9em;
        padding: 8px 0;
    }
    
    .hero h1 {
        font-size: 1.8em;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1em;
    }
    
    .cta-btn.large {
        padding: 15px 25px;
        font-size: 1.1em;
    }
    
    .about, .features, .pricing, .testimonials, .social-proof, .final-cta {
        padding: 50px 0;
    }
    
    h2 {
        font-size: 1.8em !important;
        margin-bottom: 25px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature {
        padding: 25px 20px;
    }
    
    .feature-emoji {
        font-size: 2.5em;
    }
    
    .pricing-options {
        gap: 20px;
    }
    
    .testimonials-grid,
    .testimonials-scroll {
        gap: 20px;
    }
    
    .testimonial, .testimonial-card {
        padding: 25px 20px;
    }
    
    .cta-header h2 {
        font-size: 1.8em;
        line-height: 1.3;
    }
    
    .cta-options {
        gap: 20px;
    }
    
    .cta-option {
        padding: 30px 20px;
    }
    
    .option-icon {
        font-size: 3em;
    }
    
    .final-trust-signals {
        gap: 20px;
        flex-direction: row;
        justify-content: center;
    }
    
    .final-trust-signals .trust-signal {
        font-size: 0.85em;
    }
    
    .trust-signal {
        font-size: 0.9em;
    }
    
    .final-message p {
        font-size: 1em;
    }
}

/* Extra small screens */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 1.6em;
    }
    
    .cta-btn {
        padding: 12px 20px;
        font-size: 0.95em;
    }
    
    .cta-btn.large {
        padding: 14px 22px;
        font-size: 1em;
    }
    
    .feature, .testimonial, .testimonial-card, .cta-option {
        padding: 20px 15px;
    }
    
    .option-icon, .feature-emoji {
        font-size: 2.5em;
    }
}

/* Loading Animation for Dynamic Content */
@keyframes shimmer {
    0% { background-position: -468px 0; }
    100% { background-position: 468px 0; }
}

.loading-shimmer {
    animation: shimmer 1.5s infinite linear;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    background-size: 468px 100%;
}

/* Accessibility Improvements */
.cta-btn:focus,
.trust-signal:focus {
    outline: 2px solid #4CAF50;
    outline-offset: 2px;
}

/* Mobile text readability */
@media (max-width: 768px) {
    body {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    p, li {
        line-height: 1.6;
    }
    
    /* Ensure all clickable elements are large enough */
    a, button, .cta-btn {
        min-height: 44px;
        min-width: 44px;
    }
}

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

/* High contrast mode support */
@media (prefers-contrast: high) {
    .cta-btn.primary {
        background: #fff;
        color: #000;
    }
    
    .highlight {
        background: #fff !important;
        -webkit-text-fill-color: #000 !important;
    }
}