:root {
    font-family: 'Poppins', Arial, sans-serif;
}

body {
    margin: 0;
    background: var(--gray-bg);
    color: var(--text-primary);
}

.support-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #fff 0%, #f7f4f6 45%, #f2edf2 100%);
}

.support-hero {
    padding: 80px 24px 56px;
    text-align: center;
}

.support-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.support-logo {
    width: 200px;
    height: auto;
}

.support-hero__content {
    max-width: 840px;
    margin: 0 auto;
}

.support-hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--light-purple);
    font-weight: 600;
    margin-bottom: 16px;
}

.support-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin: 0 0 18px;
    line-height: 1.2;
}

.support-hero__tagline {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.support-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.support-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.support-action i {
    font-size: 1rem;
}

.support-action.primary {
    background: var(--dark-purple);
    color: var(--text-white);
    box-shadow: 0 15px 30px rgba(116, 28, 71, 0.25);
}

.support-action.primary:hover {
    transform: translateY(-2px);
}

.support-action.secondary {
    border: 1px solid rgba(116, 28, 71, 0.25);
    color: var(--dark-purple);
    background: transparent;
}

.support-metrics {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.support-metric {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 18px 20px;
    text-align: left;
    border: 1px solid rgba(116, 28, 71, 0.08);
}

.support-metric__label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7c7b80;
}

.support-metric strong {
    display: block;
    font-size: 1.05rem;
    margin-top: 6px;
    color: var(--dark-purple);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    padding: 0 24px 64px;
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}

.support-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 30px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.support-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(166, 77, 121, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-purple);
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.support-card h2 {
    margin: 0 0 12px;
    font-size: 1.35rem;
}

.support-card p {
    margin: 0 0 18px;
    color: #4a4a4a;
    line-height: 1.6;
}

.support-card ul,
.support-card ol {
    margin: 0;
    padding-left: 20px;
    color: #4a4a4a;
}

.support-card li + li {
    margin-top: 6px;
}

.support-steps {
    padding: 0 24px 56px;
}

.support-steps__content {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 28px;
    padding: 48px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.support-steps__content h2 {
    margin-top: 0;
    margin-bottom: 28px;
    font-size: 1.8rem;
}

.support-steps__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.support-step {
    background: rgba(246, 243, 245, 0.8);
    border-radius: 18px;
    padding: 28px;
    border: 1px solid rgba(116, 28, 71, 0.08);
}

.support-step__number {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--light-purple);
    font-weight: 600;
}

.support-step h3 {
    margin: 12px 0 8px;
}

.support-step p {
    margin: 0;
    color: #4a4a4a;
    line-height: 1.6;
}

.support-footer {
    text-align: center;
    padding: 28px;
    font-size: 0.9rem;
    color: #6b6b6b;
}

@media (max-width: 640px) {
    .support-page {
        background: #fff;
    }
    
    .support-hero__tagline {
        font-size: 1rem;
    }
    
    .support-card,
    .support-steps__content {
        padding: 24px;
    }
    
    .support-step {
        padding: 20px;
    }
    
    .support-action {
        width: 100%;
        justify-content: center;
    }
}

