* {
box-sizing: border-box;
}

body {
margin: 0;
position: relative;
min-height: 100vh;
}

html {
scroll-behavior: auto;
}

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

.brand-plate {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
padding: 24px 40px 16px;
position: relative;
}

.brand-plate::after {
content: '';
position: absolute;
right: 0;
top: 16px;
bottom: 16px;
width: 1px;
background: linear-gradient(to bottom, transparent, #0B94FC55, transparent);
}

.brand-logo-pod {
display: flex;
align-items: center;
justify-content: center;
padding: 8px;
box-shadow: 1px 3px 2px -1px rgba(11, 23, 30, 0.05), 1px 6px 20px -1px rgba(11, 148, 252, 0.09);
border-radius: 13px;
background: #ffffff;
}

.brand-logo-pod img {
width: 46px;
height: 46px;
display: block;
object-fit: contain;
}

.brand-name {
font-family: 'IBM Plex Mono', monospace;
font-size: 31px;
font-weight: 700;
line-height: 1.15;
letter-spacing: 0.02em;
color: #E5EDF3;
margin: 0;
}

.brand-tagline {
font-family: 'IBM Plex Mono', monospace;
font-size: 15px;
font-weight: 400;
font-style: italic;
line-height: 1.4;
letter-spacing: 0.01em;
color: #0B94FC;
margin: 0;
text-align: center;
}

.site-header {
background: linear-gradient(135deg, #0B171E 0%, #0d2233 55%, #0B171E 100%);
border-bottom: 1px solid rgba(11, 148, 252, 0.18);
box-shadow: 1px 6px 20px -1px rgba(11, 23, 30, 0.09);
overflow: hidden;
}

.header-deck {
max-width: 1440px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
}

.nav-pod {
display: flex;
align-items: center;
justify-content: center;
padding: 24px 40px 16px;
}

.nav-pod nav {
width: 100%;
}

.primary-menu {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-wrap: wrap;
gap: 8px 16px;
justify-content: center;
align-items: center;
}

.primary-menu li {
margin: 0;
}

.primary-menu a {
font-family: 'IBM Plex Mono', monospace;
font-size: 15px;
font-weight: 400;
line-height: 1.4;
letter-spacing: 0.01em;
color: #E5EDF3;
text-decoration: none;
display: inline-block;
padding: 8px 16px;
border-radius: 4px;
border: 1px solid transparent;
position: relative;
transition: color 0.25s ease-in-out, border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
overflow: hidden;
min-height: 44px;
display: flex;
align-items: center;
}

.primary-menu a::before {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 0;
background: #0B94FC;
transition: height 0.28s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 0;
}

.primary-menu a:hover::before,
.primary-menu a:focus-visible::before {
height: 100%;
}

.primary-menu a span {
position: relative;
z-index: 1;
}

.primary-menu a:hover,
.primary-menu a:focus-visible {
color: #ffffff;
border-color: #0B94FC;
}

.primary-menu a[aria-current="page"] {
color: #0B94FC;
border-color: rgba(11, 148, 252, 0.35);
}

.site-footer {
background: linear-gradient(160deg, #0B171E 0%, #0d2233 60%, #091520 100%);
border-top: 1px solid rgba(11, 148, 252, 0.15);
padding: 80px 0 40px;
}

.footer-deck {
max-width: 1440px;
margin: 0 auto;
padding: 0 40px;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 40px;
}

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

.footer-logo-cell {
display: flex;
align-items: center;
justify-content: center;
padding: 8px;
background: #ffffff;
border-radius: 13px;
box-shadow: 1px 3px 2px -1px rgba(11, 23, 30, 0.05), 1px 6px 20px -1px rgba(11, 148, 252, 0.09);
}

.footer-logo-cell img {
width: 44px;
height: 44px;
display: block;
object-fit: contain;
}

.footer-brand-name {
font-family: 'IBM Plex Mono', monospace;
font-size: 31px;
font-weight: 700;
line-height: 1.15;
letter-spacing: 0.02em;
color: #E5EDF3;
margin: 0;
}

.footer-brand-desc {
font-family: 'IBM Plex Mono', monospace;
font-size: 15px;
font-weight: 400;
font-style: italic;
line-height: 1.65;
letter-spacing: 0.01em;
color: rgba(229, 237, 243, 0.6);
margin: 0;
}

.footer-links-pod {
display: flex;
flex-direction: column;
gap: 16px;
}

.footer-col-label {
font-family: 'IBM Plex Mono', monospace;
font-size: 15px;
font-weight: 700;
line-height: 1.4;
letter-spacing: 0.02em;
color: #0B94FC;
margin: 0 0 8px;
text-transform: uppercase;
}

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

.footer-link-list a {
font-family: 'IBM Plex Mono', monospace;
font-size: 15px;
font-weight: 400;
line-height: 1.4;
letter-spacing: 0.01em;
color: rgba(229, 237, 243, 0.8);
text-decoration: none;
display: inline-block;
padding: 4px 0;
border-bottom: 1px solid transparent;
transition: color 0.2s ease-in-out, border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
min-height: 44px;
display: flex;
align-items: center;
}

.footer-link-list a:hover,
.footer-link-list a:focus-visible {
color: #0B94FC;
border-bottom-color: rgba(11, 148, 252, 0.4);
}

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

.footer-contact-item {
display: flex;
flex-direction: column;
gap: 4px;
}

.footer-contact-label {
font-family: 'IBM Plex Mono', monospace;
font-size: 15px;
font-weight: 700;
line-height: 1.4;
letter-spacing: 0.01em;
color: rgba(229, 237, 243, 0.5);
margin: 0;
}

.footer-contact-val {
font-family: 'IBM Plex Mono', monospace;
font-size: 15px;
font-weight: 400;
line-height: 1.65;
letter-spacing: 0.01em;
color: rgba(229, 237, 243, 0.85);
margin: 0;
}

.footer-contact-val a {
color: rgba(229, 237, 243, 0.85);
text-decoration: none;
transition: color 0.2s ease-in-out;
}

.footer-contact-val a:hover,
.footer-contact-val a:focus-visible {
color: #0B94FC;
}

.footer-hours-cell {
background: rgba(11, 148, 252, 0.07);
border-radius: 13px;
padding: 16px;
border: 1px solid rgba(11, 148, 252, 0.15);
}

.footer-hours-label {
font-family: 'IBM Plex Mono', monospace;
font-size: 15px;
font-weight: 700;
line-height: 1.4;
letter-spacing: 0.01em;
color: #0B94FC;
margin: 0 0 8px;
}

.footer-hours-text {
font-family: 'IBM Plex Mono', monospace;
font-size: 15px;
font-weight: 400;
line-height: 1.65;
letter-spacing: 0.01em;
color: rgba(229, 237, 243, 0.75);
margin: 0;
}

.footer-bottom-bar {
max-width: 1440px;
margin: 40px auto 0;
padding: 24px 40px 0;
border-top: 1px solid rgba(11, 148, 252, 0.1);
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 16px;
}

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

.footer-legal-links a {
font-family: 'IBM Plex Mono', monospace;
font-size: 15px;
font-weight: 400;
line-height: 1.4;
letter-spacing: 0.01em;
color: rgba(229, 237, 243, 0.5);
text-decoration: underline;
text-underline-offset: 3px;
transition: color 0.2s ease-in-out;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
color: #0B94FC;
}

.footer-copy {
font-family: 'IBM Plex Mono', monospace;
font-size: 15px;
font-weight: 400;
line-height: 1.4;
letter-spacing: 0.01em;
color: rgba(229, 237, 243, 0.4);
margin: 0;
}

.consent-bar {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 8000;
background: #0B171E;
border-bottom: 1px solid rgba(11, 148, 252, 0.25);
box-shadow: 1px 10px 52px -1px rgba(11, 23, 30, 0.10);
font-family: 'IBM Plex Mono', monospace;
}

.consent-bar[hidden] {
display: none;
}

.consent-bar-inner {
max-width: 1440px;
margin: 0 auto;
padding: 16px 40px;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 16px;
}

.consent-desc {
font-size: 15px;
font-weight: 400;
line-height: 1.65;
letter-spacing: 0.01em;
color: rgba(229, 237, 243, 0.85);
margin: 0;
flex: 1 1 300px;
}

.consent-actions {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 8px 16px;
}

.consent-btn {
font-family: 'IBM Plex Mono', monospace;
font-size: 15px;
font-weight: 400;
line-height: 1.4;
letter-spacing: 0.01em;
background: none;
border: none;
cursor: pointer;
padding: 8px 0;
text-decoration: underline;
text-underline-offset: 3px;
min-height: 44px;
transition: color 0.2s ease-in-out;
}

.consent-btn.accept {
color: #0B94FC;
}

.consent-btn.reject {
color: rgba(229, 237, 243, 0.7);
}

.consent-btn.settings-link {
color: rgba(229, 237, 243, 0.5);
font-size: 15px;
}

.consent-btn:hover,
.consent-btn:focus-visible {
color: #E5EDF3;
}

.consent-toggles-panel {
width: 100%;
padding: 16px 40px 16px;
display: flex;
flex-wrap: wrap;
gap: 16px 40px;
border-top: 1px solid rgba(11, 148, 252, 0.12);
}

.consent-toggles-panel[hidden] {
display: none;
}

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

.toggle-item label {
font-family: 'IBM Plex Mono', monospace;
font-size: 15px;
font-weight: 400;
line-height: 1.4;
letter-spacing: 0.01em;
color: rgba(229, 237, 243, 0.8);
cursor: pointer;
display: flex;
align-items: center;
gap: 8px;
min-height: 44px;
}

.toggle-item input[type="checkbox"] {
width: 18px;
height: 18px;
accent-color: #0B94FC;
cursor: pointer;
}

.toggle-item.required label {
color: rgba(229, 237, 243, 0.5);
cursor: default;
}

@media screen and (max-width: 900px) {
.header-deck {
grid-template-columns: 1fr;
}

.brand-plate::after {
display: none;
}

.brand-plate {
padding: 24px 24px 16px;
}

.nav-pod {
padding: 8px 24px 24px;
}

.footer-deck {
grid-template-columns: 1fr 1fr;
padding: 0 24px;
}

.footer-brand-pod {
grid-column: 1 / -1;
}

.footer-bottom-bar {
padding: 24px 24px 0;
}

.consent-bar-inner {
padding: 16px 24px;
}

.consent-toggles-panel {
padding: 16px 24px;
}
}

@media screen and (max-width: 600px) {
.footer-deck {
grid-template-columns: 1fr;
padding: 0 16px;
}

.footer-bottom-bar {
flex-direction: column;
align-items: flex-start;
padding: 24px 16px 0;
}

.consent-bar-inner {
padding: 16px;
}

.consent-toggles-panel {
padding: 16px;
}

.brand-plate {
padding: 16px;
}

.nav-pod {
padding: 8px 16px 16px;
}
}

.terms-section {
max-width: 1440px;
margin: 0 auto;
padding: 80px 40px;
}

.terms-section h1 {
font-size: 58px;
line-height: 1.15;
letter-spacing: 0.01em;
color: #0B171E;
margin-bottom: 40px;
margin-top: 0;
}

.terms-section h2 {
font-size: 31px;
line-height: 1.4;
letter-spacing: 0.01em;
color: #0B171E;
margin-top: 80px;
margin-bottom: 24px;
}

.terms-section h3 {
font-size: 16px;
line-height: 1.65;
letter-spacing: 0.02em;
color: #0B171E;
font-weight: 700;
margin-top: 40px;
margin-bottom: 16px;
}

.terms-section h4,
.terms-section h5,
.terms-section h6 {
font-size: 15px;
line-height: 1.65;
letter-spacing: 0.02em;
color: #0B171E;
font-weight: 700;
margin-top: 24px;
margin-bottom: 8px;
}

.terms-section p {
font-size: 16px;
line-height: 1.85;
letter-spacing: 0.01em;
color: #0B171E;
margin-top: 0;
margin-bottom: 24px;
max-width: 72ch;
}

.terms-section strong,
.terms-section b {
font-weight: 700;
color: #0B171E;
}

.terms-section a {
color: #0B94FC;
text-decoration: underline;
text-decoration-thickness: 1px;
text-underline-offset: 3px;
transition: color 0.25s ease-in-out, text-decoration-color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.terms-section a:hover {
color: #0B171E;
text-decoration-color: #0B171E;
}

.terms-section a:visited {
color: #0B94FC;
}

.terms-section div {
margin-bottom: 16px;
}

@media screen and (max-width: 1024px) {
.terms-section {
padding: 80px 40px;
}

.terms-section h1 {
font-size: 31px;
}
}

@media screen and (max-width: 640px) {
.terms-section {
padding: 40px 16px;
}

.terms-section h1 {
font-size: 31px;
margin-bottom: 24px;
}

.terms-section h2 {
font-size: 16px;
margin-top: 40px;
margin-bottom: 16px;
}

.terms-section p {
font-size: 15px;
max-width: 100%;
}
}

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

.srvdet .pulse-bg {
position: absolute;
inset: 0;
overflow: hidden;
pointer-events: none;
z-index: 0;
}

.srvdet .pulse-ring {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 50%;
border: 1px solid rgba(11, 148, 252, 0.12);
animation: ringExpand 4s ease-out infinite;
}

.srvdet .pulse-ring:nth-child(2) {
animation-delay: 1.3s;
}

.srvdet .pulse-ring:nth-child(3) {
animation-delay: 2.6s;
}

@keyframes ringExpand {
0% {
width: 80px;
height: 80px;
opacity: 0.5;
}

100% {
width: 600px;
height: 600px;
opacity: 0;
}
}

.srvdet .dot-scatter {
position: absolute;
inset: 0;
pointer-events: none;
z-index: 0;
}

.srvdet .dot-scatter span {
position: absolute;
width: 3px;
height: 3px;
border-radius: 50%;
background: rgba(11, 148, 252, 0.18);
}

.srvdet .dot-scatter span:nth-child(1) {
top: 12%;
left: 8%;
}

.srvdet .dot-scatter span:nth-child(2) {
top: 22%;
left: 78%;
}

.srvdet .dot-scatter span:nth-child(3) {
top: 55%;
left: 92%;
}

.srvdet .dot-scatter span:nth-child(4) {
top: 78%;
left: 15%;
}

.srvdet .dot-scatter span:nth-child(5) {
top: 40%;
left: 5%;
}

.srvdet .dot-scatter span:nth-child(6) {
top: 88%;
left: 60%;
}

.srvdet .dot-scatter span:nth-child(7) {
top: 30%;
left: 45%;
}

.srvdet .dot-scatter span:nth-child(8) {
top: 65%;
left: 35%;
}

.srvdet .dot-scatter span:nth-child(9) {
top: 8%;
left: 55%;
}

.srvdet .dot-scatter span:nth-child(10) {
top: 70%;
left: 72%;
}

.srvdet .entry-band {
position: relative;
background: linear-gradient(128deg, #0B171E 0%, #0d2233 45%, #0B171E 80%, #091520 100%);
padding: 80px 24px 64px;
}

.srvdet .entry-band::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 40px;
background: #ffffff;
clip-path: ellipse(52% 100% at 50% 100%);
}

.srvdet .entry-inner {
max-width: 1440px;
margin: 0 auto;
position: relative;
z-index: 1;
display: grid;
grid-template-columns: 1fr 420px;
gap: 80px;
align-items: center;
}

.srvdet .entry-meta-row {
display: flex;
flex-direction: row;
gap: 16px;
align-items: center;
margin-bottom: 24px;
}

.srvdet .entry-tag {
font-size: 15px;
line-height: 1.4;
letter-spacing: 0.02em;
color: #0B94FC;
border: 1px solid rgba(11, 148, 252, 0.35);
border-radius: 4px;
padding: 4px 16px;
}

.srvdet .entry-date {
font-size: 15px;
line-height: 1.4;
letter-spacing: 0.01em;
color: rgba(229, 237, 243, 0.5);
}

.srvdet .entry-views {
font-size: 15px;
line-height: 1.4;
letter-spacing: 0.01em;
color: rgba(229, 237, 243, 0.5);
}

.srvdet .entry-heading {
font-size: 58px;
line-height: 1.15;
letter-spacing: 0.01em;
background: linear-gradient(128deg, #E5EDF3 0%, #0B94FC 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
margin: 0 0 24px;
}

.srvdet .entry-subline {
font-size: 16px;
line-height: 1.65;
letter-spacing: 0.01em;
color: rgba(229, 237, 243, 0.72);
margin: 0 0 40px;
max-width: 520px;
}

.srvdet .entry-stats {
display: flex;
flex-direction: row;
gap: 40px;
}

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

.srvdet .stat-val {
font-size: 31px;
line-height: 1.15;
letter-spacing: 0.01em;
color: #0B94FC;
}

.srvdet .stat-lbl {
font-size: 15px;
line-height: 1.4;
letter-spacing: 0.02em;
color: rgba(229, 237, 243, 0.55);
}

.srvdet .entry-img-wrap {
position: relative;
border-radius: 22px;
overflow: hidden;
box-shadow: 1px 10px 52px -1px rgba(11, 148, 252, 0.10);
}

.srvdet .entry-img-wrap img {
width: 100%;
height: 320px;
object-fit: cover;
display: block;
border-radius: 22px;
filter: brightness(0.88) contrast(1.06);
transition: filter 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.srvdet .entry-img-wrap:hover img {
filter: brightness(0.95) contrast(1.02);
}

.srvdet .entry-img-overlay {
position: absolute;
inset: 0;
background: linear-gradient(200deg, rgba(11, 23, 30, 0.55) 0%, rgba(11, 148, 252, 0.08) 100%);
border-radius: 22px;
pointer-events: none;
}

.srvdet .desc-strip {
background: #ffffff;
padding: 80px 24px;
position: relative;
}

.srvdet .desc-strip::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(ellipse 70% 50% at 90% 20%, rgba(229, 237, 243, 0.55) 0%, transparent 70%);
pointer-events: none;
}

.srvdet .desc-inner {
max-width: 1440px;
margin: 0 auto;
display: grid;
grid-template-columns: 200px 1fr;
gap: 80px;
position: relative;
z-index: 1;
}

.srvdet .desc-label-col {
display: flex;
flex-direction: column;
gap: 16px;
padding-top: 8px;
}

.srvdet .desc-label {
font-size: 15px;
line-height: 1.4;
letter-spacing: 0.02em;
color: rgba(11, 23, 30, 0.4);
text-transform: uppercase;
}

.srvdet .desc-num {
font-size: 58px;
line-height: 1.15;
letter-spacing: 0.01em;
color: rgba(11, 148, 252, 0.10);
}

.srvdet .desc-body {
display: flex;
flex-direction: column;
gap: 24px;
}

.srvdet .desc-body h2 {
font-size: 31px;
line-height: 1.4;
letter-spacing: 0.01em;
background: linear-gradient(128deg, #0B94FC 0%, #0B171E 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
margin: 0;
}

.srvdet .desc-body p {
font-size: 16px;
line-height: 1.65;
letter-spacing: 0.01em;
color: #0B171E;
margin: 0;
counter-increment: para;
padding-left: 40px;
position: relative;
}

.srvdet .desc-body p::before {
content: counter(para, decimal-leading-zero);
position: absolute;
left: 0;
top: 0;
font-size: 15px;
line-height: 1.65;
color: #0B94FC;
letter-spacing: 0.02em;
}

.srvdet .desc-body {
counter-reset: para;
}

.srvdet .desc-body mark {
background: rgba(11, 148, 252, 0.12);
color: #0B171E;
border-radius: 4px;
padding: 0 4px;
}

.srvdet .desc-body ul {
margin: 0;
padding-left: 40px;
display: flex;
flex-direction: column;
gap: 8px;
list-style: none;
}

.srvdet .desc-body ul li {
font-size: 16px;
line-height: 1.65;
letter-spacing: 0.01em;
color: #0B171E;
position: relative;
padding-left: 16px;
}

.srvdet .desc-body ul li::before {
content: '';
position: absolute;
left: 0;
top: 10px;
width: 6px;
height: 6px;
border-radius: 50%;
background: #0B94FC;
}

.srvdet .desc-body ol {
margin: 0;
padding-left: 40px;
display: flex;
flex-direction: column;
gap: 8px;
}

.srvdet .desc-body ol li {
font-size: 16px;
line-height: 1.65;
letter-spacing: 0.01em;
color: #0B171E;
}

.srvdet .desc-body figure {
margin: 0;
}

.srvdet .desc-body figcaption {
font-size: 15px;
line-height: 1.4;
color: rgba(11, 23, 30, 0.5);
letter-spacing: 0.01em;
margin-top: 8px;
}

.srvdet .desc-body details {
border-top: 1px solid rgba(11, 23, 30, 0.1);
padding: 16px 0;
}

.srvdet .desc-body summary {
font-size: 16px;
line-height: 1.4;
letter-spacing: 0.01em;
color: #0B171E;
cursor: pointer;
list-style: none;
transition: color 0.25s ease-in-out;
}

.srvdet .desc-body summary:hover {
color: #0B94FC;
}

.srvdet .desc-body dl {
display: grid;
grid-template-columns: 160px 1fr;
gap: 8px 24px;
margin: 0;
}

.srvdet .desc-body dt {
font-size: 15px;
line-height: 1.65;
color: #0B94FC;
letter-spacing: 0.01em;
}

.srvdet .desc-body dd {
font-size: 16px;
line-height: 1.65;
color: #0B171E;
letter-spacing: 0.01em;
margin: 0;
}

.srvdet .prog-strip {
background: #E5EDF3;
padding: 80px 24px;
position: relative;
overflow: hidden;
}

.srvdet .prog-vignette {
position: absolute;
inset: 0;
background: radial-gradient(ellipse 90% 90% at 50% 50%, transparent 55%, rgba(11, 23, 30, 0.07) 100%);
pointer-events: none;
}

.srvdet .prog-inner {
max-width: 1440px;
margin: 0 auto;
position: relative;
z-index: 1;
}

.srvdet .prog-top {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: flex-end;
margin-bottom: 40px;
}

.srvdet .prog-heading {
font-size: 31px;
line-height: 1.4;
letter-spacing: 0.01em;
background: linear-gradient(128deg, #0B94FC 0%, #0B171E 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
margin: 0;
}

.srvdet .prog-hint {
font-size: 15px;
line-height: 1.4;
letter-spacing: 0.01em;
color: rgba(11, 23, 30, 0.5);
}

.srvdet .prog-body {
display: flex;
flex-direction: column;
gap: 16px;
}

.srvdet .prog-body h2 {
font-size: 31px;
line-height: 1.4;
letter-spacing: 0.01em;
background: linear-gradient(128deg, #0B94FC 0%, #0B171E 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
margin: 0 0 24px;
}

.srvdet .prog-body p {
font-size: 16px;
line-height: 1.65;
letter-spacing: 0.01em;
color: #0B171E;
margin: 0;
}

.srvdet .prog-body strong {
color: #0B171E;
}

.srvdet .prog-body em {
color: rgba(11, 23, 30, 0.7);
}

.srvdet .prog-body ol {
display: flex;
flex-direction: column;
gap: 16px;
padding: 0;
list-style: none;
margin: 0;
}

.srvdet .prog-body ol li {
font-size: 16px;
line-height: 1.65;
letter-spacing: 0.01em;
color: #0B171E;
background: #ffffff;
border-radius: 13px;
padding: 24px;
box-shadow: 1px 3px 2px -1px rgba(11, 23, 30, 0.05);
border-left: 3px solid #0B94FC;
border-top: 1px solid rgba(11, 148, 252, 0.12);
counter-increment: prog-step;
position: relative;
transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.srvdet .prog-body ol li:hover {
box-shadow: 1px 6px 20px -1px rgba(11, 148, 252, 0.09);
}

.srvdet .prog-body ol li::before {
content: counter(prog-step, decimal-leading-zero);
position: absolute;
top: 24px;
right: 24px;
font-size: 31px;
line-height: 1.15;
color: rgba(11, 148, 252, 0.15);
letter-spacing: 0.01em;
}

.srvdet .prog-body ol {
counter-reset: prog-step;
}

.srvdet .prog-body dl {
display: grid;
grid-template-columns: 160px 1fr;
gap: 8px 24px;
margin: 0;
}

.srvdet .prog-body dt {
font-size: 15px;
line-height: 1.65;
color: #0B94FC;
letter-spacing: 0.01em;
}

.srvdet .prog-body dd {
font-size: 16px;
line-height: 1.65;
color: #0B171E;
margin: 0;
}

.srvdet .prog-body blockquote {
border-left: 3px solid #0B94FC;
padding: 16px 24px;
margin: 0;
background: #ffffff;
border-radius: 0 13px 13px 0;
}

.srvdet .prog-body cite {
font-size: 15px;
line-height: 1.4;
color: rgba(11, 23, 30, 0.5);
letter-spacing: 0.01em;
display: block;
margin-top: 8px;
}

.srvdet .action-strip {
background: #0B171E;
padding: 80px 24px;
position: relative;
overflow: hidden;
}

.srvdet .action-strip::before {
content: '';
position: absolute;
top: -40px;
left: 0;
right: 0;
height: 40px;
background: #E5EDF3;
clip-path: ellipse(52% 100% at 50% 0%);
}

.srvdet .action-vignette {
position: absolute;
inset: 0;
background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, rgba(11, 23, 30, 0.6) 100%);
pointer-events: none;
}

.srvdet .action-pulse {
position: absolute;
inset: 0;
overflow: hidden;
pointer-events: none;
}

.srvdet .action-pulse-ring {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 50%;
border: 1px solid rgba(11, 148, 252, 0.08);
animation: ringExpand 5s ease-out infinite;
}

.srvdet .action-pulse-ring:nth-child(2) {
animation-delay: 1.7s;
}

.srvdet .action-pulse-ring:nth-child(3) {
animation-delay: 3.4s;
}

.srvdet .action-inner {
max-width: 1440px;
margin: 0 auto;
position: relative;
z-index: 1;
display: grid;
grid-template-columns: 1fr 360px;
gap: 80px;
align-items: center;
}

.srvdet .action-text h3 {
font-size: 31px;
line-height: 1.4;
letter-spacing: 0.01em;
background: linear-gradient(128deg, #E5EDF3 0%, #0B94FC 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
margin: 0 0 16px;
}

.srvdet .action-text p {
font-size: 16px;
line-height: 1.65;
letter-spacing: 0.01em;
color: rgba(229, 237, 243, 0.65);
margin: 0;
}

.srvdet .price-card {
background: rgba(229, 237, 243, 0.05);
border: 1px solid rgba(11, 148, 252, 0.2);
border-radius: 22px;
padding: 40px;
box-shadow: 1px 10px 52px -1px rgba(11, 148, 252, 0.10);
display: flex;
flex-direction: column;
gap: 24px;
}

.srvdet .price-amount {
font-size: 58px;
line-height: 1.15;
letter-spacing: 0.01em;
color: #0B94FC;
}

.srvdet .price-dur {
font-size: 15px;
line-height: 1.4;
letter-spacing: 0.02em;
color: rgba(229, 237, 243, 0.45);
margin-top: -16px;
}

.srvdet .price-divider {
height: 1px;
background: rgba(11, 148, 252, 0.15);
}

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

.srvdet .price-features li {
font-size: 15px;
line-height: 1.65;
letter-spacing: 0.01em;
color: rgba(229, 237, 243, 0.7);
padding-left: 16px;
position: relative;
}

.srvdet .price-features li::before {
content: '';
position: absolute;
left: 0;
top: 9px;
width: 5px;
height: 5px;
border-radius: 50%;
background: #0B94FC;
}

.srvdet .btn-primary {
display: inline-block;
font-size: 16px;
line-height: 1.4;
letter-spacing: 0.02em;
color: #0B94FC;
border: 1px solid #0B94FC;
border-radius: 13px;
padding: 16px 40px;
text-decoration: none;
text-align: center;
background: transparent;
position: relative;
overflow: hidden;
transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.srvdet .btn-primary::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 0;
background: #0B94FC;
transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 0;
}

.srvdet .btn-primary:hover {
color: #ffffff;
}

.srvdet .btn-primary:hover::after {
height: 100%;
}

.srvdet .btn-primary span {
position: relative;
z-index: 1;
}

.srvdet .btn-secondary {
display: inline-block;
font-size: 15px;
line-height: 1.4;
letter-spacing: 0.02em;
color: rgba(229, 237, 243, 0.6);
text-decoration: dotted underline;
text-underline-offset: 3px;
transition: color 0.25s ease-in-out;
}

.srvdet .btn-secondary:hover {
color: #E5EDF3;
}

.srvdet .action-btns {
display: flex;
flex-direction: column;
gap: 16px;
align-items: stretch;
}

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

.srvdet .action-inner {
grid-template-columns: 1fr;
gap: 40px;
}

.srvdet .desc-inner {
grid-template-columns: 1fr;
gap: 24px;
}

.srvdet .desc-label-col {
flex-direction: row;
align-items: center;
}

.srvdet .entry-heading {
font-size: 31px;
}
}

@media (max-width: 640px) {
.srvdet .entry-band {
padding: 40px 16px 64px;
}

.srvdet .entry-stats {
flex-direction: column;
gap: 16px;
}

.srvdet .prog-top {
flex-direction: column;
align-items: flex-start;
gap: 8px;
}

.srvdet .price-amount {
font-size: 31px;
}

.srvdet .desc-strip,
.srvdet .prog-strip,
.srvdet .action-strip {
padding: 40px 16px;
}

.srvdet .desc-body p {
padding-left: 24px;
}
}

.gds-pg {
max-width: 1440px;
margin: 0 auto;
overflow-x: clip;
}

.gds-pg .title-block {
padding: 80px 40px 80px;
text-align: center;
position: relative;
background: #fff;
}

.gds-pg .title-block .dot-group {
position: absolute;
top: 40px;
right: 80px;
display: flex;
flex-direction: row;
gap: 8px;
align-items: flex-end;
pointer-events: none;
}

.gds-pg .title-block .dot-group span {
display: block;
border-radius: 36px;
background: #0B94FC;
opacity: 0.13;
}

.gds-pg .title-block .dot-group .d1 {
width: 8px;
height: 8px;
}

.gds-pg .title-block .dot-group .d2 {
width: 14px;
height: 14px;
}

.gds-pg .title-block .dot-group .d3 {
width: 22px;
height: 22px;
}

.gds-pg .title-block .label-tag {
display: inline-block;
font-size: 15px;
line-height: 1.4;
letter-spacing: 0.02em;
color: #0B94FC;
border: 1px solid #0B94FC;
border-radius: 4px;
padding: 4px 16px;
margin-bottom: 24px;
}

.gds-pg .title-block h1 {
font-size: 58px;
line-height: 1.15;
letter-spacing: 0.01em;
color: #0B171E;
max-width: 820px;
margin: 0 auto 24px;
animation: track-in 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes track-in {
from {
letter-spacing: -0.04em;
opacity: 0;
}

to {
letter-spacing: 0.01em;
opacity: 1;
}
}

.gds-pg .title-block h1 .accent-phrase {
color: #0B94FC;
}

.gds-pg .title-block .sub-text {
font-size: 16px;
line-height: 1.65;
letter-spacing: 0.01em;
color: #3a5060;
max-width: 560px;
margin: 0 auto 40px;
}

.gds-pg .title-block .img-wrap {
max-width: 900px;
margin: 0 auto;
border-radius: 13px;
overflow: hidden;
box-shadow: 1px 10px 52px -1px rgba(11, 148, 252, 0.10);
position: relative;
}

.gds-pg .title-block .img-wrap img {
width: 100%;
height: 460px;
object-fit: cover;
display: block;
filter: saturate(0.7) brightness(0.92);
}

.gds-pg .title-block .img-overlay {
position: absolute;
inset: 0;
background: linear-gradient(160deg, rgba(11, 23, 30, 0.38) 0%, rgba(11, 148, 252, 0.18) 100%);
border-radius: 13px;
pointer-events: none;
}

.gds-pg .section-divider {
display: flex;
justify-content: center;
align-items: center;
gap: 8px;
padding: 24px 0;
background: #fff;
}

.gds-pg .section-divider span {
width: 7px;
height: 7px;
border-radius: 36px;
background: #0B94FC;
opacity: 0.28;
display: block;
}

.gds-pg .guides-grid-block {
background: #E5EDF3;
padding: 80px 40px;
}

.gds-pg .guides-grid-block .block-header {
max-width: 1200px;
margin: 0 auto 40px;
display: flex;
flex-direction: row;
align-items: flex-end;
justify-content: space-between;
gap: 24px;
}

.gds-pg .guides-grid-block .block-header h2 {
font-size: 31px;
line-height: 1.4;
letter-spacing: 0.01em;
background: linear-gradient(160deg, #0B94FC 0%, #0B171E 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin: 0;
max-width: 480px;
}

.gds-pg .guides-grid-block .block-header p {
font-size: 15px;
line-height: 1.65;
color: #3a5060;
max-width: 320px;
margin: 0;
letter-spacing: 0.01em;
}

.gds-pg .guides-grid-block .card-grid {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}

.gds-pg .guide-card {
background: #fff;
border-radius: 13px;
padding: 24px;
box-shadow: 1px 6px 20px -1px rgba(11, 23, 30, 0.09);
display: flex;
flex-direction: column;
gap: 16px;
transition: box-shadow 0.25s ease-in-out, transform 0.25s ease-in-out;
border-top: 3px solid #E5EDF3;
border-left: 3px solid #0B94FC;
border-right: 3px solid #E5EDF3;
border-bottom: 3px solid #E5EDF3;
}

.gds-pg .guide-card:hover {
box-shadow: 1px 10px 52px -1px rgba(11, 148, 252, 0.10);
transform: translateY(-4px);
}

.gds-pg .guide-card .card-num {
font-size: 15px;
line-height: 1.4;
letter-spacing: 0.02em;
color: #0B94FC;
font-weight: 700;
}

.gds-pg .guide-card h4 {
font-size: 16px;
line-height: 1.4;
letter-spacing: 0.01em;
color: #0B171E;
margin: 0;
}

.gds-pg .guide-card p {
font-size: 15px;
line-height: 1.65;
color: #3a5060;
margin: 0;
flex: 1;
}

.gds-pg .guide-card .card-link {
font-size: 15px;
line-height: 1.4;
color: #0B94FC;
text-decoration: underline dotted;
text-underline-offset: 3px;
letter-spacing: 0.01em;
transition: color 0.18s ease-in-out;
display: inline-block;
}

.gds-pg .guide-card .card-link:hover {
color: #0B171E;
}

.gds-pg .divider-line {
border: none;
border-top: 1px solid #E5EDF3;
max-width: 1200px;
margin: 0 auto;
}

.gds-pg .resources-block {
background: #fff;
padding: 80px 40px;
position: relative;
}

.gds-pg .resources-block .dot-corner {
position: absolute;
bottom: 40px;
left: 40px;
display: flex;
flex-direction: column;
gap: 8px;
pointer-events: none;
}

.gds-pg .resources-block .dot-corner span {
display: block;
border-radius: 36px;
background: #0B171E;
opacity: 0.07;
}

.gds-pg .resources-block .dot-corner .dc1 {
width: 24px;
height: 24px;
}

.gds-pg .resources-block .dot-corner .dc2 {
width: 14px;
height: 14px;
}

.gds-pg .resources-block .dot-corner .dc3 {
width: 8px;
height: 8px;
}

.gds-pg .resources-block .res-inner {
max-width: 1200px;
margin: 0 auto;
}

.gds-pg .resources-block h2 {
font-size: 31px;
line-height: 1.4;
letter-spacing: 0.01em;
background: linear-gradient(160deg, #0B94FC 0%, #0B171E 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin: 0 0 8px;
}

.gds-pg .resources-block .res-desc {
font-size: 15px;
line-height: 1.65;
color: #3a5060;
margin: 0 0 40px;
max-width: 520px;
letter-spacing: 0.01em;
}

.gds-pg .resources-block .res-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 16px;
}

.gds-pg .res-card {
background: #E5EDF3;
border-radius: 13px;
padding: 24px;
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 16px;
box-shadow: 1px 3px 2px -1px rgba(11, 23, 30, 0.05);
transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.gds-pg .res-card:hover {
background: #d6e4ef;
box-shadow: 1px 6px 20px -1px rgba(11, 148, 252, 0.09);
}

.gds-pg .res-card .res-icon {
width: 40px;
height: 40px;
border-radius: 4px;
background: #0B94FC;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
}

.gds-pg .res-card .res-icon svg {
width: 22px;
height: 22px;
}

.gds-pg .res-card .res-info {
display: flex;
flex-direction: column;
gap: 4px;
flex: 1;
}

.gds-pg .res-card .res-info h5 {
font-size: 16px;
line-height: 1.4;
letter-spacing: 0.01em;
color: #0B171E;
margin: 0;
}

.gds-pg .res-card .res-info .res-meta {
font-size: 15px;
line-height: 1.4;
color: #3a5060;
letter-spacing: 0.01em;
}

.gds-pg .res-card .res-info .res-type {
font-size: 15px;
line-height: 1.4;
color: #0B94FC;
letter-spacing: 0.02em;
font-weight: 700;
}

.gds-pg .res-card a.res-dl {
font-size: 15px;
line-height: 1.4;
color: #0B171E;
text-decoration: underline dotted;
text-underline-offset: 3px;
letter-spacing: 0.01em;
transition: color 0.18s ease-in-out;
margin-top: 8px;
display: inline-block;
}

.gds-pg .res-card a.res-dl:hover {
color: #0B94FC;
}

.gds-pg .frosted-block {
padding: 80px 40px;
background: linear-gradient(160deg, #E5EDF3 0%, #c8dcea 100%);
position: relative;
}

.gds-pg .frosted-block .frosted-inner {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: start;
}

.gds-pg .frosted-block .frosted-panel {
background: rgba(255, 255, 255, 0.55);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
border-radius: 22px;
padding: 40px;
box-shadow: 1px 6px 20px -1px rgba(11, 148, 252, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.8);
border: 1px solid rgba(255, 255, 255, 0.7);
}

.gds-pg .frosted-block h2 {
font-size: 31px;
line-height: 1.4;
letter-spacing: 0.01em;
background: linear-gradient(160deg, #0B94FC 0%, #0B171E 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin: 0 0 16px;
}

.gds-pg .frosted-block .frosted-panel p {
font-size: 15px;
line-height: 1.65;
color: #0B171E;
margin: 0 0 16px;
letter-spacing: 0.01em;
}

.gds-pg .frosted-block .frosted-panel p:last-of-type {
margin-bottom: 0;
}

.gds-pg .frosted-block .steps-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 16px;
}

.gds-pg .frosted-block .steps-list li {
display: flex;
flex-direction: row;
gap: 16px;
align-items: flex-start;
}

.gds-pg .frosted-block .steps-list .step-num {
font-size: 15px;
line-height: 1.4;
color: #0B94FC;
font-weight: 700;
letter-spacing: 0.02em;
flex-shrink: 0;
width: 24px;
}

.gds-pg .frosted-block .steps-list .step-text {
font-size: 15px;
line-height: 1.65;
color: #0B171E;
letter-spacing: 0.01em;
}

.gds-pg .frosted-block .steps-list .step-text strong {
color: #0B171E;
}

.gds-pg .frosted-block .nested-widget {
background: rgba(11, 23, 30, 0.04);
border-radius: 13px;
padding: 24px;
margin-top: 24px;
border: 1px solid rgba(11, 148, 252, 0.15);
}

.gds-pg .frosted-block .nested-widget h5 {
font-size: 16px;
line-height: 1.4;
color: #0B171E;
margin: 0 0 16px;
letter-spacing: 0.01em;
}

.gds-pg .frosted-block .budget-bars {
display: flex;
flex-direction: column;
gap: 12px;
}

.gds-pg .frosted-block .bar-row {
display: flex;
flex-direction: column;
gap: 4px;
}

.gds-pg .frosted-block .bar-label {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}

.gds-pg .frosted-block .bar-label span {
font-size: 15px;
line-height: 1.4;
color: #0B171E;
letter-spacing: 0.01em;
}

.gds-pg .frosted-block .bar-label .bar-pct {
color: #0B94FC;
font-weight: 700;
}

.gds-pg .frosted-block .bar-track {
width: 100%;
height: 8px;
background: rgba(11, 23, 30, 0.1);
border-radius: 4px;
overflow: hidden;
}

.gds-pg .frosted-block .bar-fill {
height: 100%;
border-radius: 4px;
background: linear-gradient(90deg, #0B94FC 0%, #0B171E 100%);
transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.gds-pg .frosted-block .bar-fill.w50 {
width: 50%;
}

.gds-pg .frosted-block .bar-fill.w30 {
width: 30%;
}

.gds-pg .frosted-block .bar-fill.w20 {
width: 20%;
}

@media screen and (max-width: 1024px) {
.gds-pg .guides-grid-block .card-grid {
grid-template-columns: repeat(2, 1fr);
}

.gds-pg .frosted-block .frosted-inner {
grid-template-columns: 1fr;
}

.gds-pg .guides-grid-block .block-header {
flex-direction: column;
align-items: flex-start;
}
}

@media screen and (max-width: 768px) {
.gds-pg .title-block h1 {
font-size: 31px;
}

.gds-pg .guides-grid-block .card-grid {
grid-template-columns: 1fr;
}

.gds-pg .resources-block .res-grid {
grid-template-columns: 1fr;
}

.gds-pg .title-block {
padding: 40px 16px 40px;
}

.gds-pg .guides-grid-block {
padding: 40px 16px;
}

.gds-pg .resources-block {
padding: 40px 16px;
}

.gds-pg .frosted-block {
padding: 40px 16px;
}

.gds-pg .title-block .dot-group {
right: 16px;
}
}

.abt-us {
max-width: 1440px;
margin: 0 auto;
overflow-x: clip;
background: #ffffff;
}

.abt-us .eyebrow {
display: inline-block;
font-size: 15px;
line-height: 1.4;
letter-spacing: 0.02em;
color: #0B94FC;
border: 1px solid rgba(11, 148, 252, 0.3);
border-radius: 4px;
padding: 4px 16px;
margin-bottom: 24px;
background: rgba(11, 148, 252, 0.06);
}

.abt-us .grad-text {
background: linear-gradient(112deg, #0B94FC 0%, #0B171E 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}

.abt-title {
position: relative;
background: linear-gradient(170deg, rgba(11, 148, 252, 0.18) 0%, rgba(229, 237, 243, 0.5) 55%, rgba(255, 255, 255, 0) 100%);
padding: 80px 40px 0;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: stretch;
}

.abt-title .math-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
overflow: hidden;
}

.abt-title .math-bg svg {
position: absolute;
top: -20px;
left: 40px;
opacity: 0.04;
width: 420px;
height: 420px;
}

.abt-title .txt-zone {
position: relative;
padding: 40px 40px 80px 0;
display: flex;
flex-direction: column;
justify-content: center;
z-index: 1;
}

.abt-title .txt-zone .deco-line {
position: absolute;
top: 24px;
left: -16px;
width: 3px;
height: 80px;
background: linear-gradient(180deg, #0B94FC 0%, rgba(11, 148, 252, 0) 100%);
border-radius: 4px;
}

.abt-title .txt-zone h1 {
font-size: 58px;
line-height: 1.15;
letter-spacing: 0.01em;
color: #0B171E;
margin: 0 0 24px;
}

.abt-title .img-zone {
position: relative;
padding: 24px 0 0 24px;
display: flex;
align-items: flex-end;
}

.abt-title .img-frame {
width: 100%;
border-radius: 22px 22px 0 0;
overflow: hidden;
box-shadow: 1px 10px 52px -1px rgba(11, 148, 252, 0.10);
transition: box-shadow 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt-title .img-frame:hover {
box-shadow: 1px 10px 52px -1px rgba(11, 148, 252, 0.22);
}

.abt-title .img-frame img {
width: 100%;
height: 480px;
object-fit: cover;
display: block;
filter: saturate(0.85) brightness(0.96) hue-rotate(0deg);
border-radius: 22px 22px 0 0;
}

.abt-title .zigzag-divider {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
line-height: 0;
z-index: 2;
}

.abt-body {
background: #ffffff;
padding: 80px 40px 80px;
position: relative;
}

.abt-body .body-grid {
display: grid;
grid-template-columns: 1fr 2fr 2fr 1fr;
gap: 40px;
align-items: start;
}

.abt-body .numbers-col {
display: flex;
flex-direction: column;
gap: 40px;
padding-top: 8px;
}

.abt-body .num-pair {
display: flex;
flex-direction: row;
align-items: flex-end;
gap: 16px;
padding: 24px;
border-radius: 13px;
background: #E5EDF3;
border-left: 3px solid #0B94FC;
border-top: 1px solid rgba(11, 148, 252, 0.15);
transition: box-shadow 0.28s ease-in-out, border-color 0.28s ease-in-out;
}

.abt-body .num-pair:hover {
box-shadow: 1px 6px 20px -1px rgba(11, 148, 252, 0.09);
border-color: #0B94FC;
}

.abt-body .num-before {
font-size: 31px;
line-height: 1.15;
letter-spacing: 0.01em;
color: rgba(11, 23, 30, 0.3);
text-decoration: line-through;
text-decoration-color: rgba(11, 148, 252, 0.5);
}

.abt-body .num-after {
font-size: 58px;
line-height: 1.15;
letter-spacing: 0.01em;
color: #0B171E;
}

.abt-body .num-label {
font-size: 15px;
line-height: 1.4;
letter-spacing: 0.02em;
color: rgba(11, 23, 30, 0.6);
margin-top: 8px;
}

.abt-body .story-col {
display: flex;
flex-direction: column;
gap: 24px;
}

.abt-body .story-col h2 {
font-size: 31px;
line-height: 1.4;
letter-spacing: 0.01em;
color: #0B171E;
margin: 0;
}

.abt-body .para {
display: flex;
flex-direction: column;
gap: 8px;
}

.abt-body .para-num {
font-size: 15px;
line-height: 1.4;
letter-spacing: 0.02em;
color: #0B94FC;
font-weight: 700;
}

.abt-body .para p {
font-size: 16px;
line-height: 1.65;
letter-spacing: 0.01em;
color: #0B171E;
margin: 0;
}

.abt-body .para p a {
color: #0B94FC;
text-decoration: underline dotted;
text-underline-offset: 3px;
transition: color 0.18s ease-in-out;
}

.abt-body .para p a:hover {
color: #0B171E;
}

.abt-body .visual-col {
display: flex;
flex-direction: column;
gap: 24px;
}

.abt-body .img-card {
border-radius: 13px;
overflow: hidden;
box-shadow: 1px 3px 2px -1px rgba(11, 23, 30, 0.05);
transition: box-shadow 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt-body .img-card:hover {
box-shadow: 1px 10px 52px -1px rgba(11, 148, 252, 0.10);
}

.abt-body .img-card img {
width: 100%;
height: 260px;
object-fit: cover;
display: block;
border-radius: 13px;
}

.abt-body .tag-list {
display: flex;
flex-direction: column;
gap: 8px;
}

.abt-body .tag-list li {
list-style: none;
font-size: 15px;
line-height: 1.65;
letter-spacing: 0.01em;
color: #0B171E;
padding-left: 16px;
position: relative;
}

.abt-body .tag-list li::before {
content: '';
position: absolute;
left: 0;
top: 10px;
width: 6px;
height: 6px;
border-radius: 50%;
background: #0B94FC;
}

.abt-body .accent-phrase {
color: #0B94FC;
}

.abt-body .metrics-strip {
display: flex;
flex-direction: column;
gap: 16px;
padding: 24px;
border-radius: 22px;
background: linear-gradient(135deg, #0B171E 0%, #0B3a5c 100%);
box-shadow: 1px 6px 20px -1px rgba(11, 23, 30, 0.09);
}

.abt-body .metrics-strip .m-label {
font-size: 15px;
line-height: 1.4;
letter-spacing: 0.02em;
color: rgba(229, 237, 243, 0.7);
}

.abt-body .metrics-strip .m-val {
font-size: 31px;
line-height: 1.15;
letter-spacing: 0.01em;
color: #E5EDF3;
}

.abt-body .metrics-strip .m-bar-track {
width: 100%;
height: 4px;
border-radius: 4px;
background: rgba(229, 237, 243, 0.15);
overflow: hidden;
}

.abt-body .metrics-strip .m-bar-fill {
height: 100%;
border-radius: 4px;
background: linear-gradient(90deg, #0B94FC, #E5EDF3);
animation: bar-grow 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes bar-grow {
from {
width: 0%;
}

to {
width: var(--bar-w);
}
}

.abt-body .side-accent {
display: flex;
flex-direction: column;
justify-content: flex-end;
gap: 16px;
}

.abt-body .side-quote {
padding: 24px;
border-radius: 13px;
border: 1px solid rgba(11, 148, 252, 0.2);
border-left: 4px solid #0B94FC;
background: rgba(229, 237, 243, 0.4);
transition: box-shadow 0.35s ease-in-out;
}

.abt-body .side-quote:hover {
box-shadow: 1px 6px 20px -1px rgba(11, 148, 252, 0.09);
}

.abt-body .side-quote p {
font-size: 16px;
line-height: 1.65;
letter-spacing: 0.01em;
color: #0B171E;
margin: 0 0 8px;
}

.abt-body .side-quote .q-author {
font-size: 15px;
line-height: 1.4;
letter-spacing: 0.02em;
color: rgba(11, 23, 30, 0.55);
}

.abt-body .cta-strip {
margin-top: 40px;
padding: 40px;
border-radius: 22px;
background: linear-gradient(112deg, #E5EDF3 0%, rgba(11, 148, 252, 0.08) 100%);
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
gap: 40px;
box-shadow: 1px 3px 2px -1px rgba(11, 23, 30, 0.05);
}

.abt-body .cta-strip h3 {
font-size: 31px;
line-height: 1.4;
letter-spacing: 0.01em;
color: #0B171E;
margin: 0;
}

.abt-body .cta-strip p {
font-size: 16px;
line-height: 1.65;
letter-spacing: 0.01em;
color: rgba(11, 23, 30, 0.7);
margin: 8px 0 0;
}

.abt-body .cta-btn {
display: inline-block;
font-size: 16px;
line-height: 1.4;
letter-spacing: 0.01em;
color: #0B94FC;
border: 2px solid #0B94FC;
border-radius: 13px;
padding: 16px 40px;
background: transparent;
text-decoration: none;
white-space: nowrap;
position: relative;
overflow: hidden;
transition: color 0.32s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 0;
}

.abt-body .cta-btn::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 0%;
background: #0B94FC;
border-radius: 11px;
transition: height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
z-index: -1;
}

.abt-body .cta-btn:hover {
color: #ffffff;
}

.abt-body .cta-btn:hover::after {
height: 100%;
}

.abt-body .cta-btn:focus-visible {
outline: 2px solid #0B94FC;
outline-offset: 3px;
}

@media (max-width: 1024px) {
.abt-title {
grid-template-columns: 1fr;
padding: 40px 24px 0;
}

.abt-title .img-zone {
padding: 0;
}

.abt-title .txt-zone {
padding: 24px 0 40px;
}

.abt-title .txt-zone h1 {
font-size: 31px;
}

.abt-body .body-grid {
grid-template-columns: 1fr 1fr;
}

.abt-body .numbers-col {
grid-column: 1 / -1;
flex-direction: row;
flex-wrap: wrap;
}

.abt-body .num-pair {
flex: 1 1 180px;
}

.abt-body .side-accent {
grid-column: 1 / -1;
}
}

@media (max-width: 640px) {
.abt-title {
padding: 24px 16px 0;
}

.abt-title .txt-zone h1 {
font-size: 31px;
}

.abt-body {
padding: 40px 16px;
}

.abt-body .body-grid {
grid-template-columns: 1fr;
}

.abt-body .cta-strip {
flex-direction: column;
align-items: flex-start;
padding: 24px;
}

.abt-body .num-pair {
flex-direction: column;
align-items: flex-start;
}
}

.opn {
max-width: 1440px;
margin: 0 auto;
overflow-x: clip;
}

.opn .ttl-blk {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 40px;
padding: 40px 80px 80px 80px;
background-color: #fff;
position: relative;
}

.opn .ttl-blk::before {
content: '';
position: absolute;
top: 16px;
left: 16px;
bottom: 40px;
width: 3px;
background: linear-gradient(180deg, #0B94FC 0%, #0B171E 100%);
border-radius: 4px;
}

.opn .ttl-img-col {
position: relative;
overflow: hidden;
border-radius: 13px;
}

.opn .ttl-img-col img {
width: 100%;
height: 480px;
object-fit: cover;
border-radius: 13px;
display: block;
filter: saturate(0.7) brightness(0.92) hue-rotate(0deg) contrast(1.05);
transform: scale(0.97);
animation: imgload 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes imgload {
to {
transform: scale(1);
}
}

.opn .ttl-text-col {
display: flex;
flex-direction: column;
justify-content: flex-end;
gap: 24px;
padding-left: 24px;
}

.opn .ttl-label {
font-size: 15px;
line-height: 1.4;
letter-spacing: 0.02em;
color: #0B94FC;
text-transform: uppercase;
}

.opn .ttl-h1 {
font-size: 58px;
line-height: 1.15;
letter-spacing: 0.01em;
margin: 0;
background: linear-gradient(120deg, #0B94FC 0%, #0B171E 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}

.opn .ttl-sub {
font-size: 16px;
line-height: 1.65;
letter-spacing: 0.01em;
color: #0B171E;
max-width: 520px;
}

.opn .ttl-sub span {
color: #0B94FC;
}

.opn .ttl-cta {
display: inline-block;
padding: 16px 40px;
font-size: 15px;
letter-spacing: 0.02em;
border: 2px solid #0B94FC;
border-radius: 4px;
color: #0B94FC;
background: transparent;
cursor: pointer;
position: relative;
overflow: hidden;
text-decoration: none;
align-self: flex-start;
transition: color 0.25s ease-in-out;
}

.opn .ttl-cta::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 0;
background: #0B94FC;
transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 0;
}

.opn .ttl-cta:hover::after {
height: 100%;
}

.opn .ttl-cta:hover {
color: #fff;
}

.opn .ttl-cta-text {
position: relative;
z-index: 1;
}

.opn .rel-blk {
background-color: #E5EDF3;
padding: 80px 80px 40px 80px;
position: relative;
}

.opn .rel-blk::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: url('./product_gallery/my-team-revised-latest.jpg');
background-size: cover;
background-position: center;
opacity: 0.04;
pointer-events: none;
}

.opn .rel-grid {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 40px;
align-items: start;
position: relative;
}

.opn .rel-text-area {
display: flex;
flex-direction: column;
gap: 24px;
}

.opn .rel-h2 {
font-size: 31px;
line-height: 1.4;
letter-spacing: 0.01em;
margin: 0;
background: linear-gradient(120deg, #0B94FC 0%, #0B171E 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}

.opn .rel-para {
font-size: 15px;
line-height: 1.65;
letter-spacing: 0.01em;
color: #0B171E;
}

.opn .rel-para .num {
color: #0B94FC;
font-size: 15px;
}

.opn .rel-img-wrap {
border-radius: 13px;
overflow: hidden;
position: relative;
}

.opn .rel-img-wrap img {
width: 100%;
height: 340px;
object-fit: cover;
border-radius: 13px;
display: block;
transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.opn .rel-img-wrap:hover img {
transform: scale(1.04);
}

.opn .metrics-dash {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
margin-top: 40px;
position: relative;
}

.opn .metric-item {
background: #fff;
border-radius: 13px;
padding: 24px 16px;
box-shadow: 1px 6px 20px -1px rgba(11, 23, 30, 0.09);
border-top: 3px solid #0B94FC;
display: flex;
flex-direction: column;
gap: 8px;
}

.opn .metric-val {
font-size: 31px;
line-height: 1.15;
letter-spacing: 0.01em;
color: #0B94FC;
}

.opn .metric-desc {
font-size: 15px;
line-height: 1.4;
color: #0B171E;
letter-spacing: 0.01em;
}

.opn .example-blk {
background-color: #0B171E;
padding: 80px;
position: relative;
}

.opn .example-blk::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #0B94FC 0%, transparent 100%);
}

.opn .ex-inner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: start;
}

.opn .ex-text {
display: flex;
flex-direction: column;
gap: 24px;
}

.opn .ex-h2 {
font-size: 31px;
line-height: 1.4;
letter-spacing: 0.01em;
margin: 0;
background: linear-gradient(120deg, #0B94FC 0%, #E5EDF3 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}

.opn .ex-para {
font-size: 15px;
line-height: 1.65;
letter-spacing: 0.01em;
color: #E5EDF3;
}

.opn .ex-para .num {
color: #0B94FC;
}

.opn .ex-accent {
color: #0B94FC;
}

.opn .ex-imgs {
display: flex;
flex-direction: column;
gap: 16px;
}

.opn .ex-img-wrap {
border-radius: 13px;
overflow: hidden;
position: relative;
}

.opn .ex-img-wrap img {
width: 100%;
height: 220px;
object-fit: cover;
border-radius: 13px;
display: block;
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease-in-out;
}

.opn .ex-img-wrap:hover img {
transform: scale(1.05);
filter: brightness(1.08);
}

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

.opn .ex-list li {
font-size: 15px;
line-height: 1.65;
color: #E5EDF3;
letter-spacing: 0.01em;
padding-left: 16px;
position: relative;
}

.opn .ex-list li::before {
content: '';
position: absolute;
left: 0;
top: 10px;
width: 6px;
height: 6px;
background: #0B94FC;
border-radius: 50%;
}

.opn .diff-blk {
background-color: #fff;
padding: 80px;
position: relative;
}

.opn .diff-blk::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: url('./product_gallery/btn-11.jpg');
background-size: cover;
background-position: center;
opacity: 0.03;
pointer-events: none;
}

.opn .diff-top {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 40px;
align-items: start;
position: relative;
margin-bottom: 40px;
}

.opn .diff-h2 {
font-size: 31px;
line-height: 1.4;
letter-spacing: 0.01em;
margin: 0;
background: linear-gradient(120deg, #0B94FC 0%, #0B171E 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}

.opn .diff-right {
display: flex;
flex-direction: column;
gap: 24px;
}

.opn .diff-para {
font-size: 15px;
line-height: 1.65;
letter-spacing: 0.01em;
color: #0B171E;
}

.opn .diff-para .num {
color: #0B94FC;
}

.opn .diff-para a {
color: #0B94FC;
text-decoration: underline dotted;
text-underline-offset: 3px;
transition: opacity 0.2s ease-in-out;
}

.opn .diff-para a:hover {
opacity: 0.75;
}

.opn .diff-cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
position: relative;
}

.opn .diff-card {
border-radius: 22px;
padding: 24px;
background: #E5EDF3;
box-shadow: 1px 3px 2px -1px rgba(11, 148, 252, 0.05);
border-left: 4px solid #0B94FC;
border-bottom: 1px solid rgba(11, 148, 252, 0.15);
display: flex;
flex-direction: column;
gap: 16px;
transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.opn .diff-card:hover {
box-shadow: 1px 10px 52px -1px rgba(11, 148, 252, 0.10);
transform: translateY(-4px);
}

.opn .diff-card-h {
font-size: 16px;
line-height: 1.4;
letter-spacing: 0.01em;
color: #0B171E;
margin: 0;
}

.opn .diff-card-p {
font-size: 15px;
line-height: 1.65;
letter-spacing: 0.01em;
color: #0B171E;
margin: 0;
}

.opn .diff-imgs-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
margin-top: 40px;
position: relative;
}

.opn .diff-img-wrap {
border-radius: 13px;
overflow: hidden;
}

.opn .diff-img-wrap img {
width: 100%;
height: 260px;
object-fit: cover;
border-radius: 13px;
display: block;
transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.opn .diff-img-wrap:hover img {
transform: scale(1.04);
}

.opn .shake-el {
animation: gentleshake 4s 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
display: inline-block;
}

@keyframes gentleshake {

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

90% {
transform: translateX(-3px);
}

93% {
transform: translateX(3px);
}

96% {
transform: translateX(-2px);
}

98% {
transform: translateX(2px);
}
}

@media (max-width: 1024px) {
.opn .ttl-blk {
grid-template-columns: 1fr;
padding: 40px 40px 80px 40px;
}

.opn .ttl-img-col img {
height: 320px;
}

.opn .ttl-h1 {
font-size: 31px;
}

.opn .rel-grid {
grid-template-columns: 1fr;
}

.opn .rel-blk {
padding: 40px 40px 40px 40px;
}

.opn .metrics-dash {
grid-template-columns: repeat(3, 1fr);
}

.opn .example-blk {
padding: 40px;
}

.opn .ex-inner {
grid-template-columns: 1fr;
}

.opn .diff-blk {
padding: 40px;
}

.opn .diff-top {
grid-template-columns: 1fr;
}

.opn .diff-cards {
grid-template-columns: 1fr 1fr;
}

.opn .diff-imgs-row {
grid-template-columns: 1fr;
}
}

@media (max-width: 640px) {
.opn .ttl-blk {
padding: 24px 16px 40px 16px;
}

.opn .rel-blk {
padding: 40px 16px;
}

.opn .metrics-dash {
grid-template-columns: 1fr 1fr;
}

.opn .example-blk {
padding: 40px 16px;
}

.opn .diff-blk {
padding: 40px 16px;
}

.opn .diff-cards {
grid-template-columns: 1fr;
}
}

.cu-pg {
background-color: #ffffff;
overflow-x: clip;
}

.cu-pg .reach-strip {
background: linear-gradient(112deg, #0B171E 0%, #0d2233 60%, #0B94FC 100%);
padding: 80px 24px;
}

.cu-pg .reach-strip .strip-inner {
max-width: 1440px;
margin: 0 auto;
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 80px;
}

.cu-pg .reach-strip .strip-left {
flex: 0 0 420px;
display: flex;
flex-direction: column;
gap: 40px;
}

.cu-pg .reach-strip .abbr-anchor {
font-size: 58px;
line-height: 1.15;
letter-spacing: 0.02em;
font-weight: 900;
color: #0B94FC;
opacity: 0.13;
pointer-events: none;
user-select: none;
display: block;
margin-bottom: -40px;
}

.cu-pg .reach-strip .strip-heading {
font-size: 58px;
line-height: 1.15;
letter-spacing: 0.01em;
font-weight: 800;
background: linear-gradient(112deg, #E5EDF3 0%, #0B94FC 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin: 0;
}

.cu-pg .reach-strip .strip-heading .punct {
color: #0B94FC;
-webkit-text-fill-color: #0B94FC;
}

.cu-pg .reach-strip .strip-desc {
font-size: 16px;
line-height: 1.65;
letter-spacing: 0.01em;
color: #c8d8e6;
margin: 0;
}

.cu-pg .reach-strip .contact-cards {
display: flex;
flex-direction: column;
gap: 16px;
}

.cu-pg .reach-strip .c-card {
background: rgba(11, 148, 252, 0.08);
border: 1px solid rgba(11, 148, 252, 0.22);
border-left: 4px solid #0B94FC;
border-radius: 13px;
padding: 16px 24px;
display: flex;
flex-direction: column;
gap: 4px;
transition: background 0.25s ease-in-out, border-color 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.cu-pg .reach-strip .c-card:hover {
background: rgba(11, 148, 252, 0.15);
border-color: rgba(11, 148, 252, 0.5);
}

.cu-pg .reach-strip .c-card .c-label {
font-size: 15px;
line-height: 1.4;
letter-spacing: 0.02em;
color: #0B94FC;
font-weight: 700;
text-transform: uppercase;
}

.cu-pg .reach-strip .c-card .c-val {
font-size: 16px;
line-height: 1.65;
letter-spacing: 0.01em;
color: #E5EDF3;
text-decoration: none;
transition: color 0.2s ease-in-out;
}

.cu-pg .reach-strip .c-card .c-val:hover {
color: #0B94FC;
}

.cu-pg .reach-strip .strip-right {
flex: 1 1 0;
display: flex;
flex-direction: column;
gap: 24px;
}

.cu-pg .reach-strip .img-wrap {
border-radius: 22px;
overflow: hidden;
width: 100%;
height: 260px;
box-shadow: 1px 10px 52px -1px rgba(11, 23, 30, 0.10);
position: relative;
}

.cu-pg .reach-strip .img-wrap img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
filter: saturate(0.55) sepia(0.12);
transition: filter 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.cu-pg .reach-strip .img-wrap:hover img {
filter: saturate(1) sepia(0);
}

.cu-pg .reach-strip .img-wrap .film-overlay {
position: absolute;
inset: 0;
background: linear-gradient(160deg, rgba(11, 23, 30, 0.18) 0%, rgba(11, 148, 252, 0.07) 100%);
border-radius: 22px;
pointer-events: none;
}

.cu-pg .reach-strip .float-badge {
display: flex;
flex-direction: row;
align-items: center;
gap: 16px;
background: rgba(229, 237, 243, 0.06);
border: 1px solid rgba(229, 237, 243, 0.14);
border-radius: 13px;
padding: 16px 24px;
}

.cu-pg .reach-strip .float-badge .badge-icon {
width: 40px;
height: 40px;
border-radius: 13px;
background: rgba(11, 148, 252, 0.2);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
animation: icon-float 3.2s ease-in-out infinite;
}

@keyframes icon-float {

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

50% {
transform: translateY(-5px);
}
}

.cu-pg .reach-strip .float-badge .badge-icon svg {
width: 20px;
height: 20px;
fill: #0B94FC;
}

.cu-pg .reach-strip .float-badge .badge-txt {
font-size: 15px;
line-height: 1.4;
letter-spacing: 0.01em;
color: #c8d8e6;
}

.cu-pg .form-band {
background: #E5EDF3;
padding: 80px 24px;
}

.cu-pg .form-band .band-inner {
max-width: 1440px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 2fr;
gap: 80px;
align-items: start;
}

.cu-pg .form-band .side-meta {
display: flex;
flex-direction: column;
gap: 24px;
}

.cu-pg .form-band .side-meta .meta-num {
font-size: 58px;
line-height: 1.15;
letter-spacing: 0.02em;
font-weight: 900;
color: #0B94FC;
opacity: 0.18;
pointer-events: none;
user-select: none;
}

.cu-pg .form-band .side-meta .meta-heading {
font-size: 31px;
line-height: 1.4;
letter-spacing: 0.01em;
font-weight: 800;
background: linear-gradient(112deg, #0B94FC 0%, #0B171E 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin: 0;
}

.cu-pg .form-band .side-meta .meta-para {
font-size: 16px;
line-height: 1.65;
letter-spacing: 0.01em;
color: #0B171E;
margin: 0;
}

.cu-pg .form-band .side-meta .meta-para .accent-phrase {
color: #0B94FC;
}

.cu-pg .form-band .side-meta .topic-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 8px;
}

.cu-pg .form-band .side-meta .topic-list li {
font-size: 15px;
line-height: 1.4;
letter-spacing: 0.01em;
color: #0B171E;
padding-left: 16px;
position: relative;
}

.cu-pg .form-band .side-meta .topic-list li::before {
content: '';
position: absolute;
left: 0;
top: 8px;
width: 6px;
height: 6px;
border-radius: 50%;
background: #0B94FC;
}

.cu-pg .form-band .form-area {
background: #ffffff;
border-radius: 22px;
padding: 40px;
box-shadow: 1px 6px 20px -1px rgba(11, 23, 30, 0.09);
}

.cu-pg .form-band .form-area .form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
margin-bottom: 16px;
}

.cu-pg .form-band .form-area .field-grp {
display: flex;
flex-direction: column;
gap: 8px;
margin-bottom: 16px;
}

.cu-pg .form-band .form-area .field-grp.full {
grid-column: 1 / -1;
}

.cu-pg .form-band .form-area label {
font-size: 15px;
line-height: 1.4;
letter-spacing: 0.02em;
color: #0B171E;
font-weight: 600;
}

.cu-pg .form-band .form-area .req-star {
color: #0B94FC;
}

.cu-pg .form-band .form-area input[type="text"],
.cu-pg .form-band .form-area input[type="email"],
.cu-pg .form-band .form-area input[type="tel"],
.cu-pg .form-band .form-area textarea {
width: 100%;
padding: 16px;
border: 1.5px solid #c8d8e6;
border-radius: 13px;
font-size: 16px;
line-height: 1.4;
letter-spacing: 0.01em;
color: #0B171E;
background: #ffffff;
outline: none;
transition: border-color 0.25s ease-in-out, box-shadow 0.38s cubic-bezier(0.4, 0, 0.2, 1);
box-sizing: border-box;
}

.cu-pg .form-band .form-area input::placeholder,
.cu-pg .form-band .form-area textarea::placeholder {
color: #8aabb8;
}

.cu-pg .form-band .form-area input:focus,
.cu-pg .form-band .form-area textarea:focus {
border-color: #0B94FC;
box-shadow: 0 0 0 3px rgba(11, 148, 252, 0.12), inset 0 1px 4px rgba(11, 148, 252, 0.07);
}

.cu-pg .form-band .form-area textarea {
resize: vertical;
min-height: 100px;
}

.cu-pg .form-band .form-area .checks-heading {
font-size: 15px;
line-height: 1.4;
letter-spacing: 0.02em;
color: #0B171E;
font-weight: 600;
margin-bottom: 16px;
display: block;
}

.cu-pg .form-band .form-area .checks-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px 16px;
margin-bottom: 24px;
}

.cu-pg .form-band .form-area .chk-item {
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
cursor: pointer;
}

.cu-pg .form-band .form-area .chk-item input[type="checkbox"] {
width: 18px;
height: 18px;
border-radius: 4px;
border: 1.5px solid #c8d8e6;
appearance: none;
-webkit-appearance: none;
background: #ffffff;
cursor: pointer;
flex-shrink: 0;
transition: background 0.2s ease-in-out, border-color 0.2s ease-in-out;
position: relative;
}

.cu-pg .form-band .form-area .chk-item input[type="checkbox"]:checked {
background: #0B94FC;
border-color: #0B94FC;
}

.cu-pg .form-band .form-area .chk-item input[type="checkbox"]:checked::after {
content: '';
position: absolute;
left: 4px;
top: 1px;
width: 6px;
height: 10px;
border: 2px solid #ffffff;
border-top: none;
border-left: none;
transform: rotate(45deg);
}

.cu-pg .form-band .form-area .chk-item .chk-label {
font-size: 15px;
line-height: 1.4;
letter-spacing: 0.01em;
color: #0B171E;
}

.cu-pg .form-band .form-area .privacy-row {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 8px;
margin-bottom: 24px;
padding: 16px;
background: #f4f8fb;
border-radius: 13px;
border: 1px solid #d4e4ef;
}

.cu-pg .form-band .form-area .privacy-row input[type="checkbox"] {
width: 18px;
height: 18px;
border-radius: 4px;
border: 1.5px solid #c8d8e6;
appearance: none;
-webkit-appearance: none;
background: #ffffff;
cursor: pointer;
flex-shrink: 0;
margin-top: 2px;
transition: background 0.2s ease-in-out, border-color 0.2s ease-in-out;
position: relative;
}

.cu-pg .form-band .form-area .privacy-row input[type="checkbox"]:checked {
background: #0B94FC;
border-color: #0B94FC;
}

.cu-pg .form-band .form-area .privacy-row input[type="checkbox"]:checked::after {
content: '';
position: absolute;
left: 4px;
top: 1px;
width: 6px;
height: 10px;
border: 2px solid #ffffff;
border-top: none;
border-left: none;
transform: rotate(45deg);
}

.cu-pg .form-band .form-area .privacy-txt {
font-size: 15px;
line-height: 1.65;
letter-spacing: 0.01em;
color: #0B171E;
}

.cu-pg .form-band .form-area .privacy-txt a {
color: #0B94FC;
text-decoration: underline;
text-decoration-style: dotted;
text-underline-offset: 3px;
transition: color 0.2s ease-in-out;
}

.cu-pg .form-band .form-area .privacy-txt a:hover {
color: #0B171E;
}

.cu-pg .form-band .form-area .submit-btn {
display: inline-block;
padding: 16px 40px;
font-size: 16px;
line-height: 1.4;
letter-spacing: 0.02em;
font-weight: 700;
color: #0B94FC;
background: transparent;
border: 2px solid #0B94FC;
border-radius: 13px;
cursor: pointer;
position: relative;
overflow: hidden;
transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cu-pg .form-band .form-area .submit-btn::before {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 0%;
background: #0B94FC;
border-radius: 11px;
transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 0;
}

.cu-pg .form-band .form-area .submit-btn:hover::before {
height: 100%;
}

.cu-pg .form-band .form-area .submit-btn:hover {
color: #ffffff;
border-color: #0B94FC;
}

.cu-pg .form-band .form-area .submit-btn span {
position: relative;
z-index: 1;
}

.cu-pg .form-band .form-area .submit-btn:focus {
outline: 2px solid #0B94FC;
outline-offset: 3px;
}

@media (max-width: 1024px) {
.cu-pg .reach-strip .strip-inner {
flex-direction: column;
gap: 40px;
}

.cu-pg .reach-strip .strip-left {
flex: none;
width: 100%;
}

.cu-pg .form-band .band-inner {
grid-template-columns: 1fr;
gap: 40px;
}
}

@media (max-width: 640px) {
.cu-pg .reach-strip {
padding: 40px 16px;
}

.cu-pg .reach-strip .strip-heading {
font-size: 31px;
}

.cu-pg .form-band {
padding: 40px 16px;
}

.cu-pg .form-band .form-area {
padding: 24px 16px;
}

.cu-pg .form-band .form-area .form-row {
grid-template-columns: 1fr;
}

.cu-pg .form-band .form-area .checks-grid {
grid-template-columns: 1fr;
}

.cu-pg .reach-strip .abbr-anchor {
font-size: 31px;
}
}

.srvs-pg {
background: #ffffff;
overflow-x: clip;
}

.srvs-pg .max-w {
max-width: 1440px;
margin-left: auto;
margin-right: auto;
padding-left: 40px;
padding-right: 40px;
}

.srvs-pg .zigzag-divider {
width: 100%;
display: block;
line-height: 0;
}

.srvs-pg .pg-top {
position: relative;
background: #0B171E;
padding-top: 80px;
padding-bottom: 80px;
text-align: center;
}

.srvs-pg .pg-top-img-wrap {
width: 100%;
max-width: 860px;
margin: 0 auto 40px;
border-radius: 22px;
overflow: hidden;
position: relative;
}

.srvs-pg .pg-top-img-wrap img {
width: 100%;
height: 420px;
object-fit: cover;
display: block;
border-radius: 22px;
}

.srvs-pg .pg-top-img-wrap::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(11, 23, 30, 0.18) 0%, rgba(11, 23, 30, 0.72) 100%);
border-radius: 22px;
pointer-events: none;
}

.srvs-pg .pg-top-label {
font-size: 15px;
letter-spacing: 0.12em;
color: #0B94FC;
text-transform: uppercase;
margin-bottom: 16px;
display: block;
}

.srvs-pg .pg-top-h1 {
font-size: 58px;
line-height: 1.15;
letter-spacing: 0.01em;
color: #E5EDF3;
margin: 0 auto 24px;
max-width: 780px;
background: linear-gradient(112deg, #0B94FC 0%, #E5EDF3 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.srvs-pg .pg-top-sub {
font-size: 16px;
line-height: 1.65;
color: #a8bcc8;
max-width: 560px;
margin: 0 auto;
letter-spacing: 0.01em;
}

.srvs-pg .svg-zz-dark {
background: #0B171E;
}

.srvs-pg .svg-zz-light {
background: #ffffff;
}

.srvs-pg .card-grid-area {
padding-top: 80px;
padding-bottom: 80px;
background: #ffffff;
}

.srvs-pg .area-eyebrow {
font-size: 15px;
letter-spacing: 0.1em;
text-transform: uppercase;
color: #0B94FC;
margin-bottom: 8px;
display: block;
}

.srvs-pg .area-heading {
font-size: 31px;
line-height: 1.4;
letter-spacing: 0.01em;
color: #0B171E;
margin-bottom: 40px;
max-width: 540px;
}

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

.srvs-pg .svc-card {
background: #ffffff;
border-radius: 13px;
box-shadow: 1px 6px 20px -1px rgba(11, 148, 252, 0.09);
display: flex;
flex-direction: column;
overflow: hidden;
transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.38s cubic-bezier(0.4, 0, 0.2, 1);
border-top: 3px solid #E5EDF3;
}

.srvs-pg .svc-card:hover {
transform: translateY(-6px);
box-shadow: 1px 10px 52px -1px rgba(11, 148, 252, 0.10);
}

.srvs-pg .svc-card-img-wrap {
width: 100%;
height: 200px;
overflow: hidden;
position: relative;
}

.srvs-pg .svc-card-img-wrap img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.srvs-pg .svc-card:hover .svc-card-img-wrap img {
transform: scale(1.04);
}

.srvs-pg .svc-card-body {
padding: 24px;
display: flex;
flex-direction: column;
flex: 1;
gap: 16px;
}

.srvs-pg .svc-card-title {
font-size: 16px;
line-height: 1.4;
letter-spacing: 0.01em;
color: #0B171E;
font-weight: 700;
margin: 0;
background: linear-gradient(112deg, #0B94FC 0%, #0B171E 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.srvs-pg .svc-card-desc {
font-size: 15px;
line-height: 1.65;
letter-spacing: 0.01em;
color: #3a5060;
margin: 0;
flex: 1;
}

.srvs-pg .svc-card-meta {
display: flex;
flex-direction: row;
gap: 16px;
align-items: center;
flex-wrap: wrap;
}

.srvs-pg .svc-meta-price {
font-size: 16px;
font-weight: 700;
color: #0B94FC;
letter-spacing: 0.01em;
}

.srvs-pg .svc-meta-dur {
font-size: 15px;
color: #6a8090;
letter-spacing: 0.01em;
padding-left: 16px;
border-left: 2px solid #E5EDF3;
}

.srvs-pg .svc-card-btn {
display: inline-block;
padding: 8px 24px;
border-radius: 4px;
border: 2px solid #0B94FC;
color: #0B94FC;
font-size: 15px;
letter-spacing: 0.02em;
text-decoration: none;
background: transparent;
position: relative;
overflow: hidden;
transition: color 0.28s ease-in-out;
align-self: flex-start;
}

.srvs-pg .svc-card-btn::before {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 0;
background: #0B94FC;
transition: height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 0;
}

.srvs-pg .svc-card-btn:hover::before {
height: 100%;
}

.srvs-pg .svc-card-btn:hover {
color: #ffffff;
}

.srvs-pg .svc-card-btn span {
position: relative;
z-index: 1;
}

.srvs-pg .split-bg-area {
position: relative;
}

.srvs-pg .split-bg-top {
background: #E5EDF3;
padding-top: 80px;
padding-bottom: 0;
}

.srvs-pg .split-bg-bottom {
background: #0B171E;
padding-top: 0;
padding-bottom: 80px;
}

.srvs-pg .split-inner {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 40px;
align-items: start;
}

.srvs-pg .split-sidebar {
padding: 40px;
background: #0B94FC;
border-radius: 13px;
display: flex;
flex-direction: column;
gap: 16px;
box-shadow: 1px 10px 52px -1px rgba(11, 148, 252, 0.10);
position: relative;
top: 40px;
}

.srvs-pg .split-sidebar-label {
font-size: 15px;
letter-spacing: 0.1em;
text-transform: uppercase;
color: rgba(229, 237, 243, 0.75);
display: block;
}

.srvs-pg .split-sidebar-h {
font-size: 31px;
line-height: 1.4;
letter-spacing: 0.01em;
color: #ffffff;
margin: 0;
}

.srvs-pg .split-sidebar-p {
font-size: 15px;
line-height: 1.65;
color: rgba(229, 237, 243, 0.88);
margin: 0;
}

.srvs-pg .split-sidebar-stat {
margin-top: 8px;
padding-top: 16px;
border-top: 1px solid rgba(229, 237, 243, 0.25);
display: flex;
flex-direction: column;
gap: 8px;
}

.srvs-pg .split-stat-num {
font-size: 31px;
line-height: 1.15;
color: #ffffff;
font-weight: 700;
letter-spacing: 0.01em;
}

.srvs-pg .split-stat-desc {
font-size: 15px;
color: rgba(229, 237, 243, 0.75);
line-height: 1.4;
}

.srvs-pg .split-right {
display: flex;
flex-direction: column;
gap: 24px;
padding-top: 40px;
}

.srvs-pg .feature-stack {
display: flex;
flex-direction: column;
gap: 16px;
}

.srvs-pg .feat-row {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 16px;
padding: 24px;
background: rgba(229, 237, 243, 0.06);
border-radius: 13px;
border-left: 3px solid #0B94FC;
border-bottom: 1px solid rgba(229, 237, 243, 0.08);
transition: background 0.25s ease-in-out;
}

.srvs-pg .feat-row:hover {
background: rgba(11, 148, 252, 0.08);
}

.srvs-pg .feat-row.alt {
flex-direction: row-reverse;
border-left: none;
border-right: 3px solid #0B94FC;
}

.srvs-pg .feat-icon {
width: 40px;
height: 40px;
border-radius: 4px;
background: #0B94FC;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
}

.srvs-pg .feat-icon svg {
width: 20px;
height: 20px;
fill: none;
stroke: #ffffff;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
}

.srvs-pg .feat-text {
flex: 1;
}

.srvs-pg .feat-text-h {
font-size: 16px;
line-height: 1.4;
color: #E5EDF3;
font-weight: 700;
letter-spacing: 0.01em;
margin-bottom: 8px;
}

.srvs-pg .feat-text-p {
font-size: 15px;
line-height: 1.65;
color: #7a9bae;
margin: 0;
}

.srvs-pg .process-area {
background: #ffffff;
padding-top: 80px;
padding-bottom: 80px;
}

.srvs-pg .process-grid {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 40px;
align-items: center;
}

.srvs-pg .process-left {
display: flex;
flex-direction: column;
gap: 24px;
}

.srvs-pg .process-eyebrow {
font-size: 15px;
letter-spacing: 0.1em;
text-transform: uppercase;
color: #0B94FC;
display: block;
}

.srvs-pg .process-h {
font-size: 31px;
line-height: 1.4;
letter-spacing: 0.01em;
color: #0B171E;
margin: 0;
}

.srvs-pg .process-steps {
display: flex;
flex-direction: column;
gap: 16px;
}

.srvs-pg .proc-step {
display: flex;
flex-direction: row;
gap: 16px;
align-items: flex-start;
padding: 16px;
border-radius: 13px;
background: #f4f8fb;
transition: box-shadow 0.28s ease-in-out;
}

.srvs-pg .proc-step:hover {
box-shadow: 1px 6px 20px -1px rgba(11, 148, 252, 0.09);
}

.srvs-pg .proc-num {
font-size: 31px;
line-height: 1.15;
font-weight: 700;
color: #0B94FC;
min-width: 40px;
letter-spacing: 0.01em;
}

.srvs-pg .proc-detail {
flex: 1;
display: flex;
flex-direction: column;
gap: 8px;
}

.srvs-pg .proc-detail-h {
font-size: 16px;
line-height: 1.4;
color: #0B171E;
font-weight: 700;
letter-spacing: 0.01em;
}

.srvs-pg .proc-detail-p {
font-size: 15px;
line-height: 1.65;
color: #3a5060;
margin: 0;
}

.srvs-pg .process-right {
display: flex;
flex-direction: column;
gap: 16px;
}

.srvs-pg .process-img-wrap {
border-radius: 22px;
overflow: hidden;
box-shadow: 1px 10px 52px -1px rgba(11, 23, 30, 0.10);
}

.srvs-pg .process-img-wrap img {
width: 100%;
height: 340px;
object-fit: cover;
display: block;
}

.srvs-pg .process-caption {
font-size: 15px;
line-height: 1.65;
color: #6a8090;
letter-spacing: 0.01em;
padding: 16px;
border-radius: 4px;
background: #E5EDF3;
}

.srvs-pg .cta-strip {
background: #0B171E;
padding-top: 80px;
padding-bottom: 80px;
}

.srvs-pg .cta-inner {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
gap: 40px;
flex-wrap: wrap;
}

.srvs-pg .cta-text {
flex: 1;
min-width: 260px;
display: flex;
flex-direction: column;
gap: 16px;
}

.srvs-pg .cta-h {
font-size: 31px;
line-height: 1.4;
letter-spacing: 0.01em;
color: #E5EDF3;
margin: 0;
}

.srvs-pg .cta-p {
font-size: 15px;
line-height: 1.65;
color: #7a9bae;
margin: 0;
}

.srvs-pg .cta-actions {
display: flex;
flex-direction: column;
gap: 16px;
align-items: flex-end;
}

.srvs-pg .cta-link-main {
display: inline-block;
padding: 16px 40px;
border-radius: 4px;
border: 2px solid #0B94FC;
color: #0B94FC;
font-size: 16px;
letter-spacing: 0.02em;
text-decoration: none;
background: transparent;
position: relative;
overflow: hidden;
transition: color 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.srvs-pg .cta-link-main::before {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 0;
background: #0B94FC;
transition: height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 0;
}

.srvs-pg .cta-link-main:hover::before {
height: 100%;
}

.srvs-pg .cta-link-main:hover {
color: #ffffff;
}

.srvs-pg .cta-link-main span {
position: relative;
z-index: 1;
}

.srvs-pg .cta-contact-info {
display: flex;
flex-direction: column;
gap: 8px;
align-items: flex-end;
}

.srvs-pg .cta-contact-line {
font-size: 15px;
color: #7a9bae;
letter-spacing: 0.01em;
text-decoration: none;
transition: color 0.22s ease-in-out;
}

.srvs-pg .cta-contact-line:hover {
color: #0B94FC;
}

.srvs-pg .strip-reveal-area {
background: #E5EDF3;
padding-top: 80px;
padding-bottom: 80px;
}

.srvs-pg .strip-reveal-h {
font-size: 31px;
line-height: 1.4;
letter-spacing: 0.01em;
color: #0B171E;
margin-bottom: 40px;
}

.srvs-pg .strip-list {
display: flex;
flex-direction: column;
gap: 4px;
}

.srvs-pg .strip-item {
position: relative;
padding: 16px 24px;
border-radius: 4px;
background: #ffffff;
overflow: hidden;
cursor: default;
display: flex;
flex-direction: row;
align-items: center;
gap: 24px;
transition: box-shadow 0.28s ease-in-out;
}

.srvs-pg .strip-item:hover {
box-shadow: 1px 3px 2px -1px rgba(11, 148, 252, 0.05);
}

.srvs-pg .strip-item-num {
font-size: 31px;
font-weight: 700;
color: #E5EDF3;
min-width: 48px;
letter-spacing: 0.01em;
transition: color 0.28s ease-in-out;
}

.srvs-pg .strip-item:hover .strip-item-num {
color: #0B94FC;
}

.srvs-pg .strip-item-label {
font-size: 16px;
line-height: 1.4;
color: #0B171E;
font-weight: 700;
letter-spacing: 0.01em;
flex: 1;
}

.srvs-pg .strip-item-reveal {
font-size: 15px;
line-height: 1.65;
color: #3a5060;
max-width: 480px;
overflow: hidden;
max-height: 0;
opacity: 0;
transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease-in-out;
}

.srvs-pg .strip-item:hover .strip-item-reveal {
max-height: 120px;
opacity: 1;
}

.srvs-pg .strip-item-bar {
position: absolute;
left: 0;
top: 0;
width: 3px;
height: 100%;
background: #E5EDF3;
border-radius: 4px 0 0 4px;
transition: background 0.22s ease-in-out;
}

.srvs-pg .strip-item:hover .strip-item-bar {
background: #0B94FC;
}

@media (max-width: 1024px) {
.srvs-pg .svc-grid {
grid-template-columns: repeat(2, 1fr);
}

.srvs-pg .split-inner {
grid-template-columns: 1fr;
}

.srvs-pg .split-sidebar {
top: 0;
}

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

@media (max-width: 640px) {
.srvs-pg .max-w {
padding-left: 16px;
padding-right: 16px;
}

.srvs-pg .svc-grid {
grid-template-columns: 1fr;
}

.srvs-pg .pg-top-h1 {
font-size: 31px;
}

.srvs-pg .cta-inner {
flex-direction: column;
align-items: flex-start;
}

.srvs-pg .cta-actions {
align-items: flex-start;
}

.srvs-pg .strip-item {
flex-wrap: wrap;
}
}

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

.success-page .success-wrap {
max-width: 560px;
width: 100%;
text-align: center;
}

.success-page .icon-wrap {
width: 72px;
height: 72px;
margin: 0 auto 40px;
border-radius: 22px;
background: #E5EDF3;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
box-shadow: 1px 6px 20px -1px rgba(11, 148, 252, 0.09);
}

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

.success-page .success-heading {
font-size: 31px;
line-height: 1.15;
letter-spacing: 0.01em;
color: #0B171E;
margin-bottom: 16px;
background: linear-gradient(112deg, #0B94FC, #0B171E);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.success-page .success-text {
font-size: 16px;
line-height: 1.65;
letter-spacing: 0.01em;
color: #3a4f5c;
margin-bottom: 40px;
}

.success-page .divider {
width: 48px;
height: 3px;
background: #0B94FC;
border-radius: 4px;
margin: 0 auto 40px;
}

.success-page .return-btn {
display: inline-block;
padding: 16px 40px;
font-size: 15px;
letter-spacing: 0.02em;
line-height: 1.4;
color: #0B94FC;
background: transparent;
border: 2px solid #0B94FC;
border-radius: 13px;
text-decoration: none;
position: relative;
overflow: hidden;
transition: color 0.25s ease-in-out, border-color 0.38s cubic-bezier(0.4, 0, 0.2, 1);
cursor: pointer;
}

.success-page .return-btn::before {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 0;
background: #0B94FC;
transition: height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 0;
}

.success-page .return-btn:hover::before {
height: 100%;
}

.success-page .return-btn:hover {
color: #ffffff;
}

.success-page .return-btn span {
position: relative;
z-index: 1;
}

.success-page .return-btn:focus-visible {
outline: 2px solid #0B94FC;
outline-offset: 4px;
}

.success-page .meta-note {
margin-top: 24px;
font-size: 15px;
line-height: 1.65;
color: #7a9aad;
letter-spacing: 0.01em;
}

.success-page .meta-note a {
color: #0B94FC;
text-decoration-style: dotted;
text-underline-offset: 3px;
transition: opacity 0.18s ease-in-out;
}

.success-page .meta-note a:hover {
opacity: 0.75;
}