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

:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #151515;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent-yellow: #ffd700;
    --accent-yellow-dark: #ffb700;
    --accent-red: #ff4444;
    --accent-green: #00ff88;
    --gradient-yellow: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

html {
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 18px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: bold;
    color: var(--accent-yellow);
    flex-shrink: 0;
}

.logo-icon {
    font-size: 32px;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: flex-start;
}

.nav-center a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s;
}

.nav-center a:hover {
    color: var(--accent-yellow);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.login-link {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.login-link:hover {
    color: var(--text-primary) !important;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-yellow);
    color: var(--bg-dark);
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.btn-hero {
    background: var(--gradient-yellow);
    color: var(--bg-dark);
    border: none;
    padding: 20px 50px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.btn-hero-large {
    background: var(--gradient-yellow);
    color: var(--bg-dark);
    border: none;
    padding: 22px 50px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-hero-large:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.6);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 0 140px;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: var(--accent-yellow);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--accent-yellow);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.hero-subtitle {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-yellow);
    margin-bottom: 28px;
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.hero-description strong {
    color: var(--accent-yellow);
    font-weight: 700;
}

.hero-cta {
    margin-bottom: 60px;
}

.trial-info {
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 32px;
}

.hero-downloads {
    margin-top: 32px;
}

.download-label {
    text-align: center;
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 12px;
    font-weight: 400;
}

.download-buttons-hero {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.btn-download-hero {
    background: var(--gradient-yellow);
    color: var(--bg-dark);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-download-hero:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.btn-download-hero.windows {
    background: white;
    color: var(--bg-dark);
}

.btn-download-hero.windows:hover {
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.download-icon-hero {
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-icon-hero svg {
    width: 16px;
    height: 16px;
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--accent-yellow);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Problem Section */
.problem {
    min-height: 100vh;
    padding: 120px 0;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
}

.section-title {
    font-size: 64px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 80px;
    color: var(--text-primary);
}

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

.problem-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    text-align: center;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.2);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 18px;
}

/* Solution Section */
.solution {
    min-height: 100vh;
    padding: 120px 0;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.solution-text h3 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--accent-yellow);
    line-height: 1.2;
}

.solution-text p {
    font-size: 19px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.solution-list {
    list-style: none;
    margin-bottom: 30px;
}

.solution-list li {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.solution-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--accent-green);
}

.price-comparison {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.price-box-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.price-box {
    background: var(--bg-card);
    padding: 60px 50px;
    border-radius: 24px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 420px;
    height: 380px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.price-box.adobe {
    border-color: var(--accent-red);
}

.price-box.trigo {
    border-color: var(--accent-yellow);
}

.price-label {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.price-amount {
    font-size: 68px;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price-amount span {
    font-size: 32px;
    color: var(--text-secondary);
    font-weight: 700;
}

.price-breakdown {
    font-size: 20px;
    color: var(--text-secondary);
    margin-top: 5px;
    line-height: 1.4;
}

.price-total {
    font-size: 22px;
    font-weight: 700;
}

.price-total.adobe {
    color: var(--accent-red);
}

.price-total.trigo {
    color: var(--accent-yellow);
}

.vs {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-secondary);
}

/* Comparison Section */
.comparison {
    min-height: 100vh;
    padding: 120px 0;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
}

.comparison-table {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: rgba(255, 215, 0, 0.1);
    padding: 25px 30px;
    font-weight: 700;
    font-size: 20px;
    border-bottom: 2px solid var(--accent-yellow);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 25px 30px;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.comparison-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.comparison-row.highlight {
    background: rgba(255, 215, 0, 0.03);
}

.comparison-row.highlight:hover {
    background: rgba(255, 215, 0, 0.06);
}

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

.comparison-feature {
    font-weight: 600;
}

.comparison-trigo {
    color: var(--accent-yellow);
    font-weight: 600;
}

.comparison-adobe {
    color: var(--text-secondary);
}

.icon-win {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: var(--accent-green);
    color: var(--bg-dark);
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-weight: 900;
    font-size: 16px;
    margin-right: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

.icon-lose {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: var(--accent-red);
    color: var(--bg-dark);
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-weight: 900;
    font-size: 16px;
    margin-right: 10px;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.4);
}

.icon-neutral {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-weight: 900;
    font-size: 16px;
    margin-right: 10px;
}

.comparison-cta {
    text-align: center;
}

/* Features Section */
.features {
    min-height: 100vh;
    padding: 120px 0;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
}

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

.feature-card {
    background: var(--bg-card);
    padding: 50px 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-yellow);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.feature-icon {
    font-size: 64px;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 19px;
}

/* Social Proof */
.social-proof {
    min-height: 100vh;
    padding: 120px 0;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
}

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

.testimonial {
    background: var(--bg-card);
    padding: 50px 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 5px solid var(--accent-yellow);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial:hover {
    transform: translateY(-5px);
    border-color: var(--accent-yellow);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.testimonial-text {
    font-size: 20px;
    color: var(--text-primary);
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    color: var(--accent-yellow);
    font-weight: 700;
    font-size: 18px;
}

/* FAQ Section */
.faq {
    min-height: 100vh;
    padding: 120px 0;
    background: var(--bg-dark);
}

.faq .container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: start;
    max-height: 100vh;
    padding-top: 80px;
}

.faq-header {
    position: sticky;
    top: 120px;
}

.faq-header .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.faq-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-list {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    padding-right: 20px;
}

.faq-list::-webkit-scrollbar {
    width: 8px;
}

.faq-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.faq-list::-webkit-scrollbar-thumb {
    background: var(--accent-yellow);
    border-radius: 4px;
}

.faq-list::-webkit-scrollbar-thumb:hover {
    background: var(--accent-yellow-dark);
}

.faq-item {
    background: var(--bg-card);
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 30px 35px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--accent-yellow);
}

.faq-question::after {
    content: '+';
    font-size: 36px;
    color: var(--accent-yellow);
    transition: transform 0.3s;
}

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

.faq-answer {
    padding: 0 35px;
    max-height: 0;
    overflow: hidden;
    color: var(--text-secondary);
    font-size: 19px;
    line-height: 1.8;
    transition: all 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 35px 30px;
    max-height: 500px;
}

/* Final CTA */
.final-cta {
    min-height: 100vh;
    padding: 120px 0;
    background: var(--gradient-dark);
    text-align: center;
    border-top: 2px solid var(--accent-yellow);
    border-bottom: 2px solid var(--accent-yellow);
    display: flex;
    align-items: center;
}

.cta-title {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.cta-subtitle {
    font-size: 36px;
    color: var(--accent-yellow);
    margin-bottom: 50px;
    font-weight: 700;
}

.cta-guarantee {
    margin-top: 25px;
    color: var(--text-secondary);
    font-size: 19px;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h4 {
    color: var(--accent-yellow);
    margin-bottom: 24px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 17px;
    margin-bottom: 14px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 16px;
}

.footer-tagline {
    margin-top: 12px;
    color: var(--accent-yellow);
    font-weight: 600;
    font-size: 17px;
}

/* Waitlist Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--bg-card);
    margin: 8% auto;
    padding: 50px;
    border: 2px solid var(--accent-yellow);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

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

.modal-content h2 {
    font-size: 36px;
    color: var(--accent-yellow);
    margin-bottom: 15px;
    text-align: center;
}

.modal-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 1.6;
}

.close {
    color: var(--text-secondary);
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover,
.close:focus {
    color: var(--accent-yellow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-dark);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.modal-content form button {
    width: 100%;
    margin-top: 10px;
}

.form-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 72px;
    }

    .hero-subtitle {
        font-size: 36px;
    }

    .section-title {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

    .hero-description {
        font-size: 20px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 40px;
    }

    .stat-number {
        font-size: 48px;
    }

    .solution-content {
        grid-template-columns: 1fr;
    }

    .solution-text h3 {
        font-size: 36px;
    }

    .solution-text p {
        font-size: 19px;
    }

    .price-comparison {
        flex-direction: column;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px 24px;
        font-size: 16px;
    }

    .comparison-header {
        display: none;
    }

    .comparison-feature {
        font-weight: 700;
        color: var(--accent-yellow);
        margin-bottom: 8px;
    }

    .section-title {
        font-size: 42px;
    }

    .problem-card h3 {
        font-size: 24px;
    }

    .problem-card p {
        font-size: 17px;
    }

    .cta-title {
        font-size: 42px;
    }

    .cta-subtitle {
        font-size: 28px;
    }

    .nav-links {
        gap: 18px;
        flex-wrap: wrap;
    }

    .nav-links a {
        font-size: 16px;
    }

    .btn-primary {
        font-size: 15px;
        padding: 12px 24px;
    }

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

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

    .testimonial {
        padding: 40px 30px;
    }

    .testimonial-text {
        font-size: 18px;
    }

    .testimonial-author {
        font-size: 16px;
    }

    .faq .container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 0;
        max-height: none;
    }

    .faq-header {
        position: static;
    }

    .faq-header .section-title {
        text-align: center;
        font-size: 42px;
    }

    .faq-subtitle {
        text-align: center;
        font-size: 16px;
    }

    .faq-list {
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
    }
}

/* Login Link */
.login-link {
    color: var(--text-secondary) !important;
    font-weight: 500 !important;
    transition: color 0.3s;
}

.login-link:hover {
    color: var(--text-primary) !important;
}

/* Download Section */
.download {
    padding: 80px 0;
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.download-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.download-subtitle {
    font-size: 20px;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.btn-download {
    background: var(--accent-yellow);
    color: var(--bg-dark);
    border: none;
    padding: 18px 32px;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    min-width: 240px;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.4);
    background: var(--accent-yellow-dark);
}

.btn-download.windows {
    background: #ffffff;
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-download.windows:hover {
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.3);
    background: #f0f0f0;
}

.download-icon {
    font-size: 24px;
}

.download-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.download-platform {
    font-size: 18px;
    font-weight: 700;
}

.download-req {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.8;
}

.download-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

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

    .btn-download {
        width: 100%;
        max-width: 300px;
    }
}
