/* web/landing-style.css */

/* --- General & Variables --- */
:root {
    --primary-color: #6A67FF;
    --dark-bg: #121B2E;
    --light-bg: #F0F2F5;
    --text-dark: #242E42;
    --text-light: #F0F2F5;
    --surface-light: #FFFFFF;
    --surface-dark: #1E2A47;
    --border-light: #E2E8F0;
    --border-dark: #2D3C5E;
}

/* Base styles now default to light theme */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    background-color: var(--surface-light);
    color: var(--text-dark);
    line-height: 1.6;
}

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

section {
    padding: 80px 0;
}

h1,
h2 {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
}

p {
    color: #64748B;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white !important;
    /* Enforce white color */
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #5a57e0;
}

.btn-secondary {
    background-color: #e2e8f0;
    color: var(--text-dark) !important;
    /* Enforce text color */
}

.btn-secondary:hover {
    background-color: #cbd5e1;
}

/* --- Header --- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.logo {
    font-weight: bold;
    font-size: 1.2rem;
    color: inherit;
    text-decoration: none;
}

.main-header nav a {
    margin-left: 20px;
    text-decoration: none;
    color: inherit;
}

/* --- Hero Section --- */
.hero {
    padding-top: 40px;
    padding-bottom: 80px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1.5;
}

.sub-headline {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.app-stores {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.app-stores img {
    height: 40px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 450px;
}

.app-mockup-video {
    width: 320px;
    height: auto;
    border-radius: 40px;
    border: 10px solid #111827;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: rotateY(15deg);
    transition: transform 0.3s ease-in-out;
}

/* --- Features Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--surface-light);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    text-align: center;
}

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

.feature-card h3 {
    margin-bottom: 15px;
}

/* --- Pricing Section --- */
.pricing-grid {
    align-items: start;
}

.pro-plan {
    border: 2px solid var(--primary-color);
    position: relative;
    padding-top: 50px;
}

.badge {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.price {
    font-size: 1.5rem;
    margin: 20px 0;
    color: inherit;
}

.price span {
    font-size: 3rem;
    font-weight: bold;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.plan-features li {
    margin-bottom: 10px;
}

.disclaimer {
    text-align: center;
    font-size: 0.8rem;
    margin-top: 20px;
}

/* --- Visuals Section --- */
#visuals {
    background-color: var(--light-bg);
}

.screenshots-container {
    margin-top: 50px;
    overflow-x: hidden;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.screenshot {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

/* --- CTA & Footer --- */
#cta {
    text-align: center;
}

.main-footer {
    padding: 40px 20px;
    text-align: center;
    background-color: var(--light-bg);
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    margin: 0 15px;
    color: inherit;
    text-decoration: none;
}

.copyright {
    font-size: 0.9rem;
}

/* --- Responsive Design --- */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-bottom: 30px;
        max-width: 400px;
    }

    .app-stores {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .screenshots-grid {
        grid-template-columns: repeat(6, 250px);
        overflow-x: auto;
        padding-bottom: 20px;
    }

    .main-header nav {
        display: none;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    section {
        padding: 60px 0;
    }
}