/* landing.css */
.landing-body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    color: #1a1a1a;
    min-height: 100vh;
}

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

.landing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

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

.logo-square {
    width: 36px;
    height: 36px;
    background: #1a1a1a;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.nav-link {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #1a1a1a;
}

.landing-main {
    padding: 4rem 0;
}

.hero {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 6rem;
}

.hero h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 320px;
    margin: 2rem auto;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: #1a1a1a;
    color: white;
}

.cta-button.primary:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cta-button.secondary {
    background: white;
    color: #1a1a1a;
    border: 1px solid #e0e0e0;
}

.cta-button.secondary:hover {
    background: #f5f5f5;
    border-color: #1a1a1a;
}

.google-icon {
    width: 20px;
    height: 20px;
}

.small-text {
    font-size: 0.9rem;
    color: #6a6a6a;
    margin-top: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #6a6a6a;
    margin: 0;
    line-height: 1.5;
}

.testimonials {
    text-align: center;
    margin: 6rem 0;
    padding: 3rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
}

.testimonials blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: #1a1a1a;
    margin: 0;
}

.testimonials cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6a6a6a;
    font-style: normal;
}

.landing-footer {
    text-align: center;
    padding: 2rem 0;
    color: #8a8a8a;
    font-size: 0.9rem;
    border-top: 1px solid #e8e8e8;
    margin-top: 4rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        max-width: 100%;
    }
}