/* Fonts */
@font-face {
    font-family: "Bricolage Grotesque";
    src: url("../fonts/bricolage-grotesque.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
}

:root {
    --cmi-primary: #1769ff;
    --cmi-primary-hover: #0d4fd6;
    --cmi-primary-pressed: #0a3fab;
    --cmi-navy: #111a2e;
    --cmi-navy-deep: #10182b;
    --cmi-lavender: #f5f8ff;
    --cmi-mist: #f7f8fc;
    --cmi-gold: #e6b948;
    --cmi-gold-soft: #ebdda3;
    --cmi-display: "Bricolage Grotesque", Arial, sans-serif;
    --cmi-sans: "Manrope", Arial, sans-serif;
}

            html {
                -webkit-text-size-adjust: 100%;
                scroll-behavior: smooth;
            }

            body {
                margin: 0;
                overflow-x: hidden;
                background: #fff;
                color: var(--cmi-navy);
                font-family: var(--cmi-sans);
                font-size: 16px;
            }

            h1,
            h2,
            h3,
            h4 {
                font-family: var(--cmi-display);
                letter-spacing: -0.025em;
            }

            a {
                color: inherit;
            }

            a:hover {
                color: inherit;
                text-decoration: none;
            }

            button {
                font: inherit;
            }

            :focus-visible {
                border-radius: 2px;
                outline: 3px solid var(--cmi-primary);
                outline-offset: 2px;
            }

            .cmi-btn {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
                border: 0;
                border-radius: 999px;
                font-weight: 600;
                letter-spacing: -0.02em;
                text-align: center;
                white-space: normal;
                transition:
                    color 0.2s ease,
                    background-color 0.2s ease,
                    border-color 0.2s ease,
                    transform 0.2s ease;
            }

            

            .cmi-btn-lg {
                min-height: 56px;
                padding: 1rem 1.75rem;
                font-size: 1rem;
            }

            .cmi-btn-primary {
                color: #fff;
                background: var(--cmi-primary);
                box-shadow: 0 10px 30px -12px rgba(23, 105, 255, 0.35);
            }

            .cmi-btn-primary:hover,
            .cmi-btn-primary:focus {
                color: #fff;
                background: var(--cmi-primary-hover);
                transform: translateY(-2px);
            }

            .cmi-btn-primary:active {
                background: var(--cmi-primary-pressed);
            }

            .cmi-btn-outline-light {
                border: 1px solid rgba(255, 255, 255, 0.35);
                color: #fff;
                background: transparent;
                -webkit-backdrop-filter: blur(8px);
                backdrop-filter: blur(8px);
            }

            .cmi-btn-outline-light:hover,
            .cmi-btn-outline-light:focus {
                color: #fff;
                background: rgba(255, 255, 255, 0.1);
            }

            .cmi-btn-outline-dark {
                border: 1px solid rgba(17, 26, 46, 0.3);
                color: var(--cmi-navy);
                background: transparent;
            }

            .cmi-btn-outline-dark:hover,
            .cmi-btn-outline-dark:focus {
                color: var(--cmi-navy);
                background: rgba(17, 26, 46, 0.07);
            }

            

            

            .eyebrow {
                margin: 0;
                color: var(--cmi-primary);
                font-family: var(--cmi-sans);
                font-size: 0.7rem;
                font-weight: 700;
                letter-spacing: 0.22em;
                text-transform: uppercase;
            }

            .rule-gold::before {
                display: block;
                width: 3.5rem;
                height: 2px;
                margin-bottom: 1.25rem;
                background: var(--cmi-gold);
                content: "";
            }

            @media (prefers-reduced-motion: reduce) {
                *,
                *::before,
                *::after {
                    scroll-behavior: auto !important;
                    transition-duration: 0.01ms !important;
                }
            }

            /* How It Works page — Bootstrap 4.6 layout with the reference styling reproduced. */
            .hiw-main {
                padding-top: 0;
            }
            .hiw-wrap {
                width: 100%;
                max-width: 1280px;
                margin: 0 auto;
                padding: 0 20px;
            }
            .section-white {
                background: #fff;
            }
            .section-mist {
                background: var(--cmi-mist);
            }
            .surface-navy {
                color: #fff;
                background: radial-gradient(120% 90% at 15% 0%, rgba(23, 105, 255, 0.22) 0%, rgba(23, 105, 255, 0) 60%),
                    var(--cmi-navy-deep);
            }
            .text-primary-cmi {
                color: var(--cmi-primary) !important;
            }
            .text-gold-cmi {
                color: var(--cmi-gold) !important;
            }
            .hiw-hero {
                padding: 56px 0 40px;
            }
            .hiw-copy-wide {
                max-width: 832px;
            }
            .hiw-h1,
            .hiw-h2,
            .section-head h2,
            .final-cta h2 {
                color: var(--cmi-navy);
                font-weight: 800;
            }
            .hiw-h1 {
                max-width: 820px;
                margin: 12px 0 0;
                font-size: 40px;
                line-height: 1.04;
            }
            .hiw-lead {
                max-width: 704px;
                margin: 24px 0 0;
                color: rgba(17, 26, 46, 0.75);
                font-size: 18px;
                line-height: 1.75;
            }
            .hiw-actions {
                display: flex;
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
                margin-top: 32px;
            }
            .hiw-actions .cmi-btn {
                width: 100%;
            }
            .hiw-section {
                padding: 64px 0;
            }
            .hiw-gap-row {
                row-gap: 40px;
            }
            .section-head {
                max-width: 736px;
            }
            .section-head .hiw-h2 {
                margin: 12px 0 0;
                font-size: 30px;
                line-height: 1.08;
            }
            .section-head > p:last-child {
                margin: 20px 0 0;
                color: rgba(17, 26, 46, 0.75);
                font-size: 18px;
                line-height: 1.75;
            }
            .section-head-dark h2 {
                color: #fff;
            }
            .section-head-dark > p:last-child {
                color: rgba(255, 255, 255, 0.75);
            }

            /* Step 1 */
            .lifecycle {
                position: relative;
                overflow: hidden;
                padding: 24px;
                border-radius: 28px;
            }
            .lifecycle-list {
                display: grid;
                gap: 20px;
                margin-top: 24px;
            }
            .lifecycle-row {
                display: grid;
                grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
                align-items: center;
                gap: 12px;
            }
            .life-from,
            .life-to {
                display: flex;
                min-height: 64px;
                align-items: center;
                justify-content: center;
                border-radius: 16px;
                padding: 12px 16px;
                text-align: center;
                font-family: var(--cmi-display);
                font-size: 16px;
                font-weight: 700;
            }
            .life-from {
                background: rgba(255, 255, 255, 0.08);
            }
            .life-to {
                flex-direction: column;
                background: linear-gradient(135deg, rgba(23, 105, 255, 0.45), rgba(23, 105, 255, 0.1));
                box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
            }
            .life-to small {
                display: block;
                margin-top: 4px;
                color: rgba(255, 255, 255, 0.65);
                font-family: var(--cmi-sans);
                font-size: 11px;
                font-weight: 400;
                line-height: 1.25;
            }
            .life-arrow {
                display: flex;
                flex-direction: column;
                align-items: center;
                color: var(--cmi-gold);
            }
            .life-arrow span {
                display: none;
                font-size: 10px;
                font-weight: 700;
                letter-spacing: 0.2em;
                text-transform: uppercase;
            }
            .life-arrow b {
                font-size: 24px;
                font-weight: 400;
                line-height: 1;
            }

            /* Step 2 */
            .campaign-row {
                margin-top: 48px;
                row-gap: 24px;
            }
            .campaign-card {
                overflow: hidden;
                border-radius: 28px;
            }
            .campaign-light {
                background: var(--cmi-lavender);
            }
            .campaign-dark {
                color: #fff;
            }
            .campaign-copy {
                padding: 24px;
            }
            .campaign-copy h3 {
                margin: 12px 0 0;
                font-size: 24px;
                font-weight: 800;
                line-height: 1.2;
            }
            .campaign-dark h3 {
                color: #fff;
            }
            .campaign-copy .offer-line {
                margin: 16px 0 0;
                color: rgba(17, 26, 46, 0.8);
                font-family: var(--cmi-display);
                font-size: 18px;
                line-height: 1.45;
            }
            .campaign-dark .offer-line {
                color: rgba(255, 255, 255, 0.8);
            }
            .campaign-note {
                margin: 16px 0 0;
                color: rgba(17, 26, 46, 0.65);
                font-size: 14px;
                font-weight: 600;
            }
            .campaign-dark .campaign-note {
                color: rgba(255, 255, 255, 0.65);
            }
            .campaign-images {
                display: grid;
                gap: 12px;
                padding: 0 24px 24px;
            }
            .campaign-images.two-up {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
            .campaign-images.three-up {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
            .campaign-images figure {
                margin: 0;
                min-width: 0;
            }
            .campaign-images img {
                display: block;
                width: 100%;
                aspect-ratio: 3/4;
                border-radius: 16px;
                object-fit: cover;
                box-shadow: 0 18px 45px -25px rgba(8, 12, 24, 0.7);
            }
            .campaign-images figcaption {
                margin-top: 10px;
                color: rgba(17, 26, 46, 0.75);
                font-size: 11.5px;
                font-weight: 700;
                line-height: 1.25;
                text-align: center;
            }
            .campaign-dark figcaption {
                color: rgba(255, 255, 255, 0.8);
            }

            /* Step 3 */
            .distribution-shell {
                margin-top: 40px;
                padding: 24px;
                border-radius: 32px;
                background: linear-gradient(#fff, rgba(245, 248, 255, 0.6));
            }
            .distribution-source {
                max-width: 448px;
                margin: 0 auto;
                padding: 20px 24px;
                border-radius: 16px;
                text-align: center;
            }
            .distribution-source h3 {
                margin: 8px 0 0;
                color: #fff;
                font-size: 20px;
                font-weight: 800;
            }
            .connector-line {
                width: 1px;
                height: 40px;
                margin: 24px auto;
                background: rgba(17, 26, 46, 0.2);
            }
            .distribution-grid {
                align-items: center;
                row-gap: 24px;
            }
            .distribution-grid > div {
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .phone-mock {
                width: 100%;
                max-width: 230px;
                padding: 12px;
                border-radius: 30px;
                color: #fff;
                background: var(--cmi-navy-deep);
                box-shadow:
                    0 35px 70px -35px rgba(8, 12, 24, 0.8),
                    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
            }
            .phone-screen {
                padding: 12px;
                border-radius: 22px;
                background: #fff;
            }
            .phone-notch {
                display: block;
                width: 40px;
                height: 4px;
                margin: 0 auto 12px;
                border-radius: 4px;
                background: rgba(17, 26, 46, 0.15);
            }
            .sms {
                padding: 12px;
                border-radius: 16px;
                color: var(--cmi-navy);
                font-size: 12.5px;
                line-height: 1.3;
            }
            .sms-in {
                border-bottom-left-radius: 4px;
                background: var(--cmi-mist);
            }
            .sms-in b {
                display: block;
                margin-top: 4px;
                color: var(--cmi-primary);
                font-weight: 600;
            }
            .sms-out {
                width: 70%;
                margin: 8px 0 0 auto;
                border-bottom-right-radius: 4px;
                color: #fff;
                background: var(--cmi-primary);
            }
            .phone-mock > p,
            .channel-label {
                margin: 12px 0 4px;
                color: rgba(255, 255, 255, 0.6);
                font-size: 10.5px;
                font-weight: 700;
                letter-spacing: 0.18em;
                text-align: center;
                text-transform: uppercase;
            }
            .channel-card {
                width: 100%;
                overflow: hidden;
                border-radius: 20px;
                background: #fff;
                box-shadow:
                    0 25px 60px -35px rgba(8, 12, 24, 0.6),
                    inset 0 0 0 1px rgba(17, 26, 46, 0.08);
            }
            .channel-card .channel-label {
                color: rgba(17, 26, 46, 0.45);
            }
            .browser-top {
                display: flex;
                height: 45px;
                align-items: center;
                gap: 8px;
                padding: 0 16px;
                border-bottom: 1px solid rgba(17, 26, 46, 0.08);
            }
            .browser-top i {
                width: 10px;
                height: 10px;
                border-radius: 50%;
                background: rgba(17, 26, 46, 0.15);
            }
            .browser-top span {
                margin-left: 8px;
                color: rgba(17, 26, 46, 0.6);
                font-size: 11.5px;
                font-weight: 600;
            }
            .email-body {
                padding: 16px;
            }
            .skeleton {
                display: block;
                width: 96px;
                height: 12px;
                border-radius: 4px;
                background: rgba(17, 26, 46, 0.1);
            }
            .email-offer {
                margin-top: 12px;
                padding: 16px;
                border-radius: 12px;
                background: var(--cmi-lavender);
            }
            .email-offer h4 {
                margin: 0;
                font-size: 14px;
                font-weight: 800;
            }
            .email-offer p {
                margin: 4px 0 0;
                color: rgba(17, 26, 46, 0.65);
                font-size: 12px;
            }
            .email-offer b {
                display: inline-block;
                margin-top: 12px;
                padding: 6px 12px;
                border-radius: 999px;
                color: #fff;
                background: var(--cmi-primary);
                font-size: 11px;
            }
            .web-body {
                position: relative;
                height: 168px;
                padding: 16px;
                background: var(--cmi-mist);
            }
            .web-body .skeleton {
                height: 8px;
                margin-bottom: 8px;
                background: rgba(17, 26, 46, 0.08);
            }
            .web-body .wide {
                width: 112px;
                height: 10px;
            }
            .web-body .short {
                width: 128px;
            }
            .web-offer {
                position: absolute;
                right: 12px;
                bottom: 12px;
                left: 12px;
                padding: 12px;
                border-radius: 12px;
                color: #fff;
                background: var(--cmi-navy-deep);
            }
            .web-offer b {
                display: block;
                font-size: 12.5px;
                line-height: 1.25;
            }
            .web-offer span {
                display: inline-block;
                margin-top: 8px;
                padding: 4px 12px;
                border-radius: 999px;
                color: var(--cmi-navy-deep);
                background: var(--cmi-gold);
                font-size: 11px;
                font-weight: 700;
            }
            .pdf-mock {
                padding: 20px;
            }
            .pdf-certificate {
                padding: 16px;
                border: 2px solid rgba(230, 185, 72, 0.6);
                border-radius: 12px;
                text-align: center;
                background: var(--cmi-mist);
            }
            .pdf-certificate h4 {
                margin: 8px 0 0;
                font-size: 16px;
                font-weight: 800;
            }
            .pdf-certificate > span {
                display: block;
                width: 64px;
                height: 1px;
                margin: 12px auto 0;
                background: var(--cmi-gold);
            }
            .pdf-certificate small {
                display: block;
                margin-top: 8px;
                color: rgba(17, 26, 46, 0.55);
                font-size: 11px;
            }
            .qr-mock {
                padding: 20px;
                text-align: center;
            }
            .qr-mock h4 {
                margin: 0;
                font-size: 14px;
                font-weight: 800;
            }
            .qr-code {
                width: 96px;
                height: 96px;
                margin: 12px auto 0;
                border-radius: 8px;
                background-image: repeating-conic-gradient(var(--cmi-navy) 0 25%, #fff 0 50%);
                background-size: 16px 16px;
            }
            .automation-mock {
                width: 100%;
                padding: 20px;
                border-radius: 20px;
                color: #fff;
                background: var(--cmi-navy-deep);
                box-shadow: 0 25px 60px -35px rgba(8, 12, 24, 0.7);
            }
            .automation-mock ul {
                display: grid;
                gap: 8px;
                margin: 16px 0 0;
                padding: 0;
                list-style: none;
            }
            .automation-mock li {
                display: flex;
                gap: 8px;
                padding: 8px 12px;
                border-radius: 8px;
                color: var(--cmi-gold);
                background: rgba(255, 255, 255, 0.08);
                font-size: 13px;
                font-weight: 600;
            }
            .automation-mock li span {
                color: #fff;
            }

            /* Step 4 */
            .personalization-grid {
                display: grid;
                grid-template-columns: minmax(0, 1fr);
                align-items: center;
                gap: 24px;
                margin-top: 48px;
            }
            .personalization-grid > div > .eyebrow {
                margin: 0 0 12px;
            }
            .label-before {
                color: rgba(17, 26, 46, 0.45);
            }
            .generic-cert,
            .branded-cert {
                position: relative;
                overflow: hidden;
                width: 100%;
                aspect-ratio: 4/3;
                border-radius: 24px;
            }
            .generic-cert {
                padding: 24px;
                background: #fff;
                box-shadow: inset 0 0 0 1px rgba(17, 26, 46, 0.1);
            }
            .logo-placeholder {
                width: 96px;
                height: 44px;
                border: 1px dashed rgba(17, 26, 46, 0.25);
                border-radius: 6px;
            }
            .generic-copy {
                position: absolute;
                right: 24px;
                bottom: 24px;
                left: 24px;
            }
            .generic-copy .eyebrow {
                color: rgba(17, 26, 46, 0.4);
            }
            .generic-copy h3 {
                margin: 4px 0 0;
                color: rgba(17, 26, 46, 0.7);
                font-size: 24px;
                font-weight: 800;
            }
            .generic-copy i {
                display: block;
                width: 80px;
                height: 1px;
                margin-top: 12px;
                background: rgba(17, 26, 46, 0.15);
            }
            .generic-copy span {
                display: block;
                margin-top: 12px;
                color: rgba(17, 26, 46, 0.45);
                font-size: 14px;
            }
            .transform-arrow {
                display: flex;
                width: 48px;
                height: 48px;
                align-items: center;
                justify-content: center;
                margin: 0 auto;
                border-radius: 50%;
                color: var(--cmi-navy-deep);
                background: var(--cmi-gold);
                font-size: 24px;
                transform: rotate(90deg);
            }
            .branded-cert {
                margin: 0;
                box-shadow:
                    0 40px 100px -45px rgba(8, 12, 24, 0.85),
                    inset 0 0 0 1px rgba(230, 185, 72, 0.45);
            }
            .branded-cert > img {
                position: absolute;
                inset: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            .cert-overlay {
                position: absolute;
                inset: 0;
                background: linear-gradient(to top, rgba(16, 24, 43, 1), rgba(16, 24, 43, 0.7), rgba(16, 24, 43, 0.15));
            }
            .branded-cert figcaption {
                position: relative;
                display: flex;
                height: 100%;
                flex-direction: column;
                padding: 24px;
                color: #fff;
            }
            .cert-brand {
                display: flex;
                align-items: center;
                gap: 12px;
                font-size: 14px;
            }
            .cert-brand > b {
                display: flex;
                width: 44px;
                height: 44px;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                color: var(--cmi-navy-deep);
                background: var(--cmi-gold);
                font-family: var(--cmi-display);
                font-size: 14px;
                font-style: normal;
            }
            .cert-brand > span {
                font-weight: 600;
            }
            .cert-brand em {
                display: none;
                margin-left: auto;
                padding: 4px 12px;
                border: 1px solid rgba(230, 185, 72, 0.5);
                border-radius: 999px;
                color: var(--cmi-gold);
                font-size: 9.5px;
                font-style: normal;
                font-weight: 700;
                letter-spacing: 0.18em;
                text-transform: uppercase;
            }
            .cert-copy {
                margin-top: auto;
            }
            .cert-copy h3 {
                margin: 4px 0 0;
                color: #fff;
                font-size: 24px;
                font-weight: 800;
            }
            .cert-copy i {
                display: block;
                width: 80px;
                height: 1px;
                margin-top: 12px;
                background: var(--cmi-gold);
            }
            .cert-copy h4 {
                margin: 12px 0 0;
                color: #fff;
                font-size: 18px;
                font-weight: 700;
            }
            .cert-copy > span {
                display: block;
                max-width: 384px;
                margin-top: 8px;
                color: rgba(255, 255, 255, 0.75);
                font-size: 14px;
                line-height: 1.7;
            }
            .personal-checks {
                display: grid;
                gap: 8px;
                margin: 16px 0 0;
                padding: 0;
                list-style: none;
            }
            .personal-checks li {
                display: flex;
                gap: 8px;
                padding: 8px 12px;
                border-radius: 12px;
                color: var(--cmi-gold);
                background: var(--cmi-mist);
                font-size: 13px;
                font-weight: 600;
            }
            .personal-checks span {
                color: rgba(17, 26, 46, 0.8);
            }

            /* Step 5 */
            .redemption-section {
                padding-top: 64px;
                padding-bottom: 64px;
            }
            .journey-grid {
                display: grid;
                grid-template-columns: 1fr;
                gap: 20px;
                margin-top: 48px;
            }
            .journey-card {
                display: flex;
                min-width: 0;
                flex-direction: column;
                padding: 20px;
                border-radius: 22px;
                background: rgba(255, 255, 255, 0.06);
                box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
            }
            .journey-card > h3 {
                margin: 8px 0 0;
                color: #fff;
                font-size: 18px;
                font-weight: 700;
                line-height: 1.3;
            }
            .journey-card > .preview-card {
                margin-top: 20px;
            }
            .journey-arrow {
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--cmi-gold);
                font-size: 28px;
                transform: rotate(90deg);
            }
            .preview-card {
                overflow: hidden;
                border-radius: 12px;
                color: var(--cmi-navy);
                background: #fff;
                box-shadow: 0 25px 60px -40px rgba(0, 0, 0, 0.8);
            }
            .mini-brand {
                display: flex;
                align-items: center;
                gap: 12px;
                padding: 10px 12px;
                border-bottom: 1px solid rgba(17, 26, 46, 0.1);
                background: #fff;
            }
            .mini-brand.dark {
                color: #fff;
                border: 0;
                background: var(--cmi-navy-deep);
            }
            .mini-brand > b {
                display: flex;
                width: 32px;
                height: 32px;
                flex: 0 0 32px;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                color: var(--cmi-gold);
                background: var(--cmi-navy-deep);
                font-family: var(--cmi-display);
                font-size: 10px;
            }
            .mini-brand.dark > b {
                color: var(--cmi-navy-deep);
                background: var(--cmi-gold);
            }
            .mini-brand span {
                min-width: 0;
            }
            .mini-brand strong,
            .mini-brand small {
                display: block;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .mini-brand strong {
                font-size: 11px;
            }
            .mini-brand small {
                margin-top: 2px;
                color: rgba(17, 26, 46, 0.5);
                font-size: 9px;
            }
            .mini-brand.dark small {
                color: rgba(255, 255, 255, 0.55);
            }
            .ecert-photo {
                position: relative;
                height: 112px;
                overflow: hidden;
            }
            .ecert-photo img,
            .landing-photo img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            .ecert-photo > span,
            .landing-photo > span {
                position: absolute;
                inset: 0;
                background: linear-gradient(to top, rgba(16, 24, 43, 0.85), rgba(16, 24, 43, 0));
            }
            .ecert-photo p {
                position: absolute;
                right: 12px;
                bottom: 8px;
                left: 12px;
                margin: 0;
                color: #fff;
                font-family: var(--cmi-display);
                font-size: 14px;
                font-weight: 800;
            }
            .ecert-photo p b {
                display: block;
                color: var(--cmi-gold);
                font-family: var(--cmi-sans);
                font-size: 9.5px;
                letter-spacing: 0.2em;
                text-transform: uppercase;
            }
            .preview-body {
                padding: 16px;
            }
            .mini-blue {
                margin: 0;
                color: var(--cmi-primary);
                font-size: 10px;
                font-weight: 700;
                letter-spacing: 0.18em;
                text-transform: uppercase;
            }
            .preview-body h4 {
                margin: 4px 0 0;
                font-size: 17px;
                font-weight: 800;
            }
            .preview-body > span {
                display: block;
                margin-top: 8px;
                color: rgba(17, 26, 46, 0.6);
                font-size: 12px;
                line-height: 1.6;
            }
            .preview-button {
                display: block;
                margin-top: 12px;
                padding: 8px 16px;
                border-radius: 999px;
                color: #fff;
                background: var(--cmi-primary);
                font-size: 12px;
                font-weight: 600;
                text-align: center;
            }
            .activation .preview-body > h4 {
                margin: 0;
                font-size: 14px;
            }
            .activation .preview-body > span {
                margin-top: 4px;
                font-size: 11.5px;
            }
            .activation label {
                display: block;
                margin: 12px 0 0;
                color: rgba(17, 26, 46, 0.45);
                font-size: 9.5px;
                font-weight: 700;
                letter-spacing: 0.16em;
                text-transform: uppercase;
            }
            .fake-input {
                margin-top: 4px;
                padding: 8px 12px;
                border-radius: 6px;
                color: rgba(17, 26, 46, 0.7);
                background: var(--cmi-mist);
                font-size: 12px;
            }
            .fake-input.code {
                font-family: monospace;
                letter-spacing: 0.05em;
            }
            .activation small {
                display: block;
                margin-top: 8px;
                color: rgba(17, 26, 46, 0.4);
                font-size: 9.5px;
                text-align: center;
            }
            .portal-steps {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
                margin-top: 12px;
            }
            .portal-steps i {
                padding: 8px 2px;
                border-radius: 8px;
                color: rgba(17, 26, 46, 0.7);
                background: var(--cmi-mist);
                font-size: 10.5px;
                font-style: normal;
                font-weight: 600;
                text-align: center;
            }
            .landing-panel {
                margin-top: 40px;
                padding: 20px;
                border-radius: 26px;
                background: rgba(255, 255, 255, 0.06);
                box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
            }
            .landing-panel h3 {
                margin: 8px 0 0;
                color: #fff;
                font-size: 24px;
                font-weight: 800;
                line-height: 1.25;
            }
            .landing-panel .col-lg-5 > p:last-child {
                margin: 12px 0 0;
                color: rgba(255, 255, 255, 0.7);
                font-size: 15px;
                line-height: 1.7;
            }
            .landing-preview {
                margin-top: 24px;
            }
            .landing-photo {
                position: relative;
                height: 192px;
                overflow: hidden;
            }
            .landing-photo > div {
                position: absolute;
                right: 16px;
                bottom: 12px;
                left: 16px;
                color: #fff;
            }
            .landing-photo p {
                margin: 0;
                color: var(--cmi-gold);
                font-size: 9.5px;
                font-weight: 700;
                letter-spacing: 0.22em;
                text-transform: uppercase;
            }
            .landing-photo h4 {
                margin: 4px 0 0;
                color: #fff;
                font-size: 20px;
                font-weight: 800;
            }
            .landing-photo b {
                display: inline-block;
                margin-top: 8px;
                padding: 4px 10px;
                border: 1px solid rgba(255, 255, 255, 0.2);
                border-radius: 999px;
                background: rgba(16, 24, 43, 0.65);
                font-size: 10.5px;
            }
            .landing-steps {
                display: grid;
                gap: 8px;
                padding: 16px;
            }
            .landing-steps span {
                padding: 8px 12px;
                border-radius: 8px;
                color: rgba(17, 26, 46, 0.7);
                background: var(--cmi-mist);
                font-size: 11px;
                font-weight: 600;
            }

            /* Step 6 */
            .fulfillment-row {
                margin-top: 48px;
                row-gap: 24px;
            }
            .fulfillment-card {
                width: 100%;
                overflow: hidden;
                border-radius: 26px;
                background: #fff;
                box-shadow:
                    0 30px 70px -45px rgba(8, 12, 24, 0.55),
                    inset 0 0 0 1px rgba(17, 26, 46, 0.08);
            }
            .fulfillment-card > img {
                display: block;
                width: 100%;
                aspect-ratio: 16/10;
                object-fit: cover;
            }
            .fulfillment-card > div {
                padding: 24px;
            }
            .fulfillment-card h3 {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                gap: 4px 8px;
                margin: 12px 0 0;
                font-size: 16px;
                font-weight: 700;
                line-height: 1.5;
            }
            .fulfillment-card h3 span {
                color: var(--cmi-gold);
            }
            .fulfillment-card div > p:last-child {
                margin: 12px 0 0;
                color: rgba(17, 26, 46, 0.7);
                font-size: 15px;
                line-height: 1.7;
            }

            /* Recap, explore and final CTA */
            .recap-section {
                padding: 56px 0;
            }
            .recap-card {
                overflow: hidden;
                padding: 40px 24px;
                border-radius: 28px;
            }
            .recap-card h2 {
                margin: 0;
                color: #fff;
                font-size: 30px;
                font-weight: 800;
                text-align: center;
            }
            .recap-card > i {
                display: block;
                width: 96px;
                height: 1px;
                margin: 16px auto 0;
                background: var(--cmi-gold);
            }
            .recap-card ol {
                display: flex;
                flex-direction: column;
                gap: 12px;
                margin: 36px 0 0;
                padding: 0;
                list-style: none;
            }
            .recap-card li {
                flex: 1;
                padding: 12px 16px;
                border-radius: 999px;
                color: #fff;
                background: rgba(255, 255, 255, 0.08);
                box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
                font-family: var(--cmi-display);
                font-size: 14px;
                font-weight: 700;
                text-align: center;
            }
            .recap-card ol b {
                color: var(--cmi-gold);
                font-size: 18px;
                font-weight: 400;
                text-align: center;
                transform: rotate(90deg);
            }
            .recap-card > span {
                display: none;
                height: 1px;
                margin-top: 28px;
                background: linear-gradient(90deg, transparent, rgba(230, 185, 72, 0.6), transparent);
            }
            .explore-section {
                padding: 56px 0;
            }
            .centered-rule {
                max-width: 640px;
                margin: 12px auto 0;
            }
            .centered-rule::before {
                margin-right: auto;
                margin-left: auto;
            }
            .explore-copy {
                max-width: 704px;
                margin: 20px auto 0;
                color: rgba(17, 26, 46, 0.75);
                font-size: 18px;
                line-height: 1.75;
            }
            .explore-grid {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 16px;
                margin-top: 40px;
                text-align: left;
            }
            .explore-grid figure {
                min-width: 0;
                margin: 0;
            }
            .explore-grid img {
                display: block;
                width: 100%;
                aspect-ratio: 4/3;
                border-radius: 20px;
                object-fit: cover;
                box-shadow:
                    0 20px 50px -30px rgba(8, 12, 24, 0.45),
                    inset 0 0 0 1px rgba(17, 26, 46, 0.08);
                transition: transform 0.5s ease;
            }
            .explore-grid img:hover {
                transform: scale(1.035);
            }
            .explore-grid figcaption {
                margin-top: 12px;
                font-family: var(--cmi-display);
                font-size: 14px;
                font-weight: 700;
            }
            .explore-button {
                margin-top: 40px;
            }
            .final-cta {
                padding: 80px 0;
            }
            .final-cta h2 {
                max-width: 672px;
                margin: 0 auto;
                color: #fff;
                font-size: 30px;
                line-height: 1.06;
            }
            .final-cta p {
                max-width: 704px;
                margin: 24px auto 0;
                color: rgba(255, 255, 255, 0.75);
                font-size: 18px;
                line-height: 1.75;
            }

            @media (min-width: 576px) {
                .hiw-hero {
                    padding: 80px 0 56px;
                }
                .hiw-h1 {
                    font-size: 60px;
                }
                .hiw-lead {
                    font-size: 20px;
                }
                .hiw-actions {
                    flex-direction: row;
                    align-items: center;
                }
                .hiw-actions .cmi-btn {
                    width: auto;
                }
                .hiw-section {
                    padding: 96px 0;
                }
                .section-head .hiw-h2 {
                    font-size: 42px;
                }
                .lifecycle {
                    padding: 36px;
                }
                .life-from,
                .life-to {
                    font-size: 18px;
                }
                .life-arrow span {
                    display: block;
                }
                .campaign-copy {
                    padding: 36px;
                }
                .campaign-copy h3 {
                    font-size: 30px;
                }
                .campaign-copy .offer-line {
                    font-size: 20px;
                }
                .campaign-images {
                    padding: 0 36px 36px;
                }
                .campaign-images figcaption {
                    font-size: 12.8px;
                }
                .distribution-shell {
                    padding: 40px;
                }
                .generic-cert {
                    padding: 36px;
                }
                .generic-copy {
                    right: 36px;
                    bottom: 36px;
                    left: 36px;
                }
                .generic-copy h3 {
                    font-size: 30px;
                }
                .cert-brand em {
                    display: inline-block;
                }
                .branded-cert figcaption {
                    padding: 32px;
                }
                .cert-copy h3 {
                    font-size: 30px;
                }
                .cert-copy h4 {
                    font-size: 20px;
                }
                .personal-checks {
                    grid-template-columns: repeat(3, 1fr);
                }
                .journey-card {
                    padding: 24px;
                }
                .landing-panel {
                    padding: 32px;
                }
                .landing-steps {
                    grid-template-columns: repeat(3, 1fr);
                }
                .fulfillment-card > div {
                    padding: 28px;
                }
                .recap-section,
                .explore-section {
                    padding: 80px 0;
                }
                .recap-card {
                    padding: 56px 48px;
                }
                .recap-card h2 {
                    font-size: 44px;
                    line-height: 1.05;
                }
                .recap-card ol {
                    flex-direction: row;
                    align-items: center;
                }
                .recap-card ol b {
                    transform: none;
                }
                .recap-card > span {
                    display: block;
                }
                .explore-grid {
                    grid-template-columns: repeat(3, minmax(0, 1fr));
                }
                .explore-grid figcaption {
                    font-size: 16px;
                }
                .final-cta {
                    padding: 112px 0;
                }
                .final-cta h2 {
                    font-size: 48px;
                }
            }

            @media (min-width: 992px) {
                .hiw-main {
                    padding-top: 0; }
                .hiw-wrap {
                    padding-right: 40px;
                    padding-left: 40px;
                }
                .campaign-row {
                    margin-right: -16px;
                    margin-left: -16px;
                }
                .campaign-row > [class*="col-"] {
                    padding-right: 16px;
                    padding-left: 16px;
                }
                .distribution-grid {
                    margin-right: -12px;
                    margin-left: -12px;
                }
                .distribution-grid > div {
                    padding-right: 12px;
                    padding-left: 12px;
                }
                .personalization-grid {
                    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.15fr);
                    gap: 32px;
                }
                .transform-arrow {
                    transform: none;
                }
                .journey-grid {
                    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
                    align-items: stretch;
                    gap: 12px;
                }
                .journey-arrow {
                    transform: none;
                }
                .landing-preview {
                    margin-top: 0;
                }
                .fulfillment-row {
                    margin-right: -16px;
                    margin-left: -16px;
                }
                .fulfillment-row > [class*="col-"] {
                    padding-right: 16px;
                    padding-left: 16px;
                }
                .explore-grid {
                    grid-template-columns: repeat(5, minmax(0, 1fr));
                    gap: 20px;
                }
            }

            @media (max-width: 575.98px) {
                .hiw-h1 {
                    font-size: 36px;
                }
                .campaign-images.three-up figcaption {
                    font-size: 9.5px;
                }
                .personalization-grid .branded-cert {
                    min-height: 340px;
                    aspect-ratio: auto;
                }
                .distribution-shell {
                    margin-right: -8px;
                    margin-left: -8px;
                    padding-right: 16px;
                    padding-left: 16px;
                }
            }
