/* Blue color scheme for Zylo */
:root {
    --blue-primary: #2563eb;
    --blue-dark: #1e40af;
    --blue-light: #3b82f6;
    --blue-accent: #0ea5e9;
    --blue-muted: #93c5fd;
    --bg-cream: #fefcf9;
    --bg-warm: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header */
.header {
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 2.25rem;
}

.logo-icon {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: contain;
}

/* Hero */
.hero {
    text-align: center;
    padding: 3rem 2rem 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: var(--blue-primary);
    color: white !important;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.2s, transform 0.15s;
}

.cta-button:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}

.hero-image {
    margin-top: 3rem;
}

.hero-image img {
    max-width: 320px;
    width: 100%;
    height: auto;
}

/* Features intro */
.features-intro {
    text-align: center;
    padding: -2rem 2rem 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Features */
.features {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-images {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.feature-images img {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.15);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--blue-dark);
}

.feature-desc {
    color: var(--text-muted);
    max-width: 400px;
}

/* Mascot section */
.mascot-section {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 2rem;
    background: var(--bg-warm);
}

.mascot {
    max-width: 160px;
    height: auto;
}

/* Privacy Policy */
.privacy-policy {
    background: var(--bg-warm);
    padding: 4rem 2rem;
    scroll-margin-top: 2rem;
}

.privacy-content {
    max-width: 720px;
    margin: 0 auto;
}

.privacy-mascot {
    display: block;
    max-width: 120px;
    margin: 0 auto 1rem;
}

.privacy-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 0.25rem;
}

.privacy-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.privacy-policy h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.privacy-policy h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.privacy-policy p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.privacy-policy ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.privacy-policy li {
    margin-bottom: 0.5rem;
}

.privacy-policy a {
    color: var(--blue-primary);
    text-decoration: none;
}

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

/* Footer */
.footer {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--blue-dark);
    color: white;
}

.footer-tagline {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
}

.footer-nav a:hover {
    opacity: 1;
    text-decoration: underline;
}

.copyright {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Responsive */
@media (min-width: 768px) {
    .hero {
        padding: 4rem 2rem 5rem;
    }

    .hero-image img {
        max-width: 400px;
    }

    .feature-images img {
        max-width: 280px;
    }

    .feature-card {
        flex-direction: row;
        text-align: left;
        gap: 2rem;
    }

    .feature-card:nth-child(even) {
        flex-direction: row-reverse;
    }

    .feature-images {
        flex: 0 0 auto;
        margin-bottom: 0;
    }

    .feature-content {
        flex: 1;
        text-align: left;
    }
}
