/* ─── Hero ────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, #faf5ff 0%, #fef3c7 50%, #fff7ed 100%);
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.05);
    pointer-events: none;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-prices {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.hero-price strong {
    color: var(--primary);
}

.hero-price-sep {
    color: var(--border);
}

/* ─── Categories Section ─────────────────────────────── */
.categories-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    text-align: center;
    color: var(--text);
}

.category-card:hover {
    border-color: var(--primary);
    background: #fff7ed;
    transform: translateY(-2px);
    color: var(--primary);
}

.category-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.category-count {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ─── How it Works ───────────────────────────────────── */
.how-it-works {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.step {
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff7ed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.step-desc {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ─── Trust Section ──────────────────────────────────── */
.trust-section {
    padding: 40px 0;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-light);
}
