body {
margin: 0;
min-height: 100dvh;
word-break: break-word;
overflow-wrap: anywhere;
-webkit-text-size-adjust: 100%;
text-size-adjust: 100%;
font-family: 'Raleway', sans-serif;
}

*:focus-visible {
outline: 3px solid #FCC000;
outline-offset: 2px;
}

.site-header {
background: linear-gradient(135deg, #0E6147 0%, #073d2c 60%, #1C1C1C 100%);
position: relative;
z-index: 100;
box-shadow: -1px 12px 60px 0 rgba(14, 97, 71, 0.14);
}

.site-header-inner {
max-width: 1100px;
margin: 0 auto;
padding: 0 28px;
display: flex;
align-items: stretch;
gap: 28px;
}

.brand-block {
display: flex;
flex-direction: column;
justify-content: center;
padding: 28px 0;
gap: 8px;
flex-shrink: 0;
min-width: 0;
}

.brand-identity {
display: flex;
align-items: center;
gap: 16px;
}

.logo-card {
background: #f5f0e8;
border-radius: 12px;
padding: 8px 16px;
display: flex;
align-items: center;
justify-content: center;
border: 2px solid rgba(252, 192, 0, 0.35);
box-shadow: -1px 7px 25px 0 rgba(252, 192, 0, 0.08);
flex-shrink: 0;
min-width: 0;
}

.logo-card img {
width: 120px;
height: 60px;
object-fit: contain;
display: block;
}

.brand-name-text {
display: flex;
flex-direction: column;
gap: 4px;
}

.brand-name-text .company-label {
font-size: 24px;
font-weight: 700;
line-height: 1.2;
letter-spacing: 0.01em;
color: #FCC000;
}

.brand-name-text .company-label span {
color: #ffffff;
}

.brand-tagline {
font-size: 16px;
font-weight: 400;
line-height: 1.5;
letter-spacing: 0.02em;
color: rgba(255, 255, 255, 0.72);
}

.header-divider {
width: 1px;
background: rgba(252, 192, 0, 0.22);
margin: 20px 0;
flex-shrink: 0;
}

.header-right {
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 20px 0;
flex: 1;
min-width: 0;
}

.header-contacts {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 16px;
flex-wrap: wrap;
}

.contact-link-item {
display: flex;
align-items: center;
gap: 8px;
text-decoration: none;
color: rgba(255, 255, 255, 0.85);
font-size: 16px;
font-weight: 400;
line-height: 1.5;
letter-spacing: 0.01em;
padding: 8px 16px;
border-radius: 8px;
border: 1px solid rgba(252, 192, 0, 0.18);
transition: color 0.15s cubic-bezier(0.4, 0, 1, 1), border-color 0.12s cubic-bezier(0.4, 0, 1, 1), background 0.15s cubic-bezier(0.4, 0, 1, 1);
min-height: 44px;
white-space: nowrap;
}

.contact-link-item:hover {
color: #FCC000;
border-color: rgba(252, 192, 0, 0.55);
background: rgba(252, 192, 0, 0.07);
}

.contact-link-item .pe-7s-call,
.contact-link-item .pe-7s-mail {
font-size: 24px;
color: #FCC000;
flex-shrink: 0;
}

.primary-navigation {
display: flex;
align-items: center;
justify-content: flex-end;
}

.primary-navigation-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-wrap: wrap;
gap: 4px;
justify-content: flex-end;
}

.primary-navigation-list li {
display: flex;
}

.primary-navigation-list a {
display: flex;
align-items: center;
text-decoration: none;
font-family: 'Raleway', sans-serif;
font-size: 16px;
font-weight: 700;
line-height: 1.5;
letter-spacing: 0.02em;
color: rgba(255, 255, 255, 0.82);
padding: 8px 16px;
border-radius: 8px;
min-height: 44px;
border: 1px solid transparent;
position: relative;
transition: color 0.18s cubic-bezier(0.4, 0, 1, 1), background 0.13s cubic-bezier(0.4, 0, 1, 1);
white-space: nowrap;
}

.primary-navigation-list a::after {
content: '';
position: absolute;
inset: 0;
border-radius: 8px;
border: 1px solid #FCC000;
opacity: 0;
transition: opacity 0.16s cubic-bezier(0.4, 0, 1, 1);
pointer-events: none;
}

.primary-navigation-list a:hover {
color: #FCC000;
background: rgba(252, 192, 0, 0.08);
}

.primary-navigation-list a:hover::after {
opacity: 1;
}

.primary-navigation-list a[aria-current="page"] {
color: #FCC000;
background: rgba(252, 192, 0, 0.11);
}

@media (max-width: 768px) {
.site-header-inner {
flex-direction: column;
gap: 16px;
padding: 0 16px;
}

.header-divider {
display: none;
}

.header-right {
padding: 0 0 16px;
gap: 16px;
}

.brand-block {
padding: 16px 0 0;
}

.header-contacts {
justify-content: flex-start;
}

.primary-navigation {
justify-content: flex-start;
}

.primary-navigation-list {
justify-content: flex-start;
}

.brand-name-text .company-label {
font-size: 16px;
}

.brand-tagline {
font-size: 16px;
}
}

@media (min-width: 769px) and (max-width: 1280px) {
.site-header-inner {
padding: 0 16px;
gap: 16px;
}
}

.site-footer {
background: linear-gradient(160deg, #073d2c 0%, #0E6147 45%, #1C1C1C 100%);
position: relative;
overflow: hidden;
}

.site-footer-decoration {
position: absolute;
top: -56px;
right: -56px;
width: 280px;
height: 280px;
border-radius: 48%;
background: rgba(252, 192, 0, 0.05);
pointer-events: none;
overflow: hidden;
}

.site-footer-inner {
max-width: 1100px;
margin: 0 auto;
padding: 56px 28px 28px;
}

.footer-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 56px;
margin-bottom: 56px;
}

.footer-brand-column {
display: flex;
flex-direction: column;
gap: 28px;
}

.footer-logo-area {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 16px;
}

.footer-logo-card {
background: #f5f0e8;
border-radius: 12px;
padding: 8px 20px;
display: inline-flex;
align-items: center;
justify-content: center;
border: 2px solid rgba(252, 192, 0, 0.3);
box-shadow: -1px 7px 25px 0 rgba(252, 192, 0, 0.08);
}

.footer-logo-card img {
width: 120px;
height: 60px;
object-fit: contain;
display: block;
}

.footer-brand-description {
font-size: 16px;
font-weight: 400;
line-height: 1.7;
letter-spacing: 0.01em;
color: rgba(255, 255, 255, 0.68);
max-width: 360px;
}

.footer-contact-group {
display: flex;
flex-direction: column;
gap: 16px;
}

.footer-contact-label {
font-size: 16px;
font-weight: 700;
letter-spacing: 0.02em;
color: #FCC000;
text-transform: uppercase;
}

.footer-contact-entry {
display: flex;
align-items: center;
gap: 8px;
text-decoration: none;
color: rgba(255, 255, 255, 0.78);
font-size: 16px;
line-height: 1.5;
letter-spacing: 0.01em;
transition: color 0.15s cubic-bezier(0.4, 0, 1, 1);
min-height: 44px;
}

.footer-contact-entry:hover {
color: #FCC000;
}

.footer-contact-entry .pe-7s-call,
.footer-contact-entry .pe-7s-mail,
.footer-contact-entry .pe-7s-map-marker {
font-size: 24px;
color: #FCC000;
flex-shrink: 0;
}

.footer-address-text {
color: rgba(255, 255, 255, 0.68);
font-size: 16px;
line-height: 1.5;
letter-spacing: 0.01em;
display: flex;
align-items: flex-start;
gap: 8px;
}

.footer-navigation-column {
display: flex;
flex-direction: column;
gap: 28px;
}

.footer-nav-group {
display: flex;
flex-direction: column;
gap: 16px;
}

.footer-nav-group-label {
font-size: 16px;
font-weight: 700;
letter-spacing: 0.02em;
color: #FCC000;
text-transform: uppercase;
}

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

.footer-nav-list a {
text-decoration: none;
color: rgba(255, 255, 255, 0.75);
font-size: 16px;
line-height: 1.5;
letter-spacing: 0.01em;
display: inline-flex;
align-items: center;
gap: 8px;
padding: 4px 0;
min-height: 44px;
transition: color 0.13s cubic-bezier(0.4, 0, 1, 1);
}

.footer-nav-list a:hover {
color: #FCC000;
}

.footer-nav-list a .pe-7s-angle-right {
font-size: 16px;
color: rgba(252, 192, 0, 0.55);
flex-shrink: 0;
}

.footer-bottom-bar {
border-top: 1px solid rgba(252, 192, 0, 0.15);
padding-top: 28px;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 16px;
}

.footer-copyright {
font-size: 16px;
color: rgba(255, 255, 255, 0.45);
letter-spacing: 0.01em;
line-height: 1.5;
}

.footer-legal-link {
text-decoration: none;
color: rgba(255, 255, 255, 0.5);
font-size: 16px;
letter-spacing: 0.01em;
line-height: 1.5;
transition: color 0.15s cubic-bezier(0.4, 0, 1, 1);
min-height: 44px;
display: inline-flex;
align-items: center;
}

.footer-legal-link:hover {
color: #FCC000;
}

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

.site-footer-inner {
padding: 28px 16px 16px;
}

.footer-bottom-bar {
flex-direction: column;
align-items: flex-start;
}
}

.f-legal-inner {
max-width: 1100px;
margin: 0 auto;
padding: 56px 28px;
}

.f-legal-inner h1 {
font-size: 44px;
line-height: 1.2;
letter-spacing: 0.01em;
color: #0E6147;
margin-bottom: 28px;
margin-top: 0;
}

.f-legal-inner h2 {
font-size: 24px;
line-height: 1.2;
letter-spacing: 0.02em;
color: #0E6147;
margin-top: 56px;
margin-bottom: 16px;
}

.f-legal-inner h3 {
font-size: 24px;
line-height: 1.5;
letter-spacing: 0.01em;
color: #FCC000;
margin-top: 28px;
margin-bottom: 16px;
}

.f-legal-inner h4 {
font-size: 16px;
line-height: 1.5;
letter-spacing: 0.02em;
color: #2a2a2a;
font-weight: 700;
margin-top: 28px;
margin-bottom: 8px;
}

.f-legal-inner h5 {
font-size: 16px;
line-height: 1.5;
letter-spacing: 0.02em;
color: #2a2a2a;
font-weight: 600;
margin-top: 16px;
margin-bottom: 8px;
}

.f-legal-inner h6 {
font-size: 16px;
line-height: 1.7;
letter-spacing: 0.01em;
color: #3a3a3a;
font-weight: 600;
margin-top: 16px;
margin-bottom: 8px;
}

.f-legal-inner div {
font-size: 16px;
line-height: 1.7;
letter-spacing: 0.01em;
color: #2a2a2a;
margin-bottom: 16px;
}

.f-legal-inner ul {
margin-top: 8px;
margin-bottom: 28px;
padding-left: 28px;
list-style: none;
}

.f-legal-inner ol {
margin-top: 8px;
margin-bottom: 28px;
padding-left: 28px;
list-style: none;
counter-reset: policy-counter;
}

.f-legal-inner ul li {
font-size: 16px;
line-height: 1.7;
letter-spacing: 0.01em;
color: #2a2a2a;
margin-bottom: 8px;
padding-left: 16px;
position: relative;
}

.f-legal-inner ul li::before {
content: "";
position: absolute;
left: 0;
top: 11px;
width: 6px;
height: 6px;
border-radius: 50%;
background-color: #FCC000;
}

.f-legal-inner ol li {
font-size: 16px;
line-height: 1.7;
letter-spacing: 0.01em;
color: #2a2a2a;
margin-bottom: 8px;
padding-left: 16px;
position: relative;
counter-increment: policy-counter;
}

.f-legal-inner ol li::before {
content: counter(policy-counter) ".";
position: absolute;
left: -4px;
top: 0;
font-size: 16px;
font-weight: 700;
color: #0E6147;
line-height: 1.7;
}

.f-legal-inner ul li ul,
.f-legal-inner ol li ol,
.f-legal-inner ul li ol,
.f-legal-inner ol li ul {
margin-top: 8px;
margin-bottom: 4px;
}

.f-legal-inner strong,
.f-legal-inner b {
font-weight: 700;
color: #2a2a2a;
}

.f-legal-inner a {
color: #0E6147;
text-decoration: underline;
text-decoration-thickness: 1px;
text-underline-offset: 3px;
transition: color 0.15s cubic-bezier(0.4, 0, 1, 1), text-decoration-color 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.f-legal-inner a:hover {
color: #FCC000;
text-decoration-color: #FCC000;
}

.f-legal-inner a:visited {
color: #0E6147;
}

@media (max-width: 768px) {
.f-legal-inner {
padding: 28px 16px;
}

.f-legal-inner h1 {
font-size: 44px;
}

.f-legal-inner h2 {
font-size: 24px;
margin-top: 28px;
}

.f-legal-inner h3 {
font-size: 24px;
}
}

.how-it-works-page {
background-color: #fff;
overflow-x: clip;
}

.how-it-works-page .process-strip-image {
width: 100%;
height: 220px;
position: relative;
overflow: hidden;
}

.how-it-works-page .process-strip-image img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 40%;
display: block;
}

.how-it-works-page .process-strip-image .strip-gradient-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0.18) 60%, transparent 100%);
pointer-events: none;
}

.how-it-works-page .process-strip-image .strip-shape-left {
position: absolute;
bottom: 28px;
left: 56px;
width: 64px;
height: 64px;
border: 3px solid #FCC000;
border-radius: 12px;
transform: rotate(18deg);
opacity: 0.38;
pointer-events: none;
}

.how-it-works-page .process-strip-image .strip-shape-right {
position: absolute;
top: 28px;
right: 80px;
width: 36px;
height: 36px;
background: #0E6147;
border-radius: 48px;
opacity: 0.22;
pointer-events: none;
}

.how-it-works-page .process-heading-zone {
max-width: 1100px;
margin: 0 auto;
padding: 56px 28px 28px;
}

.how-it-works-page .process-heading-zone .page-label {
display: inline-block;
font-size: 16px;
line-height: 1.5;
letter-spacing: 0.02em;
color: #0E6147;
font-weight: 600;
margin-bottom: 16px;
text-transform: uppercase;
}

.how-it-works-page .process-heading-zone h1 {
font-size: 72px;
line-height: 1.2;
letter-spacing: 0.01em;
color: #1C1C1C;
font-weight: 800;
margin: 0 0 16px;
max-width: 780px;
}

.how-it-works-page .process-heading-zone h1 .accent-dash {
color: #FCC000;
margin: 0 8px;
}

.how-it-works-page .process-heading-zone .heading-intro-text {
font-size: 24px;
line-height: 1.5;
letter-spacing: 0.01em;
color: #2a2a2a;
max-width: 640px;
margin: 0;
}

@keyframes grad-layer-a {
0% {
background-position: 0% 50%;
}

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

@keyframes grad-layer-b {
0% {
background-position: 100% 50%;
}

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

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

to {
transform: rotate(360deg);
}
}

.how-it-works-page .steps-primary-block {
position: relative;
background-color: #fffdf0;
padding: 56px 0;
overflow: hidden;
}

.how-it-works-page .steps-primary-block .dual-gradient-layer-a {
position: absolute;
inset: 0;
background: linear-gradient(to right, rgba(252, 192, 0, 0.10), rgba(255, 255, 255, 0.0));
background-size: 200% 100%;
animation: grad-layer-a 7s linear infinite alternate;
pointer-events: none;
z-index: 0;
}

.how-it-works-page .steps-primary-block .dual-gradient-layer-b {
position: absolute;
inset: 0;
background: linear-gradient(to right, rgba(255, 255, 255, 0.0), rgba(14, 97, 71, 0.07));
background-size: 200% 100%;
animation: grad-layer-b 11s linear infinite alternate;
pointer-events: none;
z-index: 0;
}

.how-it-works-page .steps-primary-block .rotating-geo {
position: absolute;
top: -60px;
right: -60px;
width: 280px;
height: 280px;
border: 2px solid rgba(252, 192, 0, 0.18);
border-radius: 48px;
animation: slow-rotate 28s linear infinite;
pointer-events: none;
z-index: 0;
}

.how-it-works-page .steps-primary-block .rotating-geo-inner {
position: absolute;
top: 40px;
right: 40px;
width: 200px;
height: 200px;
border: 2px solid rgba(14, 97, 71, 0.12);
border-radius: 32px;
animation: slow-rotate 18s linear infinite reverse;
pointer-events: none;
z-index: 0;
}

.how-it-works-page .steps-primary-block .steps-layout {
max-width: 1100px;
margin: 0 auto;
padding: 0 28px;
position: relative;
z-index: 1;
display: flex;
flex-direction: row;
gap: 56px;
align-items: flex-start;
}

.how-it-works-page .steps-primary-block .steps-aside {
flex: 0 0 320px;
max-width: 320px;
}

.how-it-works-page .steps-primary-block .steps-aside h2 {
font-size: 44px;
line-height: 1.2;
letter-spacing: 0.01em;
color: #0E6147;
font-weight: 700;
margin: 0 0 16px;
padding-left: 16px;
border-top: 4px solid #FCC000;
padding-top: 16px;
}

.how-it-works-page .steps-primary-block .steps-aside .aside-description {
font-size: 16px;
line-height: 1.7;
letter-spacing: 0.01em;
color: #2a2a2a;
margin: 0 0 28px;
}

.how-it-works-page .steps-primary-block .steps-aside .aside-image-wrap {
border-radius: 20px;
overflow: hidden;
box-shadow: -1px 7px 25px 0 rgba(252, 192, 0, 0.08);
}

.how-it-works-page .steps-primary-block .steps-aside .aside-image-wrap img {
width: 100%;
height: auto;
display: block;
object-fit: cover;
}

.how-it-works-page .steps-primary-block .steps-list-column {
flex: 1 1 0;
min-width: 0;
}

.how-it-works-page .steps-primary-block .step-item {
display: flex;
flex-direction: row;
gap: 28px;
align-items: flex-start;
margin-bottom: 8px;
position: relative;
}

.how-it-works-page .steps-primary-block .step-item:last-child {
margin-bottom: 0;
}

.how-it-works-page .steps-primary-block .step-connector-track {
display: flex;
flex-direction: column;
align-items: center;
flex: 0 0 44px;
}

.how-it-works-page .steps-primary-block .step-number-badge {
width: 44px;
height: 44px;
border-radius: 12px;
background: #FCC000;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
font-size: 16px;
font-weight: 800;
color: #1C1C1C;
letter-spacing: 0.01em;
flex-shrink: 0;
box-shadow: -1px 2px 4px 0 rgba(252, 192, 0, 0.06);
transition: background-color 0.14s cubic-bezier(0.4, 0, 1, 1), box-shadow 0.14s cubic-bezier(0.4, 0, 1, 1);
}

.how-it-works-page .steps-primary-block .step-item:hover .step-number-badge {
background: #0E6147;
color: #fff;
box-shadow: -1px 7px 25px 0 rgba(14, 97, 71, 0.08);
}

.how-it-works-page .steps-primary-block .step-line {
width: 2px;
flex: 1 1 0;
min-height: 28px;
background: linear-gradient(to bottom, #FCC000, rgba(252, 192, 0, 0.12));
margin: 4px 0;
}

.how-it-works-page .steps-primary-block .step-item:last-child .step-line {
display: none;
}

.how-it-works-page .steps-primary-block .step-body {
flex: 1 1 0;
min-width: 0;
padding: 4px 0 28px;
}

.how-it-works-page .steps-primary-block .step-body h3 {
font-size: 24px;
line-height: 1.2;
letter-spacing: 0.01em;
color: #1C1C1C;
font-weight: 700;
margin: 0 0 8px;
}

.how-it-works-page .steps-primary-block .step-body .step-description {
font-size: 16px;
line-height: 1.7;
letter-spacing: 0.01em;
color: #2a2a2a;
margin: 0 0 8px;
}

.how-it-works-page .steps-primary-block .step-body .step-detail-tag {
display: inline-flex;
flex-direction: row;
align-items: center;
gap: 8px;
font-size: 16px;
line-height: 1.5;
color: #0E6147;
font-weight: 600;
letter-spacing: 0.01em;
}

.how-it-works-page .steps-primary-block .step-body .step-detail-tag .tag-dot {
width: 8px;
height: 8px;
background: #FCC000;
border-radius: 8px;
flex-shrink: 0;
}

.how-it-works-page .faq-details-block {
background: #fff;
padding: 56px 0;
position: relative;
}

.how-it-works-page .faq-details-block .halftone-accent {
position: absolute;
bottom: 0;
left: 0;
width: 320px;
height: 320px;
pointer-events: none;
z-index: 0;
overflow: hidden;
border-radius: 0 48px 0 0;
}

.how-it-works-page .faq-details-block .halftone-accent svg {
width: 100%;
height: 100%;
opacity: 0.13;
}

.how-it-works-page .faq-details-block .faq-layout {
max-width: 1100px;
margin: 0 auto;
padding: 0 28px;
position: relative;
z-index: 1;
}

.how-it-works-page .faq-details-block .faq-layout-top {
display: flex;
flex-direction: row;
gap: 56px;
align-items: flex-start;
margin-bottom: 56px;
}

.how-it-works-page .faq-details-block .faq-intro-full {
flex: 0 0 380px;
max-width: 380px;
}

.how-it-works-page .faq-details-block .faq-intro-full h2 {
font-size: 44px;
line-height: 1.2;
letter-spacing: 0.01em;
color: #1C1C1C;
font-weight: 700;
margin: 0 0 16px;
padding-left: 16px;
border-top: 4px solid #0E6147;
padding-top: 16px;
}

.how-it-works-page .faq-details-block .faq-intro-full .faq-lead {
font-size: 16px;
line-height: 1.7;
letter-spacing: 0.01em;
color: #2a2a2a;
margin: 0;
}

.how-it-works-page .faq-details-block .faq-image-aside {
flex: 1 1 0;
min-width: 0;
border-radius: 20px;
overflow: hidden;
box-shadow: -1px 12px 60px 0 rgba(14, 97, 71, 0.14);
}

.how-it-works-page .faq-details-block .faq-image-aside img {
width: 100%;
height: 260px;
object-fit: cover;
display: block;
}

.how-it-works-page .faq-details-block .faq-questions-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}

.how-it-works-page .faq-details-block .faq-card {
background: #fffdf0;
border-radius: 20px;
padding: 28px;
box-shadow: -1px 2px 4px 0 rgba(252, 192, 0, 0.06);
transition: box-shadow 0.16s cubic-bezier(0.4, 0, 1, 1), transform 0.16s cubic-bezier(0.4, 0, 1, 1);
cursor: default;
}

.how-it-works-page .faq-details-block .faq-card:hover {
box-shadow: -1px 7px 25px 0 rgba(252, 192, 0, 0.08);
transform: translateY(-2px);
}

.how-it-works-page .faq-details-block .faq-card h4 {
font-size: 16px;
line-height: 1.5;
letter-spacing: 0.01em;
color: #0E6147;
font-weight: 700;
margin: 0 0 8px;
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 8px;
}

.how-it-works-page .faq-details-block .faq-card h4 .question-mark {
display: inline-flex;
align-items: center;
justify-content: center;
width: 22px;
height: 22px;
background: #FCC000;
border-radius: 8px;
font-size: 16px;
font-weight: 800;
color: #1C1C1C;
flex-shrink: 0;
line-height: 1;
}

.how-it-works-page .faq-details-block .faq-card .answer-text {
font-size: 16px;
line-height: 1.7;
letter-spacing: 0.01em;
color: #2a2a2a;
margin: 0;
}

@media (max-width: 1280px) {
.how-it-works-page .process-heading-zone h1 {
font-size: 56px;
}

.how-it-works-page .steps-primary-block .steps-layout {
gap: 28px;
}

.how-it-works-page .steps-primary-block .steps-aside {
flex: 0 0 260px;
max-width: 260px;
}
}

@media (max-width: 768px) {
.how-it-works-page .process-heading-zone h1 {
font-size: 44px;
}

.how-it-works-page .process-heading-zone .heading-intro-text {
font-size: 16px;
}

.how-it-works-page .process-strip-image {
height: 140px;
}

.how-it-works-page .steps-primary-block .steps-layout {
flex-direction: column;
gap: 28px;
}

.how-it-works-page .steps-primary-block .steps-aside {
flex: none;
max-width: 100%;
width: 100%;
}

.how-it-works-page .steps-primary-block .steps-aside h2 {
font-size: 24px;
}

.how-it-works-page .faq-details-block .faq-layout-top {
flex-direction: column;
gap: 28px;
margin-bottom: 28px;
}

.how-it-works-page .faq-details-block .faq-intro-full {
flex: none;
max-width: 100%;
}

.how-it-works-page .faq-details-block .faq-intro-full h2 {
font-size: 24px;
}

.how-it-works-page .faq-details-block .faq-questions-grid {
grid-template-columns: 1fr;
}

.how-it-works-page .steps-primary-block .rotating-geo,
.how-it-works-page .steps-primary-block .rotating-geo-inner {
display: none;
}
}

.about-us-page {
background-color: #f5f2ed;
overflow-x: clip;
}

.about-us-page .frame-outer {
max-width: 1100px;
margin: 0 auto;
padding: 0 28px;
}

.about-us-page .identity-block {
position: relative;
padding: 56px 0 0;
background: #fff;
}

.about-us-page .identity-block::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 58%;
height: 100%;
background: #f5f2ed;
z-index: 0;
}

.about-us-page .identity-block::after {
content: "";
position: absolute;
top: 0;
right: 0;
width: 42%;
height: 100%;
background: #fff;
z-index: 0;
}

.about-us-page .identity-frame {
position: relative;
z-index: 1;
display: flex;
flex-direction: row;
align-items: stretch;
gap: 0;
border: 2px solid #FCC000;
outline: 6px solid #f5f2ed;
outline-offset: -10px;
border-radius: 12px;
overflow: hidden;
}

.about-us-page .identity-image-zone {
flex: 0 0 52%;
position: relative;
min-height: 480px;
}

.about-us-page .identity-image-zone img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.about-us-page .identity-image-gradient {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to right, rgba(14, 97, 71, 0.72) 0%, rgba(14, 97, 71, 0.18) 55%, rgba(14, 97, 71, 0) 100%);
pointer-events: none;
}

.about-us-page .identity-text-zone {
flex: 1;
padding: 56px 28px 56px 28px;
display: flex;
flex-direction: column;
justify-content: center;
background: transparent;
}

.about-us-page .identity-eyebrow {
font-size: 16px;
line-height: 1.5;
color: #0E6147;
letter-spacing: 0.02em;
margin-bottom: 16px;
display: flex;
align-items: center;
gap: 8px;
}

.about-us-page .identity-eyebrow-diamond {
display: inline-block;
width: 8px;
height: 8px;
background: #FCC000;
transform: rotate(45deg);
flex-shrink: 0;
}

.about-us-page .identity-heading {
font-size: 44px;
line-height: 1.2;
letter-spacing: 0.01em;
color: #1C1C1C;
margin-bottom: 28px;
}

.about-us-page .identity-heading .accented-word {
color: #FCC000;
position: relative;
}

.about-us-page .identity-description {
font-size: 16px;
line-height: 1.7;
color: #2a2a2a;
margin-bottom: 16px;
}

.about-us-page .identity-description:last-child {
margin-bottom: 0;
}

.about-us-page .identity-thin-line {
width: 48px;
height: 3px;
background: linear-gradient(to right, #FCC000, #fff);
border-radius: 8px;
margin-bottom: 28px;
}

.about-us-page .identity-stats-row {
display: flex;
flex-direction: row;
gap: 28px;
margin-top: 28px;
padding-top: 28px;
border-top: 1px solid rgba(14, 97, 71, 0.15);
}

.about-us-page .identity-stat {
display: flex;
flex-direction: column;
gap: 4px;
}

.about-us-page .identity-stat-number {
font-size: 44px;
line-height: 1.2;
color: #0E6147;
letter-spacing: 0.01em;
}

.about-us-page .identity-stat-label {
font-size: 16px;
line-height: 1.5;
color: #555;
letter-spacing: 0.01em;
}

.about-us-page .identity-bottom-bar {
position: relative;
z-index: 1;
display: flex;
flex-direction: row;
align-items: center;
gap: 16px;
padding: 16px 0 0;
margin-top: 8px;
}

.about-us-page .identity-tag {
font-size: 16px;
line-height: 1.5;
color: #0E6147;
background: rgba(14, 97, 71, 0.08);
border-radius: 8px;
padding: 4px 16px;
letter-spacing: 0.01em;
}

.about-us-page .identity-separator-diamond {
width: 6px;
height: 6px;
background: #FCC000;
transform: rotate(45deg);
flex-shrink: 0;
}

.about-us-page .team-block {
padding: 56px 0;
background: #fff;
position: relative;
}

.about-us-page .team-block-background-accent {
position: absolute;
top: 0;
right: 0;
width: 40%;
height: 100%;
background: linear-gradient(to right, #f5f2ed 0%, #ede9e1 100%);
clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
pointer-events: none;
z-index: 0;
}

.about-us-page .team-block-inner {
position: relative;
z-index: 1;
}

.about-us-page .team-label-row {
display: flex;
flex-direction: row;
align-items: center;
gap: 16px;
margin-bottom: 8px;
}

.about-us-page .team-label-line {
width: 4px;
height: 36px;
background: linear-gradient(to bottom, #FCC000, #0E6147);
border-radius: 8px;
flex-shrink: 0;
}

.about-us-page .team-label-text {
font-size: 44px;
line-height: 1.2;
color: #1C1C1C;
letter-spacing: 0.01em;
}

.about-us-page .team-label-text .accented-word {
color: #0E6147;
}

.about-us-page .team-subtext {
font-size: 16px;
line-height: 1.7;
color: #2a2a2a;
max-width: 620px;
margin-bottom: 28px;
}

.about-us-page .team-layout {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
grid-template-rows: auto auto;
gap: 16px;
}

.about-us-page .team-card {
border-radius: 12px;
overflow: hidden;
box-shadow: -1px 7px 25px 0 rgba(252, 192, 0, 0.08);
background: #fff;
border: 1px solid rgba(14, 97, 71, 0.1);
transition: box-shadow 0.16s cubic-bezier(0.4, 0, 1, 1), border-color 0.12s cubic-bezier(0.4, 0, 1, 1);
cursor: default;
}

.about-us-page .team-card:hover {
box-shadow: -1px 12px 60px 0 rgba(252, 192, 0, 0.14);
border-color: rgba(14, 97, 71, 0.28);
}

.about-us-page .team-card.anchor {
grid-column: 1;
grid-row: 1 / 3;
display: flex;
flex-direction: column;
}

.about-us-page .team-card.compact {
display: flex;
flex-direction: column;
}

.about-us-page .team-card-image-wrapper {
position: relative;
overflow: hidden;
}

.about-us-page .team-card.anchor .team-card-image-wrapper {
height: 320px;
}

.about-us-page .team-card.compact .team-card-image-wrapper {
height: 160px;
}

.about-us-page .team-card-image-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.18s cubic-bezier(0.4, 0, 1, 1);
}

.about-us-page .team-card:hover .team-card-image-wrapper img {
transform: scale(1.04);
}

.about-us-page .team-card-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(14, 97, 71, 0.72);
opacity: 0;
transition: opacity 0.16s cubic-bezier(0.4, 0, 1, 1);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 28px;
}

.about-us-page .team-card:hover .team-card-overlay {
opacity: 1;
}

.about-us-page .team-card-overlay-text {
font-size: 16px;
line-height: 1.7;
color: #fff;
text-align: center;
letter-spacing: 0.01em;
}

.about-us-page .team-card-body {
padding: 16px;
flex: 1;
display: flex;
flex-direction: column;
gap: 4px;
}

.about-us-page .team-card-name {
font-size: 16px;
line-height: 1.5;
color: #1C1C1C;
letter-spacing: 0.01em;
}

.about-us-page .team-card.anchor .team-card-name {
font-size: 24px;
line-height: 1.2;
}

.about-us-page .team-card-role {
font-size: 16px;
line-height: 1.5;
color: #0E6147;
letter-spacing: 0.01em;
}

.about-us-page .team-card-diamond-row {
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
margin-top: 4px;
}

.about-us-page .team-card-diamond {
width: 5px;
height: 5px;
background: #FCC000;
transform: rotate(45deg);
flex-shrink: 0;
}

.about-us-page .team-card-specialty {
font-size: 16px;
line-height: 1.5;
color: #555;
letter-spacing: 0.01em;
}

.about-us-page .team-radar-block {
margin-top: 28px;
display: flex;
flex-direction: row;
align-items: center;
gap: 56px;
padding: 28px;
background: #f5f2ed;
border-radius: 20px;
box-shadow: -1px 2px 4px 0 rgba(14, 97, 71, 0.06);
}

.about-us-page .team-radar-chart {
flex-shrink: 0;
width: 220px;
height: 220px;
}

.about-us-page .team-radar-text {
flex: 1;
display: flex;
flex-direction: column;
gap: 16px;
}

.about-us-page .team-radar-heading {
font-size: 24px;
line-height: 1.2;
color: #1C1C1C;
letter-spacing: 0.01em;
}

.about-us-page .team-radar-paragraph {
font-size: 16px;
line-height: 1.7;
color: #2a2a2a;
}

.about-us-page .team-radar-axes {
display: flex;
flex-direction: column;
gap: 8px;
}

.about-us-page .team-radar-axis-row {
display: flex;
flex-direction: row;
align-items: center;
gap: 16px;
}

.about-us-page .team-radar-axis-label {
font-size: 16px;
line-height: 1.5;
color: #2a2a2a;
min-width: 160px;
letter-spacing: 0.01em;
}

.about-us-page .team-radar-axis-bar-track {
flex: 1;
height: 6px;
background: rgba(14, 97, 71, 0.12);
border-radius: 8px;
overflow: hidden;
}

.about-us-page .team-radar-axis-bar-fill {
height: 100%;
background: linear-gradient(to right, #FCC000, #0E6147);
border-radius: 8px;
transition: width 0.18s cubic-bezier(0.4, 0, 1, 1);
}

@media (max-width: 1280px) {
.about-us-page .identity-heading {
font-size: 44px;
}

.about-us-page .team-layout {
grid-template-columns: 1.5fr 1fr 1fr;
}
}

@media (max-width: 768px) {
.about-us-page .identity-frame {
flex-direction: column;
}

.about-us-page .identity-image-zone {
flex: none;
min-height: 260px;
width: 100%;
}

.about-us-page .identity-text-zone {
padding: 28px 16px;
}

.about-us-page .identity-heading {
font-size: 44px;
}

.about-us-page .identity-stats-row {
flex-direction: column;
gap: 16px;
}

.about-us-page .identity-block::before,
.about-us-page .identity-block::after {
display: none;
}

.about-us-page .identity-block {
background: #f5f2ed;
}

.about-us-page .team-layout {
grid-template-columns: 1fr 1fr;
}

.about-us-page .team-card.anchor {
grid-column: 1 / 3;
grid-row: 1;
}

.about-us-page .team-radar-block {
flex-direction: column;
align-items: flex-start;
gap: 28px;
}

.about-us-page .team-radar-chart {
width: 180px;
height: 180px;
align-self: center;
}

.about-us-page .team-block-background-accent {
display: none;
}

.about-us-page .team-label-text {
font-size: 44px;
}
}

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

.learning-program .program-grid-root {
max-width: 1100px;
margin: 0 auto;
padding: 0 28px;
}

.learning-program .title-block {
padding: 56px 0 28px;
background: #fff;
}

.learning-program .title-block-inner {
max-width: 1100px;
margin: 0 auto;
padding: 0 28px;
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 56px;
}

.learning-program .title-image-column {
flex: 0 0 260px;
position: relative;
border-radius: 20px;
overflow: hidden;
box-shadow: -1px 12px 60px 0 rgba(252, 192, 0, 0.14);
}

.learning-program .title-image-column img {
width: 260px;
height: 360px;
object-fit: cover;
display: block;
}

.learning-program .title-image-diagonal {
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(14, 97, 71, 0.55) 0%, rgba(252, 192, 0, 0.18) 100%);
pointer-events: none;
}

.learning-program .title-image-shape-a {
position: absolute;
top: -24px;
right: -24px;
width: 100px;
height: 100px;
border-radius: 48px;
background: rgba(252, 192, 0, 0.13);
pointer-events: none;
}

.learning-program .title-image-shape-b {
position: absolute;
bottom: -16px;
left: -16px;
width: 72px;
height: 72px;
border-radius: 32px;
background: rgba(14, 97, 71, 0.13);
pointer-events: none;
}

.learning-program .title-text-column {
flex: 1 1 0;
display: flex;
flex-direction: column;
gap: 16px;
}

.learning-program .title-eyebrow {
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
font-size: 16px;
line-height: 1.5;
letter-spacing: 0.02em;
color: #0E6147;
font-weight: 600;
}

.learning-program .title-eyebrow-dash {
display: inline-block;
width: 28px;
height: 2px;
background: #FCC000;
flex-shrink: 0;
}

.learning-program .title-heading {
font-size: 72px;
line-height: 1.2;
letter-spacing: 0.01em;
color: #1C1C1C;
font-weight: 800;
margin: 0;
}

.learning-program .title-heading-accent {
color: #0E6147;
}

.learning-program .title-heading-accent-yellow {
color: #FCC000;
}

.learning-program .title-description {
font-size: 16px;
line-height: 1.7;
letter-spacing: 0.01em;
color: #2d2d2d;
max-width: 520px;
margin: 0;
}

.learning-program .title-metric-row {
display: flex;
flex-direction: row;
gap: 28px;
margin-top: 8px;
flex-wrap: wrap;
}

.learning-program .title-metric {
display: flex;
flex-direction: column;
gap: 4px;
}

.learning-program .title-metric-number {
font-size: 44px;
line-height: 1.2;
letter-spacing: 0.01em;
color: #FCC000;
font-weight: 800;
}

.learning-program .title-metric-label {
font-size: 16px;
line-height: 1.5;
letter-spacing: 0.01em;
color: #555;
}

.learning-program .title-dashed-border {
margin-top: 28px;
border: 2px dashed rgba(14, 97, 71, 0.22);
border-radius: 12px;
padding: 16px 28px;
display: flex;
flex-direction: row;
align-items: center;
gap: 16px;
}

.learning-program .title-dashed-icon {
flex-shrink: 0;
width: 36px;
height: 36px;
}

.learning-program .title-dashed-text {
font-size: 16px;
line-height: 1.5;
color: #2d2d2d;
margin: 0;
}

.learning-program .title-cta-row {
display: flex;
flex-direction: row;
gap: 16px;
flex-wrap: wrap;
margin-top: 8px;
}

.learning-program .button-primary {
display: inline-block;
font-size: 16px;
line-height: 1.5;
letter-spacing: 0.02em;
color: #1C1C1C;
background: #FCC000;
border: 2px solid #FCC000;
border-radius: 8px;
padding: 8px 28px;
font-weight: 700;
text-decoration: none;
cursor: pointer;
transition: background 0.16s cubic-bezier(0.4, 0, 1, 1), color 0.16s cubic-bezier(0.4, 0, 1, 1), border-color 0.16s cubic-bezier(0.4, 0, 1, 1);
position: relative;
overflow: hidden;
}

.learning-program .button-primary:hover,
.learning-program .button-primary:focus {
background: transparent;
color: #FCC000;
border-color: #FCC000;
outline: none;
}

.learning-program .button-secondary {
display: inline-block;
font-size: 16px;
line-height: 1.5;
letter-spacing: 0.02em;
color: #0E6147;
background: transparent;
border: 2px solid #0E6147;
border-radius: 8px;
padding: 8px 28px;
font-weight: 700;
text-decoration: none;
cursor: pointer;
transition: background 0.12s cubic-bezier(0.4, 0, 1, 1), color 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.learning-program .button-secondary:hover,
.learning-program .button-secondary:focus {
background: #0E6147;
color: #fff;
outline: none;
}

.learning-program .divider-asymmetric {
max-width: 1100px;
margin: 0 auto;
padding: 0 28px;
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
margin-top: 28px;
margin-bottom: 28px;
}

.learning-program .divider-line-long {
flex: 3;
height: 2px;
background: linear-gradient(90deg, #FCC000 0%, #fff 100%);
border-radius: 8px;
}

.learning-program .divider-line-short {
flex: 1;
height: 2px;
background: linear-gradient(90deg, #fff 0%, #0E6147 100%);
border-radius: 8px;
}

.learning-program .detail-block {
background: #f5f0e8;
padding: 56px 0 56px;
position: relative;
}

.learning-program .detail-block-inner {
max-width: 1100px;
margin: 0 auto;
padding: 0 28px;
}

.learning-program .detail-block-heading-row {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 16px;
margin-bottom: 28px;
}

.learning-program .detail-block-accent-line {
flex-shrink: 0;
width: 4px;
height: 56px;
background: #FCC000;
border-radius: 8px;
margin-top: 4px;
}

.learning-program .detail-block-heading {
font-size: 44px;
line-height: 1.2;
letter-spacing: 0.01em;
color: #0E6147;
font-weight: 800;
margin: 0;
}

.learning-program .detail-block-intro {
font-size: 16px;
line-height: 1.7;
color: #2d2d2d;
max-width: 100%;
margin: 0 0 28px 0;
}

.learning-program .detail-two-column-body {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 28px;
margin-bottom: 56px;
}

.learning-program .detail-column-text {
font-size: 16px;
line-height: 1.7;
color: #2d2d2d;
margin: 0;
}

.learning-program .before-after-block {
border: 2px dashed rgba(14, 97, 71, 0.28);
border-radius: 20px;
padding: 28px;
margin-bottom: 56px;
background: #fff;
}

.learning-program .before-after-label {
font-size: 16px;
line-height: 1.5;
letter-spacing: 0.02em;
color: #0E6147;
font-weight: 700;
margin: 0 0 16px 0;
}

.learning-program .before-after-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 28px;
}

.learning-program .before-column {
background: rgba(28, 28, 28, 0.04);
border-radius: 12px;
padding: 16px 28px;
}

.learning-program .after-column {
background: rgba(14, 97, 71, 0.07);
border-radius: 12px;
padding: 16px 28px;
}

.learning-program .before-after-col-heading {
font-size: 16px;
line-height: 1.5;
font-weight: 700;
margin: 0 0 8px 0;
letter-spacing: 0.02em;
}

.learning-program .before-col-heading-text {
color: #555;
}

.learning-program .after-col-heading-text {
color: #0E6147;
}

.learning-program .before-after-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 8px;
}

.learning-program .before-after-list li {
font-size: 16px;
line-height: 1.5;
color: #2d2d2d;
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 8px;
}

.learning-program .before-after-list li .item-marker {
flex-shrink: 0;
margin-top: 4px;
}

.learning-program .marker-before {
width: 10px;
height: 10px;
border-radius: 50%;
background: #bbb;
display: inline-block;
}

.learning-program .marker-after {
width: 10px;
height: 10px;
border-radius: 50%;
background: #0E6147;
display: inline-block;
}

.learning-program .mosaic-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: auto auto;
gap: 16px;
margin-bottom: 56px;
}

.learning-program .mosaic-card {
background: #fff;
border-radius: 20px;
padding: 28px;
box-shadow: -1px 7px 25px 0 rgba(252, 192, 0, 0.08);
display: flex;
flex-direction: column;
gap: 8px;
animation: card-drop-in 0.18s cubic-bezier(0.4, 0, 1, 1) both;
}

.learning-program .mosaic-card.span-two {
grid-column: span 2;
}

.learning-program .mosaic-card-icon {
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 4px;
}

.learning-program .mosaic-card-icon svg {
width: 32px;
height: 32px;
}

.learning-program .mosaic-card-heading {
font-size: 24px;
line-height: 1.2;
letter-spacing: 0.01em;
color: #1C1C1C;
font-weight: 700;
margin: 0;
}

.learning-program .mosaic-card-text {
font-size: 16px;
line-height: 1.7;
color: #2d2d2d;
margin: 0;
}

.learning-program .mosaic-card-number {
font-size: 44px;
line-height: 1.2;
letter-spacing: 0.01em;
color: #FCC000;
font-weight: 800;
margin: 0;
}

.learning-program .mosaic-card-number-label {
font-size: 16px;
line-height: 1.5;
color: #777;
margin: 0;
}

@keyframes card-drop-in {
from {
opacity: 0;
transform: translateY(-18px);
}

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

.learning-program .mosaic-card:nth-child(1) {
animation-delay: 0.04s;
}

.learning-program .mosaic-card:nth-child(2) {
animation-delay: 0.09s;
}

.learning-program .mosaic-card:nth-child(3) {
animation-delay: 0.14s;
}

.learning-program .mosaic-card:nth-child(4) {
animation-delay: 0.18s;
}

.learning-program .colored-break {
background: #0E6147;
padding: 56px 0;
}

.learning-program .colored-break-inner {
max-width: 1100px;
margin: 0 auto;
padding: 0 28px;
display: flex;
flex-direction: row;
align-items: center;
gap: 56px;
}

.learning-program .colored-break-text-block {
flex: 1 1 0;
display: flex;
flex-direction: column;
gap: 16px;
}

.learning-program .colored-break-heading {
font-size: 44px;
line-height: 1.2;
letter-spacing: 0.01em;
color: #FCC000;
font-weight: 800;
margin: 0;
}

.learning-program .colored-break-text {
font-size: 16px;
line-height: 1.7;
color: #d4ede4;
margin: 0;
}

.learning-program .colored-break-image-col {
flex: 0 0 340px;
border-radius: 20px;
overflow: hidden;
box-shadow: -1px 12px 60px 0 rgba(14, 97, 71, 0.14);
}

.learning-program .colored-break-image-col img {
width: 340px;
height: 260px;
object-fit: cover;
display: block;
}

.learning-program .colored-break-steps {
display: flex;
flex-direction: column;
gap: 16px;
}

.learning-program .colored-break-step {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 16px;
}

.learning-program .step-number-badge {
flex-shrink: 0;
width: 36px;
height: 36px;
border-radius: 12px;
background: rgba(252, 192, 0, 0.18);
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
font-weight: 800;
color: #FCC000;
}

.learning-program .step-text-block {
display: flex;
flex-direction: column;
gap: 4px;
}

.learning-program .step-heading {
font-size: 16px;
line-height: 1.5;
font-weight: 700;
color: #fff;
margin: 0;
}

.learning-program .step-description {
font-size: 16px;
line-height: 1.5;
color: #b0d4c4;
margin: 0;
}

.learning-program .gravel-pattern-section {
padding: 56px 0;
background-color: #fff;
position: relative;
}

.learning-program .gravel-pattern-section::before {
content: "";
position: absolute;
inset: 0;
background-image:
radial-gradient(circle, rgba(14, 97, 71, 0.13) 1px, transparent 1px),
radial-gradient(circle, rgba(252, 192, 0, 0.10) 2px, transparent 2px),
radial-gradient(circle, rgba(14, 97, 71, 0.07) 1.5px, transparent 1.5px);
background-size: 38px 38px, 61px 61px, 23px 23px;
background-position: 0 0, 19px 19px, 9px 9px;
pointer-events: none;
}

.learning-program .gravel-section-inner {
max-width: 1100px;
margin: 0 auto;
padding: 0 28px;
position: relative;
}

.learning-program .gravel-heading-row {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 16px;
margin-bottom: 28px;
}

.learning-program .gravel-accent-line {
flex-shrink: 0;
width: 4px;
height: 44px;
background: #0E6147;
border-radius: 8px;
margin-top: 4px;
}

.learning-program .gravel-heading {
font-size: 44px;
line-height: 1.2;
letter-spacing: 0.01em;
color: #1C1C1C;
font-weight: 800;
margin: 0;
}

.learning-program .gravel-intro {
font-size: 16px;
line-height: 1.7;
color: #2d2d2d;
margin: 0 0 28px 0;
max-width: 700px;
}

.learning-program .participants-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 16px;
margin-bottom: 28px;
}

.learning-program .participant-card {
background: #fff;
border-radius: 20px;
padding: 28px;
box-shadow: -1px 7px 25px 0 rgba(252, 192, 0, 0.08);
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 16px;
transition: box-shadow 0.14s cubic-bezier(0.4, 0, 1, 1);
}

.learning-program .participant-card:hover {
box-shadow: -1px 12px 60px 0 rgba(252, 192, 0, 0.14);
}

.learning-program .participant-avatar {
flex-shrink: 0;
width: 48px;
height: 48px;
border-radius: 48px;
background: linear-gradient(90deg, #FCC000 0%, #f5f0e8 100%);
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
font-weight: 800;
color: #0E6147;
}

.learning-program .participant-text {
display: flex;
flex-direction: column;
gap: 4px;
}

.learning-program .participant-name {
font-size: 16px;
line-height: 1.5;
font-weight: 700;
color: #1C1C1C;
margin: 0;
}

.learning-program .participant-role {
font-size: 16px;
line-height: 1.5;
color: #555;
margin: 0;
}

.learning-program .participant-quote {
font-size: 16px;
line-height: 1.7;
color: #2d2d2d;
margin: 8px 0 0 0;
}

.learning-program .rating-strip {
display: flex;
flex-direction: row;
align-items: center;
gap: 28px;
background: rgba(14, 97, 71, 0.06);
border-radius: 12px;
padding: 16px 28px;
flex-wrap: wrap;
}

.learning-program .rating-number {
font-size: 44px;
line-height: 1.2;
letter-spacing: 0.01em;
font-weight: 800;
color: #0E6147;
}

.learning-program .rating-stars {
display: flex;
flex-direction: row;
gap: 4px;
align-items: center;
}

.learning-program .star-filled {
width: 20px;
height: 20px;
}

.learning-program .rating-meta {
font-size: 16px;
line-height: 1.5;
color: #555;
}

@media (max-width: 1280px) {
.learning-program .title-heading {
font-size: 44px;
}

.learning-program .title-image-column {
flex: 0 0 200px;
}

.learning-program .title-image-column img {
width: 200px;
height: 280px;
}
}

@media (max-width: 768px) {
.learning-program .title-block-inner {
flex-direction: column;
gap: 28px;
}

.learning-program .title-image-column {
flex: 0 0 auto;
width: 100%;
}

.learning-program .title-image-column img {
width: 100%;
height: 220px;
}

.learning-program .title-heading {
font-size: 44px;
}

.learning-program .title-metric-row {
gap: 16px;
}

.learning-program .detail-two-column-body {
grid-template-columns: 1fr;
}

.learning-program .before-after-grid {
grid-template-columns: 1fr;
}

.learning-program .mosaic-grid {
grid-template-columns: 1fr;
}

.learning-program .mosaic-card.span-two {
grid-column: span 1;
}

.learning-program .colored-break-inner {
flex-direction: column;
gap: 28px;
}

.learning-program .colored-break-image-col {
flex: 0 0 auto;
width: 100%;
}

.learning-program .colored-break-image-col img {
width: 100%;
height: 200px;
}

.learning-program .participants-grid {
grid-template-columns: 1fr;
}

.learning-program .detail-block-heading {
font-size: 24px;
}

.learning-program .colored-break-heading {
font-size: 24px;
}

.learning-program .gravel-heading {
font-size: 24px;
}
}

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

.opening .page-container {
max-width: 1100px;
margin: 0 auto;
padding: 0 28px;
}

.opening .gradient-divider {
height: 2px;
background: linear-gradient(to right, #FCC000, #0E6147);
border: none;
margin: 0;
}

.opening .gradient-divider-alt {
height: 2px;
background: linear-gradient(to right, #0E6147, #FCC000);
border: none;
margin: 0;
}

.opening .title-block {
padding: 72px 0 56px;
background: #fff;
position: relative;
}

.opening .title-block-grid {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 56px;
}

.opening .title-image-column {
flex: 0 0 320px;
}

.opening .title-image-card {
border-radius: 12px;
overflow: hidden;
box-shadow: -1px 7px 25px 0 rgba(252, 192, 0, 0.08);
position: relative;
}

.opening .title-image-card img {
width: 320px;
height: 400px;
object-fit: cover;
display: block;
filter: sepia(0.18) contrast(1.08) brightness(0.96) saturate(0.88);
}

.opening .title-image-badge {
position: absolute;
top: 16px;
left: 16px;
background: #FCC000;
color: #1C1C1C;
font-size: 16px;
font-weight: 700;
padding: 4px 16px;
border-radius: 8px;
letter-spacing: 0.02em;
}

.opening .title-text-column {
flex: 1;
position: relative;
}

.opening .title-text-decoration {
position: absolute;
top: -28px;
right: 0;
width: 180px;
height: 180px;
border: 2px dashed rgba(14, 97, 71, 0.13);
border-radius: 48px;
pointer-events: none;
}

.opening .title-label {
font-size: 16px;
color: #0E6147;
letter-spacing: 0.02em;
margin-bottom: 16px;
font-weight: 600;
line-height: 1.5;
}

.opening .title-heading {
font-size: 72px;
line-height: 1.2;
letter-spacing: 0.01em;
color: #1C1C1C;
margin-bottom: 28px;
font-weight: 800;
}

.opening .title-heading .accent-word {
color: #FCC000;
}

.opening .title-heading .accent-green {
color: #0E6147;
}

.opening .title-body {
font-size: 16px;
line-height: 1.7;
color: #2d2d2d;
margin-bottom: 28px;
max-width: 520px;
}

.opening .title-stat-row {
display: flex;
flex-direction: row;
gap: 28px;
margin-top: 28px;
}

.opening .title-stat-item {
display: flex;
flex-direction: column;
gap: 4px;
}

.opening .title-stat-number {
font-size: 44px;
line-height: 1.2;
font-weight: 800;
color: #0E6147;
letter-spacing: 0.01em;
}

.opening .title-stat-desc {
font-size: 16px;
color: #2d2d2d;
line-height: 1.5;
}

.opening .title-cta-link {
display: inline-block;
font-size: 16px;
font-weight: 700;
color: #1C1C1C;
text-decoration: none;
padding: 8px 0;
border-bottom: 2px solid #FCC000;
letter-spacing: 0.01em;
transition: color 0.14s cubic-bezier(0.4, 0, 1, 1), border-color 0.14s cubic-bezier(0.4, 0, 1, 1);
margin-top: 16px;
}

.opening .title-cta-link:hover {
color: #0E6147;
border-color: #0E6147;
}

@keyframes border-trace {
0% {
clip-path: inset(0 100% 100% 0);
}

25% {
clip-path: inset(0 0 100% 0);
}

50% {
clip-path: inset(0 0 0 0);
}

75% {
clip-path: inset(0 0 0 0);
}

100% {
clip-path: inset(0 0 0 0);
}
}

.opening .traced-card {
position: relative;
}

.opening .traced-card::after {
content: '';
position: absolute;
inset: 0;
border: 2px solid #FCC000;
border-radius: 12px;
pointer-events: none;
animation: border-trace 1.6s cubic-bezier(0.4, 0, 1, 1) forwards;
}

.opening .context-block {
padding: 56px 0;
background: #f5f8f6;
}

.opening .context-grid {
display: flex;
flex-direction: row;
gap: 56px;
align-items: flex-start;
}

.opening .context-left {
flex: 1;
}

.opening .context-right {
flex: 0 0 340px;
}

.opening .block-label-line {
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
margin-bottom: 16px;
}

.opening .block-label-bar {
width: 4px;
height: 28px;
background: #FCC000;
border-radius: 8px;
flex-shrink: 0;
}

.opening .block-label-text {
font-size: 16px;
color: #0E6147;
font-weight: 600;
letter-spacing: 0.02em;
line-height: 1.5;
}

.opening .context-heading {
font-size: 44px;
line-height: 1.2;
color: #1C1C1C;
font-weight: 800;
margin-bottom: 16px;
letter-spacing: 0.01em;
}

.opening .context-heading .dash-accent {
color: #FCC000;
margin: 0 4px;
}

.opening .context-body {
font-size: 16px;
line-height: 1.7;
color: #2d2d2d;
margin-bottom: 16px;
}

.opening .context-image-wrap {
border-radius: 20px;
overflow: hidden;
box-shadow: -1px 12px 60px 0 rgba(14, 97, 71, 0.14);
}

.opening .context-image-wrap img {
width: 340px;
height: 280px;
object-fit: cover;
display: block;
}

.opening .context-partners-row {
display: flex;
flex-direction: row;
gap: 16px;
margin-top: 28px;
flex-wrap: wrap;
}

.opening .context-partner-tag {
font-size: 16px;
color: #0E6147;
background: rgba(14, 97, 71, 0.07);
border-radius: 8px;
padding: 4px 16px;
font-weight: 600;
letter-spacing: 0.01em;
line-height: 1.5;
}

.opening .process-block {
padding: 56px 0;
background: #fff;
}

.opening .process-grid {
display: flex;
flex-direction: row;
gap: 28px;
flex-wrap: wrap;
}

.opening .process-heading-row {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 28px;
margin-bottom: 28px;
}

.opening .process-heading-col {
flex: 1;
}

.opening .process-heading {
font-size: 44px;
line-height: 1.2;
color: #1C1C1C;
font-weight: 800;
margin-bottom: 8px;
letter-spacing: 0.01em;
}

.opening .process-heading .accent-green {
color: #0E6147;
}

.opening .process-intro-body {
font-size: 16px;
line-height: 1.7;
color: #2d2d2d;
max-width: 560px;
}

.opening .process-steps {
display: flex;
flex-direction: column;
gap: 16px;
flex: 1;
min-width: 280px;
}

.opening .process-step {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 16px;
padding: 16px;
border-radius: 12px;
background: #fff;
box-shadow: -1px 2px 4px 0 rgba(252, 192, 0, 0.06);
transition: box-shadow 0.16s cubic-bezier(0.4, 0, 1, 1);
}

.opening .process-step:hover {
box-shadow: -1px 7px 25px 0 rgba(252, 192, 0, 0.08);
}

.opening .process-step-badge {
width: 36px;
height: 36px;
border-radius: 8px;
background: #FCC000;
color: #1C1C1C;
font-size: 16px;
font-weight: 800;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
letter-spacing: 0.01em;
}

.opening .process-step-text {
flex: 1;
}

.opening .process-step-heading {
font-size: 16px;
font-weight: 700;
color: #1C1C1C;
margin-bottom: 4px;
line-height: 1.5;
}

.opening .process-step-desc {
font-size: 16px;
color: #2d2d2d;
line-height: 1.7;
}

.opening .process-image-aside {
flex: 0 0 300px;
display: flex;
flex-direction: column;
gap: 16px;
}

.opening .process-image-wrap {
border-radius: 20px;
overflow: hidden;
box-shadow: -1px 7px 25px 0 rgba(14, 97, 71, 0.08);
}

.opening .process-image-wrap img {
width: 300px;
height: 240px;
object-fit: cover;
display: block;
}

.opening .process-dashed-connector {
border: none;
border-top: 2px dashed rgba(14, 97, 71, 0.25);
margin: 8px 0;
}

.opening .problem-block {
padding: 56px 0;
background: #1C1C1C;
position: relative;
overflow: hidden;
}

.opening .problem-circles {
position: absolute;
top: -60px;
right: -60px;
width: 320px;
height: 320px;
border-radius: 50%;
box-shadow:
0 0 0 20px rgba(252, 192, 0, 0.04),
0 0 0 40px rgba(252, 192, 0, 0.03),
0 0 0 60px rgba(252, 192, 0, 0.02),
0 0 0 80px rgba(252, 192, 0, 0.015);
pointer-events: none;
}

.opening .problem-grid {
display: flex;
flex-direction: row;
gap: 56px;
align-items: flex-start;
position: relative;
z-index: 1;
}

.opening .problem-left {
flex: 1;
}

.opening .problem-label-text {
font-size: 16px;
color: #FCC000;
font-weight: 600;
letter-spacing: 0.02em;
margin-bottom: 16px;
line-height: 1.5;
}

.opening .problem-heading {
font-size: 44px;
line-height: 1.2;
color: #fff;
font-weight: 800;
margin-bottom: 16px;
letter-spacing: 0.01em;
}

.opening .problem-heading .accent-yellow {
color: #FCC000;
}

.opening .problem-body {
font-size: 16px;
line-height: 1.7;
color: rgba(255, 255, 255, 0.82);
margin-bottom: 16px;
}

.opening .problem-right {
flex: 0 0 360px;
display: flex;
flex-direction: column;
gap: 16px;
}

.opening .problem-stat-block {
background: rgba(252, 192, 0, 0.08);
border-radius: 12px;
padding: 28px;
display: flex;
flex-direction: column;
gap: 8px;
}

.opening .problem-stat-icon {
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
}

.opening .problem-stat-icon svg {
width: 32px;
height: 32px;
}

.opening .problem-stat-number {
font-size: 44px;
line-height: 1.2;
font-weight: 800;
color: #FCC000;
letter-spacing: 0.01em;
}

.opening .problem-stat-desc {
font-size: 16px;
color: rgba(255, 255, 255, 0.78);
line-height: 1.5;
}

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

.opening .problem-pain-item {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 8px;
font-size: 16px;
color: rgba(255, 255, 255, 0.82);
line-height: 1.7;
}

.opening .problem-pain-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: #FCC000;
flex-shrink: 0;
margin-top: 8px;
}

.opening .team-block {
padding: 56px 0;
background: #fff;
}

.opening .team-top {
display: flex;
flex-direction: row;
gap: 28px;
align-items: flex-end;
margin-bottom: 28px;
}

.opening .team-heading-area {
flex: 1;
}

.opening .team-heading {
font-size: 44px;
line-height: 1.2;
color: #1C1C1C;
font-weight: 800;
letter-spacing: 0.01em;
margin-bottom: 8px;
}

.opening .team-heading .dash-accent {
color: #FCC000;
margin: 0 4px;
}

.opening .team-subheading {
font-size: 16px;
color: #2d2d2d;
line-height: 1.7;
max-width: 540px;
}

.opening .team-cards {
display: flex;
flex-direction: row;
gap: 16px;
flex-wrap: wrap;
}

.opening .team-card {
flex: 1;
min-width: 220px;
border-radius: 20px;
overflow: hidden;
box-shadow: -1px 2px 4px 0 rgba(252, 192, 0, 0.06);
background: #f5f8f6;
display: flex;
flex-direction: column;
transition: box-shadow 0.18s cubic-bezier(0.4, 0, 1, 1);
}

.opening .team-card:hover {
box-shadow: -1px 12px 60px 0 rgba(14, 97, 71, 0.14);
}

.opening .team-card-image-wrap {
overflow: hidden;
}

.opening .team-card-image-wrap img {
width: 100%;
height: 220px;
object-fit: cover;
display: block;
}

.opening .team-card-body {
padding: 16px;
flex: 1;
display: flex;
flex-direction: column;
gap: 4px;
}

.opening .team-card-name {
font-size: 16px;
font-weight: 700;
color: #1C1C1C;
line-height: 1.5;
}

.opening .team-card-role {
font-size: 16px;
color: #0E6147;
font-weight: 600;
line-height: 1.5;
}

.opening .team-card-note {
font-size: 16px;
color: #2d2d2d;
line-height: 1.7;
margin-top: 4px;
}

.opening .team-badge-corner {
position: relative;
}

.opening .team-badge-overlay {
position: absolute;
top: 8px;
right: 8px;
background: #0E6147;
color: #fff;
font-size: 16px;
font-weight: 700;
border-radius: 8px;
padding: 4px 8px;
letter-spacing: 0.01em;
}

.opening .objection-block {
padding: 56px 0;
background: rgba(252, 192, 0, 0.05);
}

.opening .objection-layout {
display: flex;
flex-direction: row;
gap: 56px;
align-items: flex-start;
}

.opening .objection-left {
flex: 0 0 340px;
}

.opening .objection-image-frame {
border-radius: 20px;
overflow: hidden;
box-shadow: -1px 7px 25px 0 rgba(252, 192, 0, 0.08);
position: relative;
}

.opening .objection-image-frame img {
width: 340px;
height: 300px;
object-fit: cover;
display: block;
}

.opening .objection-image-badge {
position: absolute;
bottom: 16px;
left: 16px;
background: #0E6147;
color: #fff;
font-size: 16px;
font-weight: 700;
padding: 4px 16px;
border-radius: 8px;
letter-spacing: 0.01em;
line-height: 1.5;
}

.opening .objection-right {
flex: 1;
}

.opening .objection-heading {
font-size: 44px;
line-height: 1.2;
color: #1C1C1C;
font-weight: 800;
margin-bottom: 16px;
letter-spacing: 0.01em;
}

.opening .objection-heading .accent-yellow {
color: #FCC000;
}

.opening .objection-body {
font-size: 16px;
line-height: 1.7;
color: #2d2d2d;
margin-bottom: 16px;
}

.opening .objection-qa-list {
display: flex;
flex-direction: column;
gap: 16px;
margin-top: 16px;
}

.opening .objection-qa-item {
border-radius: 12px;
padding: 16px;
background: #fff;
box-shadow: -1px 2px 4px 0 rgba(14, 97, 71, 0.06);
}

.opening .objection-question {
font-size: 16px;
font-weight: 700;
color: #0E6147;
line-height: 1.5;
margin-bottom: 4px;
}

.opening .objection-answer {
font-size: 16px;
color: #2d2d2d;
line-height: 1.7;
}

.opening .situations-block {
padding: 56px 0;
background: #fff;
}

.opening .situations-heading-row {
margin-bottom: 28px;
}

.opening .situations-heading {
font-size: 44px;
line-height: 1.2;
color: #1C1C1C;
font-weight: 800;
letter-spacing: 0.01em;
margin-bottom: 8px;
}

.opening .situations-heading .accent-green {
color: #0E6147;
}

.opening .situations-intro {
font-size: 16px;
line-height: 1.7;
color: #2d2d2d;
max-width: 640px;
}

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

.opening .situation-card {
border-radius: 20px;
padding: 28px;
background: #f5f8f6;
display: flex;
flex-direction: column;
gap: 8px;
position: relative;
transition: background 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.opening .situation-card:hover {
background: rgba(14, 97, 71, 0.06);
}

.opening .situation-number {
position: absolute;
top: -12px;
right: 16px;
width: 36px;
height: 36px;
background: #FCC000;
color: #1C1C1C;
font-size: 16px;
font-weight: 800;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
letter-spacing: 0.01em;
}

.opening .situation-icon-wrap {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(252, 192, 0, 0.12);
border-radius: 12px;
margin-bottom: 4px;
}

.opening .situation-icon-wrap svg {
width: 22px;
height: 22px;
}

.opening .situation-title {
font-size: 16px;
font-weight: 700;
color: #1C1C1C;
line-height: 1.5;
}

.opening .situation-desc {
font-size: 16px;
color: #2d2d2d;
line-height: 1.7;
}

.opening .situations-bottom-link {
margin-top: 28px;
text-align: center;
}

.opening .situations-link {
display: inline-block;
font-size: 16px;
font-weight: 700;
color: #1C1C1C;
text-decoration: none;
padding: 8px 28px;
border: 2px solid #FCC000;
border-radius: 12px;
letter-spacing: 0.01em;
transition: background 0.14s cubic-bezier(0.4, 0, 1, 1), color 0.14s cubic-bezier(0.4, 0, 1, 1);
position: relative;
overflow: hidden;
}

.opening .situations-link:hover {
background: #FCC000;
color: #1C1C1C;
}

@media (max-width: 1280px) {
.opening .title-heading {
font-size: 56px;
}

.opening .title-image-column {
flex: 0 0 260px;
}

.opening .title-image-card img {
width: 260px;
height: 340px;
}

.opening .situations-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.opening .title-block-grid {
flex-direction: column;
gap: 28px;
}

.opening .title-image-column {
flex: none;
width: 100%;
}

.opening .title-image-card img {
width: 100%;
height: 260px;
}

.opening .title-heading {
font-size: 44px;
}

.opening .title-stat-row {
flex-direction: column;
gap: 16px;
}

.opening .context-grid {
flex-direction: column;
}

.opening .context-right {
flex: none;
width: 100%;
}

.opening .context-image-wrap img {
width: 100%;
height: 220px;
}

.opening .process-heading-row {
flex-direction: column;
}

.opening .process-image-aside {
flex: none;
width: 100%;
}

.opening .process-image-wrap img {
width: 100%;
height: 200px;
}

.opening .problem-grid {
flex-direction: column;
}

.opening .problem-right {
flex: none;
width: 100%;
}

.opening .team-cards {
flex-direction: column;
}

.opening .team-top {
flex-direction: column;
align-items: flex-start;
}

.opening .objection-layout {
flex-direction: column;
}

.opening .objection-left {
flex: none;
width: 100%;
}

.opening .objection-image-frame img {
width: 100%;
height: 220px;
}

.opening .situations-grid {
grid-template-columns: 1fr;
}

.opening .context-heading,
.opening .process-heading,
.opening .problem-heading,
.opening .team-heading,
.opening .objection-heading,
.opening .situations-heading {
font-size: 36px;
}
}

.services-page {
background-color: #fff;
overflow-x: clip;
position: relative;
}

.services-page .geometric-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
overflow: hidden;
z-index: 0;
}

.services-page .geometric-bg::before {
content: '';
position: absolute;
top: -120px;
right: -80px;
width: 500px;
height: 500px;
border-radius: 50%;
border: 1px solid rgba(252, 192, 0, 0.08);
}

.services-page .geometric-bg::after {
content: '';
position: absolute;
top: 60px;
right: 40px;
width: 300px;
height: 300px;
border-radius: 50%;
border: 1px solid rgba(14, 97, 71, 0.06);
}

.services-page .geo-circle-third {
position: absolute;
bottom: 200px;
left: -100px;
width: 400px;
height: 400px;
border-radius: 50%;
border: 1px solid rgba(252, 192, 0, 0.07);
pointer-events: none;
}

.services-page .page-container {
max-width: 1100px;
margin: 0 auto;
padding: 0 28px;
position: relative;
z-index: 1;
}

.services-page .title-area {
padding: 56px 28px 80px;
text-align: center;
position: relative;
border-bottom: 2px solid rgba(252, 192, 0, 0.3);
}

.services-page .title-area::before {
content: '';
position: absolute;
bottom: -2px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: #FCC000;
}

.services-page .label-tag {
display: inline-block;
background: rgba(252, 192, 0, 0.12);
color: #0E6147;
font-size: 16px;
line-height: 1.5;
letter-spacing: 0.02em;
padding: 4px 16px;
border-radius: 8px;
margin-bottom: 28px;
font-weight: 600;
}

.services-page .title-heading {
font-size: 72px;
line-height: 1.2;
letter-spacing: 0.01em;
color: #1C1C1C;
margin: 0 auto 28px;
max-width: 800px;
}

.services-page .title-heading .accent-word {
color: #0E6147;
}

.services-page .title-heading .accent-dash {
color: #FCC000;
margin: 0 4px;
}

.services-page .title-description {
font-size: 24px;
line-height: 1.7;
letter-spacing: 0.01em;
color: #2a2a2a;
max-width: 640px;
margin: 0 auto 56px;
}

.services-page .title-image-frame {
max-width: 700px;
margin: 0 auto;
clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
border-radius: 20px;
overflow: hidden;
box-shadow: -1px 12px 60px 0 rgba(252, 192, 0, 0.14);
}

.services-page .title-image-frame img {
width: 100%;
height: 480px;
object-fit: cover;
display: block;
}

.services-page .wave-divider {
width: 100%;
overflow: hidden;
line-height: 0;
position: relative;
z-index: 1;
}

.services-page .wave-divider svg {
display: block;
width: 100%;
}

.services-page .catalog-area {
background: rgba(252, 192, 0, 0.04);
padding: 56px 28px;
position: relative;
}

.services-page .catalog-layout {
max-width: 1100px;
margin: 0 auto;
display: flex;
flex-direction: row;
gap: 56px;
align-items: flex-start;
}

.services-page .catalog-left {
flex: 1 1 0;
min-width: 0;
}

.services-page .catalog-right {
flex: 0 0 280px;
display: flex;
flex-direction: column;
gap: 16px;
position: sticky;
top: 28px;
}

.services-page .section-label {
font-size: 16px;
line-height: 1.5;
letter-spacing: 0.02em;
color: #FCC000;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 16px;
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
}

.services-page .section-label::before {
content: '';
display: inline-block;
width: 24px;
height: 3px;
background: #FCC000;
border-radius: 2px;
flex-shrink: 0;
}

.services-page .catalog-heading {
font-size: 44px;
line-height: 1.2;
letter-spacing: 0.01em;
color: #1C1C1C;
margin: 0 0 28px;
}

.services-page .catalog-intro {
font-size: 16px;
line-height: 1.7;
letter-spacing: 0.01em;
color: #2a2a2a;
margin-bottom: 28px;
}

.services-page .service-item {
border-radius: 12px;
background: #fff;
box-shadow: -1px 7px 25px 0 rgba(14, 97, 71, 0.08);
padding: 28px;
margin-bottom: 16px;
position: relative;
transition: box-shadow 0.16s cubic-bezier(0.4, 0, 1, 1), transform 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.services-page .service-item:hover {
box-shadow: -1px 12px 60px 0 rgba(14, 97, 71, 0.14);
transform: translateY(-2px);
}

.services-page .service-item-accent {
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 100%;
background: #FCC000;
border-radius: 12px 0 0 12px;
}

.services-page .service-icon-wrap {
width: 48px;
height: 48px;
border-radius: 12px;
background: rgba(252, 192, 0, 0.12);
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
margin-bottom: 16px;
}

.services-page .service-icon-wrap .pe-7s-graph1 {
font-size: 24px;
color: #0E6147;
}

.services-page .service-icon-wrap .pe-7s-config {
font-size: 24px;
color: #0E6147;
}

.services-page .service-icon-wrap .pe-7s-cloud {
font-size: 24px;
color: #0E6147;
}

.services-page .service-icon-wrap .pe-7s-share {
font-size: 24px;
color: #0E6147;
}

.services-page .service-item-title {
font-size: 24px;
line-height: 1.2;
letter-spacing: 0.01em;
color: #0E6147;
margin: 0 0 8px;
}

.services-page .service-item-text {
font-size: 16px;
line-height: 1.7;
letter-spacing: 0.01em;
color: #2a2a2a;
margin: 0;
}

.services-page .side-metric-card {
background: #0E6147;
border-radius: 12px;
padding: 28px;
color: #fff;
box-shadow: -1px 7px 25px 0 rgba(14, 97, 71, 0.08);
}

.services-page .side-metric-number {
font-size: 44px;
line-height: 1.2;
letter-spacing: 0.01em;
color: #FCC000;
font-weight: 700;
display: block;
}

.services-page .side-metric-label {
font-size: 16px;
line-height: 1.5;
letter-spacing: 0.01em;
color: rgba(255, 255, 255, 0.85);
margin-top: 4px;
display: block;
}

.services-page .side-info-card {
background: rgba(252, 192, 0, 0.08);
border-radius: 12px;
padding: 28px;
border: 1px solid rgba(252, 192, 0, 0.2);
}

.services-page .side-info-card-title {
font-size: 16px;
line-height: 1.5;
letter-spacing: 0.01em;
color: #0E6147;
font-weight: 700;
margin: 0 0 8px;
}

.services-page .side-info-card-text {
font-size: 16px;
line-height: 1.7;
letter-spacing: 0.01em;
color: #2a2a2a;
margin: 0;
}

.services-page .wave-divider-green svg {
display: block;
width: 100%;
}

.services-page .wave-divider-green {
width: 100%;
overflow: hidden;
line-height: 0;
position: relative;
z-index: 1;
}

.services-page .process-area {
background: #0E6147;
padding: 56px 28px;
position: relative;
overflow: hidden;
}

.services-page .process-area .geo-circle-process {
position: absolute;
bottom: -80px;
right: -60px;
width: 360px;
height: 360px;
border-radius: 50%;
border: 1px solid rgba(252, 192, 0, 0.12);
pointer-events: none;
}

.services-page .process-layout {
max-width: 1100px;
margin: 0 auto;
}

.services-page .process-heading {
font-size: 44px;
line-height: 1.2;
letter-spacing: 0.01em;
color: #fff;
margin: 0 0 8px;
}

.services-page .process-subtext {
font-size: 16px;
line-height: 1.7;
letter-spacing: 0.01em;
color: rgba(255, 255, 255, 0.75);
margin: 0 0 56px;
max-width: 560px;
}

.services-page .process-steps {
display: flex;
flex-direction: row;
gap: 28px;
flex-wrap: wrap;
}

.services-page .process-step {
flex: 1 1 200px;
min-width: 0;
position: relative;
}

.services-page .step-number {
font-size: 72px;
line-height: 1.2;
letter-spacing: 0.01em;
color: rgba(252, 192, 0, 0.2);
font-weight: 700;
position: absolute;
top: -16px;
left: 0;
pointer-events: none;
user-select: none;
}

.services-page .step-body {
padding-top: 56px;
}

.services-page .step-title {
font-size: 24px;
line-height: 1.2;
letter-spacing: 0.01em;
color: #FCC000;
margin: 0 0 8px;
}

.services-page .step-text {
font-size: 16px;
line-height: 1.7;
letter-spacing: 0.01em;
color: rgba(255, 255, 255, 0.8);
margin: 0;
}

.services-page .process-image-strip {
margin-top: 56px;
border-radius: 20px;
overflow: hidden;
box-shadow: -1px 12px 60px 0 rgba(252, 192, 0, 0.14);
}

.services-page .process-image-strip img {
width: 100%;
height: 320px;
object-fit: cover;
display: block;
}

.services-page .wave-divider-reverse {
width: 100%;
overflow: hidden;
line-height: 0;
position: relative;
z-index: 1;
}

.services-page .wave-divider-reverse svg {
display: block;
width: 100%;
}

.services-page .faq-area {
background: #fff;
padding: 56px 28px;
}

.services-page .faq-layout {
max-width: 1100px;
margin: 0 auto;
display: flex;
flex-direction: row;
gap: 56px;
align-items: flex-start;
}

.services-page .faq-left {
flex: 0 0 320px;
position: sticky;
top: 28px;
}

.services-page .faq-right {
flex: 1 1 0;
min-width: 0;
}

.services-page .faq-heading {
font-size: 44px;
line-height: 1.2;
letter-spacing: 0.01em;
color: #1C1C1C;
margin: 0 0 16px;
}

.services-page .faq-desc {
font-size: 16px;
line-height: 1.7;
letter-spacing: 0.01em;
color: #2a2a2a;
margin: 0 0 28px;
}

.services-page .faq-image-block {
border-radius: 20px;
overflow: hidden;
box-shadow: -1px 7px 25px 0 rgba(252, 192, 0, 0.08);
}

.services-page .faq-image-block img {
width: 100%;
height: 280px;
object-fit: cover;
display: block;
}

.services-page .faq-item {
border-bottom: 1px solid rgba(14, 97, 71, 0.15);
padding: 28px 0;
}

.services-page .faq-item:first-child {
padding-top: 0;
}

.services-page .faq-question {
font-size: 24px;
line-height: 1.2;
letter-spacing: 0.01em;
color: #0E6147;
margin: 0 0 8px;
}

.services-page .faq-answer {
font-size: 16px;
line-height: 1.7;
letter-spacing: 0.01em;
color: #2a2a2a;
margin: 0;
}

.services-page .faq-answer strong {
color: #0E6147;
}

.services-page .shake-element {
animation: attention-shake 0.12s cubic-bezier(0.4, 0, 1, 1) 2.4s 2;
}

@keyframes attention-shake {
0% {
transform: translateX(0);
}

25% {
transform: translateX(-4px);
}

75% {
transform: translateX(4px);
}

100% {
transform: translateX(0);
}
}

.services-page .cta-link {
display: inline-block;
color: #0E6147;
font-size: 16px;
line-height: 1.5;
letter-spacing: 0.02em;
font-weight: 700;
text-decoration: none;
padding: 8px 0;
position: relative;
border-bottom: 2px solid transparent;
transition: border-color 0.14s cubic-bezier(0.4, 0, 1, 1), color 0.14s cubic-bezier(0.4, 0, 1, 1);
}

.services-page .cta-link:hover {
border-bottom-color: #FCC000;
color: #FCC000;
}

.services-page .cta-link:focus {
outline: 2px solid #FCC000;
outline-offset: 4px;
border-radius: 4px;
}

.services-page .primary-button {
display: inline-block;
background: transparent;
color: #0E6147;
font-size: 16px;
line-height: 1.5;
letter-spacing: 0.02em;
font-weight: 700;
text-decoration: none;
padding: 8px 28px;
border-radius: 8px;
border: 2px solid #0E6147;
position: relative;
overflow: hidden;
transition: color 0.16s cubic-bezier(0.4, 0, 1, 1), background 0.16s cubic-bezier(0.4, 0, 1, 1);
cursor: pointer;
}

.services-page .primary-button::after {
content: '';
position: absolute;
inset: 0;
border-radius: 8px;
border: 2px solid #FCC000;
opacity: 0;
transition: opacity 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.services-page .primary-button:hover::after {
opacity: 1;
}

.services-page .primary-button:hover {
background: rgba(252, 192, 0, 0.08);
color: #0E6147;
}

.services-page .primary-button:focus {
outline: 2px solid #FCC000;
outline-offset: 4px;
}

.services-page .large-icon-anchor {
position: absolute;
right: 28px;
top: 56px;
font-size: 96px;
color: rgba(252, 192, 0, 0.1);
pointer-events: none;
line-height: 1;
}

.services-page .hover-wave-group {
display: flex;
flex-direction: row;
gap: 8px;
margin-top: 28px;
}

.services-page .wave-dot {
width: 12px;
height: 12px;
border-radius: 50%;
background: rgba(252, 192, 0, 0.25);
transition: background 0.1s cubic-bezier(0.4, 0, 1, 1), transform 0.1s cubic-bezier(0.4, 0, 1, 1);
}

.services-page .hover-wave-group:hover .wave-dot:nth-child(1) {
background: #FCC000;
transform: scaleY(2.5);
border-radius: 4px;
transition-delay: 0s;
}

.services-page .hover-wave-group:hover .wave-dot:nth-child(2) {
background: #FCC000;
transform: scaleY(2.5);
border-radius: 4px;
transition-delay: 0.03s;
}

.services-page .hover-wave-group:hover .wave-dot:nth-child(3) {
background: #FCC000;
transform: scaleY(2.5);
border-radius: 4px;
transition-delay: 0.06s;
}

.services-page .hover-wave-group:hover .wave-dot:nth-child(4) {
background: #FCC000;
transform: scaleY(2.5);
border-radius: 4px;
transition-delay: 0.09s;
}

.services-page .hover-wave-group:hover .wave-dot:nth-child(5) {
background: #FCC000;
transform: scaleY(2.5);
border-radius: 4px;
transition-delay: 0.12s;
}

.services-page .hover-wave-group:hover .wave-dot:nth-child(6) {
background: #FCC000;
transform: scaleY(2.5);
border-radius: 4px;
transition-delay: 0.09s;
}

.services-page .hover-wave-group:hover .wave-dot:nth-child(7) {
background: #FCC000;
transform: scaleY(2.5);
border-radius: 4px;
transition-delay: 0.06s;
}

.services-page .hover-wave-group:hover .wave-dot:nth-child(8) {
background: #FCC000;
transform: scaleY(2.5);
border-radius: 4px;
transition-delay: 0.03s;
}

@media (max-width: 768px) {
.services-page .title-heading {
font-size: 44px;
}

.services-page .title-image-frame img {
height: 280px;
}

.services-page .catalog-layout {
flex-direction: column;
gap: 28px;
}

.services-page .catalog-right {
flex: none;
width: 100%;
position: static;
}

.services-page .process-steps {
flex-direction: column;
gap: 16px;
}

.services-page .faq-layout {
flex-direction: column;
gap: 28px;
}

.services-page .faq-left {
flex: none;
width: 100%;
position: static;
}

.services-page .large-icon-anchor {
display: none;
}
}

@media (max-width: 1280px) {
.services-page .catalog-right {
flex: 0 0 220px;
}

.services-page .faq-left {
flex: 0 0 260px;
}
}

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

.contact-us-page .form-editorial-area {
max-width: 1100px;
margin: 0 auto;
padding: 56px 28px;
}

.contact-us-page .form-split {
display: flex;
flex-direction: row;
gap: 56px;
align-items: flex-start;
}

.contact-us-page .form-left-column {
flex: 0 0 340px;
display: flex;
flex-direction: column;
gap: 28px;
position: relative;
}

.contact-us-page .form-right-column {
flex: 1 1 0;
}

.contact-us-page .form-page-label {
font-size: 16px;
color: #0E6147;
letter-spacing: 0.02em;
line-height: 1.5;
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
}

.contact-us-page .form-page-label-dot {
width: 8px;
height: 8px;
border-radius: 48px;
background: #FCC000;
flex-shrink: 0;
}

.contact-us-page .form-main-heading {
font-size: 44px;
line-height: 1.2;
letter-spacing: 0.01em;
color: #1C1C1C;
margin: 0;
}

.contact-us-page .form-main-heading .accent-dash {
color: #FCC000;
margin: 0 4px;
}

.contact-us-page .form-description-text {
font-size: 16px;
line-height: 1.7;
color: #2a2a2a;
margin: 0;
}

.contact-us-page .contact-details-stack {
display: flex;
flex-direction: column;
gap: 16px;
margin-top: 8px;
}

.contact-us-page .contact-detail-item {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 12px;
}

.contact-us-page .contact-detail-icon {
width: 36px;
height: 36px;
border-radius: 8px;
background: #0E6147;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
box-shadow: -1px 2px 4px 0 rgba(14, 97, 71, 0.06), -1px 7px 25px 0 rgba(14, 97, 71, 0.08);
}

.contact-us-page .contact-detail-icon svg {
width: 18px;
height: 18px;
stroke: #fff;
fill: none;
stroke-width: 1.8;
stroke-linecap: round;
stroke-linejoin: round;
}

.contact-us-page .contact-detail-body {
display: flex;
flex-direction: column;
gap: 4px;
}

.contact-us-page .contact-detail-label {
font-size: 16px;
color: #0E6147;
letter-spacing: 0.02em;
line-height: 1.2;
}

.contact-us-page .contact-detail-value {
font-size: 16px;
color: #2a2a2a;
line-height: 1.5;
text-decoration: none;
transition: color 0.14s cubic-bezier(0.4, 0, 1, 1);
}

.contact-us-page .contact-detail-value:hover {
color: #0E6147;
}

.contact-us-page .decorative-circles-bg {
position: relative;
}

.contact-us-page .decorative-circles-bg::before {
content: "";
position: absolute;
width: 180px;
height: 180px;
border-radius: 48px;
border: 2px solid rgba(252, 192, 0, 0.12);
top: -28px;
left: -28px;
pointer-events: none;
}

.contact-us-page .decorative-circles-bg::after {
content: "";
position: absolute;
width: 100px;
height: 100px;
border-radius: 48px;
border: 2px solid rgba(14, 97, 71, 0.10);
bottom: -16px;
right: -16px;
pointer-events: none;
}

.contact-us-page .editorial-form {
display: flex;
flex-direction: column;
gap: 28px;
background: #f5f3ee;
border-radius: 20px;
padding: 28px;
box-shadow: -1px 7px 25px 0 rgba(252, 192, 0, 0.08), -1px 12px 60px 0 rgba(14, 97, 71, 0.06);
}

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

.contact-us-page .form-field-label {
font-size: 16px;
color: #0E6147;
letter-spacing: 0.02em;
line-height: 1.2;
}

.contact-us-page .form-field-label .required-mark {
color: #FCC000;
margin-left: 2px;
}

.contact-us-page .form-row {
display: flex;
flex-direction: row;
gap: 16px;
}

.contact-us-page .form-row .form-field-group {
flex: 1 1 0;
}

.contact-us-page .editorial-input {
width: 100%;
padding: 16px;
font-size: 16px;
line-height: 1.5;
color: #2a2a2a;
background: #fff;
border: 1.5px solid #d8d3c8;
border-radius: 12px;
outline: none;
box-sizing: border-box;
transition: border-color 0.12s cubic-bezier(0.4, 0, 1, 1), box-shadow 0.12s cubic-bezier(0.4, 0, 1, 1);
box-shadow: inset 0 4px 8px 0 rgba(14, 97, 71, 0.04);
}

.contact-us-page .editorial-input::placeholder {
color: #aaa;
text-overflow: ellipsis;
}

.contact-us-page .editorial-input:focus {
border-color: #0E6147;
box-shadow: inset 0 4px 10px 0 rgba(14, 97, 71, 0.08), -1px 2px 4px 0 rgba(14, 97, 71, 0.06);
}

.contact-us-page .channel-selection-label {
font-size: 16px;
color: #0E6147;
letter-spacing: 0.02em;
line-height: 1.2;
margin-bottom: 4px;
}

.contact-us-page .channel-options {
display: flex;
flex-direction: row;
gap: 8px;
flex-wrap: wrap;
}

.contact-us-page .channel-option {
position: relative;
}

.contact-us-page .channel-option input[type="radio"] {
position: absolute;
opacity: 0;
width: 0;
height: 0;
}

.contact-us-page .channel-option-label {
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
padding: 8px 16px;
border-radius: 32px;
border: 1.5px solid #d8d3c8;
background: #fff;
cursor: pointer;
font-size: 16px;
color: #2a2a2a;
line-height: 1.5;
transition: border-color 0.1s cubic-bezier(0.4, 0, 1, 1), background 0.1s cubic-bezier(0.4, 0, 1, 1), color 0.1s cubic-bezier(0.4, 0, 1, 1);
user-select: none;
}

.contact-us-page .channel-option-label .channel-dot {
width: 8px;
height: 8px;
border-radius: 48px;
background: #d8d3c8;
flex-shrink: 0;
transition: background 0.1s cubic-bezier(0.4, 0, 1, 1);
}

.contact-us-page .channel-option input[type="radio"]:checked+.channel-option-label {
border-color: #0E6147;
background: #0E6147;
color: #fff;
}

.contact-us-page .channel-option input[type="radio"]:checked+.channel-option-label .channel-dot {
background: #FCC000;
}

.contact-us-page .channel-option input[type="radio"]:focus-visible+.channel-option-label {
outline: 2px solid #FCC000;
outline-offset: 2px;
}

.contact-us-page .channel-option-label:hover {
border-color: #0E6147;
}

.contact-us-page .privacy-row {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 12px;
}

.contact-us-page .privacy-checkbox {
width: 20px;
height: 20px;
accent-color: #0E6147;
margin-top: 2px;
flex-shrink: 0;
cursor: pointer;
}

.contact-us-page .privacy-text {
font-size: 16px;
color: #2a2a2a;
line-height: 1.7;
margin: 0;
}

.contact-us-page .privacy-text a {
color: #0E6147;
text-decoration: underline;
text-underline-offset: 2px;
transition: color 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.contact-us-page .privacy-text a:hover {
color: #FCC000;
}

.contact-us-page .submit-button-row {
display: flex;
flex-direction: row;
align-items: center;
gap: 16px;
}

.contact-us-page .editorial-submit-button {
position: relative;
display: inline-flex;
align-items: center;
gap: 8px;
padding: 16px 28px;
font-size: 16px;
line-height: 1.2;
letter-spacing: 0.02em;
color: #1C1C1C;
background: #FCC000;
border: 2px solid #FCC000;
border-radius: 12px;
cursor: pointer;
outline: none;
overflow: hidden;
transition: color 0.14s cubic-bezier(0.4, 0, 1, 1), background 0.14s cubic-bezier(0.4, 0, 1, 1);
box-shadow: -1px 7px 25px 0 rgba(252, 192, 0, 0.14);
}

.contact-us-page .editorial-submit-button::before {
content: "";
position: absolute;
inset: 0;
border-radius: 12px;
border: 2px solid #0E6147;
clip-path: inset(0 100% 0 0);
transition: clip-path 0.18s cubic-bezier(0.4, 0, 1, 1);
pointer-events: none;
}

.contact-us-page .editorial-submit-button:hover::before {
clip-path: inset(0 0% 0 0);
}

.contact-us-page .editorial-submit-button:hover {
background: #fff;
color: #0E6147;
}

.contact-us-page .editorial-submit-button:focus-visible {
outline: 2px solid #FCC000;
outline-offset: 3px;
}

.contact-us-page .editorial-submit-button:active {
box-shadow: inset 0 4px 10px 0 rgba(14, 97, 71, 0.10);
}

.contact-us-page .submit-button-arrow {
width: 16px;
height: 16px;
stroke: currentColor;
fill: none;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
transition: transform 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.contact-us-page .editorial-submit-button:hover .submit-button-arrow {
transform: translateX(4px);
}

.contact-us-page .section-divider-svg {
width: 100%;
display: block;
overflow: hidden;
}

.contact-us-page .info-strip {
background: #0E6147;
position: relative;
overflow: hidden;
}

.contact-us-page .info-strip-inner {
max-width: 1100px;
margin: 0 auto;
padding: 56px 28px;
position: relative;
z-index: 1;
}

.contact-us-page .info-strip-grid {
display: flex;
flex-direction: row;
gap: 28px;
align-items: flex-start;
}

.contact-us-page .info-strip-text-zone {
flex: 1 1 0;
display: flex;
flex-direction: column;
gap: 16px;
}

.contact-us-page .info-strip-heading {
font-size: 24px;
line-height: 1.2;
letter-spacing: 0.01em;
color: #FCC000;
margin: 0;
position: relative;
padding-left: 16px;
}

.contact-us-page .info-strip-heading::before {
content: "";
position: absolute;
left: 0;
top: 4px;
bottom: 4px;
width: 3px;
background: #FCC000;
border-radius: 8px;
}

.contact-us-page .info-strip-body {
font-size: 16px;
line-height: 1.7;
color: rgba(255, 255, 255, 0.88);
margin: 0;
}

.contact-us-page .info-strip-body-columns {
display: flex;
flex-direction: row;
gap: 28px;
}

.contact-us-page .info-strip-body-columns p {
flex: 1 1 0;
font-size: 16px;
line-height: 1.7;
color: rgba(255, 255, 255, 0.88);
margin: 0;
}

.contact-us-page .info-strip-metrics {
flex: 0 0 260px;
display: flex;
flex-direction: column;
gap: 16px;
}

.contact-us-page .metric-item {
display: flex;
flex-direction: row;
align-items: center;
gap: 12px;
padding: 16px;
background: rgba(255, 255, 255, 0.07);
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.12);
transition: background 0.14s cubic-bezier(0.4, 0, 1, 1);
}

.contact-us-page .metric-item:hover {
background: rgba(255, 255, 255, 0.13);
}

.contact-us-page .metric-icon-wrap {
width: 40px;
height: 40px;
border-radius: 8px;
background: rgba(252, 192, 0, 0.15);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.contact-us-page .metric-icon-wrap svg {
width: 20px;
height: 20px;
stroke: #FCC000;
fill: none;
stroke-width: 1.8;
stroke-linecap: round;
stroke-linejoin: round;
}

.contact-us-page .metric-body {
display: flex;
flex-direction: column;
gap: 4px;
}

.contact-us-page .metric-label {
font-size: 16px;
color: rgba(255, 255, 255, 0.7);
line-height: 1.2;
}

.contact-us-page .metric-value {
font-size: 16px;
color: #fff;
line-height: 1.5;
font-weight: 600;
}

.contact-us-page .info-strip-corner-triangle {
position: absolute;
top: 0;
right: 0;
width: 0;
height: 0;
border-style: solid;
border-width: 0 80px 80px 0;
border-color: transparent rgba(252, 192, 0, 0.12) transparent transparent;
pointer-events: none;
}

.contact-us-page .info-strip-corner-triangle-bottom {
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 0;
border-style: solid;
border-width: 60px 0 0 60px;
border-color: transparent transparent transparent rgba(252, 192, 0, 0.08);
pointer-events: none;
}

.contact-us-page .icon-cycle-row {
display: flex;
flex-direction: row;
gap: 8px;
margin-top: 8px;
}

.contact-us-page .cycle-icon-item {
width: 36px;
height: 36px;
border-radius: 8px;
background: rgba(255, 255, 255, 0.08);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
animation: icon-cycle-highlight 3s linear infinite;
}

.contact-us-page .cycle-icon-item:nth-child(1) {
animation-delay: 0s;
}

.contact-us-page .cycle-icon-item:nth-child(2) {
animation-delay: 0.6s;
}

.contact-us-page .cycle-icon-item:nth-child(3) {
animation-delay: 1.2s;
}

.contact-us-page .cycle-icon-item:nth-child(4) {
animation-delay: 1.8s;
}

.contact-us-page .cycle-icon-item:nth-child(5) {
animation-delay: 2.4s;
}

@keyframes icon-cycle-highlight {

0%,
15% {
background: rgba(252, 192, 0, 0.7);
}

20%,
100% {
background: rgba(255, 255, 255, 0.08);
}
}

.contact-us-page .cycle-icon-item svg {
width: 18px;
height: 18px;
stroke: #fff;
fill: none;
stroke-width: 1.8;
stroke-linecap: round;
stroke-linejoin: round;
}

.contact-us-page .form-how-link {
font-size: 16px;
color: #0E6147;
line-height: 1.5;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 8px;
letter-spacing: 0.01em;
border-bottom: 1px solid transparent;
transition: border-color 0.12s cubic-bezier(0.4, 0, 1, 1), color 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.contact-us-page .form-how-link:hover {
color: #FCC000;
border-color: #FCC000;
}

.contact-us-page .form-how-link svg {
width: 14px;
height: 14px;
stroke: currentColor;
fill: none;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
transition: transform 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.contact-us-page .form-how-link:hover svg {
transform: translateX(3px);
}

@media (max-width: 768px) {
.contact-us-page .form-split {
flex-direction: column;
gap: 28px;
}

.contact-us-page .form-left-column {
flex: none;
width: 100%;
}

.contact-us-page .form-row {
flex-direction: column;
gap: 16px;
}

.contact-us-page .info-strip-grid {
flex-direction: column;
gap: 28px;
}

.contact-us-page .info-strip-metrics {
flex: none;
width: 100%;
}

.contact-us-page .info-strip-body-columns {
flex-direction: column;
gap: 16px;
}

.contact-us-page .form-main-heading {
font-size: 44px;
}

.contact-us-page .channel-options {
gap: 8px;
}
}

@media (max-width: 1280px) {
.contact-us-page .form-split {
gap: 28px;
}

.contact-us-page .form-left-column {
flex: 0 0 280px;
}
}

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

.success-page-root .success-wrapper {
max-width: 1100px;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
gap: 28px;
}

.success-page-root .success-icon-container {
width: 80px;
height: 80px;
border-radius: 48px;
background: #0E6147;
display: flex;
align-items: center;
justify-content: center;
box-shadow: -1px 7px 25px 0 rgba(14, 97, 71, 0.08);
flex-shrink: 0;
}

.success-page-root .success-icon-container svg {
display: block;
}

.success-page-root .success-content {
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
text-align: center;
}

.success-page-root .success-label {
font-size: 16px;
line-height: 1.5;
letter-spacing: 0.02em;
color: #0E6147;
font-weight: 600;
text-transform: uppercase;
}

.success-page-root .success-heading {
font-size: 44px;
line-height: 1.2;
letter-spacing: 0.01em;
color: #1C1C1C;
font-weight: 700;
margin: 0;
}

.success-page-root .success-heading .success-accent {
color: #FCC000;
}

.success-page-root .success-description {
font-size: 16px;
line-height: 1.7;
letter-spacing: 0.01em;
color: #2a2a2a;
max-width: 520px;
margin: 0;
}

.success-page-root .success-divider {
width: 56px;
height: 3px;
background: #FCC000;
border-radius: 8px;
}

.success-page-root .success-action-group {
display: flex;
flex-direction: row;
align-items: center;
gap: 16px;
flex-wrap: wrap;
justify-content: center;
}

.success-page-root .success-button-primary {
display: inline-block;
font-size: 16px;
line-height: 1.5;
letter-spacing: 0.02em;
color: #ffffff;
background: #0E6147;
padding: 16px 28px;
border-radius: 12px;
text-decoration: none;
font-weight: 600;
border: 2px solid #0E6147;
box-shadow: -1px 2px 4px 0 rgba(14, 97, 71, 0.06);
transition: color 0.14s cubic-bezier(0.4, 0, 1, 1), background 0.14s cubic-bezier(0.4, 0, 1, 1), border-color 0.14s cubic-bezier(0.4, 0, 1, 1);
position: relative;
outline: none;
}

.success-page-root .success-button-primary:hover,
.success-page-root .success-button-primary:focus {
background: #ffffff;
color: #0E6147;
border-color: #0E6147;
}

.success-page-root .success-button-primary:focus {
box-shadow: -1px 7px 25px 0 rgba(14, 97, 71, 0.08), 0 0 0 3px rgba(14, 97, 71, 0.2);
}

.success-page-root .success-button-secondary {
display: inline-block;
font-size: 16px;
line-height: 1.5;
letter-spacing: 0.02em;
color: #1C1C1C;
background: transparent;
padding: 16px 28px;
border-radius: 12px;
text-decoration: none;
font-weight: 600;
border: 2px solid #d4d4d4;
transition: border-color 0.18s cubic-bezier(0.4, 0, 1, 1), color 0.18s cubic-bezier(0.4, 0, 1, 1);
outline: none;
}

.success-page-root .success-button-secondary:hover,
.success-page-root .success-button-secondary:focus {
border-color: #FCC000;
color: #0E6147;
}

.success-page-root .success-button-secondary:focus {
box-shadow: 0 0 0 3px rgba(252, 192, 0, 0.18);
}

.success-page-root .success-info-strip {
display: flex;
flex-direction: row;
align-items: stretch;
gap: 16px;
background: #f5f5f2;
border-radius: 20px;
padding: 28px;
max-width: 640px;
width: 100%;
box-shadow: -1px 2px 4px 0 rgba(252, 192, 0, 0.06);
}

.success-page-root .success-info-icon {
flex-shrink: 0;
width: 40px;
height: 40px;
border-radius: 8px;
background: #FCC000;
display: flex;
align-items: center;
justify-content: center;
}

.success-page-root .success-info-text {
display: flex;
flex-direction: column;
gap: 4px;
}

.success-page-root .success-info-title {
font-size: 16px;
line-height: 1.5;
letter-spacing: 0.01em;
color: #1C1C1C;
font-weight: 600;
margin: 0;
}

.success-page-root .success-info-body {
font-size: 16px;
line-height: 1.7;
letter-spacing: 0.01em;
color: #3a3a3a;
margin: 0;
}

@media (max-width: 768px) {
.success-page-root {
padding: 56px 16px;
}

.success-page-root .success-heading {
font-size: 24px;
line-height: 1.2;
}

.success-page-root .success-action-group {
flex-direction: column;
gap: 8px;
width: 100%;
}

.success-page-root .success-button-primary,
.success-page-root .success-button-secondary {
width: 100%;
text-align: center;
}

.success-page-root .success-info-strip {
flex-direction: column;
gap: 16px;
}
}