/* ============================================
   HOMEPAGE STYLES
   ============================================ */

.hero-section {
    padding: clamp(2rem, 10vw, 6rem) 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 1.5rem);
}

.hero-title {
    font-size: clamp(1.75rem, 7vw + 0.5rem, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.hero-title .accent {
    color: var(--accent);
}

.hero-subtitle {
    font-size: clamp(0.875rem, 2.5vw + 0.3rem, 1.25rem);
    color: var(--text-secondary);
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

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

/* How It Works Section */
.how-it-works {
    padding: clamp(2rem, 8vw, 5rem) 0;
    background: var(--bg-primary);
}

.section-title {
    font-size: clamp(1.5rem, 4.5vw + 0.3rem, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin: 0 0 3rem 0;
}

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

.step-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
}

.step-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Featured Section */
.featured-section {
    padding: clamp(2rem, 8vw, 5rem) 0;
    background: var(--bg-secondary);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.featured-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.featured-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.featured-image {
    aspect-ratio: 16/9;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.featured-content {
    padding: 1.5rem;
}

.featured-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.featured-meta {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0 0 1rem 0;
}

.featured-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
}

/* CTA Section */
.cta-section {
    padding: clamp(2rem, 8vw, 5rem) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 1.5rem);
}

.cta-title {
    font-size: clamp(1.5rem, 4.5vw + 0.3rem, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
}

.cta-subtitle {
    font-size: clamp(0.875rem, 2.5vw + 0.2rem, 1.125rem);
    color: var(--text-secondary);
    margin: 0 0 2rem 0;
}

