/* Web Iron Shield - Complete Stylesheet */
/* Version 1.0 - December 2025 */

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

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #10b981;
    --secondary-dark: #059669;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --dark: #0a0a0f;
    --darker: #050508;
    --card: #12121a;
    --card-hover: #1a1a25;
    --text: #ffffff;
    --text-dim: #9ca3af;
    --text-muted: #6b7280;
    --border: #1f1f2e;
    --border-light: #2d2d3d;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated Background Grid */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

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

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

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

/* ==================== NAVIGATION ==================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    transition: all 0.3s;
}

nav.scrolled {
    background: rgba(10, 10, 15, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
}

.logo:hover {
    color: var(--text);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    color: white !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 20px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--text-dim);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* ==================== BUTTONS ==================== */
.btn {
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.4);
    color: white;
}

.btn-secondary {
    background: var(--card);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--card-hover);
    border-color: var(--primary);
    color: var(--text);
}

.btn-success {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white;
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
    color: white;
}

/* ==================== HERO SECTION ==================== */
.hero {
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff 0%, #6366f1 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-dim);
    max-width: 650px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.hero-stat-label {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* ==================== SCREENSHOT SECTION ==================== */
.screenshot {
    padding: 60px 0;
    position: relative;
}

.screenshot-wrapper {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    padding: 4px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 30px 100px rgba(99, 102, 241, 0.3);
}

.screenshot-inner {
    background: var(--darker);
    border-radius: 17px;
    overflow: hidden;
}

.screenshot-header {
    background: var(--card);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.screenshot-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.screenshot-dot.red { background: #ff5f57; }
.screenshot-dot.yellow { background: #ffbd2e; }
.screenshot-dot.green { background: #28ca41; }

.screenshot-title {
    color: var(--text-dim);
    margin-left: 15px;
}

.screenshot-content {
    padding: 30px;
    min-height: 400px;
    background: var(--dark);
}

.screenshot-url {
    background: var(--card);
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.screenshot-url span {
    color: var(--text-dim);
}

.screenshot-url .url-text {
    color: var(--primary);
}

.screenshot-url .scan-status {
    margin-left: auto;
    color: var(--secondary);
}

.screenshot-results {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.screenshot-card {
    background: var(--card);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.screenshot-card-value {
    font-size: 2rem;
    font-weight: 700;
}

.screenshot-card-value.danger { color: var(--danger); }
.screenshot-card-value.warning { color: var(--warning); }
.screenshot-card-value.success { color: var(--secondary); }

.screenshot-card-label {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.screenshot-issues {
    background: var(--card);
    border-radius: 10px;
    overflow: hidden;
}

.screenshot-issue {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 15px;
}

.screenshot-issue:last-child {
    border-bottom: none;
}

.issue-severity {
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.issue-severity.high { background: rgba(239, 68, 68, 0.2); color: var(--danger); }
.issue-severity.medium { background: rgba(245, 158, 11, 0.2); color: var(--warning); }
.issue-severity.low { background: rgba(16, 185, 129, 0.2); color: var(--secondary); }

/* ==================== SECTIONS COMMON ==================== */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-dim);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== FEATURES SECTION ==================== */
.features {
    padding: 120px 0;
}

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

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(16, 185, 129, 0.2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* ==================== SECURITY CHECKS ==================== */
.checks {
    padding: 120px 0;
    background: var(--darker);
}

.checks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.check-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.check-item:hover {
    border-color: var(--secondary);
    background: var(--card-hover);
}

.check-icon {
    width: 45px;
    height: 45px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.check-item h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.check-item p {
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
    padding: 120px 0;
    background: var(--darker);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 25px;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.step p {
    color: var(--text-dim);
}

/* ==================== PRICING ==================== */
.pricing {
    padding: 120px 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 25px;
    padding: 45px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.2);
}

.pricing-card.featured::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

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

.pricing-card .price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    margin: 25px 0;
}

.pricing-card .price span {
    font-size: 1.2rem;
    color: var(--text-dim);
    font-weight: 400;
}

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

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

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

.pricing-features li.disabled {
    color: var(--text-muted);
}

.pricing-features .check {
    color: var(--secondary);
    font-weight: bold;
}

.pricing-btn {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.pricing-btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.pricing-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
}

.pricing-btn.secondary {
    background: var(--card-hover);
    color: var(--text);
    border: 1px solid var(--border);
}

.pricing-btn.secondary:hover {
    border-color: var(--primary);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    padding: 120px 0;
}

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

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 35px;
}

.testimonial-stars {
    color: var(--warning);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 25px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-author p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* ==================== FAQ ==================== */
.faq {
    padding: 120px 0;
    background: var(--darker);
}

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

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--card-hover);
}

.faq-answer {
    padding: 0 30px 25px;
    color: var(--text-dim);
    display: none;
    line-height: 1.7;
}

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

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

/* ==================== CTA SECTION ==================== */
.cta {
    padding: 120px 0;
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(16, 185, 129, 0.1));
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 80px 40px;
    max-width: 800px;
    margin: 0 auto;
}

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

.cta p {
    color: var(--text-dim);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--darker);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

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

.footer-brand p {
    color: var(--text-dim);
    margin: 20px 0;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--card);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

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

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* ==================== MODAL ==================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--card);
    border-radius: 25px;
    padding: 50px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    border: 1px solid var(--border);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--text);
}

.modal h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.modal p {
    color: var(--text-dim);
    margin-bottom: 30px;
}

.modal-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 30px;
}

.paypal-btn {
    background: #0070ba;
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    text-decoration: none;
}

.paypal-btn:hover {
    background: #005ea6;
    transform: translateY(-2px);
    color: white;
}

.modal-secure {
    margin-top: 25px;
    color: var(--text-dim);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal-instructions {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.modal-instructions strong {
    color: var(--primary);
}

/* ==================== PAGE SPECIFIC ==================== */

/* Download Page */
.download-hero {
    padding: 120px 0 60px;
    text-align: center;
}

.download-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-hero p {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto;
}

.version-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--secondary);
    margin-top: 20px;
}

.download-section {
    padding: 40px 0 80px;
}

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

.download-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.download-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(99, 102, 241, 0.15);
}

.download-card.recommended {
    border-color: var(--secondary);
}

.download-card.recommended::before {
    content: "✓ RECOMMENDED";
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--secondary), #059669);
    color: white;
    padding: 5px 50px;
    font-size: 0.7rem;
    font-weight: 700;
    transform: rotate(45deg);
}

.download-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(16, 185, 129, 0.2));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 25px;
}

.download-card h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.download-card .subtitle {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.file-info {
    background: var(--darker);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.file-info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.file-info-row:last-child {
    border-bottom: none;
}

.file-info-label {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.file-info-value {
    font-weight: 600;
    font-size: 0.9rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 30px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.download-btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.download-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
    color: white;
}

.download-btn.secondary {
    background: var(--card-hover);
    color: var(--text);
    border: 1px solid var(--border);
}

.download-btn.secondary:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    color: var(--text);
}

.features-list {
    text-align: left;
    margin: 25px 0;
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--text-dim);
    font-size: 0.95rem;
}

.features-list .check {
    color: var(--secondary);
    font-weight: bold;
}

/* Requirements Section */
.requirements {
    padding: 60px 0;
    background: var(--darker);
}

.requirements h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.requirement-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

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

.requirement-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.requirement-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Installation Steps */
.installation {
    padding: 60px 0;
}

.installation h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.steps-container {
    max-width: 700px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    width: 2px;
    height: calc(100% - 20px);
    background: var(--border);
}

.step-item .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* Trial Info Box */
.trial-info {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(16, 185, 129, 0.1));
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}

.trial-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.trial-info p {
    color: var(--text-dim);
    margin-bottom: 25px;
}

/* Warning Box */
.warning-box {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 15px;
    padding: 25px 30px;
    margin: 40px 0;
}

.warning-box h3 {
    color: var(--warning);
    margin-bottom: 10px;
}

.warning-box p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 50px;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.legal-content .last-updated {
    color: var(--text-dim);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary);
}

.legal-content p {
    color: var(--text-dim);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    color: var(--text-dim);
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-content li {
    margin-bottom: 10px;
}

/* Thank You Page */
.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.thank-you-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    max-width: 600px;
}

.thank-you-icon {
    font-size: 5rem;
    margin-bottom: 25px;
}

.thank-you-box h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thank-you-box p {
    color: var(--text-dim);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.thank-you-steps {
    background: var(--darker);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    text-align: left;
}

.thank-you-steps h3 {
    margin-bottom: 20px;
    text-align: center;
}

.thank-you-steps ol {
    color: var(--text-dim);
    margin-left: 20px;
}

.thank-you-steps li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.thank-you-email {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
}

.thank-you-email p {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.thank-you-email strong {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .hero-stat-value {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .download-grid {
        grid-template-columns: 1fr;
    }

    .download-card.recommended::before {
        top: 15px;
        right: -40px;
        font-size: 0.6rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta-box {
        padding: 50px 25px;
    }

    .legal-content {
        padding: 30px 20px;
    }

    .thank-you-box {
        padding: 40px 25px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

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

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

    .modal {
        padding: 35px 25px;
    }

    .modal-price {
        font-size: 2.5rem;
    }
}
