/* Homepage deliverable — certificate proof section */

.deliverable-section {
    background: var(--brand-navy, #2C2C74);
    padding: 88px 0 96px;
}

.deliverable-section .container {
    max-width: 1140px;
}

.deliverable-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 48px;
    align-items: center;
}

.deliverable-visual {
    display: flex;
    justify-content: center;
}

.deliverable-certificate {
    display: block;
    width: 100%;
    max-width: 380px;
    height: auto;
    background: #fff;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.deliverable-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 3 / 4.2;
    padding: 32px 24px;
    border: 1px dashed rgba(249, 206, 48, 0.45);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
}

.deliverable-placeholder i {
    font-size: 48px;
    color: var(--brand-yellow, #F9CE30);
    opacity: 0.85;
}

.deliverable-placeholder span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.deliverable-kicker {
    margin: 0 0 18px;
    color: var(--brand-yellow, #F9CE30);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.deliverable-title {
    margin: 0 0 24px;
    font-size: clamp(1.75rem, 3.2vw, 2.35rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.deliverable-title-main {
    display: block;
    color: var(--text-color-alt-1, #fff);
}

.deliverable-title-accent {
    display: block;
    margin-top: 0.15em;
    color: var(--brand-yellow, #F9CE30);

    font-style: italic;
    font-weight: 400;
}

.deliverable-rule {
    margin: 0 0 28px;
    border: 0;
    border-top: 1px solid rgba(249, 206, 48, 0.55);
    opacity: 1;
}

.deliverable-list {
    list-style: none;
    margin: 0 0 36px;
    padding: 0;
}

.deliverable-list li {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.deliverable-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.deliverable-num {
    color: var(--brand-yellow, #F9CE30);
    font-size: 28px;
    line-height: 1;
}

.deliverable-list h3 {
    margin: 0 0 6px;
    color: var(--text-color-alt-1, #fff);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.deliverable-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
}

.deliverable-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 24px;
}

.deliverable-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border: 1px solid var(--brand-yellow, #F9CE30);
    background: transparent;
    color: var(--text-color-alt-1, #fff);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.deliverable-btn:hover,
.deliverable-btn:focus {
    background: var(--brand-yellow, #F9CE30);
    color: var(--brand-navy, #2C2C74);
    text-decoration: none;
}

.deliverable-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
}

.deliverable-note-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-mint, #1AE5BE);
    flex-shrink: 0;
}

/* Bright counterpart — same layout, light brand surface */
.deliverable-section--light {
    background: var(--background-color-light);
}

.deliverable-section--light .deliverable-placeholder {
    border: 1px dashed rgba(8, 145, 222, 0.4);
    background: var(--text-color-alt-1);
    color: var(--text-color-muted);
    box-shadow: 0 16px 40px rgba(30, 51, 111, 0.08);
}

.deliverable-section--light .deliverable-placeholder i {
    color: var(--brand-mint);
    opacity: 1;
}

.deliverable-section--light .deliverable-kicker {
    color: var(--brand-blue);
}

.deliverable-section--light .deliverable-title-main {
    color: var(--important-color);
}

.deliverable-section--light .deliverable-title-accent {
    color: var(--brand-blue);
}

.deliverable-section--light .deliverable-rule {
    border-top-color: var(--brand-mint);
}

.deliverable-section--light .deliverable-list li {
    border-bottom-color: var(--border-color);
}

.deliverable-section--light .deliverable-num {
    color: var(--brand-mint);
}

.deliverable-section--light .deliverable-list h3 {
    color: var(--important-color);
}

.deliverable-section--light .deliverable-list p {
    color: var(--text-color-muted);
}

.deliverable-section--light .deliverable-btn {
    border-color: var(--brand-blue);
    background: var(--brand-blue);
    color: var(--text-color-alt-1);
}

.deliverable-section--light .deliverable-btn:hover,
.deliverable-section--light .deliverable-btn:focus {
    background: var(--important-color);
    border-color: var(--important-color);
    color: var(--text-color-alt-1);
}

@media (max-width: 991px) {
    .deliverable-section {
        padding: 56px 0 64px;
    }

    .deliverable-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .deliverable-placeholder,
    .deliverable-certificate {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .deliverable-list li {
        grid-template-columns: 44px 1fr;
        gap: 12px;
    }

    .deliverable-num {
        font-size: 24px;
    }

    .deliverable-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}
