:root {
    --az-teal: #14897e;
    --az-teal-dark: #0f7268;
    --az-teal-soft: #e2f1ee;
    --az-navy: #1b3a5b;
    --az-text: #5b6b7b;
    --az-muted: #8a97a4;
    --az-purple: #8b5cf6;
    --az-purple-soft: #f0e9fb;
    --az-cream: #faf9f5;
    --az-card-border: #eef0ec;
    --az-gold: #d9a441;
}

.az-page {
    background-color: var(--az-cream);
    background-image:
        radial-gradient(circle at 12% 20%, rgba(20, 137, 126, 0.04) 0 40px, transparent 41px),
        radial-gradient(circle at 88% 78%, rgba(20, 137, 126, 0.04) 0 40px, transparent 41px);
    padding: 56px 24px 72px;
    border-radius: 18px;
}

/* ---------- Header ---------- */
.az-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--az-teal);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

.az-title {
    color: var(--az-navy);
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    margin: 10px 0 16px;
    letter-spacing: -0.5px;
}

.az-subtitle {
    color: var(--az-text);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
    font-size: 1.02rem;
}

.az-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 26px 0 8px;
}

.az-divider .az-line {
    width: 64px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--az-teal));
}

.az-divider .az-line:last-child {
    background: linear-gradient(90deg, var(--az-teal), transparent);
}

/* ---------- Illustration ---------- */
.az-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.az-illustration svg,
.az-illustration img {
    width: 100%;
    max-width: 380px;
    height: auto;
}

/* ---------- Feature cards ---------- */
.az-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #ffffff;
    border: 1px solid var(--az-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;
}

.az-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(27, 58, 91, 0.09);
}

.az-feature + .az-feature {
    margin-top: 20px;
}

.az-feature-icon {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.az-feature-icon.teal {
    background: var(--az-teal-soft);
    color: var(--az-teal);
}

.az-feature-icon.purple {
    background: var(--az-purple-soft);
    color: var(--az-purple);
}

.az-icon-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.az-feature-title {
    color: var(--az-navy);
    font-weight: 700;
    font-size: 1.18rem;
    margin: 4px 0 6px;
}

.az-feature-text {
    color: var(--az-text);
    font-size: 0.96rem;
    line-height: 1.55;
    margin: 0;
}

/* ---------- Mission banner ---------- */
.az-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;
}

.az-mission-badge {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #d3e8e2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--az-teal);
}

.az-mission-text {
    color: var(--az-navy);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* ---------- Buttons ---------- */
.az-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.az-btn {
    border-radius: 12px;
    padding: 14px 40px;
    font-weight: 600;
    font-size: 1.02rem;
    border: 1.5px solid transparent;
    transition: all 0.18s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.az-btn-primary {
    background: var(--az-teal);
    color: #ffffff;
}

.az-btn-primary:hover {
    background: var(--az-teal-dark);
    color: #ffffff;
}

.az-btn-outline {
    background: #ffffff;
    color: var(--az-navy);
    border-color: #cdd7df;
}

.az-btn-outline:hover {
    border-color: var(--az-teal);
    color: var(--az-teal);
}

@media (max-width: 767px) {
    .az-illustration {
        margin-bottom: 32px;
    }

    .az-mission {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .az-mission-text {
        font-size: 1.15rem;
    }
}
