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

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 122, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 122, 255, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

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

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.brand {
    background: linear-gradient(45deg, #00ff9d, #ff007a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 157, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
    font-weight: 400;
}

/* CTA Buttons */
.cta-button {
    background: linear-gradient(45deg, #00ff9d, #00d4aa);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 157, 0.5);
    background: linear-gradient(45deg, #00d4aa, #00ff9d);
}

.cta-button.secondary {
    background: linear-gradient(45deg, #ff007a, #ff4081);
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 0, 122, 0.3);
}

.cta-button.secondary:hover {
    box-shadow: 0 15px 40px rgba(255, 0, 122, 0.5);
    background: linear-gradient(45deg, #ff4081, #ff007a);
}

.cta-button.large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    margin: 0 1rem;
}

/* Threat Map */
.threat-map {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 157, 0.3);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.threat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.threat-header h3 {
    color: #00ff9d;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.countdown {
    text-align: right;
}

.countdown span {
    display: block;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.timer {
    font-size: 2rem;
    font-weight: 900;
    color: #ff007a;
    font-family: 'Courier New', monospace;
}

.map-container {
    position: relative;
    height: 200px;
    background: 
        radial-gradient(circle at center, rgba(0, 255, 157, 0.1) 0%, transparent 70%),
        linear-gradient(45deg, rgba(255, 0, 122, 0.05) 0%, rgba(0, 122, 255, 0.05) 100%);
    border-radius: 10px;
    overflow: hidden;
}

.threat-indicator {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pulse {
    width: 20px;
    height: 20px;
    background: #ff007a;
    border-radius: 50%;
    animation: threatPulse 2s infinite;
    box-shadow: 0 0 20px rgba(255, 0, 122, 0.8);
}

@keyframes threatPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.threat-label {
    font-size: 0.8rem;
    color: #ff007a;
    font-weight: 600;
    white-space: nowrap;
}

/* Section Styles */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #b0b0b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Pain Section */
.pain-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.pain-item {
    background: rgba(255, 0, 122, 0.1);
    border: 1px solid rgba(255, 0, 122, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.pain-item:hover {
    transform: translateY(-5px);
    border-color: #ff007a;
    box-shadow: 0 10px 30px rgba(255, 0, 122, 0.3);
}

.pain-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pain-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

/* Trust & Social Proof Section */
.trust-proof-section {
    padding: 5rem 0;
    background: #0a0a0a;
}

.trust-proof-section .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.trust-proof-section .testimonial-card {
    background: rgba(0, 255, 157, 0.05);
    border: 1px solid rgba(0, 255, 157, 0.1);
}

.trust-proof-section .testimonial-card:hover {
    border-color: #00ff9d;
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.2);
}

.trust-proof-section .testimonial-card .avatar {
    background: linear-gradient(45deg, #ff007a, #ff4081);
}

.trust-proof-section .testimonial-card .tweet-header i.fa-twitter {
    color: #1da1f2;
}

.trust-proof-section .testimonial-card .tweet-header i.fa-building {
    color: #b0b0b0;
}

.metrics-counter {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

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

.metric-value {
    font-size: 3rem;
    font-weight: 900;
    color: #00ff9d;
    display: block;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.2rem;
    color: #b0b0b0;
}

/* Solution Section */
.solution-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.1) 0%, rgba(0, 122, 255, 0.1) 100%);
    border: 1px solid rgba(0, 255, 157, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #00ff9d;
    box-shadow: 0 20px 40px rgba(0, 255, 157, 0.3);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #00ff9d;
}

.feature-card p {
    color: #b0b0b0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Detailed Feature Breakdown */
.detailed-features-section {
    padding: 5rem 0;
    background: #0a0a0a;
}

.flow-steps {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.flow-step {
    text-align: center;
    max-width: 300px;
    position: relative;
    padding-bottom: 2rem;
}

.flow-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -2rem;
    top: 30px;
    font-size: 2rem;
    color: #00ff9d;
}

.flow-step .step-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff007a;
    margin-bottom: 1rem;
    display: block;
}

.flow-step h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.flow-step p {
    color: #b0b0b0;
}

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

.feature-detail-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-detail-card:hover {
    transform: translateY(-5px);
    border-color: #ff007a;
    box-shadow: 0 10px 30px rgba(255, 0, 122, 0.2);
}

.feature-detail-card h3 {
    font-size: 1.4rem;
    color: #00ff9d;
    margin-bottom: 1rem;
}

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

.feature-detail-card ul li {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.feature-detail-card ul li::before {
    content: '•';
    color: #ff007a;
    position: absolute;
    left: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card.featured {
    border-color: #00ff9d;
    background: rgba(0, 255, 157, 0.1);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #00ff9d, #00d4aa);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #00ff9d;
    box-shadow: 0 20px 40px rgba(0, 255, 157, 0.2);
}

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

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.pricing-header .tagline {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: #00ff9d;
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1.2rem;
    color: #b0b0b0;
    font-weight: 400;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features ul li {
    color: #b0b0b0;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    text-align: left;
}

.pricing-features ul li::before {
    content: '✓';
    color: #00ff9d;
    position: absolute;
    left: 0;
    font-weight: 700;
}

.pricing-card .cta-button {
    width: 100%;
    justify-content: center;
    margin-top: auto; /* Pushes button to the bottom */
}

.pricing-note {
    text-align: center;
    color: #b0b0b0;
    margin-top: 2rem;
    font-size: 0.9rem;
}

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

.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin: 0;
}

.faq-question i {
    color: #00ff9d;
    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.5s ease-out, padding 0.5s ease-out;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding: 1.5rem 2rem;
}

.faq-answer p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Conversion Section */
.conversion-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
}

.conversion-buttons {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Footer */
.footer {
    background: #000000;
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: start;
}

.footer-brand h3 {
    color: #00ff9d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.disclaimer {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-contact p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.footer-contact a {
    color: #00ff9d;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .threat-header {
        flex-direction: column;
        text-align: center;
    }
    
    .countdown {
        text-align: center;
    }
    
    .conversion-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button.large {
        margin: 0.5rem 0;
        width: 100%;
        max-width: 400px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .flow-step:not(:last-child)::after {
        content: '';
    }

    .flow-steps {
        flex-direction: column;
        align-items: center;
    }

    .flow-step {
        padding-bottom: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .pain-grid,
    .features-grid,
    .pricing-grid,
    .testimonials-grid,
    .feature-details-grid {
        grid-template-columns: 1fr;
    }
    
    .threat-map {
        padding: 1.5rem;
    }
    
    .map-container {
        height: 150px;
    }

    .metrics-counter {
        gap: 2rem;
    }
}

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

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

.hero-content,
.pain-item,
.feature-card,
.pricing-card,
.testimonial-card,
.flow-step,
.feature-detail-card,
.faq-item {
    animation: fadeInUp 0.8s ease-out;
}


