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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.header {
    display: flex;
    width: 100%;
    max-width: 1920px;
    padding: 0 120px 1px 120px;
    flex-direction: column;
    align-items: flex-start;
    background-color: #ffffff;
    border-bottom: 1px solid #E2E8F0;
}

.header-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo img {
    height: 35px;
    width: auto;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    color: #94A3B8;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #64748b;
}

.btn-primary {
    display: flex;
    height: 48px;
    min-width: 140px;
    padding: 11.5px 37.56px 12.5px 37.55px;
    justify-content: center;
    align-items: center;
    background-color: #2563EB;
    color: #ffffff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #2563EB;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #ffffff;
    color: #2563EB;
    border-color: #2563EB;
}

.btn-primary.disabled {
    background-color: #94A3B8;
    cursor: not-allowed;
    pointer-events: none;
}

/* Hero Section */
.hero {
    display: flex;
    padding: 5vh 10vw;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    background-color: #F8FAFC;
    min-height: calc(100vh - 80px);
    box-sizing: border-box;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1024px;
}

.hero-title {
    align-self: stretch;
    color: #1E293B;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 96px;
    font-style: normal;
    font-weight: 700;
    line-height: 96px;
    letter-spacing: -2.4px;
    margin-bottom: 24px;
}

.hero-subtitle {
    color: #64748B;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 31.2px;
    margin-bottom: 40px;
}

.btn-download {
    display: flex;
    height: 96px;
    min-width: 386px;
    padding: 29.5px 96px 30.5px 96px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 16px;
    background: #2563EB;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
    color: #FFFFFF;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    border: 3px solid #2563EB;
    transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-download img {
    width: 28px;
    height: 28px;
    max-width: 447.03px;
    flex-shrink: 0;
    transition: filter 0.2s ease;
}

.btn-download:hover {
    background-color: #ffffff;
    color: #2563EB;
    border-color: #2563EB;
    transform: translateY(-2px);
}

.btn-download:hover img {
    filter: brightness(0) saturate(100%) invert(32%) sepia(98%) saturate(1234%) hue-rotate(211deg) brightness(95%) contrast(93%);
}

.btn-download.disabled {
    background-color: #94A3B8;
    cursor: not-allowed;
    box-shadow: none;
    pointer-events: none;
}

.btn-download.disabled:hover {
    transform: none;
}

/* Download Disclaimer */
.download-disclaimer {
    margin-top: 24px;
    text-align: center;
    max-width: 700px;
}

.disclaimer-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -0.36px;
    color: rgba(3, 12, 87, 0.30);
    text-align: center;
    margin-bottom: 4px;
}

.disclaimer-text a {
    color: #267AF1;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -0.36px;
    text-decoration: underline;
}

.disclaimer-text a:hover {
    color: #1d5fc0;
}

.btn-download svg {
    width: 18px;
    height: 18px;
}

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

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.features-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.features-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #64748B;
    margin-bottom: 48px;
}

.features-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.feature-card {
    width: 384px;
    align-self: stretch;
    background-color: #FFFFFF;
    border: 1px solid #E1E7EF;
    border-radius: 24px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.08);
    transition: box-shadow 0.2s ease;
}

.feature-card:hover {
    box-shadow: 0 8px 16px -2px rgba(15, 23, 42, 0.12);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background-color: #F1F5F9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon img {
    width: 28px;
    height: 28px;
}

.feature-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 8px;
}

.feature-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #64748B;
    line-height: 1.5;
}

/* FAQ Section */
.faq {
    background-color: #F8FAFC;
    padding: 80px 40px;
}

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

.faq-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 12px;
}

.faq-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #64748B;
    margin-bottom: 48px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    background-color: #FFFFFF;
    border: 1px solid #E1E7EF;
    border-radius: 24px;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-item:hover {
    background-color: #F8FAFC;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1E293B;
    text-align: left;
    padding: 25px;
}

.faq-question:hover {
    background-color: transparent;
}

.faq-icon {
    font-size: 20px;
    color: #2563EB;
    font-weight: 300;
    transition: transform 0.2s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 25px 25px;
    margin-top: 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #64748B;
    line-height: 1.6;
    text-align: left;
}

/* Contact Section */
.contact {
    display: flex;
    padding: 120px 60px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    background-color: #FFFFFF;
}

.contact > .contact-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.contact > .contact-container > .contact-content {
    flex: 1;
    text-align: left;
}

.contact > .contact-container > .contact-image {
    flex-shrink: 0;
}

.contact > .contact-container > .contact-image img {
    width: 280px;
    height: 280px;
}

.contact-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 12px;
    line-height: 1.3;
}

.contact-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #64748B;
    margin-bottom: 20px;
}

.contact-email {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #2563EB;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.contact-email:hover {
    color: #1d4ed8;
}

/* Footer */
.footer {
    background-color: #F8FAFC;
    padding: 24px 40px;
    border-top: 1px solid #E2E8F0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #64748B;
}

.footer-copyright a {
    color: #64748B;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.footer-copyright a:hover {
    color: #1E293B;
}

.footer-nav {
    display: flex;
    gap: 32px;
}

.footer-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #64748B;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #1E293B;
}

/* Stats Section */
.stats {
    background-color: #2563EB;
    padding: 60px 40px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: #ffffff;
    flex: 1;
    max-width: 320px;
}

.stat-icon {
    margin-bottom: 16px;
    font-size: 48px;
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.stat-label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 72px;
        line-height: 72px;
    }
    
    .btn-download {
        font-size: 24px;
        padding: 20px 60px;
        min-width: 300px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0 20px 1px 20px;
    }

    .header-container {
        flex-wrap: wrap;
        gap: 16px;
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .hero {
        padding: 40px 20px;
        min-height: calc(100vh - 120px);
    }

    .hero-title {
        font-size: 48px;
        line-height: 52px;
        letter-spacing: -1.5px;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 26px;
    }

    .btn-download {
        font-size: 20px;
        padding: 16px 40px;
        min-width: 250px;
        height: 70px;
    }

    .btn-download img {
        width: 22px;
        height: 22px;
    }

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

    .stat-value {
        font-size: 32px;
    }

    .contact {
        padding: 60px 20px;
    }

    .contact > .contact-container {
        flex-direction: column !important;
        text-align: center;
    }

    .contact > .contact-container > .contact-content {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
        line-height: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .btn-download {
        font-size: 18px;
        padding: 14px 32px;
        min-width: 220px;
        height: 60px;
    }
}

/* 404 Error Page */
.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
    background-color: #ffffff;
    padding: 60px 20px;
}

.error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
}

.error-icon {
    margin-bottom: 32px;
}

.error-icon img {
    width: 280px;
    height: auto;
}

.error-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 12px;
}

.error-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #64748B;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .error-title {
        font-size: 28px;
    }

    .error-icon img {
        width: 200px;
    }
}

/* Contact Page */
.contact-page {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    background-color: #F8FAFC;
    padding: 60px 20px;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
}

.contact-icon {
    margin-bottom: 32px;
}

.contact-icon img {
    width: 140px;
    height: auto;
}

.contact-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 16px;
}

.contact-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #64748B;
    line-height: 1.6;
}

.contact-text a {
    color: #2563EB;
    text-decoration: underline;
}

.contact-text a:hover {
    color: #1d4ed8;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 32px;
    }

    .contact-icon img {
        width: 120px;
    }
}

/* Goodbye / Uninstall Page */
.goodbye-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 160px);
    background-color: #ffffff;
    padding: 60px 20px;
    flex: 1;
}

.goodbye-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
}

.goodbye-icon {
    margin-bottom: 32px;
}

.goodbye-icon svg,
.goodbye-icon img {
    width: 180px;
    height: auto;
}

.goodbye-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 16px;
}

.goodbye-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #64748B;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .goodbye-title {
        font-size: 32px;
    }

    .goodbye-icon svg,
    .goodbye-icon img {
        width: 140px;
    }
}

/* Uninstall Steps Page */
.back-link-container {
    padding: 24px 120px;
    background-color: #ffffff;
}

.back-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #2563EB;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.back-link:hover {
    color: #1d4ed8;
}

.uninstall-page {
    padding: 20px 120px 60px;
    min-height: calc(100vh - 300px);
    background-color: #ffffff;
}

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

.uninstall-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 16px;
}

.uninstall-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #64748B;
    margin-bottom: 48px;
}

.uninstall-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.uninstall-step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 32px;
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    text-align: left;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #EEF2FF;
    border-radius: 12px;
    flex-shrink: 0;
}

.step-icon img {
    width: 24px;
    height: 24px;
}

.step-content {
    flex: 1;
}

.step-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1E293B;
    margin-bottom: 4px;
}

.step-number {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #2563EB;
    font-weight: 500;
}

@media (max-width: 768px) {
    .back-link-container {
        padding: 16px 20px;
    }

    .uninstall-page {
        padding: 20px 20px 40px;
    }

    .uninstall-title {
        font-size: 32px;
    }

    .uninstall-step {
        padding: 16px 20px;
        gap: 16px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
    }

    .step-icon img {
        width: 20px;
        height: 20px;
    }
}

/* Legal Pages (Disclaimer, Terms, Policy, etc.) */
.legal-page {
    padding: 60px 120px;
    min-height: calc(100vh - 200px);
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.legal-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #1E293B;
}

.legal-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #7C3AED;
    color: #ffffff;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
}

.legal-date {
    font-size: 14px;
    color: #94A3B8;
    margin-bottom: 32px;
}

.legal-intro {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1E293B;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-text a {
    color: #2563EB;
    text-decoration: underline;
}

.legal-text a:hover {
    color: #1d4ed8;
}

.legal-list {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 16px;
    margin-left: 24px;
    list-style-type: disc;
}

.legal-list li {
    margin-bottom: 8px;
}

.legal-contact {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-top: 24px;
    margin-bottom: 4px;
}

.legal-contact a {
    color: #2563EB;
    text-decoration: underline;
}

.legal-contact a:hover {
    color: #1d4ed8;
}

.legal-table-container {
    overflow-x: auto;
    margin: 24px 0;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    color: #475569;
}

.legal-table th,
.legal-table td {
    border: 1px solid #E2E8F0;
    padding: 12px 16px;
    text-align: left;
    vertical-align: top;
}

.legal-table th {
    background-color: #F8FAFC;
    font-weight: 600;
    color: #1E293B;
}

.legal-table td:first-child {
    font-weight: 500;
    color: #1E293B;
    min-width: 180px;
}

.legal-table td:last-child {
    text-align: center;
    min-width: 100px;
}

.legal-intro a {
    color: #2563EB;
    text-decoration: underline;
}

.legal-intro a:hover {
    color: #1d4ed8;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 40px 20px;
    }

    .legal-title {
        font-size: 32px;
    }

    .legal-section-title {
        font-size: 16px;
    }

    .legal-table {
        font-size: 12px;
    }

    .legal-table th,
    .legal-table td {
        padding: 8px 10px;
    }

    .legal-table td:first-child {
        min-width: 120px;
    }
}
