html {
box-sizing: border-box;
font-size: 100%;
scroll-behavior: smooth;
}

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

body {
margin: 0;
}

*:focus-visible {
outline: 3px solid;
outline-color: #396FB2;
outline-offset: 3px;
border-radius: 2px;
}

.page_header {
position: relative;
background-color: #ffffff;
border-bottom: 1px solid #EDF6F7;
overflow: hidden;
}

.header_accent_bar {
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 6px;
background: linear-gradient(180deg, #396FB2 0%, #88C5CC 100%);
z-index: 1;
}

.header_shell {
max-width: 1024px;
margin: 0 auto;
padding: 0 32px 0 38px;
display: flex;
align-items: stretch;
min-height: 88px;
position: relative;
z-index: 2;
}

.brand_mount {
display: flex;
align-items: center;
flex-shrink: 0;
margin-right: 32px;
}

.brand_logo_hold {
display: flex;
align-items: center;
justify-content: center;
width: 70px;
height: 60px;
border-radius: 40px;
background-color: #EDF6F7;
box-shadow: 0 0 0 2px #88C5CC, 0 0 0 4px #ffffff, 0 3px 6px 0 rgba(57, 111, 178, 0.06);
text-decoration: none;
}

.brand_logo_hold img {
width: 55px;
height: 55px;
object-fit: contain;
display: block;
}

.brand_name_hold {
margin-left: 16px;
display: flex;
flex-direction: column;
justify-content: center;
}

.brand_label {
font-family: 'Cormorant', serif;
font-size: 23px;
font-weight: 700;
font-style: italic;
line-height: 1.1;
color: #396FB2;
letter-spacing: -0.02em;
text-decoration: none;
}

.brand_descriptor {
font-family: 'Cormorant', serif;
font-size: 15px;
line-height: 1.35;
color: #88C5CC;
letter-spacing: 0.04em;
margin-top: 2px;
}

.header_right {
flex: 1;
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 16px 0;
}

.header_contact_row {
display: flex;
justify-content: flex-end;
align-items: center;
gap: 32px;
}

.contact_item {
display: flex;
align-items: center;
gap: 8px;
font-family: 'Cormorant', serif;
font-size: 15px;
line-height: 1.35;
color: #396FB2;
text-decoration: none;
letter-spacing: 0.02em;
}

.contact_item svg {
flex-shrink: 0;
}

.contact_item:hover {
color: #88C5CC;
transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.primary_action_link {
font-family: 'Cormorant', serif;
font-size: 15px;
font-weight: 700;
line-height: 1.35;
letter-spacing: 0.04em;
color: #ffffff;
background-color: #396FB2;
padding: 8px 16px;
border-radius: 6px;
text-decoration: none;
display: inline-block;
position: relative;
overflow: hidden;
}

.primary_action_link::before {
content: '';
position: absolute;
inset: 0;
background-color: #88C5CC;
transform: translateX(-100%);
transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
z-index: 0;
}

.primary_action_link:hover::before {
transform: translateX(0);
}

.primary_action_link span {
position: relative;
z-index: 1;
}

.header_nav_row {
display: flex;
justify-content: flex-end;
align-items: center;
gap: 8px;
}

.nav_list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
}

.nav_item {
position: relative;
}

.nav_link {
font-family: 'Cormorant', serif;
font-size: 16px;
line-height: 1.35;
color: #2a2a35;
text-decoration: none;
padding: 8px 16px;
border-radius: 6px;
display: inline-block;
letter-spacing: 0.02em;
position: relative;
overflow: hidden;
}

.nav_link::after {
content: '';
position: absolute;
bottom: 6px;
left: 16px;
right: 16px;
height: 1px;
background-color: #396FB2;
transform: scaleX(0);
transform-origin: left center;
transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav_link:hover {
color: #396FB2;
transition: color 0.4s ease-in-out;
}

.nav_link:hover::after {
transform: scaleX(1);
}

.nav_link_active {
color: #396FB2;
font-weight: 700;
}

.nav_link_active::after {
transform: scaleX(1);
}

.header_stripe {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, #396FB2 0%, #88C5CC 60%, #EDF6F7 100%);
}

.page_footer {
background-color: #2a2a35;
color: #EDF6F7;
}

.footer_upper {
max-width: 1024px;
margin: 0 auto;
padding: 64px 32px 32px;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 32px;
align-items: start;
}

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

.footer_logo_hold {
display: flex;
align-items: center;
justify-content: center;
width: 64px;
height: 64px;
border-radius: 40px;
background-color: #EDF6F7;
box-shadow: 0 0 0 2px #88C5CC, 0 0 0 4px #3a3a45, 0 5px 20px 0 rgba(136, 197, 204, 0.09);
}

.footer_logo_hold img {
width: 52px;
height: 52px;
object-fit: contain;
display: block;
}

.footer_brand_name {
font-family: 'Cormorant', serif;
font-size: 23px;
font-weight: 700;
font-style: italic;
line-height: 1.1;
color: #88C5CC;
letter-spacing: -0.01em;
}

.footer_brand_text {
font-family: 'Cormorant', serif;
font-size: 15px;
line-height: 1.6;
color: #8a9aaa;
letter-spacing: 0.02em;
}

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

.footer_column_heading {
font-family: 'Cormorant', serif;
font-size: 16px;
line-height: 1.35;
color: #EDF6F7;
letter-spacing: 0.06em;
font-weight: 700;
text-transform: uppercase;
}

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

.footer_link {
font-family: 'Cormorant', serif;
font-size: 16px;
line-height: 1.6;
color: #8a9aaa;
text-decoration: none;
letter-spacing: 0.01em;
display: inline-block;
position: relative;
}

.footer_link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 1px;
background-color: #88C5CC;
transform: scaleX(0);
transform-origin: left center;
transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer_link:hover {
color: #EDF6F7;
transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer_link:hover::after {
transform: scaleX(1);
}

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

.footer_contact_item {
display: flex;
align-items: flex-start;
gap: 8px;
font-family: 'Cormorant', serif;
font-size: 15px;
line-height: 1.6;
color: #8a9aaa;
text-decoration: none;
letter-spacing: 0.01em;
}

.footer_contact_item svg {
flex-shrink: 0;
margin-top: 3px;
}

.footer_contact_item:hover {
color: #EDF6F7;
transition: color 0.45s ease-in-out;
}

.footer_bottom {
border-top: 1px solid #3a3a45;
max-width: 1024px;
margin: 0 auto;
padding: 16px 32px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
flex-wrap: wrap;
}

.footer_copyright {
font-family: 'Cormorant', serif;
font-size: 15px;
line-height: 1.35;
color: #5a6a7a;
letter-spacing: 0.02em;
}

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

.footer_policy_link {
font-family: 'Cormorant', serif;
font-size: 15px;
line-height: 1.35;
color: #5a6a7a;
text-decoration: none;
letter-spacing: 0.02em;
}

.footer_policy_link:hover {
color: #88C5CC;
transition: color 0.4s ease-in-out;
}

.consent_bar {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 4000;
display: none;
background-color: #ffffff;
box-shadow: 0 5px 20px 0 rgba(57, 111, 178, 0.09);
border-bottom: 2px solid #EDF6F7;
transform: translateX(-100%);
transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.consent_bar_shell {
max-width: 1024px;
margin: 0 auto;
padding: 16px 32px;
display: flex;
align-items: center;
gap: 32px;
flex-wrap: wrap;
}

.consent_text_hold {
flex: 1;
min-width: 200px;
}

.consent_description {
font-family: 'Cormorant', serif;
font-size: 15px;
line-height: 1.6;
color: #2a2a35;
letter-spacing: 0.01em;
}

.consent_headline {
font-family: 'Cormorant', serif;
font-size: 16px;
font-weight: 700;
line-height: 1.35;
color: #396FB2;
letter-spacing: 0.02em;
margin-top: 8px;
}

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

.consent_accept {
font-family: 'Cormorant', serif;
font-size: 16px;
font-weight: 700;
line-height: 1.35;
color: #396FB2;
background-color: transparent;
border: 2px solid #396FB2;
border-radius: 6px;
padding: 8px 16px;
cursor: pointer;
letter-spacing: 0.02em;
min-height: 44px;
position: relative;
overflow: hidden;
}

.consent_accept::before {
content: '';
position: absolute;
inset: 0;
background-color: #396FB2;
transform: translateX(-100%);
transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
z-index: 0;
}

.consent_accept:hover::before {
transform: translateX(0);
}

.consent_accept:hover {
color: #ffffff;
transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.consent_accept span {
position: relative;
z-index: 1;
}

.consent_decline {
font-family: 'Cormorant', serif;
font-size: 16px;
font-weight: 700;
line-height: 1.35;
color: #88C5CC;
background-color: transparent;
border: 2px solid #88C5CC;
border-radius: 6px;
padding: 8px 16px;
cursor: pointer;
letter-spacing: 0.02em;
min-height: 44px;
position: relative;
overflow: hidden;
}

.consent_decline::before {
content: '';
position: absolute;
inset: 0;
background-color: #88C5CC;
transform: translateX(-100%);
transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
z-index: 0;
}

.consent_decline:hover::before {
transform: translateX(0);
}

.consent_decline:hover {
color: #ffffff;
transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.consent_decline span {
position: relative;
z-index: 1;
}

@media (max-width: 768px) {
.header_shell {
flex-wrap: wrap;
min-height: auto;
padding: 16px 16px 16px 22px;
gap: 16px;
}

.header_right {
width: 100%;
padding: 0;
gap: 8px;
}

.header_contact_row {
gap: 16px;
flex-wrap: wrap;
}

.contact_item {
font-size: 15px;
}

.footer_upper {
grid-template-columns: 1fr;
padding: 32px 16px;
gap: 32px;
}

.footer_bottom {
padding: 16px;
flex-direction: column;
align-items: flex-start;
gap: 8px;
}

.consent_bar_shell {
padding: 16px;
gap: 16px;
}

.brand_name_hold {
display: none;
}
}

@media (max-width: 480px) {
.header_contact_row {
display: none;
}

.header_nav_row {
justify-content: flex-start;
}
}

.doc-inner {
max-width: 1024px;
margin: 0 auto;
padding: 64px 32px;
color: #2a3a4a;
}

.doc-inner p {
font-size: 16px;
line-height: 1.8;
margin-bottom: 16px;
color: #2a3a4a;
}

.doc-inner ul,
.doc-inner ol {
padding-left: 32px;
margin-bottom: 16px;
}

.doc-inner ul {
list-style-type: disc;
}

.doc-inner ol {
list-style-type: decimal;
}

.doc-inner li {
font-size: 16px;
line-height: 1.8;
margin-bottom: 8px;
color: #2a3a4a;
}

.doc-inner li::marker {
color: #396FB2;
}

.doc-inner em,
.doc-inner i {
font-style: italic;
color: #2a3a4a;
}

.doc-inner a {
color: #396FB2;
text-decoration: underline;
text-underline-offset: 3px;
text-decoration-thickness: 1px;
transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.doc-inner a:hover {
color: #88C5CC;
}

.doc-inner a:visited {
color: #396FB2;
opacity: 0.8;
}

.doc-inner table {
width: 100%;
border-collapse: collapse;
margin-bottom: 32px;
font-size: 15px;
line-height: 1.6;
box-shadow: 0 3px 6px 0 rgba(57, 111, 178, 0.06);
border-radius: 6px;
overflow: hidden;
}

.doc-inner thead {
background-color: #396FB2;
}

.doc-inner thead tr {
border-bottom: none;
}

.doc-inner tbody tr {
border-bottom: 1px solid #EDF6F7;
transition: background-color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.doc-inner tbody tr:last-child {
border-bottom: none;
}

.doc-inner tbody tr:hover {
background-color: #EDF6F7;
}

.doc-inner th {
padding: 16px;
text-align: left;
font-size: 15px;
font-weight: 700;
letter-spacing: 0.04em;
color: #ffffff;
line-height: 1.35;
}

.doc-inner td {
padding: 16px;
font-size: 15px;
color: #2a3a4a;
line-height: 1.6;
vertical-align: top;
}

.doc-inner tbody tr:nth-child(even) {
background-color: #f5fbfc;
}

.doc-inner tbody tr:nth-child(even):hover {
background-color: #EDF6F7;
}

.doc-inner hr {
border: none;
border-top: 1px solid #88C5CC;
opacity: 0.4;
margin: 32px 0;
}

.doc-inner div {
font-size: 16px;
line-height: 1.8;
color: #2a3a4a;
}

@media (max-width: 768px) {
.doc-inner {
padding: 32px 16px;
}

.doc-inner table {
display: block;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
border-radius: 6px;
}

.doc-inner th,
.doc-inner td {
padding: 8px 16px;
min-width: 120px;
}

.doc-inner ul,
.doc-inner ol {
padding-left: 16px;
}
}

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

.trial-access .page-body {
max-width: 1024px;
margin: 0 auto;
padding: 0 32px;
}

.trial-access .split-entry {
display: grid;
grid-template-columns: 1fr 1.4fr;
min-height: 560px;
position: relative;
}

.trial-access .split-entry .image-zone {
position: relative;
overflow: hidden;
border-radius: 0 12px 12px 0;
}

.trial-access .split-entry .image-zone img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center top;
display: block;
}

.trial-access .split-entry .image-zone .light-leak {
position: absolute;
top: 0;
left: 0;
width: 60%;
height: 60%;
background: linear-gradient(135deg, rgba(136, 197, 204, 0.45) 0%, transparent 65%);
pointer-events: none;
}

.trial-access .split-entry .image-zone .blob-decor {
position: absolute;
bottom: -32px;
right: -32px;
width: 180px;
height: 180px;
background: rgba(57, 111, 178, 0.08);
border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
pointer-events: none;
}

.trial-access .split-entry .text-zone {
padding: 96px 64px 96px 64px;
display: flex;
flex-direction: column;
justify-content: center;
background: #fff;
}

.trial-access .split-entry .text-zone .dot-row {
display: flex;
flex-direction: row;
gap: 8px;
margin-bottom: 32px;
}

.trial-access .split-entry .text-zone .dot-row span {
width: 6px;
height: 6px;
border-radius: 40px;
background: #88C5CC;
display: block;
}

.trial-access .split-entry .text-zone .dot-row span:first-child {
background: #396FB2;
}

.trial-access .split-entry .text-zone h1 {
font-size: 58px;
line-height: 1.1;
letter-spacing: -0.03em;
color: #1b2c45;
margin: 0 0 32px 0;
text-shadow: 0 2px 0 rgba(57, 111, 178, 0.08);
}

.trial-access .split-entry .text-zone h1 em {
font-style: normal;
color: #396FB2;
display: block;
}

.trial-access .split-entry .text-zone .entry-description {
font-size: 19px;
line-height: 1.6;
color: #2d3e55;
margin: 0 0 32px 0;
max-width: 420px;
}

.trial-access .split-entry .text-zone .entry-meta {
font-size: 15px;
line-height: 1.35;
color: #396FB2;
letter-spacing: 0.04em;
}

.trial-access .split-entry .circle-decor {
position: absolute;
bottom: 64px;
left: -48px;
pointer-events: none;
z-index: 0;
}

.trial-access .split-entry .circle-decor span {
position: absolute;
border-radius: 40px;
border: 2px solid rgba(136, 197, 204, 0.18);
}

.trial-access .split-entry .circle-decor span:nth-child(1) {
width: 80px;
height: 80px;
top: 0;
left: 0;
}

.trial-access .split-entry .circle-decor span:nth-child(2) {
width: 56px;
height: 56px;
top: 16px;
left: 16px;
border-color: rgba(57, 111, 178, 0.13);
}

.trial-access .split-entry .circle-decor span:nth-child(3) {
width: 32px;
height: 32px;
top: 32px;
left: 32px;
border-color: rgba(136, 197, 204, 0.22);
}

.trial-access .process-strip {
background: linear-gradient(83deg, #396FB2 0%, #88C5CC 100%);
padding: 64px 0;
}

.trial-access .process-strip .page-body {
display: flex;
flex-direction: column;
gap: 32px;
}

.trial-access .process-strip .strip-label {
font-size: 15px;
line-height: 1.35;
color: rgba(237, 246, 247, 0.75);
letter-spacing: 0.08em;
text-transform: uppercase;
}

.trial-access .process-strip .steps-row {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 16px;
}

.trial-access .process-strip .step-item {
display: flex;
flex-direction: column;
gap: 16px;
padding: 32px;
background: rgba(255, 255, 255, 0.1);
border-radius: 12px;
position: relative;
overflow: hidden;
transition: background 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.trial-access .process-strip .step-item:hover {
background: rgba(255, 255, 255, 0.18);
}

.trial-access .process-strip .step-item .step-number {
font-size: 43px;
line-height: 1.1;
color: rgba(237, 246, 247, 0.2);
font-weight: 700;
letter-spacing: -0.04em;
position: absolute;
top: 16px;
right: 16px;
}

.trial-access .process-strip .step-item .step-icon {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
}

.trial-access .process-strip .step-item .step-icon svg {
width: 28px;
height: 28px;
fill: none;
stroke: #EDF6F7;
stroke-width: 1.8;
stroke-linecap: round;
stroke-linejoin: round;
}

.trial-access .process-strip .step-item h4 {
font-size: 16px;
line-height: 1.35;
color: #EDF6F7;
margin: 0;
letter-spacing: 0.01em;
text-shadow: 0 1px 4px rgba(57, 111, 178, 0.2);
}

.trial-access .process-strip .step-item p {
font-size: 15px;
line-height: 1.6;
color: rgba(237, 246, 247, 0.82);
margin: 0;
}

.trial-access .metrics-field {
padding: 96px 0;
background: #EDF6F7;
position: relative;
}

.trial-access .metrics-field .blob-bg {
position: absolute;
top: 0;
right: 0;
width: 380px;
height: 380px;
background: rgba(57, 111, 178, 0.04);
border-radius: 40% 60% 70% 30% / 50% 30% 70% 50%;
pointer-events: none;
overflow: hidden;
}

.trial-access .metrics-field .page-body {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 64px;
align-items: start;
}

.trial-access .metrics-field .left-column {
display: flex;
flex-direction: column;
gap: 32px;
}

.trial-access .metrics-field h2 {
font-size: 43px;
line-height: 1.1;
color: #1b2c45;
margin: 0;
letter-spacing: -0.02em;
text-shadow: 0 2px 0 rgba(57, 111, 178, 0.07);
}

.trial-access .metrics-field .field-description {
font-size: 16px;
line-height: 1.6;
color: #2d3e55;
margin: 0;
}

.trial-access .metrics-field .metric-list {
display: flex;
flex-direction: column;
gap: 16px;
list-style: none;
padding: 0;
margin: 0;
}

.trial-access .metrics-field .metric-list li {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 16px;
font-size: 15px;
line-height: 1.6;
color: #2d3e55;
}

.trial-access .metrics-field .metric-list li .arrow-mark {
width: 18px;
height: 18px;
flex-shrink: 0;
margin-top: 2px;
}

.trial-access .metrics-field .metric-list li .arrow-mark svg {
width: 18px;
height: 18px;
fill: none;
stroke: #396FB2;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
}

.trial-access .metrics-field .right-column {
display: flex;
flex-direction: column;
gap: 16px;
}

.trial-access .metrics-field .stat-card {
background: #fff;
border-radius: 12px;
padding: 32px;
display: flex;
flex-direction: column;
gap: 8px;
box-shadow: 0 5px 20px 0 rgba(57, 111, 178, 0.09);
transition: box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.trial-access .metrics-field .stat-card:hover {
box-shadow: 0 10px 52px 0 rgba(57, 111, 178, 0.11);
transform: translateY(-2px);
}

.trial-access .metrics-field .stat-card .stat-value {
font-size: 43px;
line-height: 1.1;
color: #396FB2;
font-weight: 700;
letter-spacing: -0.03em;
}

.trial-access .metrics-field .stat-card .stat-label {
font-size: 15px;
line-height: 1.35;
color: #2d3e55;
}

.trial-access .metrics-field .stat-card.secondary-stat {
background: linear-gradient(83deg, rgba(57, 111, 178, 0.06) 0%, rgba(136, 197, 204, 0.1) 100%);
box-shadow: 0 3px 6px 0 rgba(57, 111, 178, 0.06);
}

.trial-access .metrics-field .stat-card.secondary-stat .stat-value {
color: #1b2c45;
}

.trial-access .access-form-area {
padding: 96px 0;
background: #fff;
position: relative;
}

.trial-access .access-form-area .animated-bg {
position: absolute;
inset: 0;
pointer-events: none;
overflow: hidden;
}

.trial-access .access-form-area .animated-bg .corner-a {
position: absolute;
top: 0;
left: 0;
width: 320px;
height: 320px;
background: rgba(57, 111, 178, 0.04);
border-radius: 40px;
animation: bgshift 6s ease-in-out infinite alternate;
}

.trial-access .access-form-area .animated-bg .corner-b {
position: absolute;
bottom: 0;
right: 0;
width: 280px;
height: 280px;
background: rgba(136, 197, 204, 0.06);
border-radius: 40px;
animation: bgshift 6s ease-in-out 3s infinite alternate-reverse;
}

@keyframes bgshift {
0% {
opacity: 0.5;
transform: scale(1);
}

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

.trial-access .access-form-area .page-body {
display: flex;
flex-direction: column;
align-items: center;
gap: 64px;
position: relative;
}

.trial-access .access-form-area .area-header {
text-align: center;
display: flex;
flex-direction: column;
gap: 16px;
max-width: 560px;
}

.trial-access .access-form-area .area-header h2 {
font-size: 43px;
line-height: 1.1;
color: #1b2c45;
margin: 0;
letter-spacing: -0.02em;
text-shadow: 0 2px 0 rgba(57, 111, 178, 0.07);
}

.trial-access .access-form-area .area-header p {
font-size: 16px;
line-height: 1.6;
color: #2d3e55;
margin: 0;
}

.trial-access .access-form-area .session-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
width: 100%;
}

.trial-access .access-form-area .session-card {
border-radius: 12px;
padding: 32px;
display: flex;
flex-direction: column;
gap: 16px;
border: 2px solid #EDF6F7;
transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.trial-access .access-form-area .session-card:hover {
border-color: #88C5CC;
box-shadow: 0 5px 20px 0 rgba(136, 197, 204, 0.09);
}

.trial-access .access-form-area .session-card.featured-session {
background: linear-gradient(83deg, #396FB2 0%, #88C5CC 100%);
border-color: transparent;
box-shadow: 0 10px 52px 0 rgba(57, 111, 178, 0.11);
}

.trial-access .access-form-area .session-card .session-tag {
font-size: 15px;
line-height: 1.35;
color: #396FB2;
letter-spacing: 0.06em;
text-transform: uppercase;
}

.trial-access .access-form-area .session-card.featured-session .session-tag {
color: rgba(237, 246, 247, 0.75);
}

.trial-access .access-form-area .session-card h5 {
font-size: 19px;
line-height: 1.35;
color: #1b2c45;
margin: 0;
text-shadow: 0 1px 0 rgba(57, 111, 178, 0.06);
}

.trial-access .access-form-area .session-card.featured-session h5 {
color: #EDF6F7;
text-shadow: 0 1px 4px rgba(57, 111, 178, 0.3);
}

.trial-access .access-form-area .session-card p {
font-size: 15px;
line-height: 1.6;
color: #2d3e55;
margin: 0;
}

.trial-access .access-form-area .session-card.featured-session p {
color: rgba(237, 246, 247, 0.85);
}

.trial-access .access-form-area .session-card .session-detail {
font-size: 15px;
line-height: 1.35;
color: #396FB2;
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
}

.trial-access .access-form-area .session-card.featured-session .session-detail {
color: #EDF6F7;
}

.trial-access .access-form-area .session-card .session-detail svg {
width: 16px;
height: 16px;
fill: none;
stroke: currentColor;
stroke-width: 1.8;
stroke-linecap: round;
stroke-linejoin: round;
flex-shrink: 0;
}

.trial-access .access-form-area .contact-strip {
display: flex;
flex-direction: row;
align-items: center;
gap: 32px;
padding: 32px;
background: #EDF6F7;
border-radius: 12px;
width: 100%;
}

.trial-access .access-form-area .contact-strip .contact-icon {
width: 48px;
height: 48px;
border-radius: 12px;
background: #396FB2;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.trial-access .access-form-area .contact-strip .contact-icon svg {
width: 22px;
height: 22px;
fill: none;
stroke: #EDF6F7;
stroke-width: 1.8;
stroke-linecap: round;
stroke-linejoin: round;
}

.trial-access .access-form-area .contact-strip .contact-text {
display: flex;
flex-direction: column;
gap: 8px;
flex: 1;
}

.trial-access .access-form-area .contact-strip .contact-text p {
font-size: 15px;
line-height: 1.35;
color: #2d3e55;
margin: 0;
}

.trial-access .access-form-area .contact-strip .contact-text a {
font-size: 19px;
line-height: 1.35;
color: #396FB2;
text-decoration: none;
font-weight: 600;
transition: font-size 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.trial-access .access-form-area .contact-strip .contact-text a:hover {
font-size: 20px;
}

.trial-access .section-divider {
height: 2px;
background: linear-gradient(83deg, transparent 0%, #88C5CC 40%, #396FB2 60%, transparent 100%);
margin: 0;
border: none;
}

@media (max-width: 768px) {
.trial-access .split-entry {
grid-template-columns: 1fr;
}

.trial-access .split-entry .image-zone {
display: none;
}

.trial-access .split-entry .text-zone {
padding: 64px 32px;
}

.trial-access .split-entry .text-zone h1 {
font-size: 43px;
}

.trial-access .process-strip .steps-row {
grid-template-columns: 1fr 1fr;
}

.trial-access .metrics-field .page-body {
grid-template-columns: 1fr;
gap: 32px;
}

.trial-access .access-form-area .session-grid {
grid-template-columns: 1fr;
}

.trial-access .access-form-area .contact-strip {
flex-direction: column;
align-items: flex-start;
}

.trial-access .split-entry .circle-decor {
display: none;
}
}

@media (max-width: 480px) {
.trial-access .process-strip .steps-row {
grid-template-columns: 1fr;
}

.trial-access .page-body {
padding: 0 16px;
}

.trial-access .split-entry .text-zone {
padding: 64px 16px;
}
}

.trial-access .cycling-group {
display: flex;
flex-direction: row;
gap: 16px;
flex-wrap: wrap;
}

.trial-access .cycling-group .cycle-item {
padding: 8px 16px;
border-radius: 40px;
background: rgba(57, 111, 178, 0.08);
font-size: 15px;
line-height: 1.35;
color: #396FB2;
animation: cycleIn 4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.trial-access .cycling-group .cycle-item:nth-child(2) {
animation-delay: 1.33s;
}

.trial-access .cycling-group .cycle-item:nth-child(3) {
animation-delay: 2.66s;
}

@keyframes cycleIn {

0%,
100% {
opacity: 0.4;
transform: translateY(0);
}

33% {
opacity: 1;
transform: translateY(-3px);
}

66% {
opacity: 0.4;
transform: translateY(0);
}
}

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

.infrastructure .page_container {
max-width: 1024px;
margin: 0 auto;
padding: 0 32px;
}

.infrastructure .wave_divider {
width: 100%;
line-height: 0;
overflow: hidden;
}

.infrastructure .wave_divider svg {
display: block;
width: 100%;
}

.infrastructure .double_line {
display: flex;
flex-direction: column;
gap: 4px;
margin: 0 auto;
max-width: 1024px;
padding: 0 32px;
}

.infrastructure .double_line span {
display: block;
height: 1px;
background: #88C5CC;
opacity: 0.5;
}

.infrastructure .double_line span:last-child {
opacity: 0.2;
}

.infrastructure .title_strip_layout {
display: grid;
grid-template-columns: 160px 1fr;
gap: 64px;
padding: 96px 32px 64px;
max-width: 1024px;
margin: 0 auto;
align-items: start;
}

.infrastructure .image_strip {
position: relative;
border-radius: 12px;
overflow: hidden;
width: 160px;
height: 320px;
}

.infrastructure .image_strip img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
filter: brightness(0.88) contrast(1.05) grayscale(0.12);
transition: filter 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.infrastructure .image_strip:hover img {
filter: brightness(1.05) contrast(1.02) grayscale(0);
}

.infrastructure .grain_overlay {
position: absolute;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)' opacity='0.07'/%3E%3C/svg%3E");
pointer-events: none;
border-radius: 12px;
}

.infrastructure .title_text_area {
display: flex;
flex-direction: column;
gap: 32px;
padding-top: 16px;
}

.infrastructure .title_label {
font-size: 15px;
letter-spacing: 0.08em;
color: #396FB2;
text-transform: uppercase;
font-weight: 600;
line-height: 1.35;
}

.infrastructure .title_heading {
font-size: 58px;
line-height: 1.1;
letter-spacing: -0.02em;
color: #1b2d45;
font-weight: 700;
margin: 0;
text-shadow: 0 2px 0 rgba(57, 111, 178, 0.08);
}

.infrastructure .title_quote {
font-size: 19px;
line-height: 1.6;
color: #3a4a5c;
border-top: 2px solid #88C5CC;
padding-top: 16px;
font-style: italic;
max-width: 520px;
}

.infrastructure .title_meta {
display: flex;
flex-direction: row;
gap: 32px;
align-items: center;
}

.infrastructure .meta_badge {
background: linear-gradient(83deg, #396FB2, #88C5CC);
color: #fff;
font-size: 15px;
line-height: 1.35;
padding: 8px 16px;
border-radius: 6px;
font-weight: 600;
letter-spacing: 0.02em;
}

.infrastructure .meta_note {
font-size: 15px;
color: #5a6a7a;
line-height: 1.6;
}

.infrastructure .title_wave {
margin-top: 32px;
line-height: 0;
overflow: hidden;
}

.infrastructure .process_section {
background: #EDF6F7;
padding: 64px 0 96px;
}

.infrastructure .process_heading_row {
max-width: 1024px;
margin: 0 auto;
padding: 0 32px 64px;
}

.infrastructure .process_heading {
font-size: 43px;
line-height: 1.1;
letter-spacing: -0.015em;
color: #1b2d45;
font-weight: 700;
margin: 0 0 16px;
text-shadow: 1px 1px 0 rgba(57, 111, 178, 0.10);
}

.infrastructure .process_sub {
font-size: 16px;
line-height: 1.6;
color: #3a4a5c;
max-width: 560px;
}

.infrastructure .process_rows {
display: flex;
flex-direction: column;
gap: 0;
max-width: 1024px;
margin: 0 auto;
padding: 0 32px;
}

.infrastructure .process_row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 64px;
align-items: center;
padding: 64px 0;
border-top: 1px solid rgba(136, 197, 204, 0.3);
transition: background-color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.infrastructure .process_row:first-child {
border-top: none;
}

.infrastructure .process_row.reversed .row_visual {
order: 2;
}

.infrastructure .process_row.reversed .row_text {
order: 1;
}

.infrastructure .row_number {
font-size: 58px;
line-height: 1.1;
font-weight: 800;
color: rgba(57, 111, 178, 0.12);
letter-spacing: -0.03em;
margin-bottom: 8px;
display: block;
}

.infrastructure .row_text_heading {
font-size: 23px;
line-height: 1.35;
color: #1b2d45;
font-weight: 700;
margin: 0 0 16px;
text-shadow: 0 1px 0 rgba(57, 111, 178, 0.07);
}

.infrastructure .row_text_body {
font-size: 16px;
line-height: 1.8;
color: #3a4a5c;
margin: 0 0 16px;
}

.infrastructure .row_tag {
display: inline-flex;
align-items: center;
gap: 8px;
background: #fff;
border: 1px solid rgba(136, 197, 204, 0.5);
border-radius: 40px;
padding: 8px 16px;
font-size: 15px;
color: #396FB2;
font-weight: 600;
line-height: 1.35;
}

.infrastructure .row_tag_dot {
width: 8px;
height: 8px;
border-radius: 40px;
background: #88C5CC;
flex-shrink: 0;
}

.infrastructure .row_visual {
border-radius: 12px;
overflow: hidden;
position: relative;
}

.infrastructure .row_visual img {
width: 100%;
height: 280px;
object-fit: cover;
object-position: center;
display: block;
filter: brightness(0.87);
transition: filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.infrastructure .row_visual:hover img {
filter: brightness(1.04);
}

.infrastructure .row_visual_placeholder {
width: 100%;
height: 280px;
background: linear-gradient(83deg, rgba(57, 111, 178, 0.10), rgba(136, 197, 204, 0.18));
border-radius: 12px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 16px;
}

.infrastructure .visual_icon_wrap {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
}

.infrastructure .visual_dot_indicator {
position: absolute;
top: -4px;
right: -4px;
width: 10px;
height: 10px;
border-radius: 40px;
background: #396FB2;
border: 2px solid #EDF6F7;
}

.infrastructure .icon_svg {
width: 56px;
height: 56px;
}

.infrastructure .visual_label {
font-size: 15px;
color: #396FB2;
font-weight: 600;
letter-spacing: 0.04em;
line-height: 1.35;
}

.infrastructure .metrics_section {
background: #fff;
padding: 96px 0 64px;
}

.infrastructure .metrics_container {
max-width: 1024px;
margin: 0 auto;
padding: 0 32px;
}

.infrastructure .metrics_top {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 64px;
align-items: end;
margin-bottom: 64px;
}

.infrastructure .metrics_heading {
font-size: 43px;
line-height: 1.1;
letter-spacing: -0.015em;
color: #1b2d45;
font-weight: 700;
margin: 0;
text-shadow: 1px 1px 0 rgba(57, 111, 178, 0.10);
}

.infrastructure .metrics_description {
font-size: 16px;
line-height: 1.8;
color: #3a4a5c;
margin: 0;
}

.infrastructure .cards_grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
}

.infrastructure .metric_card {
background: #EDF6F7;
border-radius: 12px;
padding: 32px;
display: flex;
flex-direction: column;
gap: 16px;
position: relative;
transition: box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
cursor: default;
}

.infrastructure .metric_card:hover {
background: #fff;
box-shadow: 0 5px 20px 0 rgba(57, 111, 178, 0.09);
}

.infrastructure .card_icon_area {
position: relative;
display: inline-flex;
width: 48px;
height: 48px;
align-items: center;
justify-content: center;
background: #fff;
border-radius: 12px;
}

.infrastructure .card_dot {
position: absolute;
top: -3px;
right: -3px;
width: 10px;
height: 10px;
border-radius: 40px;
background: #396FB2;
border: 2px solid #EDF6F7;
}

.infrastructure .metric_card:hover .card_dot {
border-color: #fff;
}

.infrastructure .card_value {
font-size: 43px;
line-height: 1.1;
font-weight: 800;
color: #396FB2;
letter-spacing: -0.02em;
}

.infrastructure .card_label {
font-size: 15px;
line-height: 1.35;
color: #1b2d45;
font-weight: 700;
}

.infrastructure .card_desc {
font-size: 15px;
line-height: 1.6;
color: #5a6a7a;
}

.infrastructure .cards_grid:has(.metric_card:nth-child(1):hover) .metric_card:nth-child(1),
.infrastructure .cards_grid:has(.metric_card:nth-child(1):hover) .metric_card:nth-child(4),
.infrastructure .cards_grid:has(.metric_card:nth-child(2):hover) .metric_card:nth-child(2),
.infrastructure .cards_grid:has(.metric_card:nth-child(2):hover) .metric_card:nth-child(5),
.infrastructure .cards_grid:has(.metric_card:nth-child(3):hover) .metric_card:nth-child(3),
.infrastructure .cards_grid:has(.metric_card:nth-child(3):hover) .metric_card:nth-child(6),
.infrastructure .cards_grid:has(.metric_card:nth-child(4):hover) .metric_card:nth-child(1),
.infrastructure .cards_grid:has(.metric_card:nth-child(4):hover) .metric_card:nth-child(4),
.infrastructure .cards_grid:has(.metric_card:nth-child(5):hover) .metric_card:nth-child(2),
.infrastructure .cards_grid:has(.metric_card:nth-child(5):hover) .metric_card:nth-child(5),
.infrastructure .cards_grid:has(.metric_card:nth-child(6):hover) .metric_card:nth-child(3),
.infrastructure .cards_grid:has(.metric_card:nth-child(6):hover) .metric_card:nth-child(6) {
box-shadow: 0 3px 6px 0 rgba(57, 111, 178, 0.06);
background: #fff;
}

.infrastructure .cards_grid:has(.metric_card:nth-child(1):hover) .metric_card:nth-child(1),
.infrastructure .cards_grid:has(.metric_card:nth-child(1):hover) .metric_card:nth-child(2),
.infrastructure .cards_grid:has(.metric_card:nth-child(1):hover) .metric_card:nth-child(3),
.infrastructure .cards_grid:has(.metric_card:nth-child(2):hover) .metric_card:nth-child(1),
.infrastructure .cards_grid:has(.metric_card:nth-child(2):hover) .metric_card:nth-child(2),
.infrastructure .cards_grid:has(.metric_card:nth-child(2):hover) .metric_card:nth-child(3),
.infrastructure .cards_grid:has(.metric_card:nth-child(3):hover) .metric_card:nth-child(1),
.infrastructure .cards_grid:has(.metric_card:nth-child(3):hover) .metric_card:nth-child(2),
.infrastructure .cards_grid:has(.metric_card:nth-child(3):hover) .metric_card:nth-child(3),
.infrastructure .cards_grid:has(.metric_card:nth-child(4):hover) .metric_card:nth-child(4),
.infrastructure .cards_grid:has(.metric_card:nth-child(4):hover) .metric_card:nth-child(5),
.infrastructure .cards_grid:has(.metric_card:nth-child(4):hover) .metric_card:nth-child(6),
.infrastructure .cards_grid:has(.metric_card:nth-child(5):hover) .metric_card:nth-child(4),
.infrastructure .cards_grid:has(.metric_card:nth-child(5):hover) .metric_card:nth-child(5),
.infrastructure .cards_grid:has(.metric_card:nth-child(5):hover) .metric_card:nth-child(6),
.infrastructure .cards_grid:has(.metric_card:nth-child(6):hover) .metric_card:nth-child(4),
.infrastructure .cards_grid:has(.metric_card:nth-child(6):hover) .metric_card:nth-child(5),
.infrastructure .cards_grid:has(.metric_card:nth-child(6):hover) .metric_card:nth-child(6) {
background: rgba(237, 246, 247, 0.7);
}

.infrastructure .people_section {
background: linear-gradient(83deg, #396FB2, #88C5CC);
padding: 96px 0 64px;
position: relative;
}

.infrastructure .people_bg_overlay {
position: absolute;
inset: 0;
background-image: url("./img_assets/DSCN212920260604.jpg");
background-size: cover;
background-position: center;
opacity: 0.08;
pointer-events: none;
}

.infrastructure .people_container {
max-width: 1024px;
margin: 0 auto;
padding: 0 32px;
position: relative;
}

.infrastructure .people_heading_block {
text-align: center;
margin-bottom: 64px;
}

.infrastructure .people_heading {
font-size: 43px;
line-height: 1.1;
letter-spacing: -0.015em;
color: #fff;
font-weight: 700;
margin: 0 0 16px;
text-shadow: 0 2px 8px rgba(57, 111, 178, 0.25);
}

.infrastructure .people_sub {
font-size: 16px;
line-height: 1.6;
color: rgba(255, 255, 255, 0.85);
max-width: 480px;
margin: 0 auto;
}

.infrastructure .people_grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 32px;
}

.infrastructure .person_card {
background: rgba(255, 255, 255, 0.12);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 12px;
padding: 32px;
display: flex;
flex-direction: column;
gap: 16px;
backdrop-filter: blur(8px);
transition: background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.infrastructure .person_card:hover {
background: rgba(255, 255, 255, 0.20);
box-shadow: 0 10px 52px 0 rgba(57, 111, 178, 0.11);
}

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

.infrastructure .portrait_wrap {
width: 72px;
height: 90px;
border-radius: 12px;
overflow: hidden;
flex-shrink: 0;
}

.infrastructure .portrait_wrap img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
filter: brightness(0.9);
transition: filter 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.infrastructure .person_card:hover .portrait_wrap img {
filter: brightness(1.05);
}

.infrastructure .person_name {
font-size: 19px;
line-height: 1.35;
color: #fff;
font-weight: 700;
margin: 0 0 4px;
}

.infrastructure .person_role {
font-size: 15px;
line-height: 1.35;
color: rgba(255, 255, 255, 0.75);
font-weight: 400;
}

.infrastructure .person_quote {
font-size: 16px;
line-height: 1.8;
color: rgba(255, 255, 255, 0.9);
font-style: italic;
margin: 0;
}

.infrastructure .person_detail {
font-size: 15px;
line-height: 1.6;
color: rgba(255, 255, 255, 0.7);
}

.infrastructure .people_wave_bottom {
margin-top: 64px;
line-height: 0;
overflow: hidden;
}

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

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

.infrastructure .animate_row {
opacity: 0;
animation: row_appear 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.infrastructure .animate_row:nth-child(1) {
animation-delay: 0.05s;
}

.infrastructure .animate_row:nth-child(2) {
animation-delay: 0.15s;
}

.infrastructure .animate_row:nth-child(3) {
animation-delay: 0.25s;
}

.infrastructure .animate_row:nth-child(4) {
animation-delay: 0.35s;
}

.infrastructure .animate_row:nth-child(5) {
animation-delay: 0.45s;
}

.infrastructure .animate_row:nth-child(6) {
animation-delay: 0.55s;
}

.infrastructure .process_row {
opacity: 0;
animation: row_appear 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.infrastructure .process_row:nth-child(1) {
animation-delay: 0.10s;
}

.infrastructure .process_row:nth-child(2) {
animation-delay: 0.22s;
}

.infrastructure .process_row:nth-child(3) {
animation-delay: 0.34s;
}

.infrastructure .action_button {
display: inline-flex;
align-items: center;
gap: 8px;
background: #396FB2;
color: #fff;
font-size: 16px;
line-height: 1.35;
padding: 16px 32px;
border-radius: 6px;
border: none;
font-weight: 600;
cursor: pointer;
text-decoration: none;
position: relative;
overflow: hidden;
transition: color 0.4s ease-in-out;
}

.infrastructure .action_button::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(83deg, #88C5CC, #396FB2);
transform: translateX(-100%);
transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
z-index: 0;
}

.infrastructure .action_button:hover::before {
transform: translateX(0);
}

.infrastructure .action_button span {
position: relative;
z-index: 1;
}

.infrastructure .action_button:focus {
outline: 2px solid #396FB2;
outline-offset: 2px;
box-shadow: inset 0 2px 4px rgba(57, 111, 178, 0.2);
}

.infrastructure .action_button:active {
box-shadow: inset 0 3px 6px rgba(57, 111, 178, 0.25);
}

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

.infrastructure .arrow_list li {
display: flex;
flex-direction: row;
gap: 8px;
align-items: flex-start;
font-size: 15px;
line-height: 1.6;
color: #3a4a5c;
}

.infrastructure .arrow_list li::before {
content: '';
display: block;
width: 14px;
height: 14px;
flex-shrink: 0;
margin-top: 2px;
background: #396FB2;
clip-path: polygon(0 20%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 0 80%);
}

@media (max-width: 768px) {
.infrastructure .title_strip_layout {
grid-template-columns: 1fr;
gap: 32px;
padding: 64px 16px 32px;
}

.infrastructure .image_strip {
display: none;
}

.infrastructure .title_heading {
font-size: 43px;
}

.infrastructure .process_heading_row {
padding: 0 16px 32px;
}

.infrastructure .process_rows {
padding: 0 16px;
}

.infrastructure .process_row {
grid-template-columns: 1fr;
gap: 32px;
padding: 32px 0;
}

.infrastructure .process_row.reversed .row_visual {
order: 0;
}

.infrastructure .process_row.reversed .row_text {
order: 0;
}

.infrastructure .row_visual img {
height: 200px;
}

.infrastructure .row_visual_placeholder {
height: 160px;
}

.infrastructure .metrics_container {
padding: 0 16px;
}

.infrastructure .metrics_top {
grid-template-columns: 1fr;
gap: 16px;
margin-bottom: 32px;
}

.infrastructure .metrics_heading {
font-size: 23px;
}

.infrastructure .cards_grid {
grid-template-columns: 1fr 1fr;
gap: 8px;
}

.infrastructure .people_container {
padding: 0 16px;
}

.infrastructure .people_grid {
grid-template-columns: 1fr;
gap: 16px;
}

.infrastructure .people_heading {
font-size: 23px;
}

.infrastructure .process_heading {
font-size: 23px;
}

.infrastructure .page_container {
padding: 0 16px;
}

.infrastructure .double_line {
padding: 0 16px;
}
}

@media (max-width: 480px) {
.infrastructure .cards_grid {
grid-template-columns: 1fr;
}

.infrastructure .title_heading {
font-size: 43px;
}
}

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

.base .page_container {
max-width: 1024px;
margin: 0 auto;
padding: 0 32px;
}

.base .title_block {
display: grid;
grid-template-columns: 1fr 1fr;
min-height: 0;
background: #fff;
position: relative;
}

.base .title_text_side {
padding: 96px 64px 96px 32px;
display: flex;
flex-direction: column;
justify-content: center;
position: relative;
z-index: 1;
}

.base .faded_mark {
position: absolute;
top: 50%;
left: 16px;
transform: translateY(-50%);
font-size: 260px;
font-weight: 900;
color: #396FB2;
opacity: 0.04;
line-height: 1.1;
letter-spacing: -8px;
pointer-events: none;
user-select: none;
z-index: 0;
}

.base .title_label {
font-size: 15px;
color: #396FB2;
letter-spacing: 0.08em;
text-transform: uppercase;
margin-bottom: 16px;
font-weight: 600;
position: relative;
z-index: 1;
}

.base .title_heading {
font-size: 58px;
line-height: 1.1;
letter-spacing: -0.03em;
color: #1b2a3b;
margin-bottom: 32px;
font-weight: 800;
position: relative;
z-index: 1;
text-shadow: 0 2px 0 rgba(57, 111, 178, 0.07);
}

.base .title_action {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 16px;
color: #396FB2;
text-decoration: none;
font-weight: 600;
border-bottom: 2px solid #88C5CC;
padding-bottom: 4px;
position: relative;
z-index: 1;
transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
width: fit-content;
}

.base .title_action:hover {
color: #1b2a3b;
border-color: #396FB2;
}

.base .title_action svg {
transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.base .title_action:hover svg {
transform: translateX(4px);
}

.base .title_image_side {
position: relative;
overflow: hidden;
}

.base .title_image_side img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
min-height: 480px;
}

.base .image_fade_overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 55%;
background: linear-gradient(to top, rgba(27, 42, 59, 0.72) 0%, rgba(27, 42, 59, 0) 100%);
pointer-events: none;
}

.base .double_border_accent {
width: 48px;
height: 4px;
border-top: 1px solid #396FB2;
border-bottom: 1px solid #396FB2;
padding: 2px 0;
background: #88C5CC;
background-clip: content-box;
margin-bottom: 32px;
position: relative;
z-index: 1;
}

.base .adapt_section {
background: #EDF6F7;
padding: 96px 0;
}

.base .adapt_grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 64px;
align-items: center;
}

.base .adapt_image_col {
position: relative;
overflow: hidden;
border-radius: 12px;
}

.base .adapt_image_col img {
width: 100%;
height: 380px;
object-fit: cover;
object-position: center;
display: block;
border-radius: 12px;
}

.base .adapt_image_border {
position: absolute;
inset: 8px;
border: 1px solid rgba(57, 111, 178, 0.18);
border-radius: 6px;
pointer-events: none;
}

.base .adapt_text_col {
display: flex;
flex-direction: column;
gap: 32px;
}

.base .section_label {
font-size: 15px;
color: #88C5CC;
letter-spacing: 0.1em;
text-transform: uppercase;
font-weight: 700;
}

.base .adapt_heading {
font-size: 43px;
line-height: 1.1;
letter-spacing: -0.02em;
color: #1b2a3b;
font-weight: 800;
text-shadow: 0 1px 0 rgba(136, 197, 204, 0.15);
margin: 0;
}

.base .adapt_items {
display: flex;
flex-direction: column;
gap: 16px;
list-style: none;
padding: 0;
margin: 0;
}

.base .adapt_items li {
display: flex;
align-items: flex-start;
gap: 8px;
font-size: 16px;
line-height: 1.6;
color: #2c3e50;
}

.base .arrow_bullet {
flex-shrink: 0;
margin-top: 4px;
width: 14px;
height: 14px;
}

.base .adapt_stat_row {
display: flex;
flex-direction: row;
gap: 32px;
}

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

.base .stat_value {
font-size: 43px;
line-height: 1.1;
font-weight: 800;
color: #396FB2;
letter-spacing: -0.03em;
}

.base .stat_divider {
width: 32px;
height: 1px;
background: #396FB2;
opacity: 0.3;
margin: 4px 0;
}

.base .stat_label {
font-size: 15px;
color: #5a6a7a;
line-height: 1.35;
}

.base .mechanism_section {
background: #fff;
padding: 96px 0;
}

.base .mechanism_top {
display: grid;
grid-template-columns: 5fr 7fr;
gap: 64px;
align-items: start;
margin-bottom: 64px;
}

.base .mechanism_heading {
font-size: 43px;
line-height: 1.1;
letter-spacing: -0.02em;
color: #1b2a3b;
font-weight: 800;
text-shadow: 0 2px 0 rgba(57, 111, 178, 0.06);
margin: 0;
}

.base .mechanism_intro {
font-size: 19px;
line-height: 1.6;
color: #2c3e50;
margin: 0 0 16px 0;
}

.base .mechanism_sub {
font-size: 16px;
line-height: 1.6;
color: #5a6a7a;
margin: 0;
}

.base .mechanism_cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 32px;
}

.base .mechanism_card {
background: #EDF6F7;
border-radius: 12px;
padding: 32px;
display: flex;
flex-direction: column;
gap: 16px;
box-shadow: 0 3px 6px 0 rgba(57, 111, 178, 0.06);
animation: card_flip 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
transform-origin: center top;
}

.base .mechanism_card:nth-child(1) {
animation-delay: 0.1s;
}

.base .mechanism_card:nth-child(2) {
animation-delay: 0.22s;
}

.base .mechanism_card:nth-child(3) {
animation-delay: 0.34s;
}

@keyframes card_flip {
from {
opacity: 0;
transform: rotateX(-18deg) translateY(16px);
}

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

.base .mechanism_card:hover {
box-shadow: 0 5px 20px 0 rgba(57, 111, 178, 0.09);
}

.base .card_icon_wrap {
width: 40px;
height: 40px;
background: linear-gradient(83deg, #396FB2, #88C5CC);
border-radius: 6px;
display: flex;
align-items: center;
justify-content: center;
}

.base .card_number {
font-size: 23px;
font-weight: 800;
color: #396FB2;
letter-spacing: -0.02em;
line-height: 1.1;
}

.base .card_heading {
font-size: 16px;
font-weight: 700;
color: #1b2a3b;
line-height: 1.35;
margin: 0;
text-shadow: 0 1px 0 rgba(57, 111, 178, 0.08);
}

.base .card_body {
font-size: 15px;
line-height: 1.6;
color: #5a6a7a;
margin: 0;
}

.base .mechanism_image_strip {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 32px;
margin-top: 64px;
}

.base .strip_image_wrap {
position: relative;
overflow: hidden;
border-radius: 12px;
}

.base .strip_image_wrap img {
width: 100%;
height: 240px;
object-fit: cover;
object-position: center;
display: block;
border-radius: 12px;
}

.base .strip_image_caption {
position: absolute;
bottom: 16px;
left: 16px;
right: 16px;
font-size: 15px;
font-weight: 600;
color: #fff;
line-height: 1.35;
text-shadow: 0 1px 4px rgba(27, 42, 59, 0.4);
}

.base .commitment_section {
background: linear-gradient(83deg, #396FB2, #88C5CC);
padding: 96px 0;
}

.base .commitment_layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 64px;
align-items: start;
}

.base .commitment_left {
display: flex;
flex-direction: column;
gap: 32px;
}

.base .commitment_heading {
font-size: 43px;
line-height: 1.1;
letter-spacing: -0.02em;
color: #fff;
font-weight: 800;
margin: 0;
text-shadow: 0 2px 8px rgba(27, 42, 59, 0.2);
}

.base .commitment_text {
font-size: 16px;
line-height: 1.8;
color: rgba(255, 255, 255, 0.88);
margin: 0;
}

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

.base .commitment_item {
background: rgba(255, 255, 255, 0.12);
border-radius: 12px;
padding: 32px;
display: flex;
flex-direction: column;
gap: 8px;
border: 1px solid rgba(255, 255, 255, 0.18);
animation: card_flip 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.base .commitment_item:nth-child(1) {
animation-delay: 0.15s;
}

.base .commitment_item:nth-child(2) {
animation-delay: 0.28s;
}

.base .commitment_item:nth-child(3) {
animation-delay: 0.41s;
}

.base .commitment_item_label {
font-size: 15px;
font-weight: 700;
color: #EDF6F7;
letter-spacing: 0.04em;
text-transform: uppercase;
}

.base .commitment_item_divider {
width: 32px;
height: 1px;
background: rgba(255, 255, 255, 0.35);
}

.base .commitment_item_text {
font-size: 15px;
line-height: 1.6;
color: rgba(255, 255, 255, 0.82);
margin: 0;
}

.base .testimonials_row {
margin-top: 64px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 32px;
}

.base .testimonial_card {
background: rgba(255, 255, 255, 0.1);
border-radius: 12px;
padding: 32px;
display: flex;
flex-direction: column;
gap: 16px;
border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.base .testimonial_portrait {
width: 52px;
height: 52px;
border-radius: 50%;
object-fit: cover;
object-position: center;
flex-shrink: 0;
}

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

.base .testimonial_name {
font-size: 15px;
font-weight: 700;
color: #fff;
line-height: 1.35;
}

.base .testimonial_role {
font-size: 15px;
color: rgba(255, 255, 255, 0.65);
line-height: 1.35;
}

.base .testimonial_quote {
font-size: 15px;
line-height: 1.8;
color: rgba(255, 255, 255, 0.82);
margin: 0;
font-style: italic;
}

@media (max-width: 768px) {
.base .title_block {
grid-template-columns: 1fr;
}

.base .title_image_side {
display: none;
}

.base .title_text_side {
padding: 64px 32px;
}

.base .faded_mark {
font-size: 140px;
}

.base .title_heading {
font-size: 43px;
}

.base .adapt_grid {
grid-template-columns: 1fr;
gap: 32px;
}

.base .adapt_image_col {
display: none;
}

.base .mechanism_top {
grid-template-columns: 1fr;
gap: 32px;
}

.base .mechanism_cards {
grid-template-columns: 1fr;
gap: 16px;
}

.base .mechanism_image_strip {
display: none;
}

.base .commitment_layout {
grid-template-columns: 1fr;
gap: 32px;
}

.base .testimonials_row {
grid-template-columns: 1fr;
gap: 16px;
}

.base .adapt_stat_row {
gap: 16px;
}

.base .adapt_section {
padding: 64px 0;
}

.base .mechanism_section {
padding: 64px 0;
}

.base .commitment_section {
padding: 64px 0;
}
}

.contact-us {
background: #ffffff;
overflow-x: clip;
}

.contact-us .grid-split {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 64px;
max-width: 1024px;
margin: 0 auto;
padding: 96px 32px;
align-items: start;
}

.contact-us .panel_left {
position: relative;
}

.contact-us .panel_left .counter_badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: #EDF6F7;
border-radius: 6px;
padding: 8px 16px;
margin-bottom: 32px;
}

.contact-us .panel_left .counter_badge span {
font-size: 23px;
font-weight: 700;
color: #396FB2;
line-height: 1.1;
letter-spacing: -0.02em;
}

.contact-us .panel_left .counter_badge small {
font-size: 15px;
color: #396FB2;
line-height: 1.35;
}

.contact-us .panel_left h1 {
font-size: 43px;
line-height: 1.1;
letter-spacing: -0.03em;
color: #1b2b3a;
margin: 0 0 16px 0;
text-shadow: 0 2px 0 rgba(57, 111, 178, 0.08);
}

.contact-us .panel_left .lead_text {
font-size: 16px;
line-height: 1.6;
color: #3a4a5a;
margin: 0 0 32px 0;
}

.contact-us .info_stack {
display: flex;
flex-direction: column;
gap: 16px;
margin-bottom: 32px;
}

.contact-us .info_row {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 16px;
}

.contact-us .info_icon {
width: 40px;
height: 40px;
border-radius: 12px;
background: #EDF6F7;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.contact-us .info_icon svg {
width: 18px;
height: 18px;
}

.contact-us .info_text {
display: flex;
flex-direction: column;
gap: 0;
}

.contact-us .info_label {
font-size: 15px;
color: #88C5CC;
line-height: 1.35;
letter-spacing: 0.04em;
text-transform: uppercase;
font-weight: 600;
}

.contact-us .info_value {
font-size: 16px;
color: #1b2b3a;
line-height: 1.6;
text-decoration: none;
display: inline-block;
transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-us .info_value:hover {
color: #396FB2;
}

.contact-us .image_container {
position: relative;
border-radius: 12px;
overflow: hidden;
margin-top: 32px;
}

.contact-us .image_container img {
width: 100%;
height: 220px;
object-fit: cover;
display: block;
border-radius: 12px;
filter: brightness(0.92) saturate(0.85);
}

.contact-us .image_container .img_overlay {
position: absolute;
inset: 0;
background: linear-gradient(83deg, rgba(57, 111, 178, 0.18) 0%, rgba(136, 197, 204, 0.08) 100%);
border-radius: 12px;
pointer-events: none;
}

.contact-us .curved_accent {
position: absolute;
top: -32px;
right: -32px;
width: 120px;
height: 120px;
pointer-events: none;
z-index: 0;
overflow: hidden;
}

.contact-us .panel_right {
background: #EDF6F7;
border-radius: 12px;
padding: 32px;
position: relative;
}

.contact-us .form_heading {
font-size: 23px;
line-height: 1.35;
letter-spacing: -0.01em;
color: #1b2b3a;
margin: 0 0 8px 0;
text-shadow: 0 1px 0 rgba(57, 111, 178, 0.1);
}

.contact-us .form_sub {
font-size: 15px;
color: #3a4a5a;
line-height: 1.6;
margin: 0 0 32px 0;
}

.contact-us .form_field {
display: flex;
flex-direction: column;
gap: 8px;
margin-bottom: 16px;
}

.contact-us .form_field label {
font-size: 15px;
font-weight: 600;
color: #1b2b3a;
line-height: 1.35;
letter-spacing: 0.01em;
}

.contact-us .form_field input[type="text"],
.contact-us .form_field input[type="email"] {
width: 100%;
padding: 12px 16px;
border: 2px solid #c8dff0;
border-radius: 6px;
background: #ffffff;
font-size: 16px;
color: #1b2b3a;
line-height: 1.35;
outline: none;
box-sizing: border-box;
transition: border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-us .form_field input[type="text"]::placeholder,
.contact-us .form_field input[type="email"]::placeholder {
color: rgba(57, 111, 178, 0.35);
}

.contact-us .form_field input[type="text"]:focus,
.contact-us .form_field input[type="email"]:focus {
border-color: #396FB2;
box-shadow: 0 3px 6px 0 rgba(57, 111, 178, 0.06);
}

.contact-us .checkbox_group_label {
font-size: 15px;
font-weight: 600;
color: #1b2b3a;
line-height: 1.35;
letter-spacing: 0.01em;
margin-bottom: 8px;
display: block;
}

.contact-us .checkbox_grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px;
margin-bottom: 16px;
}

.contact-us .check_item {
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
background: #ffffff;
border-radius: 6px;
padding: 10px 12px;
cursor: pointer;
border: 2px solid transparent;
transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-us .check_item:hover {
border-color: #88C5CC;
}

.contact-us .check_item input[type="checkbox"] {
width: 18px;
height: 18px;
accent-color: #396FB2;
cursor: pointer;
flex-shrink: 0;
}

.contact-us .check_item input[type="checkbox"]:checked {
box-shadow: inset 0 2px 4px rgba(57, 111, 178, 0.2);
}

.contact-us .check_item .check_label {
font-size: 15px;
color: #1b2b3a;
line-height: 1.35;
cursor: pointer;
}

.contact-us .divider_dashes {
border: none;
height: 2px;
background: repeating-linear-gradient(to right,
#88C5CC 0px,
#88C5CC 8px,
transparent 8px,
transparent 14px,
#88C5CC 14px,
#88C5CC 30px,
transparent 30px,
transparent 38px);
margin: 16px 0;
}

.contact-us .privacy_row {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 8px;
margin-bottom: 16px;
}

.contact-us .privacy_row input[type="checkbox"] {
width: 18px;
height: 18px;
accent-color: #396FB2;
cursor: pointer;
flex-shrink: 0;
margin-top: 2px;
}

.contact-us .privacy_row input[type="checkbox"]:checked {
box-shadow: inset 0 2px 4px rgba(57, 111, 178, 0.2);
}

.contact-us .privacy_text {
font-size: 15px;
color: #3a4a5a;
line-height: 1.6;
}

.contact-us .privacy_text a {
color: #396FB2;
text-decoration: underline;
text-underline-offset: 2px;
transition: color 0.4s ease-in-out;
}

.contact-us .privacy_text a:hover {
color: #88C5CC;
}

.contact-us .submit_button {
position: relative;
display: inline-flex;
align-items: center;
gap: 8px;
padding: 14px 32px;
background: #396FB2;
color: #ffffff;
font-size: 16px;
font-weight: 700;
border: none;
border-radius: 6px;
cursor: pointer;
overflow: hidden;
width: 100%;
justify-content: center;
letter-spacing: 0.02em;
transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-us .submit_button::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(83deg, #88C5CC 0%, #396FB2 100%);
transform: translateX(-100%);
transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
z-index: 0;
}

.contact-us .submit_button:hover::before {
transform: translateX(0);
}

.contact-us .submit_button span {
position: relative;
z-index: 1;
}

.contact-us .submit_button:focus {
outline: 3px solid #88C5CC;
outline-offset: 2px;
}

.contact-us .submit_button:active {
box-shadow: inset 0 3px 8px rgba(57, 111, 178, 0.25);
}

.contact-us .second_block {
background: #1b2b3a;
padding: 64px 32px;
}

.contact-us .second_block_inner {
max-width: 1024px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 32px;
align-items: start;
}

.contact-us .process_steps_area {
grid-column: 1 / 3;
}

.contact-us .process_heading {
font-size: 23px;
line-height: 1.35;
letter-spacing: -0.01em;
color: #EDF6F7;
margin: 0 0 32px 0;
text-shadow: 0 2px 4px rgba(136, 197, 204, 0.15);
}

.contact-us .steps_row {
display: flex;
flex-direction: row;
gap: 16px;
align-items: flex-start;
}

.contact-us .step_item {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 8px;
flex: 1;
opacity: 0;
animation: column_appear 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.contact-us .step_item:nth-child(1) {
animation-delay: 0.1s;
}

.contact-us .step_item:nth-child(2) {
animation-delay: 0.3s;
}

.contact-us .step_item:nth-child(3) {
animation-delay: 0.5s;
}

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

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

.contact-us .step_number {
width: 40px;
height: 40px;
border-radius: 40px;
background: linear-gradient(83deg, #396FB2 0%, #88C5CC 100%);
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
font-weight: 700;
color: #ffffff;
line-height: 1.1;
flex-shrink: 0;
}

.contact-us .step_icon {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
}

.contact-us .step_icon svg {
width: 24px;
height: 24px;
}

.contact-us .step_name {
font-size: 15px;
font-weight: 700;
color: #88C5CC;
line-height: 1.35;
letter-spacing: 0.02em;
}

.contact-us .step_desc {
font-size: 15px;
color: #a8bfcc;
line-height: 1.6;
margin: 0;
}

.contact-us .step_connector {
width: 2px;
height: 32px;
background: repeating-linear-gradient(to bottom,
#396FB2 0px,
#396FB2 6px,
transparent 6px,
transparent 10px);
margin: 0 auto;
display: none;
}

.contact-us .quick_facts {
display: flex;
flex-direction: column;
gap: 16px;
}

.contact-us .quick_facts_heading {
font-size: 19px;
line-height: 1.35;
color: #EDF6F7;
margin: 0 0 8px 0;
text-shadow: 0 1px 0 rgba(136, 197, 204, 0.12);
}

.contact-us .fact_item {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 8px;
}

.contact-us .fact_check {
width: 20px;
height: 20px;
flex-shrink: 0;
margin-top: 2px;
}

.contact-us .fact_check svg {
width: 20px;
height: 20px;
}

.contact-us .fact_text {
font-size: 15px;
color: #a8bfcc;
line-height: 1.6;
}

@media (max-width: 768px) {

.contact-us .grid_split,
.contact-us .grid-split {
grid-template-columns: 1fr;
gap: 32px;
padding: 64px 16px;
}

.contact-us .second_block {
padding: 64px 16px;
}

.contact-us .second_block_inner {
grid-template-columns: 1fr;
gap: 32px;
}

.contact-us .process_steps_area {
grid-column: 1;
}

.contact-us .steps_row {
flex-direction: column;
gap: 16px;
}

.contact-us .image_container {
display: none;
}

.contact-us .curved_accent {
display: none;
}

.contact-us .checkbox_grid {
grid-template-columns: 1fr;
}
}

@media (min-width: 769px) {
.contact-us .step_item {
transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
}

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

.about_us_page .grid_bento {
max-width: 1024px;
margin: 0 auto;
padding: 96px 32px 64px;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-rows: auto auto;
gap: 16px;
}

.about_us_page .bento_image_cell {
grid-column: 1 / 3;
grid-row: 1 / 3;
border-radius: 12px;
overflow: hidden;
position: relative;
min-height: 380px;
}

.about_us_page .bento_image_cell img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
filter: saturate(0.55) brightness(0.92);
transition: filter 0.45s cubic-bezier(0.16, 1, 0.3, 1);
display: block;
}

.about_us_page .bento_image_cell:hover img {
filter: saturate(1) brightness(1);
}

.about_us_page .bento_image_cell::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(83deg, rgba(57, 111, 178, 0.28), rgba(136, 197, 204, 0.14));
border-radius: 12px;
pointer-events: none;
}

.about_us_page .bento_heading_cell {
grid-column: 3 / 5;
grid-row: 1 / 2;
background: #EDF6F7;
border-radius: 12px;
padding: 32px;
display: flex;
flex-direction: column;
justify-content: flex-end;
position: relative;
}

.about_us_page .bento_dot_scatter {
position: absolute;
inset: 0;
border-radius: 12px;
overflow: hidden;
pointer-events: none;
}

.about_us_page .bento_dot_scatter::before {
content: "";
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 100%;
background-image: radial-gradient(circle, rgba(57, 111, 178, 0.18) 1.5px, transparent 1.5px);
background-size: 18px 18px;
}

.about_us_page .company_label {
font-size: 15px;
letter-spacing: 0.08em;
color: #396FB2;
margin-bottom: 8px;
line-height: 1.35;
}

.about_us_page .main_heading {
font-size: 43px;
line-height: 1.1;
letter-spacing: -0.02em;
color: #1b2d45;
margin: 0;
text-shadow: 0 2px 0 rgba(57, 111, 178, 0.08);
}

.about_us_page .main_heading .accent_word {
color: #396FB2;
}

.about_us_page .bento_stat_cell {
grid-column: 3 / 4;
grid-row: 2 / 3;
background: #396FB2;
border-radius: 12px;
padding: 32px;
display: flex;
flex-direction: column;
justify-content: center;
}

.about_us_page .stat_number {
font-size: 43px;
line-height: 1.1;
letter-spacing: -0.03em;
color: #EDF6F7;
margin: 0;
}

.about_us_page .stat_label {
font-size: 15px;
line-height: 1.6;
color: rgba(237, 246, 247, 0.78);
margin-top: 8px;
}

.about_us_page .bento_desc_cell {
grid-column: 4 / 5;
grid-row: 2 / 3;
background: #fff;
border-radius: 12px;
padding: 32px;
border: 1.5px solid #EDF6F7;
display: flex;
flex-direction: column;
justify-content: center;
}

.about_us_page .bento_desc_cell p {
font-size: 15px;
line-height: 1.6;
color: #2e3d52;
margin: 0;
}

.about_us_page .divider_gradient {
max-width: 1024px;
margin: 0 auto;
height: 2px;
background: linear-gradient(83deg, #88C5CC, #EDF6F7);
border-radius: 2px;
}

.about_us_page .process_area {
max-width: 1024px;
margin: 0 auto;
padding: 64px 32px;
position: relative;
}

.about_us_page .process_area::before {
content: "";
position: absolute;
top: 0;
right: 0;
width: 180px;
height: 180px;
background-image: repeating-linear-gradient(135deg,
rgba(136, 197, 204, 0.10) 0px,
rgba(136, 197, 204, 0.10) 1px,
transparent 1px,
transparent 14px);
pointer-events: none;
}

.about_us_page .process_label {
font-size: 15px;
letter-spacing: 0.07em;
color: #88C5CC;
margin-bottom: 8px;
line-height: 1.35;
}

.about_us_page .process_heading {
font-size: 23px;
line-height: 1.35;
letter-spacing: -0.01em;
color: #1b2d45;
margin: 0 0 32px 0;
text-shadow: 0 1px 0 rgba(57, 111, 178, 0.07);
}

.about_us_page .process_heading .accent_word {
color: #396FB2;
}

.about_us_page .flow_grid {
display: grid;
grid-template-columns: 1fr 40px 1fr 40px 1fr;
align-items: start;
gap: 0;
}

.about_us_page .flow_step {
background: #fff;
border-radius: 12px;
padding: 32px;
border: 1.5px solid #EDF6F7;
box-shadow: 0 3px 6px 0 rgba(57, 111, 178, 0.06);
position: relative;
}

.about_us_page .flow_step_number {
font-size: 43px;
line-height: 1.1;
letter-spacing: -0.03em;
color: rgba(57, 111, 178, 0.12);
margin: 0 0 8px 0;
}

.about_us_page .flow_step_title {
font-size: 16px;
line-height: 1.35;
color: #1b2d45;
margin: 0 0 8px 0;
font-weight: 600;
}

.about_us_page .flow_step p {
font-size: 15px;
line-height: 1.6;
color: #4a5a6e;
margin: 0;
}

.about_us_page .flow_connector {
display: flex;
align-items: center;
justify-content: center;
padding-top: 48px;
}

.about_us_page .flow_connector svg {
width: 28px;
height: 28px;
flex-shrink: 0;
}

.about_us_page .divider_thin {
max-width: 1024px;
margin: 0 auto;
height: 1px;
background: linear-gradient(83deg, rgba(57, 111, 178, 0.22), transparent);
}

.about_us_page .team_area {
background: #EDF6F7;
position: relative;
}

.about_us_page .team_strip {
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 5px;
background: linear-gradient(83deg, #396FB2, #88C5CC);
}

.about_us_page .team_inner {
max-width: 1024px;
margin: 0 auto;
padding: 64px 32px;
display: grid;
grid-template-columns: 3fr 1fr;
gap: 64px;
align-items: start;
}

.about_us_page .team_left {}

.about_us_page .team_label {
font-size: 15px;
letter-spacing: 0.07em;
color: #396FB2;
margin-bottom: 8px;
line-height: 1.35;
}

.about_us_page .team_heading {
font-size: 23px;
line-height: 1.35;
letter-spacing: -0.01em;
color: #1b2d45;
margin: 0 0 32px 0;
text-shadow: 0 1px 0 rgba(57, 111, 178, 0.07);
}

.about_us_page .team_heading .accent_word {
color: #396FB2;
}

.about_us_page .team_members {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}

.about_us_page .member_card {
background: #fff;
border-radius: 12px;
padding: 16px;
display: flex;
flex-direction: row;
gap: 16px;
align-items: flex-start;
box-shadow: 0 3px 6px 0 rgba(57, 111, 178, 0.06);
}

.about_us_page .member_portrait {
width: 72px;
height: 96px;
border-radius: 6px;
overflow: hidden;
flex-shrink: 0;
}

.about_us_page .member_portrait img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
filter: saturate(0.6);
transition: filter 0.45s cubic-bezier(0.16, 1, 0.3, 1);
display: block;
}

.about_us_page .member_card:hover .member_portrait img {
filter: saturate(1);
}

.about_us_page .member_info {
flex: 1;
}

.about_us_page .member_name {
font-size: 16px;
line-height: 1.35;
color: #1b2d45;
margin: 0 0 4px 0;
font-weight: 600;
}

.about_us_page .member_role {
font-size: 15px;
line-height: 1.35;
color: #396FB2;
margin: 0 0 8px 0;
}

.about_us_page .member_bio {
font-size: 15px;
line-height: 1.6;
color: #4a5a6e;
margin: 0;
}

.about_us_page .member_no_portrait {
background: #fff;
border-radius: 12px;
padding: 16px;
box-shadow: 0 3px 6px 0 rgba(57, 111, 178, 0.06);
}

.about_us_page .member_no_portrait .member_name {
font-size: 16px;
line-height: 1.35;
color: #1b2d45;
margin: 0 0 4px 0;
font-weight: 600;
}

.about_us_page .member_no_portrait .member_role {
font-size: 15px;
line-height: 1.35;
color: #396FB2;
margin: 0 0 8px 0;
}

.about_us_page .member_no_portrait .member_bio {
font-size: 15px;
line-height: 1.6;
color: #4a5a6e;
margin: 0;
}

.about_us_page .team_right {}

.about_us_page .code_block_display {
background: #1b2d45;
border-radius: 12px;
padding: 32px;
box-shadow: 0 5px 20px 0 rgba(57, 111, 178, 0.09);
}

.about_us_page .code_block_label {
font-size: 15px;
color: #88C5CC;
margin: 0 0 16px 0;
letter-spacing: 0.05em;
line-height: 1.35;
}

.about_us_page .code_snippet {
font-size: 15px;
line-height: 1.8;
color: #EDF6F7;
white-space: pre;
margin: 0;
font-family: monospace;
}

.about_us_page .code_snippet .code_key {
color: #88C5CC;
}

.about_us_page .code_snippet .code_val {
color: #7ec8b0;
}

.about_us_page .divider_dots {
max-width: 1024px;
margin: 0 auto;
display: flex;
gap: 8px;
align-items: center;
padding: 0 32px;
}

.about_us_page .divider_dots span {
display: block;
width: 6px;
height: 6px;
border-radius: 40px;
background: #88C5CC;
opacity: 0.5;
}

.about_us_page .divider_dots span.large {
width: 10px;
height: 10px;
opacity: 0.8;
background: #396FB2;
}

.about_us_page .approach_area {
max-width: 1024px;
margin: 0 auto;
padding: 64px 32px 96px;
}

.about_us_page .approach_top {
display: grid;
grid-template-columns: 3fr 1fr;
gap: 64px;
align-items: start;
margin-bottom: 32px;
}

.about_us_page .approach_label {
font-size: 15px;
letter-spacing: 0.07em;
color: #88C5CC;
margin-bottom: 8px;
line-height: 1.35;
}

.about_us_page .approach_heading {
font-size: 23px;
line-height: 1.35;
letter-spacing: -0.01em;
color: #1b2d45;
margin: 0 0 16px 0;
text-shadow: 0 1px 0 rgba(57, 111, 178, 0.07);
}

.about_us_page .approach_heading .accent_word {
color: #396FB2;
}

.about_us_page .approach_intro {
font-size: 16px;
line-height: 1.6;
color: #2e3d52;
margin: 0;
}

.about_us_page .approach_cta_block {
display: flex;
flex-direction: column;
gap: 16px;
justify-content: flex-start;
padding-top: 32px;
}

.about_us_page .button_primary {
display: inline-block;
padding: 16px 32px;
background: #396FB2;
color: #EDF6F7;
border-radius: 6px;
font-size: 16px;
line-height: 1.35;
text-decoration: none;
border: none;
cursor: pointer;
position: relative;
overflow: hidden;
transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
text-align: center;
}

.about_us_page .button_primary::before {
content: "";
position: absolute;
inset: 0;
background: #2a5490;
transform: translateX(-100%);
transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
border-radius: 6px;
}

.about_us_page .button_primary:hover::before {
transform: translateX(0);
}

.about_us_page .button_primary:focus {
outline: 2px solid #396FB2;
outline-offset: 3px;
}

.about_us_page .button_primary span {
position: relative;
z-index: 1;
}

.about_us_page .button_secondary {
display: inline-block;
padding: 16px 32px;
background: transparent;
color: #396FB2;
border-radius: 6px;
font-size: 16px;
line-height: 1.35;
text-decoration: none;
border: 1.5px solid #396FB2;
cursor: pointer;
position: relative;
overflow: hidden;
transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
text-align: center;
}

.about_us_page .button_secondary::before {
content: "";
position: absolute;
inset: 0;
background: #EDF6F7;
transform: translateX(-100%);
transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
border-radius: 4px;
}

.about_us_page .button_secondary:hover::before {
transform: translateX(0);
}

.about_us_page .button_secondary:focus {
outline: 2px solid #396FB2;
outline-offset: 3px;
}

.about_us_page .button_secondary span {
position: relative;
z-index: 1;
}

.about_us_page .feature_columns {
display: grid;
grid-template-columns: 1fr 2fr 2fr 1fr;
gap: 16px;
margin-top: 32px;
}

.about_us_page .feature_outer {
background: #EDF6F7;
border-radius: 12px;
padding: 32px 16px;
display: flex;
flex-direction: column;
gap: 8px;
}

.about_us_page .feature_center {
background: #fff;
border-radius: 12px;
padding: 32px;
display: flex;
flex-direction: column;
gap: 8px;
box-shadow: 0 5px 20px 0 rgba(57, 111, 178, 0.09);
border: 1.5px solid rgba(57, 111, 178, 0.10);
}

.about_us_page .feature_icon_box {
width: 40px;
height: 40px;
border-radius: 6px;
background: #EDF6F7;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 8px;
flex-shrink: 0;
}

.about_us_page .feature_center .feature_icon_box {
background: rgba(57, 111, 178, 0.10);
}

.about_us_page .feature_title {
font-size: 16px;
line-height: 1.35;
color: #1b2d45;
margin: 0 0 4px 0;
font-weight: 600;
}

.about_us_page .feature_text {
font-size: 15px;
line-height: 1.6;
color: #4a5a6e;
margin: 0;
}

.about_us_page .images_strip {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 16px;
margin-top: 32px;
}

.about_us_page .strip_image {
border-radius: 12px;
overflow: hidden;
height: 180px;
}

.about_us_page .strip_image img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
filter: saturate(0.55);
transition: filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
display: block;
}

.about_us_page .strip_image:hover img {
filter: saturate(1);
}

@media (max-width: 800px) {
.about_us_page .grid_bento {
grid-template-columns: 1fr 1fr;
padding: 64px 16px 32px;
}

.about_us_page .bento_image_cell {
display: none;
}

.about_us_page .bento_heading_cell {
grid-column: 1 / 3;
grid-row: 1 / 2;
}

.about_us_page .bento_stat_cell {
grid-column: 1 / 2;
grid-row: 2 / 3;
}

.about_us_page .bento_desc_cell {
grid-column: 2 / 3;
grid-row: 2 / 3;
}

.about_us_page .flow_grid {
grid-template-columns: 1fr;
}

.about_us_page .flow_connector {
display: none;
}

.about_us_page .team_inner {
grid-template-columns: 1fr;
gap: 32px;
padding: 32px 16px;
}

.about_us_page .team_members {
grid-template-columns: 1fr;
}

.about_us_page .member_portrait {
display: none;
}

.about_us_page .approach_top {
grid-template-columns: 1fr;
gap: 32px;
}

.about_us_page .approach_cta_block {
padding-top: 0;
}

.about_us_page .feature_columns {
grid-template-columns: 1fr;
}

.about_us_page .images_strip {
display: none;
}

.about_us_page .process_area {
padding: 32px 16px;
}

.about_us_page .approach_area {
padding: 32px 16px 64px;
}

.about_us_page .flow_step {
margin-bottom: 16px;
}
}

@media (max-width: 520px) {
.about_us_page .main_heading {
font-size: 23px;
}

.about_us_page .bento_heading_cell {
padding: 16px;
}

.about_us_page .bento_stat_cell {
padding: 16px;
}

.about_us_page .bento_desc_cell {
padding: 16px;
}
}

.success_page {
min-height: 60vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 96px 32px;
background: #EDF6F7;
}

.success_page .success_wrapper {
max-width: 1024px;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
gap: 32px;
}

.success_page .success_icon_container {
width: 80px;
height: 80px;
border-radius: 40px;
background: #396FB2;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
box-shadow: 0 10px 52px 0 rgba(57, 111, 178, 0.11);
}

.success_page .success_icon_container svg {
width: 36px;
height: 36px;
}

.success_page .success_content {
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
text-align: center;
}

.success_page .success_heading {
font-size: 43px;
line-height: 1.1;
letter-spacing: -0.02em;
color: #1b2a3b;
margin: 0;
text-shadow: 0 2px 0 rgba(57, 111, 178, 0.08);
}

.success_page .success_subtext {
font-size: 19px;
line-height: 1.6;
color: #2c3e50;
margin: 0;
max-width: 520px;
}

.success_page .success_detail {
font-size: 16px;
line-height: 1.6;
color: #3d5166;
margin: 0;
max-width: 460px;
}

.success_page .success_divider {
width: 64px;
height: 2px;
background: linear-gradient(83deg, #396FB2, #88C5CC);
border-radius: 2px;
}

.success_page .success_actions {
display: flex;
flex-direction: row;
gap: 16px;
flex-wrap: wrap;
justify-content: center;
}

.success_page .action_primary {
display: inline-block;
padding: 16px 32px;
background: #396FB2;
color: #ffffff;
font-size: 16px;
line-height: 1.35;
letter-spacing: 0.01em;
border-radius: 6px;
text-decoration: none;
border: none;
cursor: pointer;
position: relative;
overflow: hidden;
box-shadow: 0 5px 20px 0 rgba(57, 111, 178, 0.09);
transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.success_page .action_primary::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: #88C5CC;
transition: left 0.45s cubic-bezier(0.16, 1, 0.3, 1);
z-index: 0;
}

.success_page .action_primary:hover::before {
left: 0;
}

.success_page .action_primary:hover {
color: #1b2a3b;
}

.success_page .action_primary span {
position: relative;
z-index: 1;
}

.success_page .action_primary:focus {
outline: 2px solid #396FB2;
outline-offset: 3px;
}

.success_page .action_primary:active {
box-shadow: inset 0 3px 6px 0 rgba(57, 111, 178, 0.06);
}

.success_page .success_contact_note {
font-size: 15px;
line-height: 1.6;
color: #3d5166;
margin: 0;
}

.success_page .success_contact_note a {
color: #396FB2;
text-decoration: none;
font-size: 15px;
display: inline;
transition: font-size 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.success_page .success_contact_note a:hover {
font-size: 16px;
}

@media (max-width: 600px) {
.success_page {
padding: 64px 16px;
}

.success_page .success_heading {
font-size: 23px;
}

.success_page .success_subtext {
font-size: 16px;
}

.success_page .success_actions {
flex-direction: column;
align-items: stretch;
}

.success_page .action_primary {
text-align: center;
}
}