 :root {
    --cmi-primary: #6d51ff;
    --cmi-primary-dark:#4d4672;
    --cmi-accent: #16c79a;
    --cmi-dark: #0e1430;
    --cmi-muted: #6b7392;
    --cmi-soft: #f4f6fc;
}

* {
    font-family: 'Inter', sans-serif
}

h1,
h2,
h3,
h4,
h5,
.display-3,
.display-4 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
}

body {
    color: #1e2342;
    background: #fff
}
/* Section base */
.section {
    padding: 6rem 0
}

/* Highlight strip */
.strip {
    background: radial-gradient(800px 400px at 90% 10%, rgba(22, 199, 154, .25), transparent 60%), linear-gradient(135deg, #0e1430, #1a2160);
    color: #fff;
    padding: 3rem 0;
    border-radius: 0
}

.strip h3 {
    font-weight: 700;
    margin: 0;
    font-size: 1.8rem
}

.strip .strip-num {
    font-family: 'Poppins';
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: #16c79a
}

/* Feature cards */
 .eyebrow {
    color:#7c3aed;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size:1rem;
    margin-bottom: .75rem
}
.feature-card {
    background: #fff;
    border: 1px solid #ebeefa;
    border-radius: 18px;
    padding: 2rem;
    height: 100%;
    transition: .25s;
    position: relative;
    overflow: hidden
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -20px rgba(91, 61, 245, .35);
    border-color: transparent
}

.feature-card .icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(91, 61, 245, .12), rgba(22, 199, 154, .12));
   color: var(--cmi-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.25rem
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: .6rem;
    color: var(--cmi-dark)
}

.feature-card p {
    color: var(--cmi-muted);
    margin: 0;
    font-size: .95rem;
    line-height: 1.65
}

/* Showcase rows */
.showcase {
    padding: 5rem 0
}

.showcase .shadow {
    border-radius: 18px;
    box-shadow: 0 30px 60px -30px rgba(14, 20, 48, .35)
}

.showcase .tag {
    display: inline-block;
    background: rgba(22, 199, 154, .12);
    color: #0fa57f;
    font-weight: 600;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: .3rem .75rem;
    border-radius: 6px;
    margin-bottom: 1rem
}

.showcase h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--cmi-dark);
    margin-bottom: 1rem
}

.showcase p {
    color: var(--cmi-muted);
    font-size: 1.05rem;
    line-height: 1.7
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0
}

.check-list li {
    padding-left: 1.85rem;
    position: relative;
    margin-bottom: .65rem;
    color: #384063
}

.check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--cmi-accent);
    position: absolute;
    left: 0;
    top: 2px
}

/* CTA */
.cta {
    background: radial-gradient(800px 400px at 90% 10%, rgba(22, 199, 154, .25), transparent 60%), linear-gradient(135deg, #0e1430, #1a2160);
    color: #fff;
    border-radius: 24px;
    padding: 4rem;
    margin: 5rem 0;
    position: relative;
    overflow: hidden
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem
}

.cta p {
    color: #c5cae4;
    font-size: 1.1rem;
    margin-bottom: 2rem
}

.btn-accent {
    background: var(--primary);
    border: 0;
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    padding: .85rem 1.75rem
}

.btn-accent:hover {
    background: #11b287;
    color: #04211a
}

@media (max-width:767px) {
    .cta {
        padding: 2.5rem 1.5rem
    }

    .cta h2 {
        font-size: 1.8rem
    }
}