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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Navigation */
header {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    padding: 1rem 0;
}

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

.logo-text {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.logo-text h1 {
    font-size: 1.8rem;
    color: #001f3f;
    margin: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #001f3f;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #001f3f;
    color: white;
}

.btn-primary:hover {
    background-color: #003d7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 31, 63, 0.3);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f4f8 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    color: #001f3f;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content > p:first-of-type {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 15px;
}

.tagline {
    font-size: 1.1rem;
    color: #001f3f;
    margin-bottom: 30px !important;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.trial-text {
    color: #666;
    font-size: 0.95rem;
    margin: 0 !important;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-logo {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 31, 63, 0.2);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: white;
}

.benefits h2 {
    text-align: center;
    font-size: 2rem;
    color: #001f3f;
    margin-bottom: 50px;
}

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

.benefit-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.benefit-card:hover {
    border-color: #001f3f;
    box-shadow: 0 8px 20px rgba(0, 31, 63, 0.1);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: #001f3f;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.5;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #f9f9f9 100%);
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    color: #001f3f;
    margin-bottom: 50px;
}

.features-list {
    display: grid;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #001f3f;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-item h3 {
    color: #001f3f;
    margin-bottom: 10px;
}

.feature-item p {
    color: #666;
}

/* Screenshots Section */
.screenshots {
    padding: 80px 0;
    background: white;
}

.screenshots h2 {
    text-align: center;
    font-size: 2rem;
    color: #001f3f;
    margin-bottom: 50px;
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.screenshot-item {
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.screenshot-item:hover {
    transform: translateY(-10px);
}

.screenshot-item img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 31, 63, 0.2);
    transition: box-shadow 0.3s;
}

.screenshot-item:hover img {
    box-shadow: 0 15px 40px rgba(0, 31, 63, 0.3);
}

.screenshot-item .caption {
    margin-top: 15px;
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #001f3f 0%, #003d7a 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn {
    background-color: white;
    color: #001f3f;
}

.cta-section .btn:hover {
    background-color: #f0f4f8;
}

.support-link {
    margin-top: 20px;
    font-size: 1rem;
}

.support-link a {
    color: white;
    text-decoration: underline;
}

/* Support Page */
.support-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #001f3f 0%, #003d7a 100%);
    color: white;
    text-align: center;
}

.support-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

.support-content {
    padding: 60px 0;
}

.support-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border-top: 4px solid #001f3f;
}

.support-card h2 {
    color: #001f3f;
    margin-bottom: 20px;
}

.support-email {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.support-email a {
    color: #001f3f;
    text-decoration: none;
    font-weight: 600;
}

.support-email a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.faq-section h2 {
    color: #001f3f;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    color: #001f3f;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.faq-item a {
    color: #001f3f;
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

.contact-card {
    background: linear-gradient(135deg, #f0f4f8 0%, #f9f9f9 100%);
    border-top: 4px solid #001f3f;
}

.contact-card p {
    margin: 10px 0;
}

/* Support CTA */
.support-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #001f3f 0%, #003d7a 100%);
    color: white;
    text-align: center;
}

.support-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

/* Footer */
footer {
    background: #001f3f;
    color: white;
    padding: 40px 0;
    text-align: center;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

footer p {
    margin: 10px 0;
}

/* Privacy Policy & Content Pages */
.content-section {
    padding: 60px 0;
    background: white;
}

.content-section h1 {
    font-size: 2.5rem;
    color: #001f3f;
    margin-bottom: 10px;
}

.last-updated {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 40px;
    font-style: italic;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-content h2 {
    color: #001f3f;
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f4f8;
    padding-bottom: 10px;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content ul {
    list-style-position: inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-content ul li {
    margin-bottom: 12px;
    color: #555;
}

.policy-content ul li strong {
    color: #001f3f;
}

.policy-content p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.policy-content a {
    color: #001f3f;
    text-decoration: none;
    font-weight: 500;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-logo {
        width: 200px;
        height: 200px;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }

    .cta-section .btn {
        width: auto;
    }
}
