:root {
    --sp-teal: #14897e;
    --sp-teal-dark: #0f7268;
    --sp-navy: #1b3a5b;
    --sp-text: #5b6b7b;
    --sp-cream: #faf9f5;
    --sp-card-border: #eef0ec;
    --sp-purple: #8b5cf6;
    --sp-coral: #e0575b;
}

.sp-page {
    background-color: var(--sp-cream);
    padding: 52px 24px 64px;
    border-radius: 18px;
}

/* Header */
.sp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sp-teal);
    font-weight: 600;
    font-size: 0.98rem;
}

.sp-title {
    color: var(--sp-navy);
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    margin: 10px 0 16px;
    letter-spacing: -0.5px;
}

.sp-subtitle {
    color: var(--sp-text);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 1.02rem;
}

.sp-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 24px 0 8px;
}

.sp-divider .sp-line { width: 64px; height: 2px; background: linear-gradient(90deg, transparent, var(--sp-teal)); }
.sp-divider .sp-line:last-child { background: linear-gradient(90deg, var(--sp-teal), transparent); }

/* Illustration */
.sp-illustration { display: flex; align-items: center; justify-content: center; height: 100%; }
.sp-illustration svg,
.sp-illustration img { width: 100%; max-width: 380px; height: auto; }

/* Feature cards */
.sp-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #ffffff;
    border: 1px solid var(--sp-card-border);
    border-radius: 16px;
    padding: 22px 24px;
    box-shadow: 0 8px 24px rgba(27, 58, 91, 0.04);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.sp-feature + .sp-feature { margin-top: 20px; }

.sp-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(27, 58, 91, 0.09);
}

.sp-feature-icon {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-feature-icon.teal   { background: #dcefeb; color: var(--sp-teal); }
.sp-feature-icon.coral  { background: #fce7e7; color: var(--sp-coral); }
.sp-feature-icon.purple { background: #efe9fb; color: var(--sp-purple); }

.sp-icon-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.sp-feature-title { color: var(--sp-navy); font-weight: 700; font-size: 1.18rem; margin: 4px 0 6px; }
.sp-feature-text { color: var(--sp-text); font-size: 0.96rem; line-height: 1.55; margin: 0; }

/* Mission banner */
.sp-mission {
    display: flex;
    align-items: center;
    gap: 22px;
    background: linear-gradient(180deg, #f4faf8, #eef7f4);
    border: 1px solid #dcece7;
    border-radius: 16px;
    padding: 26px 34px;
    margin-top: 44px;
}

.sp-mission-icon { flex: 0 0 auto; color: var(--sp-teal); padding-right: 22px; border-right: 2px solid #cfe4dd; }

.sp-mission-text { color: var(--sp-navy); font-size: 1.35rem; font-weight: 700; line-height: 1.35; margin: 0; }

/* Buttons */
.sp-actions { display: flex; justify-content: center; gap: 18px; margin-top: 40px; flex-wrap: wrap; }

.sp-btn {
    border-radius: 12px;
    padding: 14px 40px;
    font-weight: 600;
    font-size: 1.02rem;
    border: 1.5px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.18s ease;
    display: inline-block;
}

.sp-btn-primary { background: var(--sp-teal); color: #ffffff; }
.sp-btn-primary:hover { background: var(--sp-teal-dark); color: #ffffff; }

.sp-btn-outline { background: #ffffff; color: var(--sp-navy); border-color: #cdd7df; }
.sp-btn-outline:hover { border-color: var(--sp-teal); color: var(--sp-teal); }

@media (max-width: 767px) {
    .sp-illustration { margin-bottom: 32px; }
    .sp-mission { flex-direction: column; text-align: center; }
    .sp-mission-icon { border-right: none; padding-right: 0; padding-bottom: 12px; }
    .sp-mission-text { font-size: 1.15rem; }
}
