body {
}

:root {
    --red: #c0392b;
    --red-dark: #a93226;
    --navy: #1a2a3a;
    --navy-light: #243447;
    --gray-light: #f4f6f8;
    --gray-mid: #e0e4e8;
    --gray-text: #555;
    --white: #fff;
    --font-body: 'Open Sans',sans-serif;
    --font-heading: 'Oswald',sans-serif
}
/* HEADINGS */
.section-heading {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .5px;
    border-left: 4px solid #ee212b;
    padding-left: 14px;
    margin-bottom: 18px;
    margin-top: 46px
}

    .section-heading:first-child {
        margin-top: 0
    }

.sub-heading {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    color: var(--navy-light);
    margin: 28px 0 12px;
    text-transform: uppercase;
    letter-spacing: .4px
}

.h3header {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    color: var(--navy);
}
/* TIER CARDS */
.tier-wrap {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 28px 0
}

.tier-card {
    border: 1px solid var(--gray-mid);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    transition: box-shadow .25s
}

    .tier-card:hover {
        box-shadow: 0 6px 24px rgba(0,0,0,.13)
    }

.tier-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 28px;
    background: #082c4b;
    color: var(--white)
}

    .tier-header .tier-badge {
        background: #ee212b;
        color: var(--white);
        font-family: var(--font-heading);
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 4px 12px;
        border-radius: 20px;
        white-space: nowrap
    }

    .tier-header h2 {
        font-family: var(--font-heading);
        font-size: 22px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .6px;
        color: var(--white);
        margin: 0;
        line-height: 1.2;
        flex: 1
    }

    .tier-header .freq-tag {
        font-size: 12px;
        background: rgba(255,255,255,.15);
        border: 1px solid rgba(255,255,255,.25);
        padding: 4px 12px;
        border-radius: 20px;
        white-space: nowrap;
        color: #ccd
    }

.tier-card.featured .tier-header {
    background: #ee212b
}

.tier-card.featured .tier-badge {
    background: var(--white);
    color: #ee212b
}

.tier-body {
    padding: 26px 28px
}

.tier-objective {
    background: #F8FAFC;
    border-left: 3px solid #ee212b;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--gray-text);
    border-radius: 0 4px 4px 0;
    margin-bottom: 22px
}

.tier-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.tier-col {
    background: #f8fafc;
    border: 1px solid var(--gray-mid);
    border-radius: 12px;
    padding: 18px
}

    .tier-col h4 {
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .5px;
        color: var(--navy);
        border-bottom: 2px solid #ee212b;
        padding-bottom: 6px;
        margin-bottom: 12px
    }

    .tier-col ul {
        list-style: none;
        padding: 0
    }

        .tier-col ul li {
            padding: 6px 0 6px 22px;
            position: relative;
            font-size: 13.5px;
            color: #444;
            border-bottom: 1px solid var(--gray-mid);
            line-height: 1.5
        }

            .tier-col ul li:last-child {
                border-bottom: none
            }

            .tier-col ul li::before {
                content: '✔';
                position: absolute;
                left: 0;
                color: #ee212b;
                font-size: 11px;
                top: 8px
            }

.tier-tag {
    display: inline-block;
    margin-top: 16px;
    background: var(--gray-light);
    border: 1px solid var(--gray-mid);
    color: var(--navy);
    font-size: 12.5px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 3px;
    font-family: var(--font-heading);
    letter-spacing: .4px
}
/* MAIN LAYOUT */
#main-wrap {
    max-width: 1240px;
    margin: 40px auto 28px;
    padding: 0 20px
}

#content {
    width: 100%;
    min-width: 0
}
/* FAQ */
.faq-item {
    border: 1px solid var(--gray-mid);
    border-radius: 6px;
    margin-bottom: 10px;
    overflow: hidden
}

.faq-q {
    background: var(--gray-light);
    padding: 15px 20px;
    font-family: var(--font-heading);
    font-size: 15.5px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: .3px;
    user-select: none;
    transition: background .2s
}

    .faq-q:hover {
        background: #e4e8ec
    }

    .faq-q .arrow {
        color: #ee212b;
        font-size: 17px;
        transition: transform .25s;
        flex-shrink: 0;
        margin-left: 12px
    }

    .faq-q.open .arrow {
        transform: rotate(180deg)
    }

.faq-a {
    display: none;
    padding: 16px 20px;
    color: #444;
    line-height: 1.72;
    border-top: 1px solid var(--gray-mid)
}

    .faq-a.open {
        display: block
    }

.answer-grid {
    display: grid;
    grid-template-columns: 1.35fr .95fr;
    gap: 22px;
    margin-bottom: 18px
}

.answer-card {
    background: #fff;
    border: 1px solid var(--gray-mid);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(18,33,53,.05)
}

.answer-card-featured {
    background: linear-gradient(180deg,#fff,#f8fbff)
}

.compact-list {
    margin: 0
}

    .compact-list li {
        margin-bottom: 8px
    }
/* FEATURE LIST */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 16px 0
}

    .feature-list li {
        padding: 10px 0 10px 28px;
        position: relative;
        border-bottom: 1px solid var(--gray-mid);
        font-size: 14px;
        color: #444;
        line-height: 22px;
    }

        .feature-list li:last-child {
            border-bottom: none
        }

        .feature-list li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: #ee212b;
            font-size: 10px;
            top: 13px
        }

        .feature-list li strong {
            color: var(--navy)
        }

.quick-summary {
    margin: 8px 0 36px
}

.quick-summary-inner {
    background: #f7f9fc;
    border: 1px solid var(--gray-mid);
    border-radius: 18px;
    padding: 26px
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 16px;
    margin-top: 20px
}

.summary-card {
    background: #fff;
    border: 1px solid var(--gray-mid);
    border-radius: 14px;
    padding: 18px
}

    .summary-card h3 {
        margin: 0 0 8px;
        font-size: 18px
    }

    .summary-card p {
        margin: 0;
        font-size: 14px;
        line-height: 22px;
        color: #586674
    }
/* VALUE GRID */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(210px,1fr));
    gap: 18px;
    margin: 24px 0
}

.value-card {
    background: var(--gray-light);
    border-radius: 6px;
    padding: 22px 20px;
    border-top: 4px solid #ee212b;
    transition: box-shadow .2s
}

    .value-card:hover {
        box-shadow: 0 4px 18px rgba(0,0,0,.1)
    }

    .value-card .icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--navy);
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin-bottom: 14px
    }

    .value-card h3 {
        font-family: var(--font-heading);
        font-size: 15px;
        font-weight: 700;
        color: var(--navy);
        text-transform: uppercase;
        margin-bottom: 8px
    }

    .value-card p {
        font-size: 14px;
        color: var(--gray-text);
        line-height: 1.6
    }
/* TABLE OF CONTENTS */
.toc-wrap {
    background: var(--gray-light);
    border: 1px solid var(--gray-mid);
    border-radius: 8px;
    padding: 28px 32px;
    margin: 0 0 40px;
    position: relative;
    overflow: hidden
}

    .toc-wrap::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 5px;
        background: #ee212b;
        border-radius: 8px 0 0 8px
    }

.toc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px
}

    .toc-header h2 {
        font-family: var(--font-heading);
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .6px;
        color: var(--navy);
        margin: 0
    }

    .toc-header .toc-icon {
        font-size: 22px;
        flex-shrink: 0
    }

    .toc-header .toc-meta {
        font-size: 12px;
        color: #888;
        margin-left: auto;
        font-style: italic;
        white-space: nowrap
    }

.toc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0
}

    .toc-grid ol {
        list-style: none;
        padding: 0;
        margin: 0;
        counter-reset: toc-counter
    }

        .toc-grid ol:first-child {
            border-right: 1px solid var(--gray-mid);
            padding-right: 24px
        }

        .toc-grid ol:last-child {
            padding-left: 24px
        }

    .toc-grid li {
        counter-increment: toc-counter;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 7px 0;
        border-bottom: 1px dotted #d0d5da;
        line-height: 1.4
    }

        .toc-grid li:last-child {
            border-bottom: none
        }

        .toc-grid li::before {
            content: counter(toc-counter);
            flex-shrink: 0;
            width: 22px;
            height: 22px;
            background: #ee212b;
            color: #fff;
            border-radius: 50%;
            font-family: var(--font-heading);
            font-size: 13px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 1px
        }

        .toc-grid li a {
            color: var(--navy);
            font-weight: 600;
            text-decoration: none;
            transition: color .2s
        }

            .toc-grid li a:hover {
                color: #ee212b;
                text-decoration: none
            }

        .toc-grid li .toc-sub {
            display: block;
            font-size: 11.5px;
            color: #888;
            font-weight: 400;
            margin-top: 2px
        }

.toc-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-mid);
    flex-wrap: wrap;
    gap: 10px
}

    .toc-cta-row span {
        font-size: 14px;
        color: #666
    }

    .toc-cta-row a {
        display: inline-block;
        background: #ee212b;
        color: #fff;
        padding: 9px 22px;
        font-family: var(--font-heading);
        font-size: 12.5px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .5px;
        border-radius: 3px;
        text-decoration: none;
        transition: background .2s
    }

        .toc-cta-row a:hover {
            background: var(--red-dark);
            text-decoration: none
        }
/* DDC PORTAL SECTION */
.ddc-section {
    margin: 0 0 0
}

.ddc-hero {
    background: linear-gradient(135deg,#0d1f2d 0%,var(--navy) 50%,#1a3550 100%);
    border-radius: 10px;
    padding: 44px 44px 36px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden
}

    .ddc-hero::after {
        content: '';
        position: absolute;
        right: -60px;
        top: -60px;
        width: 320px;
        height: 320px;
        background: radial-gradient(circle,rgba(192,57,43,.18) 0%,transparent 70%);
        pointer-events: none
    }

.ddc-hero-inner {
    position: relative;
    z-index: 1
}

.ddc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ee212b;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px
}

.ddc-hero h2 {
    font-family: var(--font-heading);
    font-size: clamp(24px,3vw,36px);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .8px;
    line-height: 1.15;
    margin-bottom: 14px
}

    .ddc-hero h2 span {
        color: #e8635a
    }

.ddc-hero-desc {
    font-size: 15px;
    color: #8aafc8;
    line-height: 1.7;
    margin-bottom: 28px
}

.ddc-hero-tagline {
    font-style: italic;
    color: #5e8099;
    font-size: 14px;
    margin-bottom: 28px;
    padding-left: 16px;
    border-left: 3px solid #ee212b
}

.ddc-tier-access {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.ddc-tier-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase
}

    .ddc-tier-pill.essential {
        background: rgba(255,255,255,.07);
        border: 1px solid rgba(255,255,255,.15);
        color: #8aafc8
    }

    .ddc-tier-pill.standard {
        background: rgba(192,57,43,.15);
        border: 1px solid rgba(192,57,43,.35);
        color: #e8b4ae
    }

    .ddc-tier-pill.premium {
        background: rgba(255,255,255,.12);
        border: 1px solid rgba(255,255,255,.25);
        color: #fff
    }

    .ddc-tier-pill .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        flex-shrink: 0
    }

    .ddc-tier-pill.essential .dot {
        background: #5e8099
    }

    .ddc-tier-pill.standard .dot {
        background: #ee212b
    }

    .ddc-tier-pill.premium .dot {
        background: #4fc3f7
    }
/* À LA CARTE */
.alacarte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
    gap: 16px;
    margin: 20px 0
}

.alacarte-item {
    background: var(--white);
    border: 1px solid var(--gray-mid);
    border-radius: 6px;
    padding: 18px 16px;
    text-align: center;
    transition: box-shadow .2s,border-color .2s
}

    .alacarte-item:hover {
        box-shadow: 0 4px 16px rgba(0,0,0,.1);
        border-color: #ee212b
    }

    .alacarte-item .icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--navy);
        color: var(--white);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin-bottom: 14px
    }

    .alacarte-item h4 {
        font-family: var(--font-heading);
        font-weight: 700;
        color: var(--navy);
        text-transform: uppercase;
        margin-bottom: 6px
    }

    .alacarte-item p {
        color: var(--gray-text);
        line-height: 22px;
    }
/* DDC PORTAL SECTION */
.ddc-section {
    margin: 0 0 0
}

.ddc-hero {
    background: linear-gradient(135deg,#0d1f2d 0%,var(--navy) 50%,#1a3550 100%);
    border-radius: 10px;
    padding: 44px 44px 36px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden
}

    .ddc-hero::after {
        content: '';
        position: absolute;
        right: -60px;
        top: -60px;
        width: 320px;
        height: 320px;
        background: radial-gradient(circle,rgba(192,57,43,.18) 0%,transparent 70%);
        pointer-events: none
    }

.ddc-hero-inner {
    position: relative;
    z-index: 1
}

.ddc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ee212b;
    border: 1px solid rgba(192,57,43,.4);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px
}

.ddc-hero h2 {
    font-family: var(--font-heading);
    font-size: clamp(24px,3vw,36px);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .8px;
    line-height: 1.15;
    margin-bottom: 14px
}

    .ddc-hero h2 span {
        color: #ee212b;
    }

.ddc-hero-desc {
    font-size: 15px;
    color: #8aafc8;
    line-height: 1.7;
    margin-bottom: 28px
}

.ddc-hero-tagline {
    font-style: italic;
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 28px;
    padding-left: 16px;
    border-left: 3px solid #ee212b
}

.ddc-tier-access {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.ddc-tier-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase
}

    .ddc-tier-pill.essential {
        background: rgba(255,255,255,.07);
        border: 1px solid rgba(255,255,255,.15);
        color: #fff
    }

    .ddc-tier-pill.standard {
        background: rgba(255,255,255,.07);
        border: 1px solid rgba(255,255,255,.15);
        color: #fff
    }

    .ddc-tier-pill.premium {
        background: rgba(255,255,255,.12);
        border: 1px solid rgba(255,255,255,.25);
        color: #fff
    }

    .ddc-tier-pill .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        flex-shrink: 0
    }

    .ddc-tier-pill.essential .dot {
        background: #5e8099
    }

    .ddc-tier-pill.standard .dot {
        background: #ee212b
    }

    .ddc-tier-pill.premium .dot {
        background: #4fc3f7
    }

.ddc-capability {
    padding: 20px;
}

.ddc-copy, .ddc-panel, .ddc-capability, .ddc-solution, .ddc-footer-card {
    background: #fff;
    border: 1px solid var(--gray-mid);
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(18, 33, 53, .05);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.ddc-capabilities {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.ddc-capability p {
    margin: 0;
    color: #5a6875;
    font-size: 14px;
    line-height: 22px;
}

.ddc-capability h3 {
    margin: 0 0 8px;
    font-size: 19px;
    color: #000000;
    font-weight: 600;
}
.ddc-solutions {
    margin-top: 18px
}

.ddc-solutions-intro {
    margin-bottom: 14px
}

    .ddc-solutions-intro h3 {
        margin: 0 0 8px;
        font-size: 26px
    }

    .ddc-solutions-intro p {
        margin: 0;
        color: #5a6875
    }

.ddc-solution-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 16px
}

.ddc-solution {
    padding: 20px
}

    .ddc-solution strong {
        display: block;
        margin-bottom: 8px;
        font-size: 16px;
        color: var(--navy)
    }

    .ddc-solution span {
        display: block;
        color: #5a6875;
        font-size: 14px
    }
.ddc-footer-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 16px;
    margin-top: 18px
}

.ddc-footer-card {
    padding: 22px
}

    .ddc-footer-card h3 {
        margin: 0 0 10px;
        font-size: 20px;
        font-weight: 600;
        color: #000000;
    }

    .ddc-footer-card p {
        margin: 0;
        color: #5a6875
    }
/* CERT BADGES */
.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0
}

.cert-badge {
    background: var(--gray-light);
    border: 1px solid var(--gray-mid);
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 7px
}

    .cert-badge::before {
        content: '🏅';
        font-size: 15px
    }
/* INCENTIVES */
.incentives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
    gap: 16px;
    margin: 20px 0
}

.incentive-card {
    background: var(--navy);
    color: var(--white);
    border-radius: 6px;
    padding: 20px 18px;
    text-align: center
}

    .incentive-card .icon {
        font-size: 28px;
        margin-bottom: 10px
    }

    .incentive-card h4 {
        font-size: 15px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 8px;
        color: #eee
    }

    .incentive-card p {
        font-size: 14px;
        color: #aabbc4;
        line-height: 1.5
    }
/* PARTNER GRID */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(240px,1fr));
    gap: 16px;
    margin: 22px 0
}

.partner-item {
    background: var(--gray-light);
    border-radius: 6px;
    padding: 18px 16px;
    border-left: 3px solid #ee212b
}

    .partner-item h4 {
        font-family: var(--font-heading);
        font-size: 15px;
        font-weight: 700;
        color: var(--navy);
        text-transform: uppercase;
        margin-bottom: 7px
    }

    .partner-item p {
        font-size: 14px;
        color: var(--gray-text);
        line-height: 22px;
    }
/* DISCLAIMER LIST */
.disclaimer-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    counter-reset: disc
}

    .disclaimer-list li {
        padding: 12px 0 12px 38px;
        position: relative;
        border-bottom: 1px solid var(--gray-mid);
        font-size: 14px;
        line-height: 22px;
        color: #555;
        counter-increment: disc
    }

        .disclaimer-list li:last-child {
            border-bottom: none
        }

        .disclaimer-list li::before {
            content: counter(disc);
            position: absolute;
            left: 0;
            top: 12px;
            background: var(--navy);
            color: var(--white);
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 700
        }

        .disclaimer-list li strong {
            color: var(--navy)
        }

/* INFO BOX */
.info-box {
    background: #eaf4fb;
    border-left: 4px solid #2980b9;
    padding: 16px 20px;
    border-radius: 0 5px 5px 0;
    margin: 24px 0;
    font-size: 14px;
    color: #1a4060
}
[id] {
    scroll-margin-top: 180px;
}
