@import "https://cdn.jsdelivr.net/npm/@fontsource/dm-sans@latest/300.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/dm-sans@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/dm-sans@latest/700.css";

*,
::before,
::after {
    box-sizing: border-box
}

html {
    scroll-behavior: auto
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #FAFBFC;
    color: #132735
}

:focus-visible {
    outline: 2px solid #16FCC3;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px #16fcc326
}

::selection {
    background-color: #16fcc32e;
    color: #132735
}

header {
    position: relative;
    background: linear-gradient(165deg, #FFF 0%, #F4F9F8 45%, #16fcc314 100%);
    padding: 40px 24px 80px;
    border-bottom: 1px solid #16fcc338;
    box-shadow: 0 8px 36px -1px #1327350f
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, #fff0 0%, #fafbfcf2 100%);
    pointer-events: none
}

.hdr-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10
}

.brand-zone {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px
}

.logo-holder {
    display: inline-flex;
    align-items: center;
    padding: 12px;
    background: #FFF;
    border: 1px solid #16fcc340;
    border-radius: 4px;
    box-shadow: 0 4px 20px -1px #13273514 inset 0 1px 0 0 #ffffffe6;
    width: fit-content;
    transition: transform .15s ease-out, box-shadow .15s ease-out
}

.logo-holder:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 36px -1px #1327351c inset 0 1px 0 0 #ffffffe6
}

.logo-holder img {
    width: 68px;
    height: 68px;
    display: block;
    object-fit: contain
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 12px
}

.company-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    color: #132735;
    letter-spacing: -.02em
}

.tagline {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #132735b8
}

.accent-shape {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #16fcc326 0%, #16fcc30d 100%);
    border: 2px solid #16fcc34d;
    border-radius: 22px;
    transform: rotate(12deg);
    pointer-events: none
}

.accent-shape::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    background: #16FCC3;
    border-radius: 2px;
    transform: translate(-50%, -50%) rotate(-12deg);
    opacity: .4
}

.nav-primary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center
}

.nav-primary a {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: #132735;
    text-decoration: none;
    background: #ffffffb3;
    border: 1px solid #16fcc32e;
    border-radius: 22px;
    transition: background-color .12s ease, transform .12s ease, border-color .12s ease, box-shadow .12s ease;
    box-shadow: 0 1px 4px -1px #1327350f
}

.nav-primary a:hover {
    background: #FFF;
    border-color: #16fcc366;
    transform: scale(1.05);
    box-shadow: 0 4px 20px -1px #1327351c
}

.nav-primary a:active {
    transform: scale(1.02)
}

@media (max-width: 768px) {
    header {
        padding: 24px 24px 60px
    }

    .brand-zone {
        margin-bottom: 24px
    }

    .company-title {
        font-size: 20px
    }

    .tagline {
        font-size: 15px
    }

    .accent-shape {
        width: 60px;
        height: 60px;
        top: 12px;
        right: 12px
    }

    .accent-shape::before {
        width: 24px;
        height: 24px
    }

    .nav-primary {
        gap: 8px
    }

    .nav-primary a {
        padding: 8px 24px;
        font-size: 15px
    }
}

@media (max-width: 640px) {
    .logo-holder img {
        width: 56px;
        height: 56px
    }

    .nav-primary a {
        flex: 1 1 100%;
        justify-content: center
    }
}

footer {
    background: linear-gradient(175deg, #F4F9F8 0%, #FFF 100%);
    border-top: 1px solid #16fcc338;
    padding: 80px 24px 40px;
    margin-top: 80px
}

.ftr-container {
    max-width: 1200px;
    margin: 0 auto
}

.ftr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 80px
}

.ftr-brand-col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ftr-logo-row {
    display: flex;
    align-items: center;
    gap: 24px
}

.ftr-logo-box {
    display: inline-flex;
    padding: 8px;
    background: #FFF;
    border: 1px solid #16fcc333;
    border-radius: 4px;
    box-shadow: 0 1px 4px -1px #1327350f
}

.ftr-logo-box img {
    width: 48px;
    height: 48px;
    display: block;
    object-fit: contain
}

.ftr-company-name {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #132735
}

.ftr-description {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #132735b8
}

.ftr-col h3 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: #132735;
    margin: 0 0 24px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.ftr-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0
}

.ftr-links a {
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: #132735d1;
    text-decoration: none;
    transition: color .12s ease, transform .12s ease;
    padding: 4px 0
}

.ftr-links a:hover {
    color: #132735;
    transform: translateX(4px)
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0
}

.contact-info-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 15px;
    line-height: 1.8
}

.contact-label {
    font-weight: 700;
    font-size: 15px;
    color: #132735;
    text-transform: uppercase;
    letter-spacing: .04em
}

.contact-value {
    font-weight: 300;
    color: #132735d1
}

.contact-value a {
    color: #132735d1;
    text-decoration: none;
    transition: color .12s ease
}

.contact-value a:hover {
    color: #132735
}

.ftr-bottom {
    padding-top: 40px;
    border-top: 1px solid #16fcc326;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px
}

.copyright {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #1327359e
}

.ftr-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0
}

.ftr-legal-links a {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: #132735b8;
    text-decoration: none;
    transition: color .12s ease
}

.ftr-legal-links a:hover {
    color: #132735
}

@media (max-width: 768px) {
    footer {
        padding: 60px 24px 40px;
        margin-top: 60px
    }

    .ftr-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px
    }

    .ftr-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px
    }

    .ftr-legal-links {
        flex-direction: column;
        gap: 12px
    }
}

.consent-card {
    position: fixed;
    top: 24px;
    right: 24px;
    max-width: 420px;
    background: #FFF;
    border: 1px solid #16fcc340;
    border-radius: 4px;
    padding: 24px;
    box-shadow: 0 8px 36px -1px #13273521 0 4px 20px -1px #1327351c;
    z-index: 2000;
    transform: translateX(480px);
    transition: transform .18s ease-out
}

.consent-card.visible {
    transform: translateX(0)
}

.consent-headline {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #132735;
    margin: 0 0 12px
}

.consent-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #132735d1;
    margin: 0 0 24px
}

.consent-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.consent-btn {
    flex: 1;
    min-width: 140px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    font-family: 'DM Sans', sans-serif;
    color: #132735;
    background: transparent;
    border: 1px solid #16fcc366;
    border-radius: 22px;
    cursor: pointer;
    transition: background-color .12s ease, transform .12s ease, border-color .12s ease, box-shadow .12s ease;
    box-shadow: 0 1px 4px -1px #1327350f
}

.consent-btn:hover {
    background: #16fcc314;
    border-color: #16fcc399;
    transform: scale(1.05);
    box-shadow: 0 4px 20px -1px #1327351c
}

.consent-btn:active {
    transform: scale(1.02)
}

.consent-btn:focus-visible {
    outline: 2px solid #16FCC3;
    outline-offset: 2px
}

@media (max-width: 640px) {
    .consent-card {
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        max-width: none;
        border-radius: 4px 4px 0 0;
        transform: translateY(100%)
    }

    .consent-card.visible {
        transform: translateY(0)
    }

    .consent-actions {
        flex-direction: column
    }

    .consent-btn {
        min-width: auto
    }
}

.mini-consent-tab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #FFF;
    border: 1px solid #16fcc340;
    border-radius: 22px;
    padding: 12px 24px;
    box-shadow: 0 4px 20px -1px #1327351c;
    z-index: 1999;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: #132735;
    transition: transform .12s ease, box-shadow .12s ease;
    display: none
}

.mini-consent-tab:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 36px -1px #13273521
}

body[data-consent-set="true"] .mini-consent-tab {
    display: block
}

@media (max-width: 640px) {
    .mini-consent-tab {
        bottom: 12px;
        right: 12px;
        left: 12px;
        text-align: center
    }
}

.doc-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    background: #FFF
}

.doc-info p {
    font-size: 15px;
    line-height: 1.8;
    color: #132735;
    margin: 0 0 24px
}

.doc-info p:last-child {
    margin-bottom: 0
}

.doc-info ul,
.doc-info ol {
    font-size: 15px;
    line-height: 1.8;
    color: #132735;
    margin: 0 0 24px;
    padding-left: 24px
}

.doc-info ul:last-child,
.doc-info ol:last-child {
    margin-bottom: 0
}

.doc-info li {
    margin-bottom: 12px
}

.doc-info li:last-child {
    margin-bottom: 0
}

.doc-info em,
.doc-info i {
    font-style: italic;
    color: #132735
}

.doc-info a {
    color: #16FCC3;
    text-decoration: none;
    transition: opacity .15s ease-out
}

.doc-info a:hover {
    opacity: .7
}

.doc-info table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 40px;
    font-size: 15px;
    line-height: 1.8
}

.doc-info table:last-child {
    margin-bottom: 0
}

.doc-info thead {
    background: #16fcc314
}

.doc-info th {
    text-align: left;
    padding: 12px 24px;
    color: #132735;
    font-weight: 600;
    border-bottom: 2px solid #1327351c
}

.doc-info td {
    padding: 12px 24px;
    color: #132735;
    border-bottom: 1px solid #1327350f
}

.doc-info tbody tr:last-child td {
    border-bottom: none
}

.doc-info hr {
    border: none;
    height: 1px;
    background: #1327351c;
    margin: 40px 0
}

.doc-info div {
    margin: 0 0 24px
}

.doc-info div:last-child {
    margin-bottom: 0
}

@media (max-width: 768px) {
    .doc-info {
        padding: 40px 24px
    }

    .doc-info table {
        font-size: 15px;
        display: block;
        overflow-x: auto
    }

    .doc-info th,
    .doc-info td {
        padding: 8px 12px
    }
}

@media (max-width: 640px) {
    .doc-info {
        padding: 40px 12px
    }
}

.rdmp {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    position: relative;
    overflow-x: clip
}

.rdmp::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #16fcc314 0%, transparent 70%);
    border-radius: 50%;
    animation: rdmp-rotate 40s linear infinite;
    pointer-events: none;
    z-index: 1
}

@keyframes rdmp-rotate {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.rdmp-intro {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    position: relative;
    z-index: 2
}

.rdmp-intro-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px
}

.rdmp-intro-visual {
    width: 100%;
    max-width: 800px;
    position: relative
}

.rdmp-intro-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, #16FCC3 0%, transparent 100%)
}

.rdmp-intro-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #16FCC3 0%, transparent 100%)
}

.rdmp-intro-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    filter: brightness(0.75) contrast(1.1);
    transition: filter .15s ease-out;
    position: relative
}

.rdmp-intro-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #16fcc340 0%, transparent 60%);
    pointer-events: none
}

.rdmp-intro-visual:hover .rdmp-intro-img {
    filter: brightness(1) contrast(1)
}

.rdmp-intro-content {
    text-align: center;
    max-width: 680px
}

.rdmp-intro h1 {
    font-size: 64px;
    line-height: 1.2;
    color: #132735;
    margin: 0 0 24px;
    background: linear-gradient(135deg, #132735 0%, #16FCC3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.rdmp-intro-desc {
    font-size: 20px;
    line-height: 1.8;
    color: #132735;
    margin: 0
}

@media (max-width: 768px) {
    .rdmp-intro {
        padding: 40px 24px
    }

    .rdmp-intro h1 {
        font-size: 48px
    }

    .rdmp-intro-img {
        height: 320px
    }
}

.rdmp-phases {
    background: linear-gradient(90deg, #16fcc30a 0%, #fff 100%);
    position: relative;
    padding: 80px 0;
    z-index: 2
}

.rdmp-phases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: radial-gradient(ellipse at 30% 50%, #16fcc34d 0%, transparent 70%)
}

.rdmp-phases::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    right: 0;
    height: 3px;
    background: radial-gradient(ellipse at 30% 50%, #16fcc326 0%, transparent 70%)
}

.rdmp-phases-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.rdmp-phases h2 {
    font-size: 48px;
    line-height: 1.2;
    color: #132735;
    margin: 0 0 40px;
    text-align: center
}

.rdmp-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative
}

.rdmp-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: 80px;
    width: 2px;
    background: linear-gradient(180deg, #16FCC3 0%, #16fcc333 100%)
}

.rdmp-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    position: relative
}

.rdmp-step-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16FCC3 0%, #16fcc399 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    line-height: 1.2;
    color: #132735;
    font-weight: 700;
    box-shadow: 0 4px 20px -1px #16fcc31c 0 8px 36px -1px #16fcc321;
    position: relative;
    z-index: 3;
    animation: rdmp-pulse 3s ease-in-out infinite
}

@keyframes rdmp-pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px -1px #16fcc31c 0 8px 36px -1px #16fcc321
    }

    50% {
        box-shadow: 0 4px 20px -1px #16fcc340 0 8px 36px -1px #16fcc359
    }
}

.rdmp-step:nth-child(1) .rdmp-step-num {
    animation-delay: 0s
}

.rdmp-step:nth-child(2) .rdmp-step-num {
    animation-delay: .75s
}

.rdmp-step:nth-child(3) .rdmp-step-num {
    animation-delay: 1.5s
}

.rdmp-step:nth-child(4) .rdmp-step-num {
    animation-delay: 2.25s
}

.rdmp-step-body {
    background: #fff;
    border-radius: 4px;
    padding: 24px;
    box-shadow: 0 1px 4px -1px #1327350f 0 4px 20px -1px #1327351c
}

.rdmp-step h3 {
    font-size: 34px;
    line-height: 1.2;
    color: #132735;
    margin: 0 0 12px
}

.rdmp-step-period {
    font-size: 15px;
    line-height: 1.8;
    color: #16FCC3;
    margin: 0 0 12px;
    font-weight: 600
}

.rdmp-step p {
    font-size: 15px;
    line-height: 1.8;
    color: #132735;
    margin: 0
}

@media (max-width: 768px) {
    .rdmp-phases {
        padding: 40px 0
    }

    .rdmp-phases h2 {
        font-size: 34px
    }

    .rdmp-timeline::before {
        left: 32px
    }

    .rdmp-step {
        grid-template-columns: 64px 1fr
    }

    .rdmp-step-num {
        width: 64px;
        height: 64px;
        font-size: 20px
    }

    .rdmp-step h3 {
        font-size: 20px
    }
}

.rdmp-skills {
    padding: 80px 0;
    position: relative;
    z-index: 2;
    background: #fff
}

.rdmp-skills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: radial-gradient(ellipse at 70% 50%, #13273526 0%, transparent 70%)
}

.rdmp-skills::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    right: 0;
    height: 3px;
    background: radial-gradient(ellipse at 70% 50%, #13273514 0%, transparent 70%)
}

.rdmp-skills-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.rdmp-skills h2 {
    font-size: 48px;
    line-height: 1.2;
    color: #132735;
    margin: 0 0 24px;
    background: linear-gradient(135deg, #16FCC3 0%, #132735 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.rdmp-skills-intro {
    font-size: 20px;
    line-height: 1.8;
    color: #132735;
    margin: 0 0 40px;
    max-width: 800px
}

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

.rdmp-skill-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 22px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 4px -1px #1327350f;
    transition: transform .12s ease-out, box-shadow .12s ease-out
}

.rdmp-skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, #16fcc314 0%, transparent 60%);
    opacity: 0;
    transition: opacity .15s ease;
    pointer-events: none
}

.rdmp-skill-card:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 20px -1px #1327351c 0 8px 36px -1px #13273521
}

.rdmp-skill-card:hover::before {
    opacity: 1
}

.rdmp-skill-icon {
    width: 64px;
    height: 64px;
    margin: 0 0 12px;
    position: relative
}

.rdmp-skill-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #16FCC3;
    stroke-width: 2
}

.rdmp-skill-card h4 {
    font-size: 20px;
    line-height: 1.2;
    color: #132735;
    margin: 0 0 8px
}

.rdmp-skill-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #132735;
    margin: 0
}

@media (max-width: 1024px) {
    .rdmp-skills-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 640px) {
    .rdmp-skills {
        padding: 40px 0
    }

    .rdmp-skills h2 {
        font-size: 34px
    }

    .rdmp-skills-grid {
        grid-template-columns: 1fr
    }
}

.rdmp-outcomes {
    padding: 80px 0;
    background: radial-gradient(circle at 80% 20%, #16fcc30d 0%, transparent 70%), repeating-radial-gradient(circle at 50% 50%, transparent 0px, transparent 20px, #16fcc305 20px, #16fcc305 40px);
    position: relative;
    z-index: 2
}

.rdmp-outcomes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: radial-gradient(ellipse at 50% 50%, #16fcc333 0%, transparent 70%)
}

.rdmp-outcomes::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    right: 0;
    height: 3px;
    background: radial-gradient(ellipse at 50% 50%, #16fcc31a 0%, transparent 70%)
}

.rdmp-outcomes-inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 24px
}

.rdmp-outcomes h2 {
    font-size: 48px;
    line-height: 1.2;
    color: #132735;
    margin: 0 0 40px;
    text-align: center
}

.rdmp-outcomes-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.rdmp-outcomes-list li {
    padding: 24px 0;
    border-bottom: 1px solid #13273514;
    position: relative
}

.rdmp-outcomes-list li:last-child {
    border-bottom: none !important
}

.rdmp-outcomes-list h5 {
    font-size: 20px;
    line-height: 1.2;
    color: #132735;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 12px
}

.rdmp-outcomes-list h5::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #16FCC3;
    border-radius: 50%;
    flex-shrink: 0
}

.rdmp-outcomes-list p {
    font-size: 15px;
    line-height: 1.8;
    color: #132735;
    margin: 0;
    padding-left: 20px
}

.rdmp-outcomes-trust {
    margin-top: 40px;
    padding: 24px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 4px -1px #1327350f 0 4px 20px -1px #1327351c;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden
}

.rdmp-outcomes-trust::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #16FCC3 0%, #16fcc34d 100%)
}

.rdmp-trust-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0
}

.rdmp-trust-icon svg {
    width: 100%;
    height: 100%;
    fill: #16FCC3
}

.rdmp-trust-text {
    font-size: 15px;
    line-height: 1.8;
    color: #132735;
    margin: 0
}

.rdmp-trust-text strong {
    color: #16FCC3;
    font-weight: 600
}

@media (max-width: 768px) {
    .rdmp-outcomes {
        padding: 40px 0
    }

    .rdmp-outcomes h2 {
        font-size: 34px
    }

    .rdmp-outcomes-trust {
        flex-direction: column;
        text-align: center
    }
}

.start {
    background: #f7f7f5;
    overflow-x: clip
}

.start ::selection {
    background: #16fcc326;
    color: inherit
}

.start input::placeholder,
.start textarea::placeholder {
    color: inherit;
    opacity: .4
}

.start .title-intro {
    background: #132735;
    color: #FFF;
    padding: 80px 24px;
    position: relative;
    overflow: hidden
}

.start .title-intro::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 8%;
    width: 8px;
    height: 8px;
    background: #16FCC3;
    border-radius: 50%;
    opacity: .6
}

.start .title-intro::after {
    content: '';
    position: absolute;
    bottom: 80px;
    right: 12%;
    width: 12px;
    height: 12px;
    background: #16FCC3;
    border-radius: 50%;
    opacity: .4
}

.start .title-intro-pattern {
    position: absolute;
    top: 24px;
    right: 20%;
    width: 6px;
    height: 6px;
    background: #16FCC3;
    border-radius: 50%;
    opacity: .5
}

.start .title-intro-pattern-two {
    position: absolute;
    bottom: 40px;
    left: 15%;
    width: 10px;
    height: 10px;
    background: #16FCC3;
    border-radius: 50%;
    opacity: .3
}

.start .title-intro-contain {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.start .title-intro h1 {
    font-size: 64px;
    line-height: 1.2;
    margin: 0 0 24px;
    animation: slideUpFade .16s ease-out
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

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

.start .title-intro-tag {
    font-size: 20px;
    line-height: 1.8;
    margin: 0 0 40px;
    color: #ffffffd9;
    max-width: 720px;
    animation: slideUpFade .18s ease-out .08s backwards
}

.start .title-intro-actions {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
    animation: slideUpFade .2s ease-out .16s backwards
}

.start .title-intro-btn {
    display: inline-block;
    padding: 12px 40px;
    background: #16FCC3;
    color: #132735;
    text-decoration: none;
    border-radius: 22px;
    font-size: 15px;
    font-weight: 600;
    transition: transform .15s ease-out, box-shadow .15s ease-out;
    box-shadow: 0 4px 20px -1px #16fcc31c
}

.start .title-intro-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 36px -1px #16fcc321
}

.start .title-intro-btn:focus-visible {
    outline: 2px solid #16FCC3 !important;
    outline-offset: 4px !important
}

.start .title-intro-link {
    display: inline-block;
    padding: 12px 40px;
    background: transparent;
    color: #FFF;
    text-decoration: none;
    border-radius: 22px;
    font-size: 15px;
    border: 2px solid #ffffff4d;
    transition: transform .15s ease-out, border-color .15s ease-out
}

.start .title-intro-link:hover {
    transform: scale(1.05);
    border-color: #fff9
}

.start .title-intro-link:focus-visible {
    outline: 2px solid #16FCC3 !important;
    outline-offset: 4px !important
}

@media (max-width: 768px) {
    .start .title-intro {
        padding: 40px 24px
    }

    .start .title-intro h1 {
        font-size: 48px
    }

    .start .title-intro-actions {
        flex-direction: column
    }

    .start .title-intro-btn,
    .start .title-intro-link {
        text-align: center
    }
}

.start .doubt-frame {
    padding: 80px 24px;
    background: #FFF;
    position: relative
}

.start .doubt-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 85% 15%, #16fcc30f, transparent 50%);
    pointer-events: none
}

.start .doubt-hold {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.start .doubt-diagonal {
    position: absolute;
    top: 12%;
    right: 8%;
    width: 180px;
    height: 1px;
    background: linear-gradient(to right, #16fcc34d, transparent);
    transform: rotate(-35deg);
    pointer-events: none
}

.start .doubt-head {
    font-size: 48px;
    line-height: 1.2;
    margin: 0 0 40px;
    color: #132735;
    max-width: 820px
}

.start .doubt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: start
}

.start .doubt-text-col {
    animation: slideUpFade .18s ease-out
}

.start .doubt-text-col p {
    font-size: 15px;
    line-height: 1.8;
    color: #132735;
    margin: 0 0 24px
}

.start .doubt-text-col p:first-of-type {
    font-size: 20px;
    line-height: 1.8
}

.start .doubt-text-col p:last-child {
    margin-bottom: 0
}

.start .doubt-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 20px -1px #1327351c;
    animation: slideUpFade .2s ease-out .1s backwards
}

.start .doubt-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform .18s ease-out
}

.start .doubt-img-wrap:hover img {
    transform: scale(1.04)
}

.start .doubt-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #132735eb, transparent);
    color: #FFF;
    padding: 40px 24px 24px;
    font-size: 15px;
    line-height: 1.8;
    opacity: 0;
    transition: opacity .15s ease-out;
    pointer-events: none
}

.start .doubt-img-wrap:hover .doubt-caption {
    opacity: 1
}

@media (max-width: 1024px) {
    .start .doubt-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .start .doubt-head {
        font-size: 34px
    }
}

@media (max-width: 640px) {
    .start .doubt-frame {
        padding: 40px 24px
    }

    .start .doubt-head {
        font-size: 34px;
        margin-bottom: 24px
    }

    .start .doubt-img-wrap img {
        height: 320px
    }
}

.start .conditions-zone {
    padding: 80px 24px;
    background: #132735;
    color: #FFF;
    position: relative;
    overflow: hidden
}

.start .conditions-zone::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 80px;
    background: #FFF;
    border-radius: 0 0 50% 50%;
    transform: scaleX(1.5)
}

.start .conditions-contain {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.start .conditions-head {
    font-size: 48px;
    line-height: 1.2;
    margin: 0 0 40px;
    background: linear-gradient(135deg, #16FCC3 0%, #FFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block
}

.start .conditions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.start .conditions-list li {
    padding: 24px 0;
    border-bottom: 1px solid #ffffff26;
    font-size: 15px;
    line-height: 1.8;
    color: #ffffffe6;
    animation: slideUpFade .16s ease-out
}

.start .conditions-list li:last-child {
    border-bottom: none
}

.start .conditions-list li:nth-child(1) {
    animation-delay: .05s;
    animation-fill-mode: backwards
}

.start .conditions-list li:nth-child(2) {
    animation-delay: .1s;
    animation-fill-mode: backwards
}

.start .conditions-list li:nth-child(3) {
    animation-delay: .15s;
    animation-fill-mode: backwards
}

.start .conditions-list li:nth-child(4) {
    animation-delay: .2s;
    animation-fill-mode: backwards
}

@media (max-width: 640px) {
    .start .conditions-zone {
        padding: 40px 24px
    }

    .start .conditions-head {
        font-size: 34px;
        margin-bottom: 24px
    }
}

.start .proof-stage {
    padding: 80px 24px;
    background: #f7f7f5;
    position: relative
}

.start .proof-stage::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 5%;
    width: 220px;
    height: 1px;
    background: linear-gradient(to right, transparent, #13273533, transparent);
    transform: rotate(42deg);
    pointer-events: none
}

.start .proof-hold {
    max-width: 1200px;
    margin: 0 auto;
    position: relative
}

.start .proof-head {
    font-size: 48px;
    line-height: 1.2;
    margin: 0 0 40px;
    color: #132735
}

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

.start .proof-card {
    background: #FFF;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 4px -1px #1327350f;
    transition: transform .14s ease-out, box-shadow .14s ease-out;
    animation: slideUpFade .17s ease-out
}

.start .proof-card:nth-child(1) {
    animation-delay: .05s;
    animation-fill-mode: backwards
}

.start .proof-card:nth-child(2) {
    animation-delay: .1s;
    animation-fill-mode: backwards
}

.start .proof-card:nth-child(3) {
    animation-delay: .15s;
    animation-fill-mode: backwards
}

.start .proof-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 36px -1px #13273521
}

.start .proof-img-box {
    position: relative;
    overflow: hidden;
    height: 280px
}

.start .proof-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .18s ease-out
}

.start .proof-card:hover .proof-img-box img {
    transform: scale(1.06)
}

.start .proof-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #132735e6, transparent);
    color: #FFF;
    padding: 40px 24px 24px;
    font-size: 15px;
    line-height: 1.8;
    opacity: 0;
    transition: opacity .14s ease-out;
    pointer-events: none
}

.start .proof-card:hover .proof-img-caption {
    opacity: 1
}

.start .proof-txt {
    padding: 24px
}

.start .proof-txt h3 {
    font-size: 20px;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #132735
}

.start .proof-txt p {
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    color: #132735
}

@media (max-width: 1024px) {
    .start .proof-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .start .proof-head {
        font-size: 34px
    }
}

@media (max-width: 640px) {
    .start .proof-stage {
        padding: 40px 24px
    }

    .start .proof-head {
        font-size: 34px;
        margin-bottom: 24px
    }

    .start .proof-img-box {
        height: 240px
    }
}

.start .lasting-space {
    padding: 80px 24px;
    background: #FFF;
    position: relative
}

.start .lasting-contain {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.start .lasting-visual {
    position: relative;
    animation: slideUpFade .19s ease-out
}

.start .lasting-img-frame {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 4px 20px -1px #1327351c
}

.start .lasting-img-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform .17s ease-out
}

.start .lasting-img-frame:hover img {
    transform: scale(1.05)
}

.start .lasting-img-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #132735e0, transparent);
    color: #FFF;
    padding: 40px 24px 24px;
    font-size: 15px;
    line-height: 1.8;
    opacity: 0;
    transition: opacity .16s ease-out;
    pointer-events: none
}

.start .lasting-img-frame:hover .lasting-img-label {
    opacity: 1
}

.start .lasting-diagonal-line {
    position: absolute;
    bottom: 8%;
    right: -5%;
    width: 160px;
    height: 1px;
    background: linear-gradient(to left, #16fcc366, transparent);
    transform: rotate(-28deg);
    pointer-events: none
}

.start .lasting-txt {
    animation: slideUpFade .19s ease-out .08s backwards
}

.start .lasting-txt h2 {
    font-size: 48px;
    line-height: 1.2;
    margin: 0 0 24px;
    color: #132735
}

.start .lasting-txt p {
    font-size: 15px;
    line-height: 1.8;
    color: #132735;
    margin: 0 0 24px
}

.start .lasting-txt p:first-of-type {
    font-size: 20px;
    line-height: 1.8
}

.start .lasting-txt p:last-child {
    margin-bottom: 0
}

.start .lasting-metrics {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-top: 40px
}

.start .lasting-metric-pair {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 12px
}

.start .lasting-before {
    font-size: 34px;
    line-height: 1.2;
    color: #13273566;
    font-weight: 300
}

.start .lasting-after {
    font-size: 48px;
    line-height: 1.2;
    color: #16FCC3;
    font-weight: 700
}

@media (max-width: 1024px) {
    .start .lasting-contain {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .start .lasting-txt h2 {
        font-size: 34px
    }
}

@media (max-width: 640px) {
    .start .lasting-space {
        padding: 40px 24px
    }

    .start .lasting-txt h2 {
        font-size: 34px
    }

    .start .lasting-img-frame img {
        height: 320px
    }

    .start .lasting-metrics {
        flex-direction: column;
        gap: 24px
    }
}

.start .distinction-area {
    padding: 80px 24px;
    background: linear-gradient(135deg, #132735 0%, #1a3d52 100%);
    color: #FFF;
    position: relative
}

.start .distinction-wrap {
    max-width: 1200px;
    margin: 0 auto;
    position: relative
}

.start .distinction-head {
    font-size: 48px;
    line-height: 1.2;
    margin: 0 0 40px;
    color: #FFF
}

.start .distinction-cols {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start
}

.start .distinction-txt-side {
    animation: slideUpFade .18s ease-out
}

.start .distinction-txt-side p {
    font-size: 15px;
    line-height: 1.8;
    color: #ffffffe6;
    margin: 0 0 24px
}

.start .distinction-txt-side p:first-of-type {
    font-size: 20px;
    line-height: 1.8
}

.start .distinction-txt-side p:last-child {
    margin-bottom: 0
}

.start .distinction-img-side {
    position: relative;
    animation: slideUpFade .2s ease-out .1s backwards
}

.start .distinction-img-box {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 8px 36px -1px #16fcc321
}

.start .distinction-img-box img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform .16s ease-out
}

.start .distinction-img-box:hover img {
    transform: scale(1.04)
}

.start .distinction-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #132735f0, transparent);
    color: #FFF;
    padding: 40px 24px 24px;
    font-size: 15px;
    line-height: 1.8;
    opacity: 0;
    transition: opacity .15s ease-out;
    pointer-events: none
}

.start .distinction-img-box:hover .distinction-overlay {
    opacity: 1
}

.start .distinction-cta {
    margin-top: 40px;
    animation: slideUpFade .2s ease-out .15s backwards
}

.start .distinction-btn {
    display: inline-block;
    padding: 12px 40px;
    background: #16FCC3;
    color: #132735;
    text-decoration: none;
    border-radius: 22px;
    font-size: 15px;
    font-weight: 600;
    transition: transform .14s ease-out, box-shadow .14s ease-out;
    box-shadow: 0 4px 20px -1px #16fcc31c
}

.start .distinction-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 36px -1px #16fcc321
}

.start .distinction-btn:focus-visible {
    outline: 2px solid #16FCC3 !important;
    outline-offset: 4px !important
}

@media (max-width: 1024px) {
    .start .distinction-cols {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .start .distinction-head {
        font-size: 34px
    }
}

@media (max-width: 640px) {
    .start .distinction-area {
        padding: 40px 24px
    }

    .start .distinction-head {
        font-size: 34px;
        margin-bottom: 24px
    }

    .start .distinction-img-box img {
        height: 280px
    }
}

.abt-us {
    background: #FAFCFC;
    color: #132735;
    overflow-x: clip
}

.abt-us ::selection {
    background: #16fcc32e;
    color: #132735
}

.abt-us .intro-dual {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative
}

.abt-us .intro-dual::before {
    content: '';
    position: absolute;
    top: 24px;
    right: 24px;
    width: 180px;
    height: 180px;
    border: 1px solid #16fcc326;
    border-radius: 4px;
    pointer-events: none
}

.abt-us .intro-dual::after {
    content: '';
    position: absolute;
    top: 32px;
    right: 32px;
    width: 180px;
    height: 180px;
    border: 1px solid #16fcc314;
    border-radius: 4px;
    pointer-events: none
}

.abt-us .intro-txt {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-us .intro-txt h1 {
    font-size: 48px;
    line-height: 1.2;
    margin: 0;
    background: radial-gradient(circle at top right, #16FCC3 0%, #132735 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.abt-us .intro-txt .lead {
    font-size: 20px;
    line-height: 1.8;
    color: #132735;
    margin: 0
}

.abt-us .intro-txt .body-txt {
    font-size: 15px;
    line-height: 1.8;
    color: #132735;
    margin: 0
}

.abt-us .intro-img-wrap {
    position: relative;
    height: 520px;
    overflow: hidden;
    border-radius: 4px
}

.abt-us .intro-img-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, #16fcc31f, transparent 60%);
    pointer-events: none;
    z-index: 2
}

.abt-us .intro-img-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 80px #16fcc314;
    pointer-events: none;
    z-index: 3;
    border-radius: 4px
}

.abt-us .intro-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.abt-us .intro-dual .shape-accent {
    position: absolute;
    bottom: 40px;
    left: 24px;
    width: 120px;
    height: 120px;
    background: #16fcc30f;
    border-radius: 22px;
    pointer-events: none;
    z-index: 1
}

.abt-us .mission-zone {
    background: #FFF;
    position: relative;
    padding: 80px 24px;
    overflow: hidden
}

.abt-us .mission-zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #16FCC3, transparent)
}

.abt-us .mission-zone::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #16fcc366, transparent)
}

.abt-us .mission-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative
}

.abt-us .mission-parallax {
    position: absolute;
    top: -40px;
    right: 0;
    width: 480px;
    height: 600px;
    background-image: url(./visual_resources/PIC9493.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    opacity: .08;
    pointer-events: none;
    transform: translateY(0);
    will-change: transform
}

.abt-us .mission-content {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 40px
}

.abt-us .mission-content h2 {
    font-size: 48px;
    line-height: 1.2;
    margin: 0;
    color: #132735
}

.abt-us .mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.abt-us .mission-card {
    background: #F7F9FA;
    padding: 24px;
    border-radius: 4px;
    border-left: 2px solid #16FCC3;
    transition: transform .15s ease-out, box-shadow .15s ease-out
}

.abt-us .mission-card:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 20px -1px #16fcc31c
}

.abt-us .mission-card h3 {
    font-size: 20px;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #132735
}

.abt-us .mission-card p {
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    color: #132735
}

.abt-us .mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px
}

.abt-us .stat-item {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #16fcc308, #13273505);
    border-radius: 22px;
    position: relative;
    overflow: hidden
}

.abt-us .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #16FCC3, transparent);
    animation: shimmer 3s infinite
}

@keyframes shimmer {

    0%,
    100% {
        opacity: .3
    }

    50% {
        opacity: 1
    }
}

.abt-us .stat-num {
    font-size: 48px;
    line-height: 1.2;
    margin: 0 0 8px;
    background: radial-gradient(circle at top right, #16FCC3 0%, #132735 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600
}

.abt-us .stat-label {
    font-size: 15px;
    line-height: 1.2;
    margin: 0;
    color: #132735;
    text-transform: uppercase;
    letter-spacing: .05em
}

.abt-us .team-showcase {
    background: #F4F7F8;
    padding: 80px 24px;
    position: relative
}

.abt-us .team-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #16FCC3, transparent, #16FCC3)
}

.abt-us .team-inner {
    max-width: 1200px;
    margin: 0 auto
}

.abt-us .team-header {
    text-align: center;
    margin-bottom: 80px
}

.abt-us .team-header h2 {
    font-size: 48px;
    line-height: 1.2;
    margin: 0 0 24px;
    color: #132735
}

.abt-us .team-header p {
    font-size: 20px;
    line-height: 1.8;
    margin: 0;
    color: #132735;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto
}

.abt-us .team-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative
}

.abt-us .team-layout::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 960px;
    height: 2px;
    background: radial-gradient(circle at center, #16FCC3, transparent)
}

.abt-us .team-member {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative
}

.abt-us .team-member::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #16fcc34d, transparent);
    animation: underline-draw 1.2s ease-out forwards;
    transform-origin: left
}

@keyframes underline-draw {
    from {
        transform: scaleX(0)
    }

    to {
        transform: scaleX(1)
    }
}

.abt-us .member-img-wrap {
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 4px;
    position: relative
}

.abt-us .member-img-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at bottom right, #16fcc314, transparent 70%);
    pointer-events: none;
    z-index: 2
}

.abt-us .member-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .18s ease-out
}

.abt-us .team-member:hover .member-img-wrap img {
    transform: scale(1.05)
}

.abt-us .member-info {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.abt-us .member-name {
    font-size: 20px;
    line-height: 1.2;
    margin: 0;
    color: #132735;
    font-weight: 600
}

.abt-us .member-role {
    font-size: 15px;
    line-height: 1.2;
    margin: 0;
    color: #132735;
    opacity: .7;
    text-transform: uppercase;
    letter-spacing: .05em
}

.abt-us .member-bio {
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    color: #132735
}

.abt-us .value-prop-pair {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: baseline
}

.abt-us .value-label {
    font-size: 15px;
    line-height: 1.2;
    color: #132735;
    opacity: .6;
    padding-right: 8px;
    border-right: 1px solid #16fcc34d
}

.abt-us .value-data {
    font-size: 15px;
    line-height: 1.2;
    color: #132735;
    padding-left: 8px
}

@media (max-width: 1024px) {
    .abt-us .intro-dual {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .abt-us .intro-img-wrap {
        height: 400px
    }

    .abt-us .mission-parallax {
        width: 360px;
        height: 480px
    }

    .abt-us .mission-grid {
        grid-template-columns: 1fr
    }

    .abt-us .mission-stats {
        grid-template-columns: 1fr 1fr
    }

    .abt-us .team-layout {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 768px) {
    .abt-us .intro-dual {
        padding: 40px 24px
    }

    .abt-us .intro-txt h1 {
        font-size: 34px
    }

    .abt-us .intro-txt .lead {
        font-size: 15px
    }

    .abt-us .intro-img-wrap {
        height: 320px
    }

    .abt-us .mission-zone {
        padding: 40px 24px
    }

    .abt-us .mission-content h2 {
        font-size: 34px
    }

    .abt-us .mission-parallax {
        display: none
    }

    .abt-us .mission-stats {
        grid-template-columns: 1fr
    }

    .abt-us .stat-num {
        font-size: 34px
    }

    .abt-us .team-showcase {
        padding: 40px 24px
    }

    .abt-us .team-header {
        margin-bottom: 40px
    }

    .abt-us .team-header h2 {
        font-size: 34px
    }

    .abt-us .team-header p {
        font-size: 15px
    }

    .abt-us .team-layout {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .abt-us .member-img-wrap {
        height: 360px
    }
}

@media (max-width: 640px) {

    .abt-us .intro-dual::before,
    .abt-us .intro-dual::after {
        display: none
    }

    .abt-us .intro-dual .shape-accent {
        display: none
    }

    .abt-us .mission-card {
        padding: 24px
    }

    .abt-us .stat-item {
        padding: 24px 12px
    }
}

.success-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #FFF 0%, #F5F7F9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px
}

.success-page .confirm-wrap {
    max-width: 640px;
    width: 100%;
    background: #FFF;
    border-radius: 4px;
    box-shadow: 0 4px 20px -1px #1327351c;
    padding: 80px 40px;
    text-align: center
}

.success-page .icon-check {
    width: 80px;
    height: 80px;
    margin: 0 auto 40px;
    position: relative
}

.success-page .icon-check svg {
    width: 100%;
    height: 100%
}

.success-page .icon-check circle {
    stroke: #16FCC3;
    stroke-width: 3;
    fill: none;
    stroke-dasharray: 251;
    stroke-dashoffset: 251;
    animation: drawCircle .6s ease-out forwards
}

.success-page .icon-check polyline {
    stroke: #16FCC3;
    stroke-width: 3;
    fill: none;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: drawCheck .4s .4s ease-out forwards
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0
    }
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0
    }
}

.success-page .confirm-title {
    font-size: 48px;
    line-height: 1.2;
    color: #132735;
    margin: 0 0 24px;
    background: linear-gradient(135deg, #16FCC3 0%, #132735 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.success-page .confirm-text {
    font-size: 20px;
    line-height: 1.8;
    color: #132735;
    margin: 0 0 40px;
    opacity: .8
}

.success-page .action-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.success-page .btn-primary {
    display: inline-block;
    padding: 12px 40px;
    background: #16FCC3;
    color: #132735;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 22px;
    transition: transform .15s ease-out, box-shadow .15s ease-out;
    box-shadow: 0 1px 4px -1px #16fcc30f
}

.success-page .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 36px -1px #16fcc321
}

.success-page .btn-secondary {
    display: inline-block;
    padding: 12px 40px;
    background: transparent;
    color: #132735;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #132735;
    border-radius: 22px;
    transition: transform .15s ease-out, background .15s ease-out
}

.success-page .btn-secondary:hover {
    transform: scale(1.05);
    background: #1327350d
}

.success-page .meta-info {
    margin: 80px 0 0;
    padding: 24px 0 0;
    border-top: 1px solid #1327351a
}

.success-page .meta-text {
    font-size: 15px;
    line-height: 1.8;
    color: #132735;
    opacity: .6;
    margin: 0
}

.success-page .meta-text a {
    color: #16FCC3;
    text-decoration: none;
    transition: opacity .12s ease
}

.success-page .meta-text a:hover {
    opacity: .7
}

@media (max-width: 640px) {
    .success-page .confirm-wrap {
        padding: 40px 24px
    }

    .success-page .confirm-title {
        font-size: 34px
    }

    .success-page .action-group {
        flex-direction: column
    }

    .success-page .btn-primary,
    .success-page .btn-secondary {
        width: 100%
    }

    .success-page .icon-check {
        width: 64px;
        height: 64px;
        margin-bottom: 24px
    }
}

.contact-pg {
    background: #FAFBFC;
    min-height: 100vh
}

.contact-pg::selection {
    background: #16fcc326;
    color: #132735
}

.contact-pg .top-band {
    position: relative;
    background: radial-gradient(circle at 92% 8%, #16FCC3 0%, #16fcc300 68%), linear-gradient(135deg, #132735 0%, #1a3a4d 100%);
    padding: 80px 24px 40px;
    overflow: hidden
}

.contact-pg .top-band::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #16FCC3 0%, transparent 100%)
}

.contact-pg .top-band-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center
}

.contact-pg .top-text {
    flex: 0 0 40%;
    z-index: 2
}

.contact-pg .top-heading {
    font-size: 48px;
    line-height: 1.2;
    color: #FFF;
    margin: 0 0 12px;
    background: linear-gradient(135deg, #FFF 0%, #16FCC3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.contact-pg .top-tagline {
    font-size: 20px;
    line-height: 1.8;
    color: #ffffffd9;
    margin: 0 0 24px
}

.contact-pg .top-links {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap
}

.contact-pg .top-link {
    display: inline-block;
    padding: 8px 24px;
    background: #16fcc31f;
    color: #16FCC3;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid #16fcc34d;
    border-radius: 22px;
    transition: background .15s ease-out, transform .12s ease
}

.contact-pg .top-link:hover {
    background: #16fcc338;
    transform: scale(1.05)
}

.contact-pg .top-img-wrap {
    flex: 0 0 60%;
    position: relative;
    z-index: 1
}

.contact-pg .top-img-container {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 36px -1px #13273521
}

.contact-pg .top-img-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, #13273599 0%, transparent 100%);
    z-index: 2;
    pointer-events: none
}

.contact-pg .top-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.contact-pg .top-decor-stripe {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #16FCC3 0%, transparent 100%)
}

.contact-pg .form-zone {
    padding: 80px 24px;
    background: #FFF;
    position: relative
}

.contact-pg .form-zone::before {
    content: 'X';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 480px;
    line-height: 1;
    color: #16fcc308;
    font-weight: 700;
    pointer-events: none;
    z-index: 0
}

.contact-pg .form-zone-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start
}

.contact-pg .reach-details {
    flex: 0 0 40%;
    animation: slideInLeft .6s ease-out
}

.contact-pg .reach-heading {
    font-size: 34px;
    line-height: 1.2;
    color: #132735;
    margin: 0 0 24px
}

.contact-pg .reach-intro {
    font-size: 20px;
    line-height: 1.8;
    color: #132735cc;
    margin: 0 0 40px
}

.contact-pg .reach-intro-second {
    font-size: 15px;
    line-height: 1.8;
    color: #132735b3;
    margin: 0 0 40px
}

.contact-pg .reach-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.contact-pg .reach-item {
    padding: 0 0 24px;
    margin: 0 0 24px;
    border-bottom: 1px solid #13273514
}

.contact-pg .reach-item:last-child {
    border-bottom: none;
    margin-bottom: 0
}

.contact-pg .reach-label {
    font-size: 15px;
    line-height: 1.2;
    color: #13273580;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.contact-pg .reach-value {
    font-size: 20px;
    line-height: 1.8;
    color: #132735;
    margin: 0
}

.contact-pg .reach-value a {
    color: #132735;
    text-decoration: none;
    transition: color .12s ease
}

.contact-pg .reach-value a:hover {
    color: #16FCC3
}

.contact-pg .reach-chart {
    margin: 40px 0 0;
    padding: 24px;
    background: linear-gradient(135deg, #16fcc30a 0%, #13273505 100%);
    border-radius: 4px;
    border: 1px solid #16fcc31a
}

.contact-pg .chart-heading {
    font-size: 15px;
    line-height: 1.2;
    color: #13273599;
    margin: 0 0 24px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.contact-pg .chart-bars {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.contact-pg .chart-bar-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px
}

.contact-pg .chart-bar-label {
    flex: 0 0 80px;
    font-size: 15px;
    line-height: 1.2;
    color: #132735
}

.contact-pg .chart-bar-track {
    flex: 1;
    height: 24px;
    background: #1327350f;
    border-radius: 2px;
    position: relative;
    overflow: hidden
}

.contact-pg .chart-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #16FCC3 0%, #132735 100%);
    border-radius: 2px;
    animation: barExpand 1.8s ease-out forwards;
    transform-origin: left center
}

.contact-pg .chart-bar-fill.w-85 {
    width: 85%
}

.contact-pg .chart-bar-fill.w-72 {
    width: 72%;
    animation-delay: .2s
}

.contact-pg .chart-bar-fill.w-91 {
    width: 91%;
    animation-delay: .4s
}

.contact-pg .chart-bar-fill.w-68 {
    width: 68%;
    animation-delay: .6s
}

@keyframes barExpand {
    from {
        transform: scaleX(0)
    }

    to {
        transform: scaleX(1)
    }
}

.contact-pg .form-container {
    flex: 0 0 60%;
    background: #FFF;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 4px 20px -1px #1327351c;
    animation: slideInRight .8s ease-out
}

.contact-pg .form-heading {
    font-size: 34px;
    line-height: 1.2;
    color: #132735;
    margin: 0 0 12px
}

.contact-pg .form-subtext {
    font-size: 15px;
    line-height: 1.8;
    color: #132735b3;
    margin: 0 0 40px
}

.contact-pg .form-actual {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.contact-pg .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.contact-pg .form-label {
    font-size: 15px;
    line-height: 1.2;
    color: #132735;
    font-weight: 600
}

.contact-pg .form-input {
    width: 100%;
    padding: 12px 24px;
    font-size: 15px;
    line-height: 1.8;
    color: #132735;
    background: #FAFBFC;
    border: 1px solid #1327351f;
    border-radius: 2px;
    transition: border-color .15s ease, box-shadow .15s ease;
    box-sizing: border-box
}

.contact-pg .form-input::placeholder {
    color: #13273566
}

.contact-pg .form-input:focus {
    outline: none;
    border-color: #16FCC3;
    box-shadow: 0 0 0 3px #16fcc31a
}

.contact-pg .form-input:hover {
    border-color: #1327353d
}

.contact-pg .form-textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit
}

.contact-pg .form-select {
    width: 100%;
    padding: 12px 24px;
    font-size: 15px;
    line-height: 1.8;
    color: #132735;
    background: #FAFBFC;
    border: 1px solid #1327351f;
    border-radius: 2px;
    transition: border-color .15s ease, box-shadow .15s ease;
    cursor: pointer;
    box-sizing: border-box;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23132735' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 24px center;
    padding-right: 48px
}

.contact-pg .form-select:focus {
    outline: none;
    border-color: #16FCC3;
    box-shadow: 0 0 0 3px #16fcc31a
}

.contact-pg .form-select:hover {
    border-color: #1327353d
}

.contact-pg .form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.contact-pg .form-time-prefs {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.contact-pg .form-time-label {
    font-size: 15px;
    line-height: 1.2;
    color: #132735;
    font-weight: 600;
    margin-bottom: 4px
}

.contact-pg .time-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.contact-pg .time-option {
    position: relative
}

.contact-pg .time-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.contact-pg .time-option-label {
    display: block;
    padding: 12px 24px;
    font-size: 15px;
    line-height: 1.2;
    color: #132735;
    background: #FAFBFC;
    border: 1px solid #1327351f;
    border-radius: 2px;
    text-align: center;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, transform .12s ease;
    user-select: none
}

.contact-pg .time-option input[type="checkbox"]:checked+.time-option-label {
    background: #16fcc31f;
    border-color: #16FCC3;
    color: #132735
}

.contact-pg .time-option-label:hover {
    background: #16fcc30f;
    border-color: #1327353d;
    transform: scale(1.02)
}

.contact-pg .privacy-check {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 24px;
    background: #16fcc30a;
    border-radius: 2px;
    border: 1px solid #16fcc31a
}

.contact-pg .privacy-check input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #16FCC3
}

.contact-pg .privacy-text {
    font-size: 15px;
    line-height: 1.8;
    color: #132735cc;
    margin: 0
}

.contact-pg .privacy-text a {
    color: #132735;
    text-decoration: underline;
    transition: color .12s ease
}

.contact-pg .privacy-text a:hover {
    color: #16FCC3
}

.contact-pg .form-submit {
    padding: 12px 40px;
    font-size: 15px;
    line-height: 1.2;
    color: #132735;
    background: #16FCC3;
    border: none;
    border-radius: 22px;
    cursor: pointer;
    transition: background .15s ease, transform .12s ease, box-shadow .15s ease;
    font-weight: 600;
    align-self: flex-start;
    box-shadow: 0 1px 4px -1px #1327350f
}

.contact-pg .form-submit:hover {
    background: #13e4b0;
    transform: scale(1.05);
    box-shadow: 0 4px 20px -1px #16fcc34d
}

.contact-pg .form-submit:active {
    transform: scale(0.98)
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@media (max-width: 1024px) {
    .contact-pg .top-band-inner {
        flex-direction: column;
        gap: 40px
    }

    .contact-pg .top-text {
        flex: 1 1 100%
    }

    .contact-pg .top-img-wrap {
        flex: 1 1 100%
    }

    .contact-pg .form-zone-inner {
        flex-direction: column;
        gap: 40px
    }

    .contact-pg .reach-details {
        flex: 1 1 100%
    }

    .contact-pg .form-container {
        flex: 1 1 100%
    }

    .contact-pg .form-row-split {
        grid-template-columns: 1fr
    }

    .contact-pg .time-options {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 768px) {
    .contact-pg .top-band {
        padding: 40px 24px 24px
    }

    .contact-pg .top-heading {
        font-size: 34px
    }

    .contact-pg .top-tagline {
        font-size: 15px
    }

    .contact-pg .top-img-container {
        height: 200px
    }

    .contact-pg .form-zone {
        padding: 40px 24px
    }

    .contact-pg .form-zone::before {
        font-size: 240px
    }

    .contact-pg .reach-heading,
    .contact-pg .form-heading {
        font-size: 20px
    }

    .contact-pg .reach-intro {
        font-size: 15px
    }

    .contact-pg .reach-value {
        font-size: 15px
    }

    .contact-pg .form-container {
        padding: 24px
    }

    .contact-pg .time-options {
        grid-template-columns: 1fr
    }

    .contact-pg .chart-bar-label {
        flex: 0 0 60px
    }
}

@media (max-width: 640px) {
    .contact-pg .top-links {
        flex-direction: column
    }

    .contact-pg .top-link {
        text-align: center
    }
}