/* BunkerVault Website Styles */
/* Dark theme: #1a1a1a background, Matrix neon green accents */

/* Matrix Neon Glow variables */
:root {
    --glow-green: rgba(0, 255, 65, 0.5);
    --glow-green-strong: rgba(0, 255, 65, 0.8);
    --accent-green: #00ff41;
    --accent-green-dark: #00cc33;
    --accent-green-light: #33ff66;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
}

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

a {
    color: var(--accent-green);
    text-decoration: none;
}

a:hover {
    color: var(--accent-green-light);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.hero-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.5rem;
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-green);
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: var(--accent-green-light);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 80px 20px;
    background-color: #222222;
}

.features h2,
.how-it-works h2,
.faq h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 50px;
}

.pricing h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin: 0;
}

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

.sale-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4a12a 0%, #b8860b 100%);
    color: #1a1a1a;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 12px;
}

.price-original {
    font-size: 1.3rem;
    color: #666666;
    text-decoration: line-through;
    margin-bottom: 2px;
}

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

.feature-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

.feature-card p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 20px;
    background-color: #1a1a1a;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
}

.pricing-card.popular {
    border-color: var(--accent-green);
    transform: scale(1.05);
}

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

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-green);
    color: #ffffff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 3rem;
    color: var(--accent-green);
    font-weight: 700;
    margin-bottom: 5px;
}

.drive-size {
    color: #888888;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
    flex-grow: 1;
}

.pricing-card li {
    padding: 8px 0;
    color: #c0c0c0;
    font-size: 0.95rem;
    border-bottom: 1px solid #3a3a3a;
}

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

.pricing-card li strong {
    color: #ffffff;
}

.best-for {
    color: #888888;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 25px;
}

.buy-button {
    display: inline-block;
    background-color: var(--accent-green);
    color: #ffffff;
    padding: 12px 35px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s;
    margin-top: auto;
}

.buy-button:hover {
    background-color: var(--accent-green-light);
    color: #ffffff;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 20px;
    background-color: #222222;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--accent-green);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
    background-color: #1a1a1a;
}

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

.faq-item {
    background-color: #2a2a2a;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 15px;
}

.faq-item h3 {
    color: var(--accent-green);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.faq-item p {
    color: #c0c0c0;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background-color: #0f0f0f;
    padding: 40px 20px;
    text-align: center;
}

footer p {
    color: #888888;
    margin-bottom: 10px;
}

.footer-email a {
    color: var(--accent-green);
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: #666666;
    margin: 0 10px;
    font-size: 0.9rem;
}

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

/* ========== MATRIX NEON GLOW EFFECTS ========== */

/* Text glow on headings */
h1, h2, h3 {
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.hero h1 {
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.5), 0 0 40px rgba(0, 255, 65, 0.3);
}

/* Logo glow - visible but not overwhelming */
.hero-logo {
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.5)) drop-shadow(0 0 20px rgba(0, 255, 65, 0.2));
}

/* CTA button glow */
.cta-button {
    box-shadow: 0 0 15px #00ff41, 0 0 30px rgba(0, 255, 65, 0.5);
    transition: all 0.3s ease;
}

.cta-button:hover {
    box-shadow: 0 0 25px #00ff41, 0 0 50px #00ff41, 0 0 80px rgba(0, 255, 65, 0.5);
}

/* Buy button pulse animation - refined */
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 65, 0.3); }
    50% { box-shadow: 0 0 15px rgba(0, 255, 65, 0.5); }
}

.buy-button {
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
    animation: pulseGlow 2.5s ease-in-out infinite;
    transition: all 0.3s ease;
}

.buy-button:hover {
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5), 0 0 40px rgba(0, 255, 65, 0.2);
    animation: none;
}

/* Pricing cards glow on hover */
.pricing-card {
    border: 1px solid rgba(0, 255, 65, 0.2);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    border-color: #00ff41;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.4), 0 0 60px rgba(0, 255, 65, 0.2);
}

.pricing-card.popular {
    border-color: #00ff41;
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.5), 0 0 50px rgba(0, 255, 65, 0.3);
}

.pricing-card.popular:hover {
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.6), 0 0 80px rgba(0, 255, 65, 0.4);
}

/* Feature cards glow on hover */
.feature-card {
    border: 1px solid rgba(0, 255, 65, 0.1);
}

.feature-card:hover {
    border-color: rgba(0, 255, 65, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 25px rgba(0, 255, 65, 0.4);
}

/* Feature icons glow */
.feature-icon {
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.6));
}

/* Use case cards glow */
.use-case-card {
    border: 1px solid rgba(0, 255, 65, 0.1);
}

.use-case-card:hover {
    border-color: rgba(0, 255, 65, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 25px rgba(0, 255, 65, 0.4);
}

.use-case-icon {
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.6));
}

/* Comparison table checkmarks glow */
.comparison-table .check {
    text-shadow: 0 0 15px #00ff41, 0 0 25px rgba(0, 255, 65, 0.5);
}

/* Step numbers glow */
.step-number {
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.6), 0 0 40px rgba(0, 255, 65, 0.3);
}

/* Testimonial cards glow on hover */
.testimonial-card {
    border-left: 4px solid var(--accent-green);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 255, 65, 0.4);
}

/* Popular badge glow - BRIGHT */
.popular-badge {
    box-shadow: 0 0 15px #00ff41, 0 0 30px rgba(0, 255, 65, 0.6);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

/* Sale badge glow */
.sale-badge {
    box-shadow: 0 0 15px rgba(212, 161, 42, 0.6);
}

/* FAQ items glow on hover */
.faq-item {
    border: 1px solid rgba(0, 255, 65, 0.1);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    border-color: rgba(0, 255, 65, 0.3);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
}

/* Tagline glow */
.tagline {
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

/* Price glow */
.price {
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
}

/* Responsive Design */
@media (max-width: 900px) {
    .features-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

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

    .steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .features h2,
    .pricing h2,
    .how-it-works h2,
    .faq h2 {
        font-size: 1.8rem;
    }

    .testimonials-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
    background-color: #1a1a1a;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 30px;
}

.testimonial-card .stars {
    color: #d4a12a;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card .quote {
    color: #c0c0c0;
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: #ffffff;
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--accent-green);
    font-size: 0.85rem;
}

/* Comparison Section */
.comparison {
    padding: 80px 20px;
    background-color: #222222;
}

.comparison h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 50px;
}

.comparison-table-wrapper {
    max-width: 700px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 25px;
    text-align: center;
}

.comparison-table thead {
    background-color: #333333;
}

.comparison-table th {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td:first-child {
    text-align: left;
    color: #c0c0c0;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #3a3a3a;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table .check {
    color: var(--accent-green);
    font-size: 1.5rem;
    font-weight: bold;
}

.comparison-table .cross {
    color: #c44;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Use Cases Section */
.use-cases {
    padding: 80px 20px;
    background-color: #1a1a1a;
}

.use-cases h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 50px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.use-case-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.use-case-card h3 {
    color: var(--accent-green);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.use-case-card p {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Legal Pages */
.page-header {
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.page-header .last-updated {
    color: #888888;
    font-size: 0.9rem;
}

.back-link {
    display: inline-block;
    color: var(--accent-green);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.back-link:hover {
    color: var(--accent-green-light);
}

.legal-content {
    padding: 60px 20px;
    background-color: #1a1a1a;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 40px;
}

.legal-document h2 {
    color: var(--accent-green);
    font-size: 1.4rem;
    margin-top: 35px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #3a3a3a;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-document p {
    color: #c0c0c0;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-document ul {
    color: #c0c0c0;
    font-size: 0.95rem;
    margin-bottom: 15px;
    padding-left: 25px;
}

.legal-document li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-document a {
    color: var(--accent-green);
}

.legal-document a:hover {
    color: var(--accent-green-light);
}

/* Responsive for new sections */
@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
