/* ============================================
   ShoreTimer - Partnerships Page Styles
   ============================================ */

/* Hero */
.partnerships-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
}

.partnerships-hero h1 {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
}

.partnerships-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Content */
.partnerships-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
}

/* Section */
.partnerships-section {
    margin-bottom: 3rem;
}

.partnerships-section h2 {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--coral);
    display: inline-block;
}

/* Intro Card */
.intro-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--teal);
}

.intro-card p {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.intro-card p:last-child {
    margin-bottom: 0;
    color: var(--navy);
    font-weight: 600;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--teal) 0%, #1e8e82 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Criteria Card */
.criteria-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.criteria-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.criteria-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.criteria-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.criteria-item.yes svg {
    color: var(--teal);
}

.criteria-item span {
    color: var(--navy);
    font-weight: 600;
    font-size: 1.05rem;
}

.criteria-note {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    margin: 0;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.step-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--coral);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* CTA Card */
.cta-card {
    background: var(--navy);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    color: var(--white);
}

.cta-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .partnerships-hero {
        padding: 6rem 1.5rem 3rem;
    }

    .partnerships-hero h1 {
        font-size: 2rem;
    }

    .partnerships-content {
        padding: 2rem 1.5rem 3rem;
    }

    .intro-card,
    .criteria-card {
        padding: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 2rem 1.5rem;
    }
}
