/* ===== Hero ===== */
.hero {
    padding: 5rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Sections ===== */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* ===== Steps Grid ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--color-accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.step-card h3 {
    margin-bottom: 0.5rem;
}

/* ===== Gallery Grid ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-placeholder {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-sm);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== Features Grid ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    padding: 1.5rem;
}

.feature-card h4 {
    margin-bottom: 0.5rem;
}

/* ===== Pricing Landing ===== */
.pricing-grid-landing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
}

.pricing-card-landing {
    text-align: center;
    padding: 2rem 1.5rem;
}

.pricing-card-landing.featured-card {
    border-color: var(--color-accent);
    transform: scale(1.05);
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0.5rem 0;
}

.price-tag span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq-item {
    margin-bottom: 0.75rem;
    cursor: pointer;
}

.faq-item summary {
    font-weight: 600;
    padding: 0.25rem 0;
    list-style: none;
}

.faq-item summary::before {
    content: '+  ';
    font-weight: 800;
    color: var(--color-accent);
}

.faq-item[open] summary::before {
    content: '-  ';
}

.faq-item p {
    margin-top: 0.75rem;
    font-size: 0.9rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-secondary);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 0 2.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .pricing-card-landing.featured-card {
        transform: none;
    }
}
