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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #fef9ee;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background-color: #041146;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(254, 249, 238, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* Buttons */
.cta-button {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    text-decoration: none;
}

.cta-button svg {
    width: 20px;
    height: 20px;
}

.cta-button .fa-brands.fa-apple,
.cta-button .fa-brands.fa-android {
    font-size: 16px;
}

.cta-button.primary {
    background-color: hwb(30 26% 10%);
    color: white;
}

.cta-button.primary:hover {
    background-color: #d47f2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 147, 66, 0.3);
}

.cta-button.secondary {
    background-color: transparent;
    color: #041146;
    border: 2px solid #041146;
}

.cta-button.secondary:hover {
    background-color: #041146;
    color: #fef9ee;
    transform: translateY(-2px);
}

.navbar .cta-button.secondary {
    color: #fef9ee;
    border: 2px solid #fef9ee;
}

.navbar .cta-button.secondary:hover {
    background-color: #fef9ee;
    color: #041146;
}

.cta-button.large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    padding: 80px 0 100px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    color: #041146;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.hero .highlight {
    color: #e59342;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

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

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #041146;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.section-title.dark {
    color: #fef9ee;
}

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

.screenshot-card {
    text-align: center;
}

.screenshot-placeholder {
    background: linear-gradient(135deg, #fef9ee 0%, #f5ede0 100%);
    border-radius: 16px;
    padding: 60px 40px;
    margin-bottom: 20px;
    border: 2px solid rgba(26, 58, 82, 0.08);
    transition: all 0.3s ease;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-placeholder .partner-logo {
    max-width: 100%;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.screenshot-card:hover .screenshot-placeholder {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 58, 82, 0.15);
    border-color: rgba(229, 147, 66, 0.3);
}

.screenshot-label {
    font-size: 18px;
    font-weight: 600;
    color: #041146;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #041146;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background-color: rgba(254, 249, 238, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(254, 249, 238, 0.1);
}

.feature-card:hover {
    background-color: rgba(254, 249, 238, 0.08);
    transform: translateY(-8px);
    border-color: rgba(229, 147, 66, 0.3);
}

.feature-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #fef9ee;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.feature-card p {
    font-size: 16px;
    color: rgba(254, 249, 238, 0.8);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background-color: #fef9ee;
}

.cta-section h2 {
    font-size: 44px;
    font-weight: 700;
    color: #041146;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-section p {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

/* Footer */
.footer {
    background-color: #041146;
    padding: 60px 0 30px;
    color: #fef9ee;
}

.footer-content {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.footer-logo img {
    height: 36px;
    width: auto;
    display: block;
}

.footer-text {
    color: rgba(254, 249, 238, 0.7);
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(254, 249, 238, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e59342;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(254, 249, 238, 0.1);
}

.footer-bottom p {
    color: rgba(254, 249, 238, 0.5);
    font-size: 14px;
}

/* Terms Page */
.terms-section {
    background-color: #fef9ee;
    padding: 60px 0 100px;
    min-height: calc(100vh - 200px);
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(4, 17, 70, 0.08);
}

.terms-content h1 {
    font-size: 44px;
    font-weight: 700;
    color: #041146;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.terms-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #041146;
    margin-top: 40px;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.terms-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #041146;
    margin-top: 24px;
    margin-bottom: 12px;
}

.terms-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.terms-content ul {
    margin: 16px 0 20px 24px;
    line-height: 1.8;
}

.terms-content li {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.terms-content a {
    color: #e59342;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-content a:hover {
    color: #d47f2e;
    text-decoration: underline;
}

.logo {
    text-decoration: none;
}

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

    .hero-text {
        text-align: center;
        order: 1;
    }

    .hero-image {
        order: 2;
        justify-content: center;
    }

    .hero h1 {
        font-size: 40px;
    }

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

    .cta-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .hero .cta-button {
        width: 100%;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .cta-section p {
        font-size: 18px;
    }

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

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

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

    .screenshot-placeholder {
        padding: 40px 20px;
        min-height: 280px;
    }

    .terms-content {
        padding: 40px 30px;
    }

    .terms-content h1 {
        font-size: 32px;
    }

    .terms-content h2 {
        font-size: 24px;
    }

    .terms-content h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 80px;
    }

    .hero-content {
        gap: 30px;
    }

    .hero h1 {
        font-size: 32px;
    }

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

    .hero-image img {
        border-radius: 12px;
    }

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

    .cta-section h2 {
        font-size: 28px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .feature-card {
        padding: 32px 24px;
    }

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

    .terms-content h1 {
        font-size: 28px;
    }

    .terms-content h2 {
        font-size: 22px;
    }
}

