html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 0;
}

*:focus-visible {
    outline: 2px solid #D6553C;
    outline-offset: 4px;
}

.brand__bar {
    background: #2a2a2a;
    border-bottom: 1px solid rgba(210, 85, 60, 0.18);
    padding: 8px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
}

.brand__contact-strip {
    display: flex;
    align-items: center;
    gap: 28px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    color: #DEE3D8;
    opacity: 0.75;
}

.brand__contact-strip a {
    color: #DEE3D8;
    text-decoration: none;
    transition: color 0.1s ease-out;
}

.brand__contact-strip a:hover {
    color: #D6553C;
}

.brand__contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand__contact-item svg {
    flex-shrink: 0;
}

.brand__tagline-top {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    color: #3293AD;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.site-header {
    background: #1e2820;
    position: relative;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #D6553C 0%, #3293AD 60%, #DEE3D8 100%);
    pointer-events: none;
}

.header__body {
    max-width: 1600px;
    margin: 0 auto;
    padding: 28px 28px 28px 28px;
    display: flex;
    align-items: stretch;
    gap: 56px;
}

.header__brand {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.header__logo-box {
    width: 50px;
    height: 50px;
    background: #f4f2ee;
    border: 1px solid #DEE3D8;
    box-shadow: 0 3px 5px -2px rgba(214, 85, 60, 0.08), inset 0 1px 2px rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header__logo-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.header__wordmark {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header__name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 24px;
    font-weight: 700;
    color: #f4f2ee;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.header__sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    color: #3293AD;
    line-height: 1.1;
    font-weight: 400;
}

.header__divider {
    width: 1px;
    background: rgba(222, 227, 216, 0.15);
    align-self: stretch;
    flex-shrink: 0;
}

.header__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.header__tagline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 19px;
    color: #DEE3D8;
    line-height: 1.5;
    font-weight: 400;
    max-width: 620px;
}

.header__tagline strong {
    color: #D6553C;
    font-weight: 700;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav__link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    color: #DEE3D8;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-radius: 2px;
    line-height: 1.5;
    transition: color 0.1s ease-out, border-color 0.1s ease-out, background 0.12s ease-out;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
}

.nav__link:hover {
    color: #f4f2ee;
    border-color: rgba(222, 227, 216, 0.25);
    background: rgba(222, 227, 216, 0.07);
}

.nav__link--accent {
    background: #D6553C;
    color: #f4f2ee;
    border-color: #D6553C;
    border-radius: 2px;
}

.nav__link--accent:hover {
    background: #c44832;
    border-color: #c44832;
    color: #f4f2ee;
    transform: scale(1.03);
}

.nav__link--accent svg {
    transition: transform 0.1s ease-out;
}

.nav__link--accent:hover svg {
    transform: translateX(4px);
}

.header__deco {
    position: absolute;
    right: 28px;
    bottom: 0;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D6553C);
    pointer-events: none;
}

.site-footer {
    background: #1e2820;
    position: relative;
    overflow: hidden;
}

.footer__geo {
    position: absolute;
    top: 0;
    right: 0;
    width: 340px;
    height: 340px;
    pointer-events: none;
    overflow: hidden;
}

.footer__geo svg {
    position: absolute;
    top: -40px;
    right: -40px;
}

.footer__utility {
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(222, 227, 216, 0.1);
    padding: 8px 28px;
}

.footer__utility-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer__util-links {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__util-links li a {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    color: rgba(222, 227, 216, 0.6);
    text-decoration: none;
    transition: color 0.1s ease-out;
}

.footer__util-links li a:hover {
    color: #DEE3D8;
}

.footer__util-sep {
    color: rgba(222, 227, 216, 0.2);
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
}

.footer__copy-small {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    color: rgba(222, 227, 216, 0.4);
}

.footer__body {
    max-width: 1600px;
    margin: 0 auto;
    padding: 56px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 56px;
    position: relative;
    z-index: 1;
}

.footer__brand-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__logo-box {
    width: 50px;
    height: 50px;
    background: #f4f2ee;
    border: 1px solid #DEE3D8;
    box-shadow: 0 3px 5px -2px rgba(214, 85, 60, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer__logo-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.footer__brand-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 24px;
    font-weight: 700;
    color: #f4f2ee;
    line-height: 1.1;
}

.footer__brand-desc {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    color: rgba(222, 227, 216, 0.65);
    line-height: 1.8;
}

.footer__addr-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__col-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    color: #D6553C;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(214, 85, 60, 0.25);
}

.footer__addr-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__addr-list li {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    color: rgba(222, 227, 216, 0.7);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer__addr-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.footer__addr-list a {
    color: rgba(222, 227, 216, 0.7);
    text-decoration: none;
    transition: color 0.1s ease-out;
}

.footer__addr-list a:hover {
    color: #3293AD;
}

.footer__links-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__link-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__link-list li a {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    color: rgba(222, 227, 216, 0.7);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.1s ease-out;
    padding: 4px 0;
}

.footer__link-list li a svg {
    transition: transform 0.1s ease-out;
}

.footer__link-list li a:hover {
    color: #3293AD;
}

.footer__link-list li a:hover svg {
    transform: translateX(3px);
}

.footer__bottom {
    border-top: 1px solid rgba(222, 227, 216, 0.08);
    padding: 16px 28px;
    position: relative;
    z-index: 1;
}

.footer__bottom-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer__copy {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    color: rgba(222, 227, 216, 0.35);
}

.footer__policy-ref {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    color: rgba(222, 227, 216, 0.35);
}

.footer__policy-ref a {
    color: rgba(222, 227, 216, 0.45);
    text-decoration: none;
    transition: color 0.1s ease-out;
}

.footer__policy-ref a:hover {
    color: #3293AD;
}

@media (max-width: 900px) {
    .header__body {
        flex-direction: column;
        gap: 16px;
    }

    .header__divider {
        width: 100%;
        height: 1px;
    }

    .footer__body {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .brand__contact-strip {
        flex-wrap: wrap;
        gap: 8px;
    }
}

.qo-legal-main {
    max-width: 1600px;
    margin: 0 auto;
    padding: 56px 56px;
}

.qo-legal-main h1 {
    font-size: 60px;
    line-height: 1.1;
    color: #1b1b1b;
    margin-bottom: 28px;
    margin-top: 0;
}

.qo-legal-main h2 {
    font-size: 44px;
    line-height: 1.1;
    color: #1b1b1b;
    margin-top: 56px;
    margin-bottom: 16px;
}

.qo-legal-main h3 {
    font-size: 24px;
    line-height: 1.5;
    color: #222;
    margin-top: 28px;
    margin-bottom: 16px;
}

.qo-legal-main h4 {
    font-size: 19px;
    line-height: 1.5;
    color: #222;
    margin-top: 28px;
    margin-bottom: 8px;
}

.qo-legal-main h5 {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin-top: 16px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.qo-legal-main h6 {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    margin-top: 16px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.qo-legal-main p {
    font-size: 19px;
    line-height: 1.8;
    color: #2c2c2c;
    margin-top: 0;
    margin-bottom: 16px;
    max-width: 80ch;
}

.qo-legal-main ul {
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 28px;
    list-style: none;
}

.qo-legal-main ol {
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 28px;
    list-style: none;
    counter-reset: policy-counter;
}

.qo-legal-main ul li {
    font-size: 19px;
    line-height: 1.8;
    color: #2c2c2c;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
    max-width: 80ch;
}

.qo-legal-main ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background-color: #D6553C;
}

.qo-legal-main ol li {
    font-size: 19px;
    line-height: 1.8;
    color: #2c2c2c;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
    max-width: 80ch;
    counter-increment: policy-counter;
}

.qo-legal-main ol li::before {
    content: counter(policy-counter) ".";
    position: absolute;
    left: -16px;
    top: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #D6553C;
    font-weight: 700;
}

.qo-legal-main ul ul,
.qo-legal-main ol ol,
.qo-legal-main ul ol,
.qo-legal-main ol ul {
    margin-top: 8px;
    margin-bottom: 8px;
}

.qo-legal-main strong,
.qo-legal-main b {
    font-weight: 700;
    color: #1b1b1b;
}

.qo-legal-main hr {
    border: none;
    border-top: 1px solid #DEE3D8;
    margin-top: 56px;
    margin-bottom: 56px;
}

.qo-legal-main table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 28px;
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.5;
    box-shadow: 0 3px 5px -2px rgba(210, 85, 60, 0.08);
    border-radius: 6px;
    overflow: hidden;
}

.qo-legal-main thead {
    background-color: #DEE3D8;
}

.qo-legal-main thead tr {
    border-bottom: 2px solid #c8cfc2;
}

.qo-legal-main tbody tr {
    border-bottom: 1px solid #DEE3D8;
    transition: background-color 0.1s ease-out;
}

.qo-legal-main tbody tr:last-child {
    border-bottom: none;
}

.qo-legal-main tbody tr:hover {
    background-color: #f4f5f2;
}

.qo-legal-main th {
    padding: 16px 16px;
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
    color: #1b1b1b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.qo-legal-main td {
    padding: 16px 16px;
    font-size: 16px;
    line-height: 1.5;
    color: #2c2c2c;
    vertical-align: top;
}

.qo-legal-main div {
    max-width: 1600px;
}

@media (max-width: 900px) {
    .qo-legal-main {
        padding: 28px 28px;
    }

    .qo-legal-main h1 {
        font-size: 44px;
    }

    .qo-legal-main h2 {
        font-size: 24px;
    }

    .qo-legal-main h3 {
        font-size: 19px;
    }

    .qo-legal-main table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 560px) {
    .qo-legal-main {
        padding: 28px 16px;
    }

    .qo-legal-main h1 {
        font-size: clamp(24px, 8vw, 44px);
    }

    .qo-legal-main h2 {
        font-size: clamp(19px, 6vw, 24px);
    }

    .qo-legal-main p,
    .qo-legal-main ul li,
    .qo-legal-main ol li {
        font-size: 16px;
    }
}

.srv {
    background: #fff;
    overflow-x: clip;
    position: relative;
}

.srv__geo {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.srv__geo--a {
    width: 520px;
    height: 520px;
    border: 1px solid rgba(50, 147, 173, 0.07);
    top: -120px;
    right: -180px;
}

.srv__geo--b {
    width: 320px;
    height: 320px;
    border: 1px solid rgba(214, 85, 60, 0.06);
    top: 80px;
    right: -60px;
}

.srv__geo--c {
    width: 700px;
    height: 700px;
    border: 1px solid rgba(50, 147, 173, 0.05);
    bottom: 200px;
    left: -280px;
}

.srv__divider {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px 0;
}

.srv__divider-line {
    height: 1px;
    width: 80px;
    background: #DEE3D8;
}

.srv__divider-gem {
    width: 8px;
    height: 8px;
    background: #3293AD;
    transform: rotate(45deg);
    border-radius: 2px;
    flex-shrink: 0;
}

.lead {
    position: relative;
    padding: 56px 28px 28px;
    max-width: 1600px;
    margin: 0 auto;
    z-index: 1;
}

.lead__text-zone {
    text-align: center;
    padding: 28px 16px 56px;
    max-width: 780px;
    margin: 0 auto;
}

.lead__eyebrow {
    display: inline-block;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3293AD;
    margin-bottom: 16px;
}

.lead__h1 {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 28px;
    background: linear-gradient(to top, #D6553C, #3293AD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead__sub {
    font-size: 19px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 0;
}

.lead__image-zone {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 52px -2px rgba(50, 147, 173, 0.13);
    clip-path: inset(100% 0 0 0);
    animation: wipe-up 0.12s ease-out 0.08s forwards;
}

@keyframes wipe-up {
    to {
        clip-path: inset(0% 0 0 0);
    }
}

.lead__image-zone::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(255, 255, 255, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse at 100% 100%, rgba(255, 255, 255, 0.30) 0%, transparent 55%);
    pointer-events: none;
}

.lead__img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center 30%;
}

.lead__shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 10px;
}

.lead__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.lead__shape--1 {
    width: 200px;
    height: 200px;
    background: #3293AD;
    bottom: -60px;
    left: -60px;
}

.lead__shape--2 {
    width: 120px;
    height: 120px;
    background: #D6553C;
    top: -30px;
    right: 80px;
}

.svc {
    background: #f4f6f2;
    padding: 56px 28px;
    position: relative;
}

.svc__inner {
    max-width: 1600px;
    margin: 0 auto;
}

.svc__label {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #D6553C;
    display: block;
    margin-bottom: 16px;
}

.svc__h2 {
    font-size: 44px;
    line-height: 1.1;
    margin-bottom: 28px;
    background: linear-gradient(to top, #D6553C, #3293AD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 640px;
}

.svc__lead-p {
    font-size: 19px;
    line-height: 1.8;
    color: #3a3a3a;
    max-width: 580px;
    margin-bottom: 56px;
}

.svc__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
}

.svc__card {
    background: #fff;
    border-radius: 10px;
    padding: 28px;
    box-shadow: 0 7px 14px -2px rgba(50, 147, 173, 0.11);
    transition: box-shadow 0.12s ease-out, transform 0.10s ease-out;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.svc__card:hover {
    box-shadow: 0 12px 52px -2px rgba(50, 147, 173, 0.13);
    transform: scale(1.02);
}

.svc__icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #3293AD;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-shadow: 0 7px 14px -2px rgba(50, 147, 173, 0.11), inset 0 1px 3px rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

.svc__icon-wrap--alt {
    background: #D6553C;
    box-shadow: 0 7px 14px -2px rgba(214, 85, 60, 0.11), inset 0 1px 3px rgba(255, 255, 255, 0.25);
}

.svc__icon-wrap--neutral {
    background: #5a6a60;
    box-shadow: 0 7px 14px -2px rgba(90, 106, 96, 0.11), inset 0 1px 3px rgba(255, 255, 255, 0.25);
}

.svc__card-svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.svc__card-h {
    font-size: 19px;
    line-height: 1.5;
    color: #1e2820;
}

.svc__card-p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5248;
    margin: 0;
}

.growth {
    padding: 56px 28px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

.growth__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.growth__text-col {
    padding-top: 28px;
}

.growth__tag {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #3293AD;
    display: block;
    margin-bottom: 16px;
}

.growth__h2 {
    font-size: 44px;
    line-height: 1.1;
    margin-bottom: 28px;
    background: linear-gradient(to top, #D6553C, #3293AD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.growth__p {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 16px;
}

.growth__chart-col {
    background: #fff;
    border-radius: 10px;
    padding: 28px;
    box-shadow: 0 7px 14px -2px rgba(50, 147, 173, 0.11);
}

.growth__chart-title {
    font-size: 16px;
    line-height: 1.5;
    color: #4a5248;
    margin-bottom: 28px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.growth__steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.growth__step {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.growth__step-label {
    font-size: 16px;
    line-height: 1.5;
    color: #4a5248;
    width: 110px;
    flex-shrink: 0;
}

.growth__bar-track {
    flex: 1;
    height: 12px;
    background: #DEE3D8;
    border-radius: 6px;
    overflow: hidden;
}

.growth__bar-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.15s ease-out;
}

.growth__bar-fill--1 {
    width: 22%;
    background: #3293AD;
}

.growth__bar-fill--2 {
    width: 38%;
    background: #3293AD;
}

.growth__bar-fill--3 {
    width: 55%;
    background: #3293AD;
}

.growth__bar-fill--4 {
    width: 71%;
    background: #D6553C;
}

.growth__bar-fill--5 {
    width: 88%;
    background: #D6553C;
}

.growth__step-val {
    font-size: 16px;
    line-height: 1.5;
    color: #1e2820;
    width: 44px;
    text-align: right;
    flex-shrink: 0;
}

.growth__chart-note {
    font-size: 16px;
    line-height: 1.5;
    color: #7a8878;
    margin-top: 28px;
}

.faq {
    background: #f4f6f2;
    padding: 56px 28px;
}

.faq__inner {
    max-width: 1600px;
    margin: 0 auto;
}

.faq__head {
    margin-bottom: 56px;
    max-width: 600px;
}

.faq__eyebrow {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #D6553C;
    display: block;
    margin-bottom: 16px;
}

.faq__h2 {
    font-size: 44px;
    line-height: 1.1;
    background: linear-gradient(to top, #D6553C, #3293AD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.faq__intro {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5248;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.faq__item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 5px -2px rgba(50, 147, 173, 0.08);
}

.faq__q {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 28px;
    cursor: pointer;
    font-size: 19px;
    line-height: 1.5;
    color: #1e2820;
    list-style: none;
    border-radius: 10px;
    transition: background 0.10s ease-out;
}

.faq__q::-webkit-details-marker {
    display: none;
}

.faq__q:hover {
    background: #f9faf8;
}

.faq__arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: #3293AD;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.12s ease-out;
}

.faq__item[open] .faq__arrow {
    transform: rotate(180deg);
}

.faq__a {
    padding: 0 28px 28px;
    font-size: 16px;
    line-height: 1.8;
    color: #4a5248;
}

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

    .growth__cols {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .lead__h1 {
        font-size: 44px;
    }
}

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

    .lead__h1 {
        font-size: 44px;
    }

    .svc__h2,
    .growth__h2,
    .faq__h2 {
        font-size: 24px;
    }

    .lead__img {
        height: 280px;
    }

    .faq__q {
        font-size: 16px;
    }
}

.dbt {
    max-width: 100%;
    overflow-x: hidden;
}

.dbt .dbt__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 28px;
}

.dbt .grad-text {
    background: linear-gradient(to top, #3293AD, #D6553C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dbt .opener {
    position: relative;
    padding: 56px 0;
    background: linear-gradient(135deg, #2a7a92, #D6553C, #3293AD, #b8442e);
    background-size: 400% 400%;
    animation: gradshift 12s ease-in-out infinite;
}

@keyframes gradshift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.dbt .opener__grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 56px;
    position: relative;
    z-index: 1;
}

.dbt .opener__dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 0px;
}

.dbt .opener__dots svg {
    width: 100%;
    height: 100%;
    opacity: 0.18;
}

.dbt .opener__text {
    flex: 3;
    position: relative;
}

.dbt .opener__label {
    display: inline-block;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.dbt .opener__h1 {
    font-size: 60px;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 28px;
}

.dbt .opener__sub {
    font-size: 19px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 28px;
}

.dbt .opener__actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}

.dbt .btn-prim {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #D6553C;
    font-size: 16px;
    line-height: 1.5;
    padding: 16px 28px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.1s ease-out, box-shadow 0.12s ease-out;
    box-shadow: 0 7px 14px -2px rgba(214, 85, 60, 0.11);
    text-decoration: none;
}

.dbt .btn-prim:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 52px -2px rgba(214, 85, 60, 0.13);
}

.dbt .btn-prim:hover .btn-arrow {
    transform: translateX(4px);
}

.dbt .btn-arrow {
    display: inline-block;
    transition: transform 0.1s ease-out;
}

.dbt .btn-sec {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    padding: 16px 28px;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: border-color 0.1s ease-out, background 0.12s ease-out;
    text-decoration: none;
}

.dbt .btn-sec:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.dbt .opener__img-wrap {
    flex: 2;
    position: relative;
}

.dbt .opener__img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center top;
    border-radius: 10px;
    display: block;
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 55%, transparent 100%);
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 55%, transparent 100%);
    box-shadow: 0 12px 52px -2px rgba(214, 85, 60, 0.13);
}

.dbt .div-blur {
    height: 56px;
    background: linear-gradient(to bottom, #3293AD, #f4f2ef);
    filter: blur(12px);
    margin: 0;
}

.dbt .invest {
    background: #f4f2ef;
    padding: 56px 0;
    position: relative;
}

.dbt .invest__math {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 220px;
    line-height: 1.1;
    color: transparent;
    -webkit-text-stroke: 2px rgba(50, 147, 173, 0.1);
    pointer-events: none;
    user-select: none;
    font-weight: 700;
}

.dbt .invest__grid {
    display: flex;
    flex-direction: row;
    gap: 56px;
    align-items: flex-start;
}

.dbt .invest__main {
    flex: 3;
}

.dbt .invest__aside {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dbt .invest__tag {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #3293AD;
    margin-bottom: 8px;
}

.dbt .invest__h2 {
    font-size: 44px;
    line-height: 1.1;
    color: #1e2a2e;
    margin-bottom: 28px;
}

.dbt .invest__body {
    font-size: 19px;
    line-height: 1.8;
    color: #3a4a50;
    margin-bottom: 28px;
}

.dbt .invest__modules {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
}

.dbt .invest__mod {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 3px 5px -2px rgba(50, 147, 173, 0.08);
    transition: transform 0.1s ease-out, box-shadow 0.12s ease-out;
}

.dbt .invest__mod:hover {
    transform: scale(1.02);
    box-shadow: 0 7px 14px -2px rgba(50, 147, 173, 0.11);
}

.dbt .invest__num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #D6553C;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.dbt .invest__mod-text {
    font-size: 16px;
    line-height: 1.5;
    color: #2a3840;
}

.dbt .invest__card {
    background: #ffffff;
    border-radius: 10px;
    padding: 28px;
    box-shadow: 0 7px 14px -2px rgba(50, 147, 173, 0.11);
}

.dbt .invest__card-label {
    font-size: 16px;
    line-height: 1.5;
    color: #3293AD;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.dbt .invest__card-val {
    font-size: 44px;
    line-height: 1.1;
    color: #D6553C;
    font-weight: 700;
    margin-bottom: 8px;
}

.dbt .invest__card-desc {
    font-size: 16px;
    line-height: 1.5;
    color: #3a4a50;
}

.dbt .invest__prog-label {
    font-size: 16px;
    line-height: 1.5;
    color: #2a3840;
    margin-bottom: 8px;
    font-weight: 600;
}

.dbt .invest__prog {
    display: flex;
    flex-direction: row;
    gap: 4px;
    margin-bottom: 4px;
}

.dbt .invest__seg {
    height: 10px;
    flex: 1;
    border-radius: 2px;
    background: #DEE3D8;
    transition: background 0.12s ease-out;
}

.dbt .invest__seg--on {
    background: #3293AD !important;
}

.dbt .invest__prog-sub {
    font-size: 16px;
    line-height: 1.5;
    color: #6a8090;
    margin-bottom: 16px;
}

.dbt .div-line {
    height: 2px;
    background: linear-gradient(to right, transparent, #DEE3D8, transparent);
    margin: 0 28px;
}

.dbt .support {
    background: #ffffff;
    padding: 56px 0;
    position: relative;
}

.dbt .support__edge {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: #3293AD;
    border-radius: 0px;
}

.dbt .support__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.dbt .support__img-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.dbt .support__img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 10px;
    transition: box-shadow 0.15s ease-out;
    box-shadow: 0 3px 5px -2px rgba(50, 147, 173, 0.08);
}

.dbt .support__img-wrap:hover .support__img {
    box-shadow: 0 12px 52px -2px rgba(50, 147, 173, 0.13);
}

.dbt .support__tag {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #D6553C;
    margin-bottom: 8px;
}

.dbt .support__h2 {
    font-size: 44px;
    line-height: 1.1;
    color: #1e2a2e;
    margin-bottom: 16px;
}

.dbt .support__body {
    font-size: 19px;
    line-height: 1.8;
    color: #3a4a50;
    margin-bottom: 28px;
}

.dbt .support__items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dbt .support__item {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 6px;
    background: #f4f2ef;
    transition: transform 0.1s ease-out;
}

.dbt .support__item:hover {
    transform: scale(1.02);
}

.dbt .support__icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: #3293AD;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dbt .support__icon svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.dbt .support__item-body {
    flex: 1;
}

.dbt .support__item-h {
    font-size: 16px;
    line-height: 1.5;
    color: #1e2a2e;
    font-weight: 600;
    margin-bottom: 4px;
}

.dbt .support__item-p {
    font-size: 16px;
    line-height: 1.5;
    color: #3a4a50;
}

.dbt .div-thick {
    height: 56px;
    background: linear-gradient(to bottom, #ffffff, #DEE3D8 50%, #f4f2ef);
    filter: blur(8px);
}

.dbt .doubt {
    background: #f4f2ef;
    padding: 56px 0;
    position: relative;
}

.dbt .doubt__edge {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: #D6553C;
    border-radius: 0px;
}

.dbt .doubt__grid {
    display: flex;
    flex-direction: row;
    gap: 56px;
    align-items: flex-start;
}

.dbt .doubt__col-main {
    flex: 3;
}

.dbt .doubt__col-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dbt .doubt__tag {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #D6553C;
    margin-bottom: 8px;
}

.dbt .doubt__h2 {
    font-size: 44px;
    line-height: 1.1;
    color: #1e2a2e;
    margin-bottom: 16px;
}

.dbt .doubt__intro {
    font-size: 19px;
    line-height: 1.8;
    color: #3a4a50;
    margin-bottom: 28px;
}

.dbt .doubt__qa {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.dbt .doubt__q {
    background: #ffffff;
    border-radius: 6px;
    padding: 16px 28px;
    box-shadow: 0 3px 5px -2px rgba(214, 85, 60, 0.08);
}

.dbt .doubt__q-head {
    font-size: 16px;
    line-height: 1.5;
    color: #1e2a2e;
    font-weight: 600;
    margin-bottom: 8px;
}

.dbt .doubt__q-body {
    font-size: 16px;
    line-height: 1.8;
    color: #3a4a50;
}

.dbt .doubt__img-wrap {
    border-radius: 10px;
    overflow: hidden;
}

.dbt .doubt__img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 10px;
    transition: box-shadow 0.15s ease-out;
    box-shadow: 0 3px 5px -2px rgba(214, 85, 60, 0.08);
}

.dbt .doubt__img-wrap:hover .doubt__img {
    box-shadow: 0 12px 52px -2px rgba(214, 85, 60, 0.13);
}

.dbt .doubt__stat {
    background: #ffffff;
    border-radius: 10px;
    padding: 28px;
    box-shadow: 0 7px 14px -2px rgba(214, 85, 60, 0.11);
}

.dbt .doubt__stat-val {
    font-size: 44px;
    line-height: 1.1;
    color: #D6553C;
    font-weight: 700;
    margin-bottom: 8px;
}

.dbt .doubt__stat-desc {
    font-size: 16px;
    line-height: 1.5;
    color: #3a4a50;
}

.dbt .div-fade {
    height: 40px;
    background: linear-gradient(to bottom, #f4f2ef, #1e2a2e);
}

.dbt .grad {
    background: #1e2a2e;
    padding: 56px 0;
    position: relative;
}

.dbt .grad__img-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.dbt .grad__img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 10px;
    transition: box-shadow 0.15s ease-out;
    box-shadow: 0 3px 5px -2px rgba(50, 147, 173, 0.08);
}

.dbt .grad__img-wrap:hover .grad__img {
    box-shadow: 0 12px 52px -2px rgba(50, 147, 173, 0.13);
}

.dbt .grad__grid {
    display: flex;
    flex-direction: row;
    gap: 56px;
    align-items: flex-start;
}

.dbt .grad__col-img {
    flex: 1;
}

.dbt .grad__col-text {
    flex: 2;
}

.dbt .grad__tag {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #3293AD;
    margin-bottom: 8px;
}

.dbt .grad__h2 {
    font-size: 44px;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 16px;
}

.dbt .grad__body {
    font-size: 19px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
}

.dbt .grad__outcomes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.dbt .grad__out {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.1s ease-out, transform 0.1s ease-out;
}

.dbt .grad__out:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.03);
}

.dbt .grad__out-num {
    font-size: 24px;
    line-height: 1.1;
    color: #3293AD;
    font-weight: 700;
    margin-bottom: 8px;
}

.dbt .grad__out-text {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.dbt .grad__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #3293AD;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    padding: 16px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.1s ease-out, box-shadow 0.12s ease-out;
    box-shadow: 0 7px 14px -2px rgba(50, 147, 173, 0.11);
}

.dbt .grad__link:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 52px -2px rgba(50, 147, 173, 0.13);
}

.dbt .grad__link:hover .btn-arrow {
    transform: translateX(4px);
}

.dbt .invest__modules:hover .invest__mod {
    opacity: 0.6;
}

.dbt .invest__modules .invest__mod:hover {
    opacity: 1;
}

@keyframes scaleAppear {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    80% {
        transform: scale(1.03);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.dbt .invest__card {
    animation: scaleAppear 0.4s ease-out both;
}

@media (max-width: 900px) {
    .dbt .opener__grid {
        flex-direction: column;
    }

    .dbt .opener__h1 {
        font-size: 44px;
    }

    .dbt .invest__grid {
        flex-direction: column;
    }

    .dbt .support__grid {
        grid-template-columns: 1fr;
    }

    .dbt .doubt__grid {
        flex-direction: column;
    }

    .dbt .grad__grid {
        flex-direction: column;
    }

    .dbt .grad__outcomes {
        grid-template-columns: 1fr;
    }

    .dbt .invest__math {
        display: none;
    }
}

@media (max-width: 600px) {
    .dbt .opener__h1 {
        font-size: 44px;
    }

    .dbt .opener__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .dbt .invest__h2,
    .dbt .support__h2,
    .dbt .doubt__h2,
    .dbt .grad__h2 {
        font-size: 24px;
    }
}

.abt {
    max-width: 100%;
    overflow-x: hidden;
}

.abt__inner {
    max-width: 1600px;
    margin: 0 auto;
}

@keyframes gradShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.abt__panel {
    position: relative;
    padding: 56px 56px;
    background: linear-gradient(135deg, #f4f6f2 0%, #eef1ec 40%, #f0f4f8 70%, #e8eef4 100%);
    background-size: 300% 300%;
    animation: gradShift 18s linear infinite;
    overflow: hidden;
}

.abt__panel-curves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.abt__panel-split {
    display: flex;
    flex-direction: row;
    gap: 56px;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.abt__panel-left {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.abt__panel-right {
    flex: 0 0 38%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.abt__label {
    display: inline-block;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3293AD;
    font-weight: 600;
}

.abt__h1 {
    font-size: 60px;
    line-height: 1.1;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(to top, #D6553C, #3293AD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.abt__lead {
    font-size: 19px;
    line-height: 1.8;
    color: #2c3a42;
    margin: 0;
    max-width: 640px;
}

.abt__img-frame {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 52px -2px rgba(210, 85, 60, 0.13);
}

.abt__img-frame img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: blur(1.5px) sepia(0.3) contrast(1.05) brightness(0.97);
    transition: filter 0.12s ease-out;
}

.abt__img-frame:hover img {
    filter: blur(0px) sepia(0) contrast(1) brightness(1);
}

.abt__film-strip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-radius: 10px;
    box-shadow: inset 0 0 40px rgba(50, 147, 173, 0.08);
}

.abt__metrics-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: 100%;
}

.abt__ring-item {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 8px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 7px 14px -2px rgba(50, 147, 173, 0.11);
    position: relative;
    overflow: hidden;
}

.abt__ring-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(to right, #3293AD, #D6553C);
    transition: width 0.13s ease-out;
    border-radius: 0 0 10px 10px;
}

.abt__ring-item:hover::after {
    width: 100%;
}

.abt__ring-svg {
    width: 72px;
    height: 72px;
}

.abt__ring-num {
    font-size: 19px;
    line-height: 1.1;
    font-weight: 700;
    color: #2c3a42;
}

.abt__ring-desc {
    font-size: 16px;
    line-height: 1.5;
    color: #5a6e78;
    text-align: center;
}

.abt__scallop {
    width: 100%;
    line-height: 0;
    display: block;
    margin-top: -1px;
}

.abt__body {
    position: relative;
    padding: 56px 56px;
    background: #fff;
    overflow: hidden;
}

.abt__body-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(ellipse at 20% 80%, rgba(50, 147, 173, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(214, 85, 60, 0.04) 0%, transparent 60%);
}

.abt__body-grid {
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    gap: 56px;
    max-width: 1600px;
    margin: 0 auto;
    align-items: start;
}

.abt__sidebar-l {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.abt__sidebar-r {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.abt__center-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.abt__h2 {
    font-size: 44px;
    line-height: 1.1;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(to top, #D6553C, #3293AD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.abt__para {
    font-size: 16px;
    line-height: 1.8;
    color: #2c3a42;
    margin: 0;
}

.abt__para--lg {
    font-size: 19px;
    line-height: 1.8;
    color: #2c3a42;
    margin: 0;
}

.abt__img-side {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 7px 14px -2px rgba(50, 147, 173, 0.11);
}

.abt__img-side img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center center;
    display: block;
    filter: blur(1.5px) sepia(0.25) contrast(1.04);
    transition: filter 0.1s linear;
}

.abt__img-side:hover img {
    filter: blur(0px) sepia(0) contrast(1);
}

.abt__img-mid {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 52px -2px rgba(214, 85, 60, 0.13);
}

.abt__img-mid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    filter: blur(1.5px) sepia(0.3) contrast(1.05) brightness(0.97);
    transition: filter 0.12s ease-out;
}

.abt__img-mid:hover img {
    filter: blur(0px) sepia(0) contrast(1) brightness(1);
}

.abt__stat-card {
    background: linear-gradient(to bottom, #f4f8fb, #eef4f7);
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 3px 5px -2px rgba(50, 147, 173, 0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.abt__stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0%;
    background: #3293AD;
    transition: height 0.13s ease-out;
    border-radius: 10px 0 0 10px;
}

.abt__stat-card:hover::before {
    height: 100%;
}

.abt__stat-num {
    font-size: 44px;
    line-height: 1.1;
    font-weight: 800;
    color: #D6553C;
}

.abt__stat-label {
    font-size: 16px;
    line-height: 1.5;
    color: #4a6270;
}

.abt__person-card {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 7px 14px -2px rgba(214, 85, 60, 0.11);
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.abt__person-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #D6553C;
    transition: width 0.11s ease-out;
}

.abt__person-card:hover::after {
    width: 100%;
}

.abt__person-name {
    font-size: 19px;
    line-height: 1.5;
    font-weight: 700;
    color: #2c3a42;
}

.abt__person-role {
    font-size: 16px;
    line-height: 1.5;
    color: #3293AD;
    font-weight: 600;
}

.abt__person-bio {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6e78;
}

.abt__h3 {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 700;
    color: #2c3a42;
    margin: 0;
}

.abt__tag-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.abt__tag {
    display: inline-block;
    padding: 4px 16px;
    background: #DEE3D8;
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.5;
    color: #2c3a42;
    font-weight: 500;
}

.abt__circles {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    pointer-events: none;
    opacity: 0.07;
}

@media (max-width: 1100px) {
    .abt__body-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .abt__sidebar-r {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .abt__sidebar-r .abt__person-card {
        flex: 1 1 240px;
    }
}

@media (max-width: 800px) {
    .abt__panel {
        padding: 56px 16px;
    }

    .abt__panel-split {
        flex-direction: column;
        gap: 28px;
    }

    .abt__panel-right {
        flex: unset;
        width: 100%;
    }

    .abt__h1 {
        font-size: 44px;
    }

    .abt__body {
        padding: 56px 16px;
    }

    .abt__body-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .abt__sidebar-r {
        flex-direction: column;
    }

    .abt__metrics-row {
        flex-wrap: wrap;
    }

    .abt__ring-item {
        flex: 1 1 120px;
    }
}

.ctus {
    background: #fff;
    overflow-x: clip;
}

.ctus .reach {
    background: #DEE3D8;
    padding: 56px 0 56px 0;
    position: relative;
}

.ctus .reach__dots {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.ctus .reach__dot {
    position: absolute;
    border-radius: 50%;
    background: #3293AD;
    opacity: 0.07;
}

.ctus .reach__dot--a {
    width: 220px;
    height: 220px;
    top: -60px;
    right: -60px;
}

.ctus .reach__dot--b {
    width: 140px;
    height: 140px;
    top: 80px;
    right: 100px;
}

.ctus .reach__dot--c {
    width: 80px;
    height: 80px;
    top: 180px;
    right: 40px;
}

.ctus .reach__dot--d {
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 160px;
}

.ctus .reach__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 56px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 56px;
}

.ctus .reach__left {
    flex: 0 0 auto;
    width: 420px;
}

.ctus .reach__label {
    font-size: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3293AD;
    margin-bottom: 16px;
    line-height: 1.5;
}

.ctus .reach__heading {
    font-size: 44px;
    line-height: 1.1;
    color: #1a2630;
    margin-bottom: 28px;
    background: linear-gradient(to top, #D6553C, #3293AD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ctus .reach__heading--bracket {
    color: #D6553C;
    -webkit-text-fill-color: #D6553C;
}

.ctus .reach__desc {
    font-size: 19px;
    line-height: 1.8;
    color: #2c3a42;
    margin-bottom: 28px;
}

.ctus .reach__items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ctus .reach__item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border-radius: 6px;
    padding: 16px;
    box-shadow: 0 3px 5px -2px rgba(50, 147, 173, 0.08);
    transition: box-shadow 0.12s ease-out, transform 0.1s ease-out;
}

.ctus .reach__item:hover {
    box-shadow: 0 7px 14px -2px rgba(50, 147, 173, 0.11);
    transform: scale(1.02);
}

.ctus .reach__icon {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: #3293AD;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.ctus .reach__icon svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.ctus .reach__item-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ctus .reach__item-label {
    font-size: 16px;
    line-height: 1.5;
    color: #3293AD;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ctus .reach__item-val {
    font-size: 19px;
    line-height: 1.5;
    color: #2c3a42;
}

.ctus .reach__right {
    flex: 1 1 0;
    min-width: 0;
}

.ctus .form-card {
    background: #fff;
    border-radius: 10px;
    padding: 56px;
    box-shadow: 0 12px 52px -2px rgba(214, 85, 60, 0.13);
}

.ctus .form-card__heading {
    font-size: 24px;
    line-height: 1.5;
    color: #2c3a42;
    margin-bottom: 8px;
}

.ctus .form-card__sub {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5a62;
    margin-bottom: 28px;
}

.ctus .form-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 16px;
}

.ctus .form-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 0;
}

.ctus .form-col--full {
    flex: 0 0 100%;
    width: 100%;
}

.ctus .field-lbl {
    font-size: 16px;
    line-height: 1.5;
    color: #2c3a42;
}

.ctus .field-lbl--req {
    color: #D6553C;
    margin-left: 4px;
}

.ctus .field-inp {
    border: 1.5px solid #DEE3D8;
    border-radius: 6px;
    padding: 16px;
    font-size: 16px;
    line-height: 1.5;
    color: #2c3a42;
    background: #fff;
    outline: none;
    transition: border-color 0.1s ease-out, box-shadow 0.1s ease-out;
    width: 100%;
    box-sizing: border-box;
}

.ctus .field-inp::placeholder {
    color: rgba(44, 58, 66, 0.38);
}

.ctus .field-inp:focus {
    border-color: #3293AD;
    box-shadow: 0 3px 5px -2px rgba(50, 147, 173, 0.08);
}

.ctus .field-sel {
    border: 1.5px solid #DEE3D8;
    border-radius: 6px;
    padding: 16px;
    font-size: 16px;
    line-height: 1.5;
    color: #2c3a42;
    background: #fff;
    outline: none;
    transition: border-color 0.1s ease-out;
    width: 100%;
    box-sizing: border-box;
    appearance: none;
    cursor: pointer;
}

.ctus .field-sel:focus {
    border-color: #3293AD;
}

.ctus .sel-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ctus .sel-wrap__arrow {
    position: absolute;
    right: 16px;
    bottom: 18px;
    pointer-events: none;
    width: 12px;
    height: 12px;
}

.ctus .sel-wrap__arrow svg {
    width: 12px;
    height: 12px;
    fill: #3293AD;
}

.ctus .priority-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.ctus .priority-group__label {
    font-size: 16px;
    line-height: 1.5;
    color: #2c3a42;
    margin-bottom: 4px;
}

.ctus .priority-opts {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
}

.ctus .priority-opt {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.ctus .priority-opt__radio {
    width: 18px;
    height: 18px;
    accent-color: #3293AD;
    cursor: pointer;
}

.ctus .priority-opt__text {
    font-size: 16px;
    line-height: 1.5;
    color: #2c3a42;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1.5px solid #DEE3D8;
    transition: border-color 0.1s ease-out, background 0.1s ease-out;
    cursor: pointer;
}

.ctus .priority-opt__radio:checked+.priority-opt__text {
    border-color: #3293AD;
    background: rgba(50, 147, 173, 0.07);
    color: #3293AD;
}

.ctus .urgency-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.ctus .urgency-group__label {
    font-size: 16px;
    line-height: 1.5;
    color: #2c3a42;
}

.ctus .urgency-opts {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
}

.ctus .urgency-opt {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.ctus .urgency-opt__radio {
    width: 18px;
    height: 18px;
    accent-color: #D6553C;
    cursor: pointer;
}

.ctus .urgency-opt__text {
    font-size: 16px;
    line-height: 1.5;
    color: #2c3a42;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1.5px solid #DEE3D8;
    transition: border-color 0.1s ease-out, background 0.12s ease-out;
    cursor: pointer;
}

.ctus .urgency-opt__radio:checked+.urgency-opt__text {
    border-color: #D6553C;
    background: rgba(214, 85, 60, 0.07);
    color: #D6553C;
}

.ctus .msg-area {
    border: 1.5px solid #DEE3D8;
    border-radius: 6px;
    padding: 16px;
    font-size: 16px;
    line-height: 1.8;
    color: #2c3a42;
    background: #fff;
    outline: none;
    resize: vertical;
    min-height: 120px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.1s ease-out;
}

.ctus .msg-area::placeholder {
    color: rgba(44, 58, 66, 0.38);
}

.ctus .msg-area:focus {
    border-color: #3293AD;
}

.ctus .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
    margin-top: 16px;
}

.ctus .privacy-row__check {
    width: 18px;
    height: 18px;
    accent-color: #3293AD;
    margin-top: 4px;
    flex: 0 0 auto;
    cursor: pointer;
}

.ctus .privacy-row__text {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5a62;
}

.ctus .privacy-row__link {
    color: #3293AD;
    text-decoration: underline;
    transition: color 0.1s ease-out;
}

.ctus .privacy-row__link:hover {
    color: #D6553C;
}

.ctus .submit-btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: #2c3a42;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 16px 28px;
    font-size: 19px;
    line-height: 1.5;
    cursor: pointer;
    transition: background 0.12s ease-out, transform 0.1s ease-out, box-shadow 0.12s ease-out;
    box-shadow: 0 3px 5px -2px rgba(214, 85, 60, 0.08);
}

.ctus .submit-btn:hover {
    background: #3293AD;
    transform: scale(1.03);
    box-shadow: 0 7px 14px -2px rgba(50, 147, 173, 0.11);
}

.ctus .submit-btn:hover .submit-btn__icon {
    transform: translateX(4px);
}

.ctus .submit-btn__icon {
    display: inline-flex;
    transition: transform 0.1s ease-out;
}

.ctus .submit-btn__icon svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.ctus .submit-btn:focus {
    outline: 2px solid #3293AD;
    outline-offset: 2px;
}

.ctus .submit-btn:active {
    transform: scale(0.99);
}

.ctus .steps-band {
    background: #fff;
    padding: 56px 0;
}

.ctus .steps-band__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 56px;
}

.ctus .steps-band__top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
    gap: 28px;
}

.ctus .steps-band__heading {
    font-size: 44px;
    line-height: 1.1;
    color: #2c3a42;
    background: linear-gradient(to top, #D6553C, #3293AD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 560px;
}

.ctus .steps-band__note {
    font-size: 19px;
    line-height: 1.8;
    color: #4a5a62;
    max-width: 400px;
}

.ctus .steps-list {
    display: flex;
    flex-direction: row;
    gap: 0;
    position: relative;
}

.ctus .steps-list::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(to right, #3293AD, #D6553C);
    z-index: 0;
}

.ctus .step {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(24px);
    animation: stepReveal 0.4s ease-out forwards;
}

.ctus .step:nth-child(1) {
    animation-delay: 0.08s;
}

.ctus .step:nth-child(2) {
    animation-delay: 0.18s;
}

.ctus .step:nth-child(3) {
    animation-delay: 0.28s;
}

.ctus .step:nth-child(4) {
    animation-delay: 0.38s;
}

@keyframes stepReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ctus .step__num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #3293AD;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    line-height: 1.1;
    color: #3293AD;
    margin-bottom: 16px;
    box-shadow: 0 3px 5px -2px rgba(50, 147, 173, 0.08);
    transition: background 0.12s ease-out, color 0.12s ease-out;
}

.ctus .step:hover .step__num {
    background: #3293AD;
    color: #fff;
}

.ctus .step__name {
    font-size: 19px;
    line-height: 1.5;
    color: #2c3a42;
    margin-bottom: 8px;
}

.ctus .step__detail {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5a62;
}

.ctus .reach__anim {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.35s ease-out forwards;
}

.ctus .reach__anim--a {
    animation-delay: 0.05s;
}

.ctus .reach__anim--b {
    animation-delay: 0.12s;
}

.ctus .reach__anim--c {
    animation-delay: 0.18s;
}

.ctus .reach__anim--d {
    animation-delay: 0.24s;
}

.ctus .reach__anim--e {
    animation-delay: 0.30s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ctus .form-row--single {
    flex-direction: column;
    gap: 16px;
}

@media (max-width: 1100px) {
    .ctus .reach__inner {
        flex-direction: column;
        gap: 28px;
    }

    .ctus .reach__left {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .ctus .reach__inner {
        padding: 0 16px;
    }

    .ctus .form-card {
        padding: 28px 16px;
    }

    .ctus .form-row {
        flex-direction: column;
    }

    .ctus .steps-band__inner {
        padding: 0 16px;
    }

    .ctus .steps-band__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .ctus .steps-list {
        flex-direction: column;
        gap: 28px;
    }

    .ctus .steps-list::before {
        display: none;
    }

    .ctus .step {
        align-items: flex-start;
        text-align: left;
        flex-direction: row;
        gap: 16px;
    }

    .ctus .step__num {
        flex: 0 0 auto;
        margin-bottom: 0;
    }

    .ctus .step__body {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .ctus .priority-opts {
        flex-direction: column;
    }

    .ctus .urgency-opts {
        flex-direction: column;
    }

    .ctus .steps-band__heading {
        font-size: 24px;
    }

    .ctus .reach__heading {
        font-size: 44px;
    }
}

.success-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 56px 28px;
    background-color: #fff;
}

.success-page .success-card {
    max-width: 640px;
    width: 100%;
    background: #fff;
    border: 1px solid #DEE3D8;
    border-radius: 10px;
    padding: 56px;
    box-shadow: 0 12px 52px -2px rgba(210, 85, 60, 0.13);
    text-align: center;
}

.success-page .success-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 28px;
    display: block;
}

.success-page .success-card__heading {
    font-size: 44px;
    line-height: 1.1;
    font-weight: 700;
    margin: 0 0 16px;
    background: linear-gradient(to top, #3293AD, #D6553C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-page .success-card__subtext {
    font-size: 19px;
    line-height: 1.5;
    color: #2c2c2c;
    margin: 0 0 28px;
}

.success-page .success-card__note {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 56px;
    padding: 16px;
    background-color: #f4f6f3;
    border-radius: 6px;
}

.success-page .success-card__link {
    display: inline-block;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    color: #fff;
    background-color: #D6553C;
    padding: 16px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.1s ease-out, transform 0.08s ease-out;
}

.success-page .success-card__link:hover {
    background-color: #be4732;
    transform: scale(1.04);
}

.success-page .success-card__link:focus {
    outline: 3px solid #3293AD;
    outline-offset: 4px;
}

.success-page .success-card__divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(to right, #D6553C, #3293AD);
    border-radius: 2px;
    margin: 0 auto 28px;
}