:root {
    --brand-blue: #0a70b8;
    --brand-blue-dark: #084f86;
    --brand-blue-deep: #06365d;
    --brand-red: #d71d46;
    --brand-red-dark: #b91638;
    --brand-white: #ffffff;
    --ink: #142033;
    --muted: #5f6d7d;
    --soft: #f3f7fb;
    --line: #dce6ef;
    --shadow-sm: 0 10px 30px rgba(15, 52, 85, .08);
    --shadow-lg: 0 28px 80px rgba(7, 48, 82, .18);
    --radius-lg: 24px;
    --radius-md: 16px;
}

html {
    scroll-padding-top: 92px;
    scroll-behavior: smooth;
}

body {
    color: var(--ink);
    background: var(--brand-white);
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    color: #fff;
    background: var(--brand-red);
}

a {
    color: var(--brand-blue);
    text-underline-offset: .16em;
}

a:hover {
    color: var(--brand-blue-dark);
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 2000;
    padding: .65rem 1rem;
    color: #fff;
    background: var(--brand-blue-deep);
    border-radius: 8px;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    z-index: 1030;
    border-bottom: 1px solid rgba(10, 112, 184, .12);
    box-shadow: 0 5px 22px rgba(12, 46, 74, .04);
}

.navbar {
    min-height: 76px;
}

.navbar-brand img {
    width: min(250px, 58vw);
    height: auto;
    object-fit: contain;
}

.navbar .nav-link {
    position: relative;
    padding-inline: .8rem !important;
    color: var(--ink);
    font-weight: 600;
}

.navbar .nav-link::after {
    position: absolute;
    right: .8rem;
    bottom: .15rem;
    left: .8rem;
    height: 2px;
    content: "";
    background: var(--brand-red);
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link:focus-visible::after {
    transform: scaleX(1);
}

.header-phone,
.header-email {
    display: block;
    text-decoration: none;
}

.header-phone {
    color: var(--ink);
    font-size: .96rem;
    font-weight: 800;
}

.header-email {
    color: var(--muted);
    font-size: .78rem;
}

.btn {
    --bs-btn-border-radius: 999px;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-brand {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--brand-red);
    --bs-btn-border-color: var(--brand-red);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--brand-red-dark);
    --bs-btn-hover-border-color: var(--brand-red-dark);
    --bs-btn-focus-shadow-rgb: 215, 29, 70;
    box-shadow: 0 10px 22px rgba(215, 29, 70, .2);
}

.btn-outline-brand {
    --bs-btn-color: var(--brand-blue);
    --bs-btn-border-color: var(--brand-blue);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--brand-blue);
    --bs-btn-hover-border-color: var(--brand-blue);
    --bs-btn-focus-shadow-rgb: 10, 112, 184;
    padding-inline: 1.35rem;
}

.hero {
    position: relative;
    min-height: 760px;
    padding: 96px 0 88px;
    color: #fff;
    background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, .15), transparent 32%),
    linear-gradient(135deg, var(--brand-blue-deep) 0%, var(--brand-blue) 68%, #0d84ca 100%);
    isolation: isolate;
}

.hero::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 68px;
    content: "";
    background: #fff;
    clip-path: polygon(0 100%, 100% 35%, 100% 100%);
    z-index: -1;
}

.hero-shape {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
}

.hero-shape-one {
    top: 5%;
    right: -180px;
    width: 560px;
    height: 560px;
    box-shadow: inset 0 0 0 80px rgba(255, 255, 255, .035);
}

.hero-shape-two {
    bottom: 8%;
    left: -120px;
    width: 320px;
    height: 320px;
    border-color: rgba(215, 29, 70, .24);
    box-shadow: inset 0 0 0 54px rgba(215, 29, 70, .08);
}

.hero-copy {
    max-width: 760px;
}

.eyebrow,
.form-kicker,
.section-label,
.consultation-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: 1rem;
    color: var(--brand-red);
    font-size: .77rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.eyebrow {
    padding: .48rem .8rem;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    backdrop-filter: blur(12px);
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 1.4rem;
    font-size: clamp(2.7rem, 6vw, 5.25rem);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -.045em;
}

.hero-lead {
    max-width: 720px;
    margin-bottom: 1.3rem;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    line-height: 1.55;
}

.hero-point {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: rgba(255, 255, 255, .93);
    font-weight: 600;
}

.point-icon {
    display: grid;
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    color: #fff;
    background: var(--brand-red);
    border-radius: 50%;
    place-items: center;
    font-size: .8rem;
    font-weight: 900;
    box-shadow: 0 6px 15px rgba(215, 29, 70, .25);
}

.lead-form-card {
    position: relative;
    padding: clamp(1.4rem, 4vw, 2.2rem);
    color: var(--ink);
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.lead-form-card::before {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 52px;
    height: 6px;
    content: "";
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-red));
    border-radius: 999px;
}

.form-kicker {
    margin-bottom: .65rem;
    font-size: .68rem;
}

.form-label {
    margin-bottom: .42rem;
    color: var(--ink);
    font-size: .88rem;
    font-weight: 700;
}

.form-control,
.form-select {
    border-color: #d8e2eb;
    border-radius: 12px;
    box-shadow: none;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(10, 112, 184, .75);
    box-shadow: 0 0 0 .22rem rgba(10, 112, 184, .12);
}

.form-control-lg,
.form-select-lg {
    min-height: 54px;
    font-size: 1rem;
}

.form-check-input:checked {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
}

.form-note {
    color: #778495;
    font-size: .74rem;
    line-height: 1.45;
}

.section {
    padding: 96px 0;
}

.section-soft {
    background: var(--soft);
}

.section-heading {
    max-width: 820px;
}

.section-label {
    margin-bottom: .7rem;
}

.section-title {
    margin-bottom: 1.2rem;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.035em;
}

.section-subtitle {
    color: var(--muted);
    font-size: 1.08rem;
}

.about-copy {
    color: #3f4c5b;
    font-size: 1.03rem;
}

.stats-panel {
    padding: clamp(1rem, 3vw, 1.5rem);
    background: linear-gradient(145deg, #f8fbfe, #e9f3fb);
    border: 1px solid #d9e8f3;
    border-radius: var(--radius-lg);
}

.stat-card {
    display: flex;
    min-height: 150px;
    flex-direction: column;
    justify-content: center;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid rgba(10, 112, 184, .08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.stat-card strong {
    color: var(--brand-blue);
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1;
}

.stat-card span {
    margin-top: .7rem;
    color: var(--muted);
    font-weight: 600;
}

.responsibility-box {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.35rem;
    color: #fff;
    background: var(--brand-blue-deep);
    border-radius: var(--radius-md);
}

.responsibility-box p {
    color: rgba(255, 255, 255, .73);
}

.responsibility-icon {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    background: var(--brand-red);
    border-radius: 50%;
    place-items: center;
    font-weight: 900;
}

.benefit-card {
    padding: 1.65rem;
    background: #fff;
    border: 1px solid rgba(10, 112, 184, .1);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 40px rgba(16, 58, 94, .06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.benefit-card:hover {
    border-color: rgba(10, 112, 184, .28);
    box-shadow: 0 20px 50px rgba(16, 58, 94, .12);
    transform: translateY(-5px);
}

.benefit-card img {
    width: 58px;
    height: 58px;
    margin-bottom: 1.25rem;
    object-fit: contain;
}

.benefit-card h3 {
    margin-bottom: .7rem;
    font-size: 1.2rem;
    font-weight: 800;
}

.benefit-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.pricing-shell {
    padding: clamp(1rem, 3vw, 1.65rem);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.pricing-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.pricing-tabs .nav-link {
    color: var(--brand-blue-dark);
    background: #edf5fb;
    border-radius: 999px;
    font-weight: 800;
}

.pricing-tabs .nav-link.active {
    color: #fff;
    background: var(--brand-blue);
    box-shadow: 0 8px 20px rgba(10, 112, 184, .22);
}

.pricing-table {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
}

.pricing-table > :not(caption) > * > * {
    padding: 1.05rem 1.2rem;
    border-bottom-color: var(--line);
}

.pricing-table thead th {
    color: var(--brand-blue-deep);
    background: #eaf3fa;
    font-size: .92rem;
}

.pricing-table tbody tr:nth-child(even) td {
    background: #fafcfe;
}

.pricing-table td:last-child,
.pricing-table th:last-child {
    width: 34%;
    min-width: 190px;
}

.pricing-table strong {
    color: var(--brand-red);
    font-size: 1.12rem;
}

.pricing-disclaimer {
    color: #788695;
    font-size: .84rem;
}

.section-blue {
    color: #fff;
    background: linear-gradient(135deg, var(--brand-blue-deep), var(--brand-blue));
}

.section-label-light {
    color: #9ed8ff;
}

.service-box,
.additional-box {
    padding: clamp(1.5rem, 4vw, 2.3rem);
    border-radius: var(--radius-lg);
}

.service-box {
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(8px);
}

.check-list {
    display: grid;
    gap: 1rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 2.2rem;
    color: rgba(255, 255, 255, .87);
}

.check-list li::before {
    position: absolute;
    top: .04rem;
    left: 0;
    display: grid;
    width: 1.45rem;
    height: 1.45rem;
    content: "✓";
    color: #fff;
    background: var(--brand-red);
    border-radius: 50%;
    place-items: center;
    font-size: .75rem;
    font-weight: 900;
}

.additional-box {
    color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow-lg);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
}

.package-chip {
    display: flex;
    min-height: 78px;
    align-items: center;
    padding: 1rem;
    color: var(--brand-blue-deep);
    background: var(--soft);
    border: 1px solid #dbe8f2;
    border-radius: 13px;
    font-weight: 750;
}

.package-chip-wide {
    grid-column: 1 / -1;
}

.consultation-section {
    position: relative;
    overflow: hidden;
}

.consultation-section::before {
    position: absolute;
    top: 24px;
    right: -70px;
    width: 280px;
    height: 280px;
    content: "";
    background: rgba(215, 29, 70, .08);
    border-radius: 50%;
}

.consultation-wrap {
    position: relative;
    padding: clamp(1.7rem, 5vw, 3.3rem);
    color: #fff;
    background: linear-gradient(135deg, var(--brand-blue-deep), var(--brand-blue));
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.consultation-wrap::after {
    position: absolute;
    right: 3%;
    bottom: -130px;
    width: 360px;
    height: 360px;
    content: "";
    border: 72px solid rgba(255, 255, 255, .055);
    border-radius: 50%;
}

.consultation-wrap > .row {
    position: relative;
    z-index: 1;
}

.consultation-badge {
    padding: .45rem .75rem;
    color: #fff;
    background: var(--brand-red);
    border-radius: 999px;
    font-size: .68rem;
}

.consultation-wrap h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3.15rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.consultation-wrap p {
    color: rgba(255, 255, 255, .78);
    font-size: 1.05rem;
}

.consultation-contacts {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    margin-top: 1.6rem;
}

.consultation-contacts a {
    width: fit-content;
    color: #fff;
    font-size: 1.03rem;
    font-weight: 800;
    text-decoration: none;
}

.consultation-form-card {
    padding: clamp(1.3rem, 3vw, 2rem);
    color: var(--ink);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 22px 50px rgba(4, 37, 64, .25);
}

.certificate-card {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    padding: 0;
    text-align: left;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.certificate-card:hover,
.certificate-card:focus-visible {
    border-color: rgba(10, 112, 184, .38);
    box-shadow: 0 20px 50px rgba(16, 58, 94, .14);
    transform: translateY(-4px);
}

.certificate-image {
    display: flex;
    height: 210px;
    justify-content: center;
    padding: 1rem;
    background: linear-gradient(145deg, #f5f9fc, #e9f2f8);
    overflow: hidden;
}

.certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



.certificate-action {
    padding-top: .25rem;
    padding-bottom: 1.1rem;
    color: var(--brand-blue);
    font-size: .83rem;
    font-weight: 700;
}

.competency-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
}

.competency-tags span {
    padding: .62rem .95rem;
    color: var(--brand-blue-deep);
    background: #fff;
    border: 1px solid #d8e5ef;
    border-radius: 999px;
    font-size: .86rem;
    font-weight: 750;
}

.certificate-modal-content {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
}

.certificate-modal-content .modal-body {
    max-height: 78vh;
    overflow: auto;
    background: #eef3f7;
}

.certificate-modal-content img {
    max-height: 70vh;
}

.site-footer {
    padding: 72px 0 24px;
    color: #fff;
    background: #062c4b;
}

.footer-logo {
    width: min(260px, 80%);
    height: auto;
    margin-bottom: 1.2rem;
    object-fit: contain;
}

.footer-description,
.footer-address {
    max-width: 380px;
    color: rgba(255, 255, 255, .65);
}

.footer-title {
    margin-bottom: 1rem;
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-list {
    display: grid;
    gap: .65rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-list a,
.footer-bottom a {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
}

.footer-list a:hover,
.footer-bottom a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 1.5rem;
    margin-top: 3rem;
    color: rgba(255, 255, 255, .5);
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .82rem;
}

.toast {
    color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow-lg);
}

.toast-mark {
    display: inline-grid;
    width: 24px;
    height: 24px;
    margin-right: .6rem;
    color: #fff;
    background: var(--brand-blue);
    border-radius: 50%;
    place-items: center;
    font-size: .75rem;
    font-weight: 900;
}

.mobile-call {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1020;
    display: none;
    padding: .8rem 1.2rem;
    color: #fff;
    background: var(--brand-red);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(215, 29, 70, .35);
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 1199.98px) {
    .header-contact .btn {
        display: none;
    }

    .hero {
        min-height: auto;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 1rem 0 .5rem;
    }

    .navbar .nav-link {
        padding: .7rem 0 !important;
    }

    .navbar .nav-link::after {
        right: auto;
        left: 0;
        width: 44px;
    }

    .header-contact .btn {
        display: inline-flex;
    }

    .hero {
        padding-top: 72px;
    }

    .hero h1 {
        max-width: 820px;
    }

    .section {
        padding: 76px 0;
    }

    .mobile-call {
        display: inline-flex;
    }
}

@media (max-width: 767.98px) {
    html {
        scroll-padding-top: 76px;
    }

    .navbar {
        min-height: 68px;
    }

    .hero {
        padding: 60px 0 86px;
    }

    .hero h1 {
        font-size: clamp(2.45rem, 13vw, 4.1rem);
    }

    .hero::after {
        height: 36px;
    }

    .hero-shape-one {
        right: -260px;
    }

    .section {
        padding: 62px 0;
    }

    .pricing-shell {
        padding: .85rem;
    }

    .pricing-tabs {
        flex-wrap: nowrap;
        padding-bottom: .4rem;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .pricing-tabs .nav-link {
        white-space: nowrap;
    }

    .pricing-table td:last-child,
    .pricing-table th:last-child {
        min-width: 150px;
    }

    .package-grid {
        grid-template-columns: 1fr;
    }

    .package-chip-wide {
        grid-column: auto;
    }

    .consultation-wrap {
        border-radius: 22px;
    }

    .certificate-image {
        height: 250px;
    }

    .site-footer {
        padding-bottom: 90px;
    }
}

@media (max-width: 575.98px) {
    .hero-points .col-sm-6 + .col-sm-6 {
        margin-top: .3rem;
    }

    .stat-card {
        min-height: 124px;
        padding: 1rem;
    }

    .pricing-table > :not(caption) > * > * {
        padding: .85rem;
    }

    .certificate-image {
        height: 210px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/* Updated brief: business tasks, onboarding steps and illustrated benefits. */
.business-tasks-section {
    position: relative;
    background: linear-gradient(180deg, #f6faff 0%, #ffffff 100%);
    overflow: hidden;
}

.tasks-orbit {
    position: absolute;
    border: 1px solid rgba(10, 112, 184, .09);
    border-radius: 50%;
    pointer-events: none;
}

.tasks-orbit-one {
    top: -210px;
    right: -210px;
    width: 520px;
    height: 520px;
    box-shadow: inset 0 0 0 80px rgba(10, 112, 184, .025);
}

.tasks-orbit-two {
    bottom: -150px;
    left: -170px;
    width: 360px;
    height: 360px;
    border-color: rgba(215, 29, 70, .1);
}

.tasks-grid {
    position: relative;
    z-index: 1;
}

.task-card {
    position: relative;
    display: flex;
    gap: 1.2rem;
    padding: clamp(1.35rem, 3vw, 2rem);
    background: #fff;
    border: 1px solid rgba(10, 112, 184, .12);
    border-radius: 22px;
    box-shadow: 0 16px 45px rgba(11, 53, 87, .075);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.task-card::after {
    position: absolute;
    right: -45px;
    bottom: -52px;
    width: 145px;
    height: 145px;
    content: "";
    background: rgba(10, 112, 184, .035);
    border-radius: 50%;
}

.task-card-accent::after {
    background: rgba(215, 29, 70, .045);
}

.task-card:hover {
    border-color: rgba(10, 112, 184, .28);
    box-shadow: 0 24px 58px rgba(11, 53, 87, .13);
    transform: translateY(-5px);
}

.task-number {
    position: relative;
    z-index: 1;
    flex: 0 0 58px;
    color: rgba(10, 112, 184, .22);
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: -.06em;
    line-height: 1;
}

.task-number::after {
    display: block;
    width: 34px;
    height: 4px;
    margin-top: .65rem;
    content: "";
    background: var(--brand-red);
    border-radius: 999px;
}

.task-content {
    position: relative;
    z-index: 1;
}

.task-question {
    margin-bottom: .55rem;
    color: var(--brand-red);
    font-size: .83rem;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.task-card h3 {
    margin-bottom: .8rem;
    color: var(--brand-blue-deep);
    font-size: clamp(1.28rem, 2vw, 1.55rem);
    font-weight: 850;
    line-height: 1.2;
}

.task-card p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    font-size: .96rem;
}

.how-section {
    padding-top: 36px;
    padding-bottom: 96px;
}

.how-wrap {
    position: relative;
    padding: clamp(2rem, 5vw, 4.2rem);
    color: #fff;
    background: radial-gradient(circle at 8% 15%, rgba(255, 255, 255, .1), transparent 30%),
    linear-gradient(135deg, var(--brand-blue-deep), var(--brand-blue));
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.how-wrap::before {
    position: absolute;
    top: -120px;
    left: -100px;
    width: 310px;
    height: 310px;
    content: "";
    border: 58px solid rgba(255, 255, 255, .04);
    border-radius: 50%;
}

.how-wrap::after {
    position: absolute;
    right: -95px;
    bottom: -125px;
    width: 320px;
    height: 320px;
    content: "";
    background: rgba(215, 29, 70, .12);
    border-radius: 50%;
}

.how-wrap > .row {
    position: relative;
    z-index: 1;
}

.section-label-light {
    color: #fff;
}

.how-intro {
    max-width: 430px;
    margin-bottom: 1.7rem;
    color: rgba(255, 255, 255, .72);
    font-size: 1.05rem;
}

.process-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.process-line {
    position: absolute;
    top: 29px;
    right: 10%;
    left: 10%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .18), var(--brand-red), rgba(255, 255, 255, .18));
    opacity: .8;
}

.process-step {
    position: relative;
    padding-top: 64px;
}

.process-marker {
    position: absolute;
    top: 0;
    left: 1.2rem;
    z-index: 2;
    display: grid;
    width: 58px;
    height: 58px;
    color: #fff;
    background: var(--brand-red);
    border: 7px solid rgba(255, 255, 255, .17);
    border-radius: 50%;
    place-items: center;
    box-shadow: 0 12px 28px rgba(4, 35, 59, .25);
    font-size: 1.05rem;
    font-weight: 900;
}

.process-card {
    height: 100%;
    padding: 1.3rem;
    color: var(--ink);
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 17px;
    box-shadow: 0 14px 34px rgba(3, 35, 59, .22);
}

.process-kicker {
    display: block;
    margin-bottom: .38rem;
    color: var(--brand-red);
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.process-card h3 {
    margin-bottom: .5rem;
    font-size: 1.13rem;
    font-weight: 850;
}

.process-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.5;
}

.process-result {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: 1.05rem 1.25rem;
    margin-top: 1rem;
    color: #fff;
    background: rgba(4, 43, 73, .5);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 17px;
    backdrop-filter: blur(10px);
}

.result-check {
    display: grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    background: var(--brand-red);
    border-radius: 50%;
    place-items: center;
    font-weight: 900;
}

.process-result span:not(.result-check) {
    display: block;
    color: rgba(255, 255, 255, .62);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.process-result strong {
    display: block;
    font-size: clamp(1rem, 2vw, 1.25rem);
}

.benefits-section {
    position: relative;
    overflow: hidden;
}

.benefit-card-illustrated {
    display: flex;
    flex-direction: column;
    padding: 1.4rem 1.55rem 1.7rem;
    overflow: hidden;
}

.benefit-visual {
    display: flex;
    height: 180px;
    align-items: center;
    justify-content: center;
    margin: -1rem -1rem 1rem;
    background: radial-gradient(circle at center, rgba(10, 112, 184, .08), transparent 64%);
    border-radius: 18px;
}

.benefit-card-illustrated .benefit-visual img {
    width: 172px;
    height: 172px;
    margin: 0;
    object-fit: contain;
    filter: drop-shadow(0 12px 16px rgba(10, 63, 104, .11));
}

.benefit-card-illustrated h3 {
    min-height: 2.9em;
}


.main-container{
    padding-top:5rem;
    padding-bottom:5rem;
    position: relative;
}

.main-container h1{
    margin-bottom:3rem;
}

@media (max-width: 1199.98px) {
    .navbar-collapse {
        padding: 1rem 0 .5rem;
    }

    .navbar .nav-link {
        padding: .7rem 0 !important;
    }

    .navbar .nav-link::after {
        right: auto;
        left: 0;
        width: 44px;
    }

    .navbar-expand-xl .header-contact .btn {
        display: inline-flex;
    }
}

@media (max-width: 991.98px) {
    .how-section {
        padding-top: 16px;
        padding-bottom: 76px;
    }

    .process-track {
        margin-top: .5rem;
    }
}

@media (max-width: 767.98px) {
    .task-card {
        gap: .9rem;
    }

    .task-number {
        flex-basis: 44px;
        font-size: 1.2rem;
    }

    .process-track {
        grid-template-columns: 1fr;
    }

    .process-line {
        top: 18px;
        bottom: 24px;
        left: 28px;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg, rgba(255, 255, 255, .18), var(--brand-red), rgba(255, 255, 255, .18));
    }

    .process-step {
        padding-top: 0;
        padding-left: 66px;
    }

    .process-marker {
        top: 8px;
        left: 0;
        width: 56px;
        height: 56px;
    }

    .benefit-visual {
        height: 165px;
    }

    .benefit-card-illustrated .benefit-visual img {
        width: 158px;
        height: 158px;
    }
}

@media (max-width: 575.98px) {
    .how-wrap {
        padding: 1.55rem;
        border-radius: 23px;
    }

    .task-card {
        padding: 1.25rem;
    }

    .task-question {
        font-size: .72rem;
    }
}


/* v3 updates: smaller benefit icons, cleaner step section, simplified navigation */
.benefit-visual {
    height: 104px;
    margin: 0 0 .9rem;
    background: radial-gradient(circle at center, rgba(10, 112, 184, .06), transparent 70%);
}

.benefit-card-illustrated {
    padding: 1.35rem 1.45rem 1.55rem;
}

.benefit-card-illustrated .benefit-visual img {
    width: 76px;
    height: 76px;
    filter: drop-shadow(0 8px 12px rgba(10, 63, 104, .08));
}

.benefit-card-illustrated h3 {
    min-height: auto;
}

.how-section {
    padding-top: 36px;
    padding-bottom: 96px;
    background: var(--brand-white);
}

.steps-flow-wrap {
    position: relative;
}

.steps-flow-grid {
    position: relative;
}

.step-flow-item {
    position: relative;
}

.step-flow-card {
    position: relative;
    height: 100%;
    padding: 1.45rem 1.4rem 1.5rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
}

.step-flow-number {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 1rem;
    color: #fff;
    background: var(--brand-red);
    border-radius: 50%;
    place-items: center;
    font-size: 1rem;
    font-weight: 900;
    box-shadow: 0 12px 22px rgba(215, 29, 70, .18);
}

.step-flow-label {
    display: inline-block;
    margin-bottom: .45rem;
    color: var(--brand-blue);
    font-size: .74rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.step-flow-card h3 {
    margin-bottom: .7rem;
    color: var(--brand-blue-deep);
    font-size: 1.18rem;
    font-weight: 850;
    line-height: 1.25;
}

.step-flow-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: .95rem;
}

.steps-result {
    display: inline-flex;
    align-items: center;
    gap: .95rem;
    padding: 1rem 1.25rem;
    margin-top: 1.5rem;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

.result-flag {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    color: var(--brand-red);
    background: #fff;
    border: 1px solid rgba(215, 29, 70, .14);
    border-radius: 50%;
    place-items: center;
    font-size: 1.1rem;
}

.steps-result span:not(.result-flag) {
    display: block;
    color: var(--brand-blue);
    font-size: .74rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.steps-result strong {
    display: block;
    color: var(--ink);
    font-size: clamp(1rem, 2vw, 1.22rem);
}

#mainNav a.nav-link{

}




@media (min-width: 1200px) {
    .steps-flow-grid {
        align-items: stretch;
    }

    .step-flow-item:not(:last-child)::after {
        position: absolute;
        top: 27px;
        right: -18px;
        width: 36px;
        content: "";
        border-top: 2px dashed rgba(10, 112, 184, .42);
    }
}


@media (max-width: 991.98px) {
    .how-section {
        padding-bottom: 76px;
    }
}

@media (max-width: 767.98px) {
    .benefit-visual {
        height: 92px;
    }

    .benefit-card-illustrated .benefit-visual img {
        width: 68px;
        height: 68px;
    }

    .steps-flow-grid {
        row-gap: 1rem;
    }

    .step-flow-item:not(:last-child)::after {
        position: absolute;
        left: 26px;
        bottom: -16px;
        width: 0;
        height: 16px;
        content: "";
        border-left: 2px dashed rgba(10, 112, 184, .42);
    }
}













/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px)
{
    section#about h2 {
        white-space: pre-line;
    }

    section#benefits h2{
        white-space: pre-line;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1399.98px)
{
    section#benefits h2{
        white-space: pre-line;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px)
{
    section#benefits h2{
        white-space: pre-line;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px)
{
    section#about h2 {
        white-space: pre-line;
    }

    section#benefits h2{
        white-space: pre-line;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px)
{
    section#benefits h2{
        white-space: pre-line;
    }

    section#how-it-works h2{
        white-space: pre-line;
    }
}