.home-intro-card,
.home-intro-card p,
.home-intro-card .intro-lead,
.home-intro-card .intro-note,
.home-segments-intro,
.segment-card,
.segment-card h5,
.segment-card li,
.segment-outcome-title {
    font-family: "Poppins", sans-serif;
}

.home-intro-card {
    margin: 8px auto 40px;
    padding: 32px 34px 28px;
    background: linear-gradient(180deg, #f9fcff 0%, #ffffff 100%);
    border: 1px solid #d9e8f2;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
}

.home-intro-card p {
    margin-bottom: 16px;
    color: #4a4a4a;
    line-height: 1.8;
}

.home-intro-card p:last-child {
    margin-bottom: 0;
}

.home-intro-card .intro-lead {
    font-size: 20px;
    line-height: 1.7;
    color: #303030;
}

.home-intro-card .intro-note {
    font-weight: 600;
    color: #225374;
}

.home-segments {
    margin: 10px 0 46px;
}

.home-segments .title-line {
    margin-bottom: 18px;
}

.home-segments-intro {
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
    color: #4a4a4a;
    line-height: 1.8;
}

.segment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.segment-card {
    height: 100%;
    padding: 26px 24px 22px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #dce8f0;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
}

.segment-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: #68ccf7;
    color: #fff;
    font-weight: 700;
}

.segment-card h5 {
    position: relative;
    margin-bottom: 14px;
    padding-bottom: 14px;
    line-height: 1.45;
}

.segment-card h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 3px;
    background: #68ccf7;
}

.segment-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.segment-card li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    color: #4a4a4a;
    line-height: 1.65;
}

.segment-card li:last-child {
    margin-bottom: 0;
}

.segment-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #68ccf7;
}

.segment-outcome {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #e6eef3;
}

.segment-outcome-title {
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #225374;
}

.segment-outcome ul li {
    color: #303030;
}

.home-workflow-ornament {
    position: absolute;
    width: 191px;
    height: 206px;
    background-image: url(/static/img/effect-1.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 6;
    pointer-events: none;
}

.home-workflow-ornament-top {
    top: -50px;
    left: 100px;
}

.home-workflow-ornament-bottom {
    bottom: -50px;
    right: 100px;
    transform: rotate(180deg);
}

.workflow-steps-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
    counter-reset: workflow-step;
}

.workflow-steps-list li {
    position: relative;
    margin-bottom: 22px;
    padding-left: 42px;
    font-size: 19px;
    line-height: 1.75;
    color: #4a4a4a;
}

.workflow-steps-list li:last-child {
    margin-bottom: 0;
}

.workflow-steps-list li::before {
    counter-increment: workflow-step;
    content: counter(workflow-step) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: #225374;
}

.workflow-steps-list a {
    color: #0098ff;
}

.workflow-steps-list a:hover {
    color: #68ccf7;
}

@media (max-width: 991px) {
    .segment-grid {
        grid-template-columns: 1fr;
    }

    .home-workflow-ornament {
        width: 150px;
        height: 162px;
    }

    .home-workflow-ornament-top {
        top: -82px;
        left: 72px;
    }

    .home-workflow-ornament-bottom {
        bottom: -64px;
        right: 72px;
    }

    .workflow-steps-list li {
        font-size: 18px;
        line-height: 1.7;
    }
}

@media (max-width: 767px) {
    .home-intro-card {
        padding: 24px 20px 20px;
        margin-bottom: 30px;
    }

    .home-intro-card .intro-lead {
        font-size: 18px;
    }

    .home-workflow-ornament {
        display: none;
    }

    .workflow-steps-list li {
        padding-left: 34px;
        margin-bottom: 18px;
        font-size: 17px;
    }
}
