* {
box-sizing: border-box;
}

body {
margin: 0;
overscroll-behavior: contain;
overflow-x: hidden;
font-family: "Rubik", sans-serif;
}

.hdr-plate {
position: relative;
width: 100%;
background: rgba(255, 255, 255, 0.72);
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
border-bottom: 1.5px solid rgba(104, 31, 172, 0.13);
box-shadow: 2px 5px 20px 1px rgba(104, 31, 172, 0.10);
z-index: 100;
}

.hdr-inner {
max-width: 1280px;
margin: 0 auto;
padding: 24px 48px;
display: flex;
align-items: stretch;
gap: 48px;
}

.brand-pod {
flex-shrink: 0;
display: flex;
align-items: center;
}

.brand-link {
display: flex;
align-items: center;
gap: 16px;
text-decoration: none;
}

.logo-cell {
width: 88px;
height: 88px;
border-radius: 20px;
background: #ffffff;
border: 1.5px solid rgba(104, 31, 172, 0.18);
box-shadow: 2px 3px 3px 1px rgba(104, 31, 172, 0.08), 2px 5px 20px 1px rgba(189, 98, 208, 0.10);
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
flex-shrink: 0;
}

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

.brand-name-text {
font-size: 21px;
font-weight: 700;
line-height: 1.1;
color: #681FAC;
letter-spacing: 0.01em;
}

.brand-name-sub {
font-size: 16px;
font-weight: 300;
line-height: 1.5;
color: #5a4070;
margin-top: 4px;
display: block;
}

.nav-deck {
flex: 1;
display: flex;
align-items: center;
justify-content: flex-end;
}

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

.nav-list li {
display: block;
}

.nav-list a {
display: inline-block;
font-size: 16px;
font-weight: 600;
line-height: 1.5;
color: #3a1a5c;
text-decoration: none;
padding: 8px 16px;
border-radius: 10px;
border: 1.5px solid transparent;
transition: color 0.12s ease-out, background 0.10s ease-out, border-color 0.10s ease-out;
}

.nav-list a:hover {
color: #681FAC;
background: rgba(104, 31, 172, 0.07);
border-color: rgba(104, 31, 172, 0.18);
}

.nav-list a:focus-visible {
outline: 2px solid #681FAC;
outline-offset: 3px;
border-radius: 3px;
}

.nav-list .nav-active a {
color: #681FAC;
background: rgba(194, 172, 224, 0.22);
border-color: rgba(104, 31, 172, 0.22);
}

.hdr-accent-bar {
height: 3px;
background: linear-gradient(90deg, #681FAC 0%, #BD62D0 55%, #C2ACE0 100%);
width: 100%;
}

.ftr-plate {
background: #1b0d2e;
border-top: 2px solid #681FAC;
}

.ftr-inner {
max-width: 1280px;
margin: 0 auto;
padding: 48px 48px 0 48px;
}

.ftr-body-deck {
display: flex;
gap: 48px;
align-items: flex-start;
flex-wrap: wrap;
padding-bottom: 48px;
border-bottom: 1px solid rgba(194, 172, 224, 0.18);
}

.ftr-brand-pod {
flex: 0 0 auto;
display: flex;
flex-direction: column;
gap: 16px;
}

.ftr-brand-link {
display: flex;
align-items: center;
gap: 16px;
text-decoration: none;
}

.ftr-logo-cell {
width: 80px;
height: 80px;
border-radius: 10px;
background: #ffffff;
border: 1.5px solid rgba(194, 172, 224, 0.40);
box-shadow: 2px 3px 3px 1px rgba(189, 98, 208, 0.08), 2px 12px 36px 1px rgba(104, 31, 172, 0.13);
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
flex-shrink: 0;
}

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

.ftr-brand-label {
font-size: 21px;
font-weight: 700;
line-height: 1.1;
color: #ffffff;
}

.ftr-contact-pod {
flex: 1;
min-width: 220px;
display: flex;
flex-direction: column;
gap: 8px;
}

.ftr-contact-heading {
font-size: 16px;
font-weight: 600;
line-height: 1.5;
color: #C2ACE0;
text-transform: uppercase;
letter-spacing: 0.08em;
margin-bottom: 8px;
}

.ftr-contact-item {
font-size: 16px;
font-weight: 400;
line-height: 1.9;
color: rgba(255, 255, 255, 0.82);
}

.ftr-contact-item a {
color: #BD62D0;
text-decoration: none;
transition: color 0.09s ease-out;
}

.ftr-contact-item a:hover {
color: #C2ACE0;
}

.ftr-contact-item a:focus-visible {
outline: 2px solid #BD62D0;
outline-offset: 3px;
border-radius: 3px;
}

.ftr-links-pod {
flex: 0 0 auto;
display: flex;
flex-direction: column;
gap: 8px;
}

.ftr-links-heading {
font-size: 16px;
font-weight: 600;
line-height: 1.5;
color: #C2ACE0;
text-transform: uppercase;
letter-spacing: 0.08em;
margin-bottom: 8px;
}

.ftr-links-pod a {
display: block;
font-size: 16px;
font-weight: 400;
line-height: 1.9;
color: rgba(255, 255, 255, 0.72);
text-decoration: none;
transition: color 0.09s linear;
}

.ftr-links-pod a:hover {
color: #BD62D0;
}

.ftr-links-pod a:focus-visible {
outline: 2px solid #BD62D0;
outline-offset: 3px;
border-radius: 3px;
}

.ftr-bottom-row {
max-width: 1280px;
margin: 0 auto;
padding: 24px 48px;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 16px;
}

.ftr-copy {
font-size: 16px;
font-weight: 300;
line-height: 1.5;
color: rgba(255, 255, 255, 0.45);
}

.ftr-legal-links {
display: flex;
gap: 24px;
flex-wrap: wrap;
}

.ftr-legal-links a {
font-size: 16px;
font-weight: 400;
line-height: 1.5;
color: rgba(194, 172, 224, 0.65);
text-decoration: none;
transition: color 0.08s ease-out;
}

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

.ftr-legal-links a:focus-visible {
outline: 2px solid #BD62D0;
outline-offset: 3px;
border-radius: 3px;
}

.consent-toast {
display: none;
position: fixed;
bottom: 24px;
left: 0;
right: 0;
margin: 0 auto;
width: 560px;
max-width: calc(100vw - 48px);
background: #ffffff;
border: 1.5px solid rgba(104, 31, 172, 0.18);
border-radius: 10px;
box-shadow: 2px 12px 36px 1px rgba(104, 31, 172, 0.13);
z-index: 1000;
padding: 24px;
}

.consent-desc {
font-size: 16px;
font-weight: 400;
line-height: 1.9;
color: #2a1540;
margin-bottom: 16px;
}

.consent-desc a {
color: #681FAC;
text-decoration: underline;
}

.consent-desc a:focus-visible {
outline: 2px solid #681FAC;
outline-offset: 2px;
border-radius: 3px;
}

.consent-head {
font-size: 18px;
font-weight: 600;
line-height: 1.5;
color: #1b0d2e;
margin-bottom: 8px;
}

.consent-btns {
display: flex;
gap: 16px;
}

.consent-btn {
flex: 1;
padding: 8px 16px;
font-size: 16px;
font-weight: 600;
line-height: 1.5;
border-radius: 5px;
border: 2px solid #681FAC;
cursor: pointer;
min-height: 44px;
transition: background 0.10s ease-out, color 0.10s ease-out;
}

.consent-btn-accept {
background: #681FAC;
color: #ffffff;
}

.consent-btn-accept:hover {
background: #5a1892;
border-color: #5a1892;
}

.consent-btn-accept:focus-visible {
outline: 2px solid #681FAC;
outline-offset: 3px;
border-radius: 3px;
}

.consent-btn-decline {
background: #ffffff;
color: #681FAC;
}

.consent-btn-decline:hover {
background: rgba(104, 31, 172, 0.07);
}

.consent-btn-decline:focus-visible {
outline: 2px solid #681FAC;
outline-offset: 3px;
border-radius: 3px;
}

.pref-tab-trigger {
position: fixed;
left: 0;
top: 50%;
transform: translateY(-50%);
background: #681FAC;
color: #ffffff;
font-family: "Rubik", sans-serif;
font-size: 16px;
font-weight: 600;
line-height: 1.5;
border: none;
border-radius: 0 5px 5px 0;
padding: 16px 8px;
cursor: pointer;
z-index: 999;
writing-mode: vertical-rl;
text-orientation: mixed;
min-height: 44px;
min-width: 44px;
transition: background 0.12s ease-out;
}

.pref-tab-trigger:hover {
background: #5a1892;
}

.pref-tab-trigger:focus-visible {
outline: 2px solid #BD62D0;
outline-offset: 3px;
border-radius: 3px;
}

.pref-panel {
display: none;
position: fixed;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 320px;
max-width: calc(100vw - 48px);
background: #ffffff;
border: 1.5px solid rgba(104, 31, 172, 0.18);
border-radius: 0 10px 10px 0;
box-shadow: 2px 12px 36px 1px rgba(104, 31, 172, 0.13);
z-index: 998;
padding: 24px;
}

.pref-panel-head {
font-size: 18px;
font-weight: 600;
line-height: 1.5;
color: #1b0d2e;
margin-bottom: 16px;
}

.pref-panel-desc {
font-size: 16px;
font-weight: 400;
line-height: 1.9;
color: #3a1a5c;
margin-bottom: 16px;
}

.pref-close-btn {
width: 100%;
padding: 8px 16px;
font-size: 16px;
font-weight: 600;
line-height: 1.5;
border-radius: 5px;
border: 2px solid #681FAC;
background: #681FAC;
color: #ffffff;
cursor: pointer;
min-height: 44px;
transition: background 0.10s ease-out;
}

.pref-close-btn:hover {
background: #5a1892;
border-color: #5a1892;
}

.pref-close-btn:focus-visible {
outline: 2px solid #681FAC;
outline-offset: 3px;
border-radius: 3px;
}

@media (max-width: 768px) {
.hdr-inner {
padding: 16px 24px;
gap: 24px;
flex-wrap: wrap;
}

.nav-deck {
width: 100%;
justify-content: flex-start;
}

.nav-list {
justify-content: flex-start;
}

.ftr-inner {
padding: 48px 24px 0 24px;
}

.ftr-bottom-row {
padding: 24px;
}

.ftr-body-deck {
flex-direction: column;
gap: 24px;
}
}

@media (max-width: 480px) {
.hdr-inner {
padding: 16px;
}

.logo-cell {
width: 72px;
height: 72px;
}

.logo-cell img {
width: 56px;
height: 56px;
}

.nav-list a {
font-size: 16px;
padding: 8px 12px;
}
}

.legal-area-vgq {
max-width: 1280px;
margin: 0 auto;
padding: 96px 48px;
color: #2d1a4a;
line-height: 1.9;
font-size: 18px;
}

.legal-area-vgq h1 {
font-size: 52px;
line-height: 1.1;
color: #681FAC;
margin-bottom: 48px;
margin-top: 0;
letter-spacing: -0.01em;
padding-bottom: 24px;
border-bottom: 2px solid #C2ACE0;
border-left: 5px solid #681FAC;
border-radius: 3px;
padding-left: 24px;
}

.legal-area-vgq h2 {
font-size: 37px;
line-height: 1.1;
color: #681FAC;
margin-top: 96px;
margin-bottom: 24px;
padding-left: 16px;
border-left: 4px solid #BD62D0;
border-radius: 3px;
}

.legal-area-vgq h3 {
font-size: 21px;
line-height: 1.5;
color: #4a1878;
margin-top: 48px;
margin-bottom: 16px;
font-weight: 700;
}

.legal-area-vgq h4 {
font-size: 18px;
line-height: 1.5;
color: #4a1878;
margin-top: 24px;
margin-bottom: 8px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
}

.legal-area-vgq h5 {
font-size: 16px;
line-height: 1.5;
color: #681FAC;
margin-top: 24px;
margin-bottom: 8px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.06em;
}

.legal-area-vgq h6 {
font-size: 16px;
line-height: 1.5;
color: #7a3aac;
margin-top: 16px;
margin-bottom: 8px;
font-weight: 600;
}

.legal-area-vgq strong,
.legal-area-vgq b {
font-weight: 700;
color: #3d1266;
}

.legal-area-vgq a {
color: #681FAC;
text-decoration: underline;
text-decoration-color: #C2ACE0;
text-underline-offset: 3px;
transition: color 0.1s ease-out, text-decoration-color 0.12s ease-out;
}

.legal-area-vgq a:hover {
color: #BD62D0;
text-decoration-color: #BD62D0;
}

.legal-area-vgq a:visited {
color: #7a3aac;
}

.legal-area-vgq table {
width: 100%;
border-collapse: collapse;
margin-top: 24px;
margin-bottom: 48px;
font-size: 16px;
line-height: 1.5;
box-shadow: 2px 5px 20px 1px rgba(104, 31, 172, 0.10);
border-radius: 10px;
overflow: hidden;
}

.legal-area-vgq thead {
background-color: #681FAC;
color: #ffffff;
}

.legal-area-vgq thead th {
padding: 16px 24px;
font-size: 16px;
font-weight: 700;
text-align: left;
letter-spacing: 0.05em;
text-transform: uppercase;
border: none;
color: #ffffff;
}

.legal-area-vgq tbody tr {
border-bottom: 1px solid #e8dff5;
transition: background-color 0.08s linear;
}

.legal-area-vgq tbody tr:last-child {
border-bottom: none;
}

.legal-area-vgq tbody tr:nth-child(even) {
background-color: #f5f0fb;
}

.legal-area-vgq tbody tr:hover {
background-color: #ede4f8;
}

.legal-area-vgq td {
padding: 16px 24px;
font-size: 16px;
line-height: 1.5;
color: #2d1a4a;
vertical-align: top;
border: none;
}

.legal-area-vgq th {
padding: 16px 24px;
font-size: 16px;
line-height: 1.5;
vertical-align: top;
border: none;
}

.legal-area-vgq hr {
border: none;
border-top: 1px solid #C2ACE0;
margin-top: 48px;
margin-bottom: 48px;
opacity: 0.6;
}

.legal-area-vgq div {
margin-bottom: 16px;
}

@media (max-width: 900px) {
.legal-area-vgq {
padding: 48px 24px;
}

.legal-area-vgq h1 {
font-size: 37px;
padding-left: 16px;
}

.legal-area-vgq h2 {
font-size: 21px;
margin-top: 48px;
}

.legal-area-vgq table {
display: block;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
border-radius: 5px;
}
}

@media (max-width: 600px) {
.legal-area-vgq {
padding: 48px 16px;
}

.legal-area-vgq h1 {
font-size: 21px;
padding-left: 16px;
margin-bottom: 24px;
}

.legal-area-vgq h2 {
font-size: 18px;
margin-top: 48px;
}

.legal-area-vgq h3 {
font-size: 18px;
margin-top: 24px;
}

.legal-area-vgq thead th,
.legal-area-vgq td {
padding: 8px 16px;
}
}

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

.prog-det .breadcrumb-bar {
background: #f5f3fa;
padding: 16px 0;
border-bottom: 1px solid #e8e2f5;
}

.prog-det .breadcrumb-bar .bc-inner {
max-width: 1280px;
margin: 0 auto;
padding: 0 24px;
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
flex-wrap: wrap;
}

.prog-det .breadcrumb-bar a {
color: #681FAC;
font-size: 16px;
line-height: 1.5;
text-decoration: none;
transition: color 0.1s ease-out;
}

.prog-det .breadcrumb-bar a:hover {
color: #BD62D0;
}

.prog-det .breadcrumb-bar .bc-sep {
color: #C2ACE0;
font-size: 16px;
line-height: 1.5;
user-select: none;
}

.prog-det .breadcrumb-bar .bc-current {
color: #555;
font-size: 16px;
line-height: 1.5;
}

.prog-det .bento-hero {
max-width: 1280px;
margin: 48px auto;
padding: 0 24px;
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: auto auto;
gap: 16px;
}

.prog-det .bento-img-cell {
grid-column: 1;
grid-row: 1 / 3;
position: relative;
border-radius: 20px;
overflow: hidden;
box-shadow: 2px 5px 20px 1px rgba(104, 31, 172, 0.10);
}

.prog-det .bento-img-cell img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
min-height: 420px;
}

.prog-det .bento-img-tint {
position: absolute;
inset: 0;
background: rgba(104, 31, 172, 0.18);
border-radius: 20px;
pointer-events: none;
}

.prog-det .bento-img-deco {
position: absolute;
top: 24px;
left: 24px;
width: 80px;
height: 80px;
border: 2px solid rgba(194, 172, 224, 0.5);
border-radius: 20px;
pointer-events: none;
}

.prog-det .bento-text-top {
grid-column: 2;
grid-row: 1;
padding: 48px 48px 24px 48px;
display: flex;
flex-direction: column;
gap: 16px;
}

.prog-det .bento-text-bot {
grid-column: 2;
grid-row: 2;
padding: 0 48px 48px 48px;
display: flex;
flex-direction: column;
gap: 16px;
}

.prog-det .pill-label {
display: inline-flex;
align-items: center;
background: #f0e8f8;
color: #681FAC;
font-size: 16px;
line-height: 1.5;
padding: 8px 16px;
border-radius: 32px;
font-weight: 600;
letter-spacing: 0.04em;
text-transform: uppercase;
width: fit-content;
}

.prog-det .bento-h1 {
font-size: 52px;
line-height: 1.1;
font-weight: 900;
color: #1a0a2e;
letter-spacing: -0.02em;
margin: 0;
}

.prog-det .bento-sub {
font-size: 18px;
line-height: 1.5;
color: #4a3060;
margin: 0;
}

.prog-det .meta-row {
display: flex;
flex-direction: row;
gap: 24px;
flex-wrap: wrap;
align-items: center;
}

.prog-det .meta-chip {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 0;
}

.prog-det .meta-chip .chip-val {
font-size: 21px;
font-weight: 800;
color: #681FAC;
line-height: 1.1;
}

.prog-det .meta-chip .chip-lbl {
font-size: 16px;
color: #7a6a90;
line-height: 1.5;
}

.prog-det .seats-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: #fff3e0;
color: #b85c00;
font-size: 16px;
font-weight: 600;
padding: 8px 16px;
border-radius: 10px;
border: 1px solid #f5c07a;
}

.prog-det .seats-dot {
width: 8px;
height: 8px;
background: #e07800;
border-radius: 32px;
display: inline-block;
animation: breathe 2.4s ease-in-out infinite;
}

@keyframes breathe {

0%,
100% {
opacity: 1;
}

50% {
opacity: 0.35;
}
}

.prog-det .desc-strip {
background: linear-gradient(158deg, #681FAC 0%, #fff 100%);
padding: 96px 0 96px 0;
position: relative;
}

.prog-det .desc-strip::after {
content: "";
display: block;
position: absolute;
bottom: -28px;
left: 0;
width: 100%;
height: 56px;
background: #fff;
clip-path: polygon(0 56px, 100% 0, 100% 56px);
z-index: 1;
}

.prog-det .desc-inner {
max-width: 1280px;
margin: 0 auto;
padding: 0 24px;
display: grid;
grid-template-columns: 280px 1fr;
gap: 48px;
align-items: start;
}

.prog-det .desc-sidebar {
background: #3d0d6e;
border-radius: 20px;
padding: 48px 24px;
display: flex;
flex-direction: column;
gap: 24px;
box-shadow: 2px 12px 36px 1px rgba(104, 31, 172, 0.13);
position: sticky;
top: 24px;
}

.prog-det .desc-sidebar .price-big {
font-size: 52px;
font-weight: 900;
color: #fff;
line-height: 1.1;
letter-spacing: -0.02em;
}

.prog-det .desc-sidebar .price-note {
font-size: 16px;
color: #C2ACE0;
line-height: 1.5;
}

.prog-det .desc-sidebar .enroll-btn {
display: block;
background: #fff;
color: #681FAC;
font-size: 18px;
font-weight: 800;
text-align: center;
padding: 16px 24px;
border-radius: 10px;
border: none;
cursor: pointer;
text-decoration: none;
transition: background 0.12s ease-out, color 0.12s ease-out;
box-shadow: 2px 3px 3px 1px rgba(104, 31, 172, 0.08);
}

.prog-det .desc-sidebar .enroll-btn:hover {
background: #C2ACE0;
color: #3d0d6e;
}

.prog-det .desc-sidebar .enroll-btn:focus {
outline: 3px solid #C2ACE0;
outline-offset: 2px;
}

.prog-det .desc-sidebar .enroll-btn.success-state {
background: #d4f5e0;
color: #1a6b3a;
}

.prog-det .sidebar-divider {
height: 1px;
background: rgba(194, 172, 224, 0.25);
border: none;
}

.prog-det .sidebar-stat {
display: flex;
flex-direction: column;
gap: 0;
}

.prog-det .sidebar-stat .s-val {
font-size: 21px;
font-weight: 800;
color: #BD62D0;
line-height: 1.1;
}

.prog-det .sidebar-stat .s-lbl {
font-size: 16px;
color: #C2ACE0;
line-height: 1.5;
}

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

.prog-det .desc-body h2 {
font-size: 37px;
font-weight: 900;
color: #fff;
line-height: 1.1;
letter-spacing: -0.01em;
margin: 0;
}

.prog-det .desc-body h3 {
font-size: 21px;
font-weight: 800;
color: #f0e8f8;
line-height: 1.1;
margin: 0;
}

.prog-det .desc-body p {
font-size: 18px;
line-height: 1.9;
color: #f0e8f8;
margin: 0;
column-count: 2;
column-gap: 48px;
}

.prog-det .desc-body strong {
color: #C2ACE0;
font-weight: 700;
}

.prog-det .desc-body mark {
background: rgba(189, 98, 208, 0.25);
color: #fff;
border-radius: 3px;
padding: 0 4px;
}

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

.prog-det .desc-body ul li {
font-size: 18px;
line-height: 1.5;
color: #f0e8f8;
padding-left: 32px;
position: relative;
}

.prog-det .desc-body ul li::before {
content: "";
position: absolute;
left: 0;
top: 4px;
width: 18px;
height: 18px;
border: 2px solid #BD62D0;
border-radius: 5px;
background: rgba(189, 98, 208, 0.15);
}

.prog-det .desc-body ul li::after {
content: "";
position: absolute;
left: 5px;
top: 8px;
width: 8px;
height: 5px;
border-left: 2px solid #BD62D0;
border-bottom: 2px solid #BD62D0;
transform: rotate(-45deg);
}

.prog-det .desc-body blockquote {
border-left: none;
background: rgba(194, 172, 224, 0.12);
border-radius: 10px;
padding: 24px;
margin: 0;
}

.prog-det .desc-body blockquote p {
column-count: 1;
font-style: italic;
color: #e8d8f8;
}

.prog-det .desc-body figure {
margin: 0;
}

.prog-det .desc-body figcaption {
font-size: 16px;
color: #C2ACE0;
line-height: 1.5;
margin-top: 8px;
}

.prog-det .desc-body details {
background: rgba(104, 31, 172, 0.18);
border-radius: 10px;
padding: 16px 24px;
}

.prog-det .desc-body summary {
font-size: 18px;
font-weight: 700;
color: #C2ACE0;
cursor: pointer;
line-height: 1.5;
}

.prog-det .program-sec {
padding: 96px 0 96px 0;
background: #fff;
position: relative;
z-index: 2;
}

.prog-det .program-inner {
max-width: 1280px;
margin: 0 auto;
padding: 0 24px;
}

.prog-det .prog-head-row {
display: flex;
flex-direction: row;
align-items: flex-end;
justify-content: space-between;
gap: 24px;
margin-bottom: 48px;
}

.prog-det .prog-head-row h2 {
font-size: 37px;
font-weight: 900;
color: #1a0a2e;
line-height: 1.1;
letter-spacing: -0.01em;
margin: 0;
}

.prog-det .prog-head-row .prog-count {
font-size: 52px;
font-weight: 900;
color: #681FAC;
line-height: 1.1;
}

.prog-det .prog-head-row .prog-count-lbl {
font-size: 16px;
color: #7a6a90;
line-height: 1.5;
}

.prog-det .flow-grid {
display: flex;
flex-direction: column;
gap: 0;
position: relative;
}

.prog-det .flow-grid::before {
content: "";
position: absolute;
left: 28px;
top: 0;
bottom: 0;
width: 2px;
background: linear-gradient(180deg, #681FAC 0%, #C2ACE0 100%);
border-radius: 3px;
pointer-events: none;
}

.prog-det .flow-item {
display: grid;
grid-template-columns: 56px 1fr;
gap: 24px;
align-items: start;
padding-bottom: 24px;
}

.prog-det .flow-item:last-child {
padding-bottom: 0;
}

.prog-det .flow-node {
width: 56px;
height: 56px;
border-radius: 32px;
background: #681FAC;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
position: relative;
z-index: 1;
box-shadow: 2px 5px 20px 1px rgba(104, 31, 172, 0.10);
transition: background 0.1s ease-out;
}

.prog-det .flow-item:hover .flow-node {
background: #BD62D0;
}

.prog-det .flow-node-num {
font-size: 18px;
font-weight: 900;
color: #fff;
line-height: 1.1;
}

.prog-det .flow-card {
background: #f8f5fd;
border-radius: 10px;
padding: 24px;
border: 1px solid #e8e2f5;
box-shadow: 2px 3px 3px 1px rgba(104, 31, 172, 0.08);
transition: box-shadow 0.13s ease-out, border-color 0.13s ease-out;
}

.prog-det .flow-item:hover .flow-card {
box-shadow: 2px 5px 20px 1px rgba(104, 31, 172, 0.10);
border-color: #C2ACE0;
}

.prog-det .flow-card h2,
.prog-det .flow-card h3 {
font-size: 21px;
font-weight: 800;
color: #1a0a2e;
line-height: 1.1;
margin: 0 0 8px 0;
letter-spacing: -0.01em;
}

.prog-det .flow-card p {
font-size: 16px;
line-height: 1.9;
color: #4a3060;
margin: 0;
}

.prog-det .flow-card strong {
color: #681FAC;
font-weight: 700;
}

.prog-det .flow-card ul,
.prog-det .flow-card ol {
margin: 8px 0 0 0;
padding: 0;
list-style: none;
display: flex;
flex-direction: column;
gap: 8px;
}

.prog-det .flow-card ul li,
.prog-det .flow-card ol li {
font-size: 16px;
line-height: 1.5;
color: #4a3060;
padding-left: 28px;
position: relative;
counter-increment: flow-ol;
}

.prog-det .flow-card ul li::before {
content: "";
position: absolute;
left: 0;
top: 3px;
width: 16px;
height: 16px;
border: 2px solid #BD62D0;
border-radius: 3px;
background: rgba(189, 98, 208, 0.1);
}

.prog-det .flow-card ul li::after {
content: "";
position: absolute;
left: 4px;
top: 7px;
width: 8px;
height: 4px;
border-left: 2px solid #BD62D0;
border-bottom: 2px solid #BD62D0;
transform: rotate(-45deg);
}

.prog-det .flow-card ol {
counter-reset: flow-ol;
list-style: none;
}

.prog-det .flow-card ol li::before {
content: counter(flow-ol);
position: absolute;
left: 0;
top: 0;
font-size: 16px;
font-weight: 800;
color: #681FAC;
line-height: 1.5;
}

.prog-det .flow-card dl {
display: grid;
grid-template-columns: auto 1fr;
gap: 8px 16px;
margin: 8px 0 0 0;
}

.prog-det .flow-card dt {
font-size: 16px;
font-weight: 700;
color: #681FAC;
line-height: 1.5;
}

.prog-det .flow-card dd {
font-size: 16px;
color: #4a3060;
line-height: 1.5;
margin: 0;
}

.prog-det .flow-card blockquote {
background: rgba(104, 31, 172, 0.06);
border-radius: 10px;
padding: 16px;
margin: 8px 0 0 0;
}

.prog-det .flow-card blockquote p {
font-style: italic;
color: #4a3060;
}

.prog-det .flow-card details {
margin-top: 8px;
}

.prog-det .flow-card summary {
font-size: 16px;
font-weight: 700;
color: #681FAC;
cursor: pointer;
line-height: 1.5;
}

.prog-det .cta-band {
background: #681FAC;
padding: 96px 0;
position: relative;
overflow: hidden;
}

.prog-det .cta-band-deco {
position: absolute;
top: -48px;
right: -48px;
width: 320px;
height: 320px;
border: 2px solid rgba(194, 172, 224, 0.18);
border-radius: 32px;
pointer-events: none;
}

.prog-det .cta-band-deco2 {
position: absolute;
bottom: -32px;
left: 96px;
width: 160px;
height: 160px;
border: 2px solid rgba(194, 172, 224, 0.12);
border-radius: 20px;
pointer-events: none;
}

.prog-det .cta-inner {
max-width: 1280px;
margin: 0 auto;
padding: 0 24px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
gap: 48px;
}

.prog-det .cta-text {
display: flex;
flex-direction: column;
gap: 16px;
max-width: 640px;
}

.prog-det .cta-text h2 {
font-size: 37px;
font-weight: 900;
color: #fff;
line-height: 1.1;
letter-spacing: -0.01em;
margin: 0;
}

.prog-det .cta-text p {
font-size: 18px;
line-height: 1.5;
color: #e0d0f8;
margin: 0;
}

.prog-det .cta-actions {
display: flex;
flex-direction: column;
gap: 16px;
align-items: flex-end;
flex-shrink: 0;
}

.prog-det .cta-price-display {
font-size: 52px;
font-weight: 900;
color: #fff;
line-height: 1.1;
letter-spacing: -0.02em;
}

.prog-det .cta-price-sub {
font-size: 16px;
color: #C2ACE0;
line-height: 1.5;
text-align: right;
}

.prog-det .btn-enroll-main {
display: inline-block;
background: #fff;
color: #681FAC;
font-size: 18px;
font-weight: 800;
padding: 16px 48px;
border-radius: 10px;
border: none;
cursor: pointer;
text-decoration: none;
transition: background 0.12s ease-out, color 0.1s ease-out;
box-shadow: 2px 5px 20px 1px rgba(104, 31, 172, 0.10);
}

.prog-det .btn-enroll-main:hover {
background: #C2ACE0;
color: #3d0d6e;
}

.prog-det .btn-enroll-main:focus {
outline: 3px solid #C2ACE0;
outline-offset: 2px;
}

.prog-det .btn-contact-sec {
display: inline-block;
background: transparent;
color: #C2ACE0;
font-size: 16px;
font-weight: 600;
padding: 8px 16px;
border-radius: 10px;
border: 1px solid rgba(194, 172, 224, 0.4);
cursor: pointer;
text-decoration: none;
transition: border-color 0.1s ease-out, color 0.1s ease-out;
}

.prog-det .btn-contact-sec:hover {
border-color: #C2ACE0;
color: #fff;
}

.prog-det .btn-contact-sec:focus {
outline: 3px solid #C2ACE0;
outline-offset: 2px;
}

@media (max-width: 1024px) {
.prog-det .bento-hero {
grid-template-columns: 1fr;
grid-template-rows: auto auto auto;
}

.prog-det .bento-img-cell {
grid-column: 1;
grid-row: 1;
min-height: 320px;
}

.prog-det .bento-text-top {
grid-column: 1;
grid-row: 2;
padding: 24px;
}

.prog-det .bento-text-bot {
grid-column: 1;
grid-row: 3;
padding: 0 24px 24px 24px;
}

.prog-det .desc-inner {
grid-template-columns: 1fr;
}

.prog-det .desc-sidebar {
position: static;
}

.prog-det .desc-body p {
column-count: 1;
}

.prog-det .cta-inner {
flex-direction: column;
align-items: flex-start;
}

.prog-det .cta-actions {
align-items: flex-start;
}

.prog-det .cta-price-sub {
text-align: left;
}
}

@media (max-width: 768px) {
.prog-det .bento-h1 {
font-size: 37px;
}

.prog-det .prog-head-row {
flex-direction: column;
align-items: flex-start;
}

.prog-det .prog-head-row h2 {
font-size: 37px;
}

.prog-det .flow-grid::before {
display: none;
}

.prog-det .flow-item {
grid-template-columns: 1fr;
}

.prog-det .flow-node {
margin-bottom: 0;
}

.prog-det .cta-text h2 {
font-size: 37px;
}

.prog-det .cta-price-display {
font-size: 37px;
}
}

.cont-us {
overflow-x: clip;
position: relative;
}

.cont-us .band-top {
position: relative;
padding: 48px 0 48px;
background: linear-gradient(170deg, transparent 0%, #681FAC 100%);
overflow: hidden;
}

.cont-us .band-top::before {
content: '';
position: absolute;
top: -60px;
right: -60px;
width: 320px;
height: 320px;
border-radius: 50%;
background: rgba(189, 98, 208, 0.12);
pointer-events: none;
}

.cont-us .band-top::after {
content: '';
position: absolute;
top: 20px;
right: 60px;
width: 180px;
height: 180px;
border-radius: 50%;
background: rgba(194, 172, 224, 0.09);
pointer-events: none;
}

.cont-us .circ-deco {
position: absolute;
bottom: -80px;
left: 80px;
width: 200px;
height: 200px;
border-radius: 50%;
border: 1px solid rgba(194, 172, 224, 0.15);
pointer-events: none;
}

.cont-us .circ-deco-2 {
position: absolute;
bottom: -110px;
left: 50px;
width: 260px;
height: 260px;
border-radius: 50%;
border: 1px solid rgba(194, 172, 224, 0.09);
pointer-events: none;
}

.cont-us .top-inner {
max-width: 1280px;
margin: 0 auto;
padding: 0 48px;
display: flex;
flex-direction: row;
align-items: center;
gap: 48px;
}

.cont-us .top-text {
flex: 1;
}

.cont-us .top-label {
display: inline-block;
font-size: 16px;
line-height: 1.5;
color: #C2ACE0;
letter-spacing: 0.12em;
text-transform: uppercase;
margin-bottom: 16px;
}

.cont-us .top-h1 {
font-size: 52px;
line-height: 1.1;
font-weight: 900;
color: #fff;
margin: 0 0 16px;
letter-spacing: -0.01em;
}

.cont-us .top-h1 .accent-phrase {
color: #C2ACE0;
}

.cont-us .top-sub {
font-size: 18px;
line-height: 1.5;
color: rgba(255, 255, 255, 0.82);
margin: 0;
max-width: 480px;
}

.cont-us .top-stats {
display: flex;
flex-direction: column;
gap: 24px;
flex-shrink: 0;
}

.cont-us .stat-item {
text-align: right;
}

.cont-us .stat-num {
font-size: 37px;
font-weight: 900;
line-height: 1.1;
color: #fff;
}

.cont-us .stat-num .int-part {
color: #fff;
}

.cont-us .stat-num .frac-part {
color: #C2ACE0;
}

.cont-us .stat-label {
font-size: 16px;
line-height: 1.5;
color: rgba(194, 172, 224, 0.85);
}

.cont-us .rect-deco {
position: absolute;
top: 16px;
left: 16px;
pointer-events: none;
}

.cont-us .rect-deco span {
display: block;
border: 1px solid rgba(194, 172, 224, 0.18);
position: absolute;
border-radius: 3px;
}

.cont-us .rect-deco span:nth-child(1) {
width: 40px;
height: 40px;
top: 0;
left: 0;
}

.cont-us .rect-deco span:nth-child(2) {
width: 56px;
height: 56px;
top: -8px;
left: -8px;
}

.cont-us .rect-deco span:nth-child(3) {
width: 72px;
height: 72px;
top: -16px;
left: -16px;
}

.cont-us .form-strip {
padding: 96px 0;
background: #fff;
position: relative;
}

.cont-us .form-strip::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(104, 31, 172, 0.03) 0%, transparent 60%);
pointer-events: none;
}

.cont-us .form-inner {
max-width: 1280px;
margin: 0 auto;
padding: 0 48px;
display: flex;
flex-direction: row;
gap: 96px;
align-items: flex-start;
}

.cont-us .form-left {
flex: 1;
}

.cont-us .form-eyebrow {
font-size: 16px;
line-height: 1.5;
color: #681FAC;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.1em;
margin-bottom: 16px;
}

.cont-us .form-h2 {
font-size: 37px;
line-height: 1.1;
font-weight: 900;
color: #1b0a2e;
margin: 0 0 16px;
letter-spacing: -0.01em;
}

.cont-us .form-desc {
font-size: 18px;
line-height: 1.5;
color: #3d2a56;
margin: 0 0 24px;
max-width: 380px;
}

.cont-us .form-desc-2 {
font-size: 16px;
line-height: 1.9;
color: #5a4570;
margin: 0;
max-width: 380px;
}

.cont-us .areas-list {
margin: 24px 0 0;
display: flex;
flex-direction: column;
gap: 8px;
}

.cont-us .area-item {
display: flex;
flex-direction: row;
align-items: center;
gap: 16px;
padding: 8px 16px;
border-radius: 10px;
background: rgba(104, 31, 172, 0.04);
}

.cont-us .area-check {
width: 18px;
height: 18px;
border-radius: 3px;
border: 2px solid #681FAC;
flex-shrink: 0;
position: relative;
background: #fff;
}

.cont-us .area-check.filled {
background: #681FAC;
}

.cont-us .area-check.filled::after {
content: '';
position: absolute;
top: 2px;
left: 5px;
width: 5px;
height: 9px;
border-right: 2px solid #fff;
border-bottom: 2px solid #fff;
transform: rotate(45deg);
}

.cont-us .area-label {
font-size: 16px;
line-height: 1.5;
color: #2a1640;
}

.cont-us .form-right {
flex: 1.2;
}

.cont-us .contact-form {
background: #fff;
border-radius: 20px;
padding: 48px;
box-shadow: 2px 12px 36px 1px rgba(104, 31, 172, 0.13);
}

.cont-us .field-row {
display: flex;
flex-direction: row;
gap: 16px;
margin-bottom: 24px;
}

.cont-us .field-group {
display: flex;
flex-direction: column;
gap: 8px;
flex: 1;
}

.cont-us .field-group.full {
flex: 1 0 100%;
}

.cont-us .f-label {
font-size: 16px;
line-height: 1.5;
font-weight: 700;
color: #2a1640;
}

.cont-us .f-input {
padding: 16px;
border-radius: 10px;
border: 1.5px solid rgba(104, 31, 172, 0.2);
font-size: 16px;
line-height: 1.5;
color: #1b0a2e;
background: #fff;
box-shadow: inset 2px 3px 3px 1px rgba(104, 31, 172, 0.05);
transition: border-color 0.12s ease-out, box-shadow 0.12s ease-out;
width: 100%;
box-sizing: border-box;
outline: none;
}

.cont-us .f-input::placeholder {
color: #a08cbf;
}

.cont-us .f-input:focus {
border-color: #681FAC;
box-shadow: inset 2px 3px 3px 1px rgba(104, 31, 172, 0.07), 0 0 0 3px rgba(104, 31, 172, 0.1);
}

.cont-us .areas-check-group {
margin-bottom: 24px;
}

.cont-us .areas-check-label {
font-size: 16px;
line-height: 1.5;
font-weight: 700;
color: #2a1640;
margin-bottom: 16px;
display: block;
}

.cont-us .check-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px;
}

.cont-us .check-opt {
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
padding: 8px 16px;
border-radius: 10px;
border: 1.5px solid rgba(104, 31, 172, 0.15);
cursor: pointer;
transition: border-color 0.1s ease-out, background 0.1s ease-out;
position: relative;
overflow: hidden;
}

.cont-us .check-opt::before {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 0%;
background: rgba(104, 31, 172, 0.07);
transition: height 0.12s ease-out;
}

.cont-us .check-opt:hover::before {
height: 100%;
}

.cont-us .check-opt:hover {
border-color: #681FAC;
}

.cont-us .check-opt input[type="checkbox"] {
width: 16px;
height: 16px;
accent-color: #681FAC;
flex-shrink: 0;
position: relative;
z-index: 1;
}

.cont-us .check-opt-text {
font-size: 16px;
line-height: 1.5;
color: #2a1640;
position: relative;
z-index: 1;
}

.cont-us .privacy-row {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 8px;
margin-bottom: 24px;
padding: 16px;
border-radius: 10px;
background: rgba(194, 172, 224, 0.12);
}

.cont-us .privacy-row input[type="checkbox"] {
width: 18px;
height: 18px;
accent-color: #681FAC;
flex-shrink: 0;
margin-top: 2px;
}

.cont-us .privacy-text {
font-size: 16px;
line-height: 1.5;
color: #3d2a56;
}

.cont-us .privacy-text a {
color: #681FAC;
text-decoration: underline;
transition: color 0.1s ease-out;
}

.cont-us .privacy-text a:hover {
color: #BD62D0;
}

.cont-us .submit-btn {
width: 100%;
padding: 16px 48px;
border-radius: 10px;
background: #1b0a2e;
color: #fff;
font-size: 18px;
line-height: 1.5;
font-weight: 700;
border: none;
cursor: pointer;
position: relative;
overflow: hidden;
transition: color 0.1s ease-out;
}

.cont-us .submit-btn::before {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 0%;
background: #681FAC;
transition: height 0.13s ease-out;
}

.cont-us .submit-btn:hover::before {
height: 100%;
}

.cont-us .submit-btn:focus {
outline: 3px solid rgba(104, 31, 172, 0.4);
outline-offset: 2px;
}

.cont-us .submit-btn span {
position: relative;
z-index: 1;
}

.cont-us .info-strip {
padding: 96px 0;
background: linear-gradient(158deg, #681FAC 0%, #BD62D0 100%);
position: relative;
overflow: hidden;
}

.cont-us .info-strip::after {
content: '';
position: absolute;
bottom: -100px;
right: -100px;
width: 400px;
height: 400px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.05);
pointer-events: none;
}

.cont-us .info-rect-deco {
position: absolute;
bottom: 24px;
left: 24px;
pointer-events: none;
}

.cont-us .info-rect-deco span {
display: block;
border: 1px solid rgba(255, 255, 255, 0.12);
position: absolute;
border-radius: 3px;
}

.cont-us .info-rect-deco span:nth-child(1) {
width: 36px;
height: 36px;
bottom: 0;
left: 0;
}

.cont-us .info-rect-deco span:nth-child(2) {
width: 52px;
height: 52px;
bottom: -8px;
left: -8px;
}

.cont-us .info-rect-deco span:nth-child(3) {
width: 68px;
height: 68px;
bottom: -16px;
left: -16px;
}

.cont-us .info-inner {
max-width: 1280px;
margin: 0 auto;
padding: 0 48px;
display: grid;
grid-template-columns: 1.4fr 1fr 1fr;
gap: 48px;
align-items: start;
}

.cont-us .info-lead {
display: flex;
flex-direction: column;
gap: 16px;
}

.cont-us .info-h3 {
font-size: 37px;
line-height: 1.1;
font-weight: 900;
color: #fff;
margin: 0;
letter-spacing: -0.01em;
}

.cont-us .info-p {
font-size: 16px;
line-height: 1.9;
color: rgba(255, 255, 255, 0.85);
margin: 0;
}

.cont-us .info-p-2 {
font-size: 16px;
line-height: 1.9;
color: rgba(255, 255, 255, 0.75);
margin: 0;
}

.cont-us .contact-card {
background: rgba(255, 255, 255, 0.1);
border-radius: 20px;
padding: 24px;
display: flex;
flex-direction: column;
gap: 16px;
border: 1px solid rgba(255, 255, 255, 0.18);
}

.cont-us .card-type {
font-size: 16px;
line-height: 1.5;
font-weight: 700;
color: #C2ACE0;
text-transform: uppercase;
letter-spacing: 0.1em;
}

.cont-us .card-val {
font-size: 18px;
line-height: 1.5;
color: #fff;
font-weight: 600;
word-break: break-word;
}

.cont-us .card-val a {
color: #fff;
text-decoration: none;
transition: color 0.09s ease-out;
}

.cont-us .card-val a:hover {
color: #C2ACE0;
}

.cont-us .card-note {
font-size: 16px;
line-height: 1.5;
color: rgba(255, 255, 255, 0.65);
}

.cont-us .addr-block {
display: flex;
flex-direction: column;
gap: 8px;
}

.cont-us .addr-line {
font-size: 16px;
line-height: 1.5;
color: rgba(255, 255, 255, 0.85);
}

.cont-us .addr-line.bold {
font-weight: 700;
color: #fff;
font-size: 18px;
}

@media (max-width: 1024px) {
.cont-us .top-inner {
flex-direction: column;
gap: 24px;
}

.cont-us .top-stats {
flex-direction: row;
gap: 48px;
}

.cont-us .stat-item {
text-align: left;
}

.cont-us .form-inner {
flex-direction: column;
gap: 48px;
}

.cont-us .info-inner {
grid-template-columns: 1fr 1fr;
}

.cont-us .info-lead {
grid-column: 1 / -1;
}
}

@media (max-width: 768px) {
.cont-us .top-inner {
padding: 0 24px;
}

.cont-us .top-h1 {
font-size: 37px;
}

.cont-us .form-inner {
padding: 0 24px;
}

.cont-us .contact-form {
padding: 24px;
}

.cont-us .field-row {
flex-direction: column;
}

.cont-us .check-grid {
grid-template-columns: 1fr;
}

.cont-us .info-inner {
grid-template-columns: 1fr;
padding: 0 24px;
}

.cont-us .info-lead {
grid-column: auto;
}

.cont-us .top-stats {
flex-wrap: wrap;
gap: 24px;
}
}

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

.lp-prog .lp-inner {
max-width: 1280px;
margin-left: auto;
margin-right: auto;
padding-left: 24px;
padding-right: 24px;
}

@keyframes blurIn {
from {
filter: blur(8px);
opacity: 0;
}

to {
filter: blur(0);
opacity: 1;
}
}

.lp-prog .anim-1 {
animation: blurIn 0.55s ease-out both;
}

.lp-prog .anim-2 {
animation: blurIn 0.55s 0.12s ease-out both;
}

.lp-prog .anim-3 {
animation: blurIn 0.55s 0.22s ease-out both;
}

.lp-prog .anim-4 {
animation: blurIn 0.55s 0.34s ease-out both;
}

.lp-prog .tb-wrap {
background: #fff;
padding-top: 96px;
padding-bottom: 96px;
position: relative;
}

.lp-prog .tb-deco {
position: absolute;
top: 0;
left: 0;
width: 54%;
height: 100%;
pointer-events: none;
overflow: hidden;
}

.lp-prog .tb-deco::before {
content: '';
position: absolute;
top: 16px;
left: 16px;
width: 180px;
height: 180px;
border: 2px solid rgba(104, 31, 172, 0.10);
border-radius: 20px;
transform: rotate(18deg);
}

.lp-prog .tb-deco::after {
content: '';
position: absolute;
bottom: 24px;
left: 48px;
width: 80px;
height: 80px;
background: rgba(189, 98, 208, 0.07);
border-radius: 10px;
transform: rotate(-12deg);
}

.lp-prog .tb-grid {
display: flex;
flex-direction: row;
align-items: stretch;
gap: 48px;
}

.lp-prog .tb-text {
flex: 1 1 0;
display: flex;
flex-direction: column;
justify-content: center;
position: relative;
z-index: 1;
}

.lp-prog .tb-eyebrow {
font-size: 16px;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
color: #681FAC;
margin-bottom: 16px;
line-height: 1.5;
}

.lp-prog .tb-h1 {
font-size: 68px;
font-weight: 900;
line-height: 1.1;
color: #1a0030;
margin-bottom: 24px;
letter-spacing: -0.01em;
}

.lp-prog .tb-lead {
font-size: 18px;
line-height: 1.9;
color: #3a2555;
max-width: 520px;
margin-bottom: 24px;
}

.lp-prog .tb-stats {
display: flex;
flex-direction: row;
gap: 48px;
margin-top: 8px;
}

.lp-prog .tb-stat-num {
font-size: 37px;
font-weight: 900;
color: #681FAC;
line-height: 1.1;
}

.lp-prog .tb-stat-lbl {
font-size: 16px;
color: #5a4070;
line-height: 1.5;
margin-top: 8px;
}

.lp-prog .tb-img-strip {
width: 340px;
flex-shrink: 0;
position: relative;
border-radius: 10px;
overflow: hidden;
}

.lp-prog .tb-img-strip img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
}

.lp-prog .tb-vignette {
position: absolute;
inset: 0;
background: radial-gradient(ellipse at center, transparent 40%, rgba(104, 31, 172, 0.22) 100%);
pointer-events: none;
}

.lp-prog .div-brush {
display: block;
width: 100%;
height: 48px;
line-height: 0;
}

.lp-prog .div-brush svg {
width: 100%;
height: 48px;
display: block;
}

.lp-prog .cards-sec {
background: #f5f0fa;
padding-top: 96px;
padding-bottom: 96px;
}

.lp-prog .sec-label {
font-size: 16px;
font-weight: 700;
letter-spacing: 0.10em;
text-transform: uppercase;
color: #681FAC;
text-align: center;
margin-bottom: 8px;
line-height: 1.5;
}

.lp-prog .sec-h2 {
font-size: 52px;
font-weight: 900;
color: #1a0030;
line-height: 1.1;
text-align: center;
margin-bottom: 48px;
}

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

.lp-prog .prog-card {
background: #fff;
border-radius: 10px;
box-shadow: 2px 5px 20px 1px rgba(104, 31, 172, 0.10);
display: flex;
flex-direction: column;
overflow: hidden;
transition: box-shadow 0.13s ease-out, transform 0.10s ease-out;
}

.lp-prog .prog-card:hover {
box-shadow: 2px 12px 36px 1px rgba(104, 31, 172, 0.13);
transform: translateY(-3px);
}

.lp-prog .card-img-wrap {
width: 100%;
height: 180px;
overflow: hidden;
position: relative;
flex-shrink: 0;
}

.lp-prog .card-img-wrap img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
}

.lp-prog .card-badge {
position: absolute;
top: 16px;
left: 16px;
background: #681FAC;
color: #fff;
font-size: 16px;
font-weight: 700;
padding: 4px 12px;
border-radius: 5px;
line-height: 1.5;
}

.lp-prog .card-body {
padding: 24px;
display: flex;
flex-direction: column;
flex: 1;
}

.lp-prog .card-title {
font-size: 21px;
font-weight: 900;
color: #1a0030;
line-height: 1.1;
margin-bottom: 8px;
}

.lp-prog .card-desc {
font-size: 16px;
color: #4a3560;
line-height: 1.9;
margin-bottom: 16px;
flex: 1;
}

.lp-prog .card-meta {
display: flex;
flex-direction: row;
gap: 16px;
margin-bottom: 16px;
flex-wrap: wrap;
}

.lp-prog .card-meta-item {
font-size: 16px;
color: #6a4d8a;
line-height: 1.5;
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
}

.lp-prog .meta-icon {
width: 16px;
height: 16px;
flex-shrink: 0;
}

.lp-prog .card-engagement {
display: flex;
flex-direction: row;
gap: 16px;
margin-bottom: 16px;
font-size: 16px;
color: #8a6aaa;
line-height: 1.5;
}

.lp-prog .card-price-row {
display: flex;
flex-direction: row;
align-items: flex-end;
justify-content: space-between;
gap: 16px;
margin-top: auto;
padding-top: 16px;
border-top: 1px solid rgba(104, 31, 172, 0.10);
}

.lp-prog .card-price {
font-size: 37px;
font-weight: 900;
color: #681FAC;
line-height: 1.1;
}

.lp-prog .card-price-desc {
font-size: 16px;
color: #7a5a9a;
line-height: 1.5;
}

.lp-prog .card-seats {
font-size: 16px;
color: #c04a00;
font-weight: 700;
line-height: 1.5;
text-align: right;
}

.lp-prog .card-cta {
display: block;
margin-top: 16px;
background: #681FAC;
color: #fff;
text-align: center;
font-size: 16px;
font-weight: 700;
padding: 12px 24px;
border-radius: 5px;
text-decoration: none;
line-height: 1.5;
transition: background 0.10s ease-out, box-shadow 0.13s ease-out;
}

.lp-prog .card-cta:hover {
background: #4e1580;
box-shadow: 2px 5px 20px 1px rgba(104, 31, 172, 0.13);
color: #fff;
}

.lp-prog .card-cta:focus {
outline: 3px solid #BD62D0;
outline-offset: 2px;
}

.lp-prog .process-sec {
background: #fff;
padding-top: 96px;
padding-bottom: 96px;
}

.lp-prog .process-grid {
display: grid;
grid-template-columns: 1fr 1.6fr;
gap: 96px;
align-items: center;
}

.lp-prog .process-left {
display: flex;
flex-direction: column;
}

.lp-prog .process-h2 {
font-size: 52px;
font-weight: 900;
color: #1a0030;
line-height: 1.1;
margin-bottom: 24px;
}

.lp-prog .process-text {
font-size: 18px;
color: #3a2555;
line-height: 1.9;
margin-bottom: 16px;
}

.lp-prog .process-steps {
display: flex;
flex-direction: column;
gap: 24px;
margin-top: 24px;
}

.lp-prog .step-item {
display: flex;
flex-direction: row;
gap: 16px;
align-items: flex-start;
}

.lp-prog .step-num {
width: 40px;
height: 40px;
border-radius: 10px;
background: linear-gradient(135deg, #681FAC, #BD62D0);
color: #fff;
font-size: 18px;
font-weight: 900;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
line-height: 1.1;
}

.lp-prog .step-body {
display: flex;
flex-direction: column;
}

.lp-prog .step-title {
font-size: 18px;
font-weight: 700;
color: #1a0030;
line-height: 1.5;
margin-bottom: 8px;
}

.lp-prog .step-desc {
font-size: 16px;
color: #5a4070;
line-height: 1.9;
}

.lp-prog .process-right {
display: flex;
flex-direction: column;
gap: 24px;
}

.lp-prog .data-table-wrap {
border-radius: 10px;
overflow: hidden;
box-shadow: 2px 5px 20px 1px rgba(104, 31, 172, 0.10);
}

.lp-prog .data-table {
width: 100%;
border-collapse: collapse;
font-size: 16px;
}

.lp-prog .data-table thead tr {
background: #681FAC;
color: #fff;
}

.lp-prog .data-table th {
padding: 16px 24px;
text-align: left;
font-size: 16px;
font-weight: 700;
line-height: 1.5;
}

.lp-prog .data-table tbody tr {
background: #fff;
transition: background 0.10s ease-out;
cursor: default;
}

.lp-prog .data-table tbody tr:nth-child(even) {
background: #f7f2fc !important;
}

.lp-prog .data-table tbody tr:hover {
background: #ede4f8 !important;
}

.lp-prog .data-table td {
padding: 16px 24px;
color: #3a2555;
line-height: 1.5;
border-bottom: 1px solid rgba(104, 31, 172, 0.07);
}

.lp-prog .data-table td.td-accent {
font-weight: 700;
color: #681FAC;
}

.lp-prog .metrics-sec {
background: #681FAC;
padding-top: 96px;
padding-bottom: 96px;
position: relative;
overflow: hidden;
}

.lp-prog .metrics-circuit {
position: absolute;
inset: 0;
pointer-events: none;
overflow: hidden;
}

.lp-prog .metrics-circuit svg {
width: 100%;
height: 100%;
opacity: 0.07;
}

.lp-prog .metrics-h2 {
font-size: 52px;
font-weight: 900;
color: #fff;
line-height: 1.1;
text-align: center;
margin-bottom: 8px;
}

.lp-prog .metrics-sub {
font-size: 18px;
color: #C2ACE0;
line-height: 1.9;
text-align: center;
margin-bottom: 48px;
}

.lp-prog .metrics-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
position: relative;
z-index: 1;
}

.lp-prog .metric-card {
background: rgba(255, 255, 255, 0.08);
border-radius: 10px;
padding: 24px;
text-align: center;
border: 1px solid rgba(255, 255, 255, 0.12);
transition: background 0.13s ease-out;
}

.lp-prog .metric-card:hover {
background: rgba(255, 255, 255, 0.14);
}

.lp-prog .ring-wrap {
width: 96px;
height: 96px;
margin: 0 auto 16px;
position: relative;
}

.lp-prog .ring-wrap svg {
width: 96px;
height: 96px;
transform: rotate(-90deg);
}

.lp-prog .ring-bg {
fill: none;
stroke: rgba(255, 255, 255, 0.15);
stroke-width: 7;
}

.lp-prog .ring-fill {
fill: none;
stroke: #BD62D0;
stroke-width: 7;
stroke-linecap: round;
stroke-dasharray: 251.2;
transition: stroke-dashoffset 0.55s ease-out;
}

.lp-prog .ring-label {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
font-size: 21px;
font-weight: 900;
color: #fff;
line-height: 1.1;
}

.lp-prog .metric-title {
font-size: 16px;
font-weight: 700;
color: #C2ACE0;
line-height: 1.5;
text-transform: uppercase;
letter-spacing: 0.08em;
margin-bottom: 8px;
}

.lp-prog .metric-desc {
font-size: 16px;
color: rgba(255, 255, 255, 0.75);
line-height: 1.9;
}

.lp-prog .testi-sec {
background: #faf7ff;
padding-top: 96px;
padding-bottom: 96px;
}

.lp-prog .testi-h2 {
font-size: 52px;
font-weight: 900;
color: #1a0030;
line-height: 1.1;
margin-bottom: 48px;
text-align: left;
}

.lp-prog .testi-layout {
display: grid;
grid-template-columns: 1.4fr 1fr 1fr;
gap: 24px;
align-items: start;
}

.lp-prog .testi-featured {
background: #fff;
border-radius: 10px;
padding: 48px;
box-shadow: 2px 12px 36px 1px rgba(104, 31, 172, 0.13);
display: flex;
flex-direction: column;
gap: 24px;
}

.lp-prog .testi-quote {
font-size: 18px;
color: #2a1540;
line-height: 1.9;
font-style: italic;
}

.lp-prog .testi-person {
display: flex;
flex-direction: row;
align-items: center;
gap: 16px;
}

.lp-prog .testi-portrait {
width: 72px;
height: 92px;
border-radius: 20px;
overflow: hidden;
flex-shrink: 0;
}

.lp-prog .testi-portrait img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
}

.lp-prog .testi-name {
font-size: 18px;
font-weight: 700;
color: #1a0030;
line-height: 1.5;
}

.lp-prog .testi-role {
font-size: 16px;
color: #7a5a9a;
line-height: 1.5;
}

.lp-prog .testi-small {
background: #fff;
border-radius: 10px;
padding: 24px;
box-shadow: 2px 3px 3px 1px rgba(104, 31, 172, 0.08);
display: flex;
flex-direction: column;
gap: 16px;
}

.lp-prog .testi-small .testi-quote {
font-size: 16px;
}

.lp-prog .testi-small .testi-portrait {
width: 56px;
height: 72px;
border-radius: 10px;
}

.lp-prog .testi-small .testi-name {
font-size: 16px;
}

.lp-prog .faq-sec {
background: #fff;
padding-top: 96px;
padding-bottom: 96px;
}

.lp-prog .faq-grid {
display: grid;
grid-template-columns: 1fr 1.8fr;
gap: 96px;
align-items: start;
}

.lp-prog .faq-left {
display: flex;
flex-direction: column;
}

.lp-prog .faq-h2 {
font-size: 52px;
font-weight: 900;
color: #1a0030;
line-height: 1.1;
margin-bottom: 24px;
}

.lp-prog .faq-sub {
font-size: 18px;
color: #3a2555;
line-height: 1.9;
margin-bottom: 24px;
}

.lp-prog .faq-contact-btn {
display: inline-block;
background: #1a0030;
color: #fff;
font-size: 16px;
font-weight: 700;
padding: 12px 24px;
border-radius: 5px;
text-decoration: none;
line-height: 1.5;
transition: background 0.10s ease-out;
align-self: flex-start;
}

.lp-prog .faq-contact-btn:hover {
background: #681FAC;
color: #fff;
}

.lp-prog .faq-list {
display: flex;
flex-direction: column;
gap: 8px;
}

.lp-prog .faq-item {
border-radius: 5px;
border: 1px solid rgba(104, 31, 172, 0.12);
overflow: hidden;
}

.lp-prog .faq-item summary {
padding: 16px 24px;
font-size: 18px;
font-weight: 700;
color: #1a0030;
cursor: pointer;
line-height: 1.5;
list-style: none;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
gap: 16px;
transition: background 0.10s ease-out;
}

.lp-prog .faq-item summary::-webkit-details-marker {
display: none;
}

.lp-prog .faq-item summary:hover {
background: #f7f2fc;
}

.lp-prog .faq-item[open] summary {
background: #f0e8fa;
color: #681FAC;
}

.lp-prog .faq-arrow {
width: 20px;
height: 20px;
flex-shrink: 0;
transition: transform 0.13s ease-out;
}

.lp-prog .faq-item[open] .faq-arrow {
transform: rotate(180deg);
}

.lp-prog .faq-answer {
padding: 16px 24px;
font-size: 16px;
color: #4a3560;
line-height: 1.9;
border-top: 1px solid rgba(104, 31, 172, 0.08);
}

@media (max-width: 1024px) {
.lp-prog .cards-grid {
grid-template-columns: repeat(2, 1fr);
}

.lp-prog .metrics-grid {
grid-template-columns: repeat(2, 1fr);
}

.lp-prog .process-grid {
grid-template-columns: 1fr;
gap: 48px;
}

.lp-prog .testi-layout {
grid-template-columns: 1fr 1fr;
}

.lp-prog .testi-featured {
grid-column: 1 / -1;
}

.lp-prog .faq-grid {
grid-template-columns: 1fr;
gap: 48px;
}
}

@media (max-width: 768px) {
.lp-prog .tb-h1 {
font-size: 52px;
}

.lp-prog .tb-grid {
flex-direction: column;
}

.lp-prog .tb-img-strip {
width: 100%;
height: 260px;
}

.lp-prog .cards-grid {
grid-template-columns: 1fr;
}

.lp-prog .metrics-grid {
grid-template-columns: repeat(2, 1fr);
}

.lp-prog .testi-layout {
grid-template-columns: 1fr;
}

.lp-prog .sec-h2 {
font-size: 37px;
}

.lp-prog .process-h2 {
font-size: 37px;
}

.lp-prog .metrics-h2 {
font-size: 37px;
}

.lp-prog .testi-h2 {
font-size: 37px;
}

.lp-prog .faq-h2 {
font-size: 37px;
}

.lp-prog .tb-stats {
flex-direction: column;
gap: 16px;
}
}

@media (max-width: 480px) {
.lp-prog .metrics-grid {
grid-template-columns: 1fr;
}

.lp-prog .tb-h1 {
font-size: 37px;
}
}

.bse {
display: block;
width: 100%;
overflow-x: clip;
}

.bse .pg-wrap {
max-width: 1280px;
margin: 0 auto;
padding: 0 48px;
}

.bse .divider-tick {
display: flex;
align-items: center;
gap: 16px;
padding: 0 48px;
max-width: 1280px;
margin: 0 auto;
}

.bse .divider-tick span {
flex: 1;
height: 1px;
background: #C2ACE0;
position: relative;
}

.bse .divider-tick span::before,
.bse .divider-tick span::after {
content: "";
position: absolute;
top: -4px;
width: 1px;
height: 8px;
background: #C2ACE0;
}

.bse .divider-tick span::before {
left: 20%;
}

.bse .divider-tick span::after {
left: 60%;
}

.bse .divider-tick .tick-mid {
width: 6px;
height: 6px;
border-radius: 50%;
background: #BD62D0;
flex: none;
}

.bse .dot-row {
display: flex;
gap: 8px;
align-items: center;
}

.bse .dot-row span {
width: 5px;
height: 5px;
border-radius: 50%;
background: #BD62D0;
opacity: 0.5;
}

.bse .dot-row span:nth-child(2) {
opacity: 0.7;
}

.bse .dot-row span:nth-child(3) {
opacity: 1;
}

.bse .dot-row span:nth-child(4) {
opacity: 0.7;
}

.bse .dot-row span:nth-child(5) {
opacity: 0.5;
}

.bse .stat-accent {
display: inline-flex;
align-items: baseline;
gap: 8px;
}

.bse .stat-accent .num {
font-size: 52px;
font-weight: 900;
line-height: 1.1;
color: #681FAC;
letter-spacing: -1px;
}

.bse .stat-accent .lbl {
font-size: 16px;
line-height: 1.5;
color: #4a3060;
}

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

.bse .chk-list li {
display: flex;
align-items: flex-start;
gap: 16px;
font-size: 16px;
line-height: 1.5;
color: #2d1a40;
}

.bse .chk-list li::before {
content: "";
flex-shrink: 0;
margin-top: 4px;
width: 16px;
height: 16px;
border-radius: 3px;
border: 2px solid #681FAC;
background: linear-gradient(135deg, #681FAC 0%, #BD62D0 100%);
box-shadow: 2px 3px 3px 1px rgba(104, 31, 172, 0.08);
}

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

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

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

.bse .reveal {
opacity: 0;
transform: translateY(24px);
animation: revealIn 0.5s ease-out forwards;
}

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

.bse .reveal-d1 {
animation-delay: 0.1s;
}

.bse .reveal-d2 {
animation-delay: 0.2s;
}

.bse .reveal-d3 {
animation-delay: 0.35s;
}

.bse .title-blk {
padding: 96px 0 48px;
background: #fff;
}

.bse .title-blk .inner {
max-width: 1280px;
margin: 0 auto;
padding: 0 48px;
display: flex;
flex-direction: row;
align-items: flex-end;
gap: 48px;
}

.bse .title-blk .txt-side {
flex: 1 1 55%;
display: flex;
flex-direction: column;
gap: 24px;
}

.bse .title-blk .img-side {
flex: 0 0 38%;
max-width: 480px;
}

.bse .title-blk .img-side img {
width: 100%;
height: 420px;
object-fit: cover;
object-position: center;
display: block;
border-radius: 5px;
}

.bse .title-blk h1 {
font-size: 68px;
font-weight: 900;
line-height: 1.1;
color: #1a0a2e;
margin: 0;
letter-spacing: -1.5px;
}

.bse .title-blk .sub-line {
width: 64px;
height: 4px;
background: linear-gradient(90deg, #681FAC, #BD62D0);
border-radius: 3px;
}

.bse .title-blk .desc {
font-size: 18px;
line-height: 1.9;
color: #3d2255;
max-width: 520px;
margin: 0;
}

.bse .who-blk {
padding: 96px 0;
background: #f5f0fa;
}

.bse .who-blk .inner {
max-width: 1280px;
margin: 0 auto;
padding: 0 48px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 48px;
align-items: start;
}

.bse .who-blk h2 {
font-size: 37px;
font-weight: 900;
line-height: 1.1;
color: #1a0a2e;
margin: 0 0 24px;
letter-spacing: -0.5px;
}

.bse .who-blk .col-left {
display: flex;
flex-direction: column;
gap: 16px;
}

.bse .who-blk .col-right {
display: flex;
flex-direction: column;
gap: 24px;
}

.bse .who-blk p {
font-size: 16px;
line-height: 1.9;
color: #3d2255;
margin: 0;
}

.bse .who-blk .img-wrap {
border-radius: 10px;
overflow: hidden;
box-shadow: 2px 5px 20px 1px rgba(104, 31, 172, 0.10);
}

.bse .who-blk .img-wrap img {
width: 100%;
height: 280px;
object-fit: cover;
object-position: center;
display: block;
transition: transform 0.12s ease-out;
}

.bse .who-blk .img-wrap:hover img {
transform: scale(1.03);
}

.bse .adapt-blk {
padding: 96px 0;
background: #fff;
position: relative;
}

.bse .adapt-blk .curl {
position: absolute;
top: 24px;
right: 48px;
width: 80px;
height: 80px;
opacity: 0.06;
pointer-events: none;
}

.bse .adapt-blk .curl svg {
width: 100%;
height: 100%;
}

.bse .adapt-blk .inner {
max-width: 1280px;
margin: 0 auto;
padding: 0 48px;
text-align: center;
}

.bse .adapt-blk h2 {
font-size: 37px;
font-weight: 900;
line-height: 1.1;
color: #1a0a2e;
margin: 0 0 16px;
letter-spacing: -0.5px;
}

.bse .adapt-blk .sub-p {
font-size: 18px;
line-height: 1.9;
color: #3d2255;
max-width: 640px;
margin: 0 auto 48px;
}

.bse .adapt-blk .cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-top: 48px;
}

.bse .adapt-blk .card {
background: #f5f0fa;
border-radius: 10px;
padding: 24px;
text-align: left;
box-shadow: 2px 3px 3px 1px rgba(104, 31, 172, 0.08);
transition: box-shadow 0.1s ease-out, transform 0.1s ease-out;
}

.bse .adapt-blk .card:hover {
box-shadow: 2px 5px 20px 1px rgba(104, 31, 172, 0.10);
transform: translateY(-3px);
}

.bse .adapt-blk .card h4 {
font-size: 18px;
font-weight: 800;
line-height: 1.1;
color: #681FAC;
margin: 0 0 16px;
letter-spacing: -0.3px;
}

.bse .adapt-blk .card p {
font-size: 16px;
line-height: 1.9;
color: #3d2255;
margin: 0;
}

.bse .rel-blk {
padding: 96px 0;
background: linear-gradient(160deg, #681FAC 0%, #fff 100%);
background-size: 200% 200%;
animation: gradShift 8s ease-in-out infinite;
}

.bse .rel-blk .inner {
max-width: 1280px;
margin: 0 auto;
padding: 0 48px;
display: flex;
flex-direction: row;
gap: 48px;
align-items: center;
}

.bse .rel-blk .narrow {
flex: 0 0 320px;
display: flex;
flex-direction: column;
gap: 24px;
}

.bse .rel-blk h2 {
font-size: 37px;
font-weight: 900;
line-height: 1.1;
color: #fff;
margin: 0;
letter-spacing: -0.5px;
}

.bse .rel-blk .desc {
font-size: 16px;
line-height: 1.9;
color: rgba(255, 255, 255, 0.88);
margin: 0;
}

.bse .rel-blk .steps {
flex: 1;
display: flex;
flex-direction: column;
gap: 16px;
}

.bse .rel-blk .step {
background: rgba(255, 255, 255, 0.12);
border-radius: 10px;
padding: 24px;
display: flex;
flex-direction: row;
gap: 16px;
align-items: flex-start;
transition: background 0.12s ease-out;
}

.bse .rel-blk .step:hover {
background: rgba(255, 255, 255, 0.2);
}

.bse .rel-blk .step-num {
font-size: 37px;
font-weight: 900;
line-height: 1;
color: #BD62D0;
flex-shrink: 0;
letter-spacing: -1px;
}

.bse .rel-blk .step-body h5 {
font-size: 18px;
font-weight: 800;
line-height: 1.1;
color: #fff;
margin: 0 0 8px;
}

.bse .rel-blk .step-body p {
font-size: 16px;
line-height: 1.5;
color: rgba(255, 255, 255, 0.80);
margin: 0;
}

.bse .ctx-blk {
padding: 96px 0;
background: #fff;
}

.bse .ctx-blk .inner {
max-width: 1280px;
margin: 0 auto;
padding: 0 48px;
}

.bse .ctx-blk .layout {
display: grid;
grid-template-columns: 5fr 4fr;
gap: 48px;
align-items: center;
}

.bse .ctx-blk .portrait-wrap {
border-radius: 0;
overflow: hidden;
box-shadow: 2px 12px 36px 1px rgba(104, 31, 172, 0.13);
width: 100%;
max-width: 340px;
}

.bse .ctx-blk .portrait-wrap img {
width: 100%;
aspect-ratio: 3/4;
object-fit: cover;
object-position: center;
display: block;
}

.bse .ctx-blk .txt-col {
display: flex;
flex-direction: column;
gap: 24px;
}

.bse .ctx-blk h2 {
font-size: 37px;
font-weight: 900;
line-height: 1.1;
color: #1a0a2e;
margin: 0;
letter-spacing: -0.5px;
}

.bse .ctx-blk p {
font-size: 16px;
line-height: 1.9;
color: #3d2255;
margin: 0;
}

.bse .ctx-blk .two-col-text {
columns: 2;
column-gap: 24px;
}

.bse .ctx-blk .two-col-text p {
break-inside: avoid;
}

.bse .ctx-blk .stats-row {
display: flex;
flex-direction: row;
gap: 48px;
flex-wrap: wrap;
}

.bse .out-blk {
padding: 96px 0;
background: #f5f0fa;
}

.bse .out-blk .inner {
max-width: 1280px;
margin: 0 auto;
padding: 0 48px;
text-align: center;
}

.bse .out-blk h2 {
font-size: 37px;
font-weight: 900;
line-height: 1.1;
color: #1a0a2e;
margin: 0 0 16px;
letter-spacing: -0.5px;
}

.bse .out-blk .intro-p {
font-size: 18px;
line-height: 1.9;
color: #3d2255;
max-width: 580px;
margin: 0 auto 48px;
}

.bse .out-blk .grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
text-align: left;
}

.bse .out-blk .item {
background: #fff;
border-radius: 10px;
padding: 24px;
box-shadow: 2px 3px 3px 1px rgba(104, 31, 172, 0.08);
display: flex;
flex-direction: column;
gap: 8px;
}

.bse .out-blk .item h5 {
font-size: 18px;
font-weight: 800;
line-height: 1.1;
color: #681FAC;
margin: 0;
letter-spacing: -0.2px;
}

.bse .out-blk .item p {
font-size: 16px;
line-height: 1.5;
color: #3d2255;
margin: 0;
}

.bse .out-blk .img-full {
margin-top: 48px;
border-radius: 10px;
overflow: hidden;
box-shadow: 2px 5px 20px 1px rgba(104, 31, 172, 0.10);
}

.bse .out-blk .img-full img {
width: 100%;
height: 320px;
object-fit: cover;
object-position: center;
display: block;
}

.bse .clients-blk {
padding: 96px 0;
background: #fff;
}

.bse .clients-blk .inner {
max-width: 1280px;
margin: 0 auto;
padding: 0 48px;
}

.bse .clients-blk h2 {
font-size: 37px;
font-weight: 900;
line-height: 1.1;
color: #1a0a2e;
margin: 0 0 48px;
letter-spacing: -0.5px;
}

.bse .clients-blk .cases {
display: flex;
flex-direction: column;
gap: 24px;
}

.bse .clients-blk .case {
display: grid;
grid-template-columns: 1fr 2fr 1fr;
gap: 24px;
align-items: start;
background: #f5f0fa;
border-radius: 10px;
padding: 24px;
box-shadow: 2px 3px 3px 1px rgba(104, 31, 172, 0.08);
transition: box-shadow 0.09s ease-out;
}

.bse .clients-blk .case:hover {
box-shadow: 2px 5px 20px 1px rgba(104, 31, 172, 0.10);
}

.bse .clients-blk .case-who {
display: flex;
flex-direction: column;
gap: 8px;
}

.bse .clients-blk .case-who strong {
font-size: 18px;
font-weight: 800;
color: #1a0a2e;
line-height: 1.1;
}

.bse .clients-blk .case-who span {
font-size: 16px;
color: #681FAC;
line-height: 1.5;
}

.bse .clients-blk .case-body {
font-size: 16px;
line-height: 1.9;
color: #3d2255;
}

.bse .clients-blk .case-result {
display: flex;
flex-direction: column;
gap: 8px;
align-items: flex-end;
}

.bse .clients-blk .tag {
background: linear-gradient(135deg, #681FAC 0%, #BD62D0 100%);
color: #fff;
font-size: 16px;
font-weight: 700;
padding: 8px 16px;
border-radius: 5px;
text-align: center;
}

@media (max-width: 900px) {
.bse .pg-wrap {
padding: 0 24px;
}

.bse .divider-tick {
padding: 0 24px;
}

.bse .title-blk .inner {
flex-direction: column;
padding: 0 24px;
}

.bse .title-blk h1 {
font-size: 52px;
}

.bse .title-blk .img-side {
max-width: 100%;
}

.bse .who-blk .inner {
grid-template-columns: 1fr;
padding: 0 24px;
}

.bse .adapt-blk .inner {
padding: 0 24px;
}

.bse .adapt-blk .cards {
grid-template-columns: 1fr;
}

.bse .rel-blk .inner {
flex-direction: column;
padding: 0 24px;
}

.bse .rel-blk .narrow {
flex: none;
}

.bse .ctx-blk .inner {
padding: 0 24px;
}

.bse .ctx-blk .layout {
grid-template-columns: 1fr;
}

.bse .ctx-blk .two-col-text {
columns: 1;
}

.bse .out-blk .inner {
padding: 0 24px;
}

.bse .out-blk .grid {
grid-template-columns: 1fr;
}

.bse .clients-blk .inner {
padding: 0 24px;
}

.bse .clients-blk .case {
grid-template-columns: 1fr;
}

.bse .clients-blk .case-result {
align-items: flex-start;
}

.bse .ctx-blk .stats-row {
gap: 24px;
}
}

@media (max-width: 600px) {
.bse .title-blk {
padding: 48px 0 24px;
}

.bse .title-blk h1 {
font-size: 37px;
}

.bse .who-blk {
padding: 48px 0;
}

.bse .adapt-blk {
padding: 48px 0;
}

.bse .rel-blk {
padding: 48px 0;
}

.bse .ctx-blk {
padding: 48px 0;
}

.bse .out-blk {
padding: 48px 0;
}

.bse .clients-blk {
padding: 48px 0;
}

.bse .stat-accent .num {
font-size: 37px;
}
}

.abt-us {
overflow-x: clip;
position: relative;
}

.abt-us .slide-in {
opacity: 0;
transform: translateX(60px);
animation: slideFromRight 0.55s ease-out forwards;
}

.abt-us .slide-in:nth-child(1) {
animation-delay: 0.08s;
}

.abt-us .slide-in:nth-child(2) {
animation-delay: 0.18s;
}

.abt-us .slide-in:nth-child(3) {
animation-delay: 0.28s;
}

.abt-us .slide-in:nth-child(4) {
animation-delay: 0.38s;
}

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

.abt-us .gentle-shake {
animation: gentleShake 6s ease-out infinite;
animation-delay: 3s;
}

@keyframes gentleShake {

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

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

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

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

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

98% {
transform: translateX(-1px);
}
}

.abt-us .pg-bound {
max-width: 1280px;
margin-left: auto;
margin-right: auto;
padding-left: 48px;
padding-right: 48px;
}

.abt-us .opening-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 96px;
align-items: start;
padding-top: 96px;
padding-bottom: 96px;
background: #fff;
}

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

.abt-us .opening-row .pre-label {
font-size: 16px;
line-height: 1.5;
color: #681FAC;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
}

.abt-us .opening-row .main-heading {
font-size: 68px;
line-height: 1.1;
font-weight: 900;
color: #1a0033;
margin: 0;
letter-spacing: -0.02em;
}

.abt-us .opening-row .lead-graf {
font-size: 21px;
line-height: 1.5;
color: #3d2060;
margin: 0;
}

.abt-us .opening-row .body-duo {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
}

.abt-us .opening-row .body-duo p {
font-size: 16px;
line-height: 1.9;
color: #4a3570;
margin: 0;
}

.abt-us .img-col {
position: relative;
display: flex;
flex-direction: column;
align-items: flex-end;
}

.abt-us .img-frame {
position: relative;
width: 100%;
max-width: 520px;
}

.abt-us .img-frame::before {
content: "";
position: absolute;
inset: -12px -12px -12px -12px;
border: 2px solid #C2ACE0;
border-radius: 20px;
pointer-events: none;
z-index: 1;
}

.abt-us .img-frame::after {
content: "";
position: absolute;
inset: -24px -24px -24px -24px;
border: 1px solid rgba(104, 31, 172, 0.18);
border-radius: 32px;
pointer-events: none;
z-index: 0;
}

.abt-us .img-frame .main-img {
width: 100%;
height: 480px;
object-fit: cover;
object-position: center;
border-radius: 10px;
display: block;
filter: saturate(0.85) brightness(0.95) hue-rotate(0deg);
position: relative;
z-index: 2;
}

.abt-us .img-frame .cool-grade {
filter: saturate(0.7) brightness(0.92) contrast(1.05);
}

.abt-us .img-deco {
position: absolute;
bottom: -32px;
left: -32px;
width: 140px;
height: 140px;
background: linear-gradient(135deg, #681FAC 0%, #fff 100%);
border-radius: 20px;
opacity: 0.13;
pointer-events: none;
z-index: 0;
}

.abt-us .stat-badge {
position: absolute;
top: 48px;
right: -16px;
background: #fff;
border: 2px solid #C2ACE0;
border-radius: 10px;
padding: 16px 24px;
box-shadow: 2px 5px 20px 1px rgba(104, 31, 172, 0.10);
z-index: 3;
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
}

.abt-us .stat-badge .big-num {
font-size: 37px;
line-height: 1.1;
font-weight: 900;
color: #681FAC;
}

.abt-us .stat-badge .small-lbl {
font-size: 16px;
line-height: 1.5;
color: #4a3570;
font-weight: 500;
text-align: center;
}

.abt-us .mid-band {
background: linear-gradient(158deg, #681FAC 0%, #fff 100%);
padding-top: 96px;
padding-bottom: 96px;
position: relative;
overflow: hidden;
}

.abt-us .mid-band .band-inner {
position: relative;
z-index: 2;
}

.abt-us .mid-band .band-grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 48px;
align-items: start;
}

.abt-us .mid-band .band-hd-col {
display: flex;
flex-direction: column;
gap: 24px;
grid-column: 1 / 2;
}

.abt-us .mid-band .shared-top {
grid-column: 1 / 4;
border-top: 2px solid rgba(255, 255, 255, 0.35);
padding-top: 48px;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 48px;
}

.abt-us .mid-band .section-label {
font-size: 16px;
line-height: 1.5;
color: rgba(255, 255, 255, 0.75);
text-transform: uppercase;
letter-spacing: 0.12em;
font-weight: 600;
}

.abt-us .mid-band .band-heading {
font-size: 52px;
line-height: 1.1;
font-weight: 900;
color: #fff;
margin: 0;
letter-spacing: -0.02em;
}

.abt-us .mid-band .band-desc {
font-size: 18px;
line-height: 1.5;
color: rgba(255, 255, 255, 0.85);
margin: 0;
}

.abt-us .feat-card {
background: rgba(255, 255, 255, 0.10);
border: 1px solid rgba(255, 255, 255, 0.25);
border-radius: 10px;
padding: 24px;
display: flex;
flex-direction: column;
gap: 16px;
position: relative;
box-shadow: 2px 12px 36px 1px rgba(104, 31, 172, 0.13);
transition: border-color 0.12s ease-out;
}

.abt-us .feat-card:hover {
border-color: rgba(255, 255, 255, 0.55);
}

.abt-us .feat-card .card-icon {
width: 40px;
height: 40px;
border-radius: 10px;
background: rgba(255, 255, 255, 0.18);
display: flex;
align-items: center;
justify-content: center;
}

.abt-us .feat-card .card-icon svg {
width: 22px;
height: 22px;
fill: #fff;
}

.abt-us .feat-card .card-hed {
font-size: 21px;
line-height: 1.1;
font-weight: 900;
color: #fff;
margin: 0;
letter-spacing: -0.01em;
}

.abt-us .feat-card .card-txt {
font-size: 16px;
line-height: 1.9;
color: rgba(255, 255, 255, 0.82);
margin: 0;
}

.abt-us .feat-card .offset-shadow {
position: absolute;
inset: 6px -6px -6px 6px;
border: 1px solid rgba(194, 172, 224, 0.35);
border-radius: 10px;
pointer-events: none;
z-index: -1;
}

.abt-us .closing-row {
background: #fff;
padding-top: 96px;
padding-bottom: 96px;
}

.abt-us .closing-row .cr-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 96px;
align-items: start;
}

.abt-us .closing-row .right-stack {
display: flex;
flex-direction: column;
gap: 48px;
}

.abt-us .closing-row .cr-heading {
font-size: 37px;
line-height: 1.1;
font-weight: 900;
color: #1a0033;
margin: 0;
letter-spacing: -0.02em;
text-align: center;
}

.abt-us .closing-row .cr-sub {
font-size: 18px;
line-height: 1.5;
color: #4a3570;
margin: 0;
text-align: center;
}

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

.abt-us .portrait-item {
display: flex;
flex-direction: column;
gap: 16px;
}

.abt-us .portrait-img-wrap {
border-radius: 10px;
overflow: hidden;
aspect-ratio: 2/3;
box-shadow: 2px 5px 20px 1px rgba(104, 31, 172, 0.10);
}

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

.abt-us .portrait-img-wrap:hover img {
transform: scale(1.03);
}

.abt-us .portrait-name {
font-size: 18px;
line-height: 1.5;
font-weight: 700;
color: #1a0033;
margin: 0;
}

.abt-us .portrait-role {
font-size: 16px;
line-height: 1.5;
color: #681FAC;
margin: 0;
}

.abt-us .portrait-note {
font-size: 16px;
line-height: 1.9;
color: #4a3570;
margin: 0;
}

.abt-us .left-col {
display: flex;
flex-direction: column;
gap: 24px;
}

.abt-us .left-col .lc-label {
font-size: 16px;
line-height: 1.5;
color: #681FAC;
text-transform: uppercase;
letter-spacing: 0.12em;
font-weight: 600;
}

.abt-us .left-col .lc-hed {
font-size: 37px;
line-height: 1.1;
font-weight: 900;
color: #1a0033;
margin: 0;
letter-spacing: -0.02em;
}

.abt-us .left-col .lc-body {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
}

.abt-us .left-col .lc-body p {
font-size: 16px;
line-height: 1.9;
color: #4a3570;
margin: 0;
}

.abt-us .checklist {
display: flex;
flex-direction: column;
gap: 16px;
list-style: none;
margin: 0;
padding: 0;
}

.abt-us .checklist li {
display: flex;
align-items: flex-start;
gap: 16px;
font-size: 16px;
line-height: 1.9;
color: #4a3570;
}

.abt-us .checklist li::before {
content: "";
flex-shrink: 0;
width: 20px;
height: 20px;
border-radius: 5px;
border: 2px solid #681FAC;
background: linear-gradient(135deg, #681FAC 0%, #BD62D0 100%);
position: relative;
top: 4px;
display: block;
box-shadow: 2px 3px 3px 1px rgba(104, 31, 172, 0.08);
}

.abt-us .checklist li::after {
content: "";
}

.abt-us .checklist .check-mark {
flex-shrink: 0;
width: 20px;
height: 20px;
border-radius: 5px;
border: 2px solid #681FAC;
position: relative;
top: 4px;
display: block;
overflow: hidden;
}

.abt-us .checklist .check-mark::before {
content: "";
position: absolute;
left: 3px;
top: 1px;
width: 10px;
height: 6px;
border-left: 2px solid #fff;
border-bottom: 2px solid #fff;
transform: rotate(-45deg) translateY(2px);
background: transparent;
}

.abt-us .checklist .check-mark {
background: linear-gradient(135deg, #681FAC 0%, #BD62D0 100%);
}

.abt-us .img-showcase {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: auto auto;
gap: 16px;
}

.abt-us .img-showcase .img-big {
grid-column: 1 / 3;
border-radius: 10px;
overflow: hidden;
height: 220px;
box-shadow: 2px 5px 20px 1px rgba(104, 31, 172, 0.10);
}

.abt-us .img-showcase .img-sm {
border-radius: 10px;
overflow: hidden;
height: 160px;
box-shadow: 2px 3px 3px 1px rgba(104, 31, 172, 0.08);
}

.abt-us .img-showcase img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
}

.abt-us .stat-row {
display: flex;
flex-direction: row;
gap: 48px;
align-items: center;
padding: 24px;
background: linear-gradient(135deg, rgba(104, 31, 172, 0.06) 0%, #fff 100%);
border-radius: 10px;
border: 1px solid #C2ACE0;
}

.abt-us .stat-item {
display: flex;
flex-direction: column;
gap: 8px;
align-items: center;
flex: 1;
}

.abt-us .stat-item .s-num {
font-size: 37px;
line-height: 1.1;
font-weight: 900;
color: #681FAC;
}

.abt-us .stat-item .s-lbl {
font-size: 16px;
line-height: 1.5;
color: #4a3570;
text-align: center;
}

.abt-us .stat-sep {
width: 1px;
height: 48px;
background: #C2ACE0;
}

.abt-us .cta-strip {
margin-top: 24px;
display: flex;
flex-direction: row;
gap: 16px;
flex-wrap: wrap;
}

.abt-us .btn-primary {
display: inline-block;
padding: 16px 48px;
background: #681FAC;
color: #fff;
font-size: 18px;
line-height: 1.5;
font-weight: 700;
border-radius: 5px;
border: none;
cursor: pointer;
text-decoration: none;
transition: background-color 0.1s ease-out, box-shadow 0.1s ease-out;
box-shadow: 2px 5px 20px 1px rgba(104, 31, 172, 0.10);
}

.abt-us .btn-primary:hover {
background: #4e1785;
box-shadow: 2px 12px 36px 1px rgba(104, 31, 172, 0.13);
}

.abt-us .btn-primary:focus {
outline: 3px solid #BD62D0;
outline-offset: 2px;
}

.abt-us .btn-secondary {
display: inline-block;
padding: 16px 48px;
background: transparent;
color: #681FAC;
font-size: 18px;
line-height: 1.5;
font-weight: 700;
border-radius: 5px;
border: 2px solid #681FAC;
cursor: pointer;
text-decoration: none;
transition: background-color 0.09s linear, color 0.09s linear;
}

.abt-us .btn-secondary:hover {
background: #681FAC;
color: #fff;
}

.abt-us .btn-secondary:focus {
outline: 3px solid #BD62D0;
outline-offset: 2px;
}

.abt-us .divider-angled {
width: 100%;
height: 48px;
background: #fff;
clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
}

@media (max-width: 1024px) {
.abt-us .pg-bound {
padding-left: 24px;
padding-right: 24px;
}

.abt-us .opening-row {
grid-template-columns: 1fr;
gap: 48px;
padding-top: 48px;
padding-bottom: 48px;
}

.abt-us .img-col {
align-items: center;
}

.abt-us .stat-badge {
right: 0;
}

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

.abt-us .mid-band .shared-top {
grid-template-columns: 1fr;
gap: 24px;
}

.abt-us .closing-row .cr-grid {
grid-template-columns: 1fr;
gap: 48px;
}

.abt-us .portrait-pair {
grid-template-columns: 1fr 1fr;
}

.abt-us .opening-row .main-heading {
font-size: 52px;
}

.abt-us .mid-band .band-heading {
font-size: 37px;
}
}

@media (max-width: 640px) {
.abt-us .opening-row .body-duo {
grid-template-columns: 1fr;
}

.abt-us .portrait-pair {
grid-template-columns: 1fr;
}

.abt-us .img-showcase {
grid-template-columns: 1fr;
}

.abt-us .img-showcase .img-big {
grid-column: 1;
}

.abt-us .stat-row {
flex-direction: column;
gap: 24px;
}

.abt-us .stat-sep {
width: 48px;
height: 1px;
}

.abt-us .left-col .lc-body {
grid-template-columns: 1fr;
}

.abt-us .opening-row .main-heading {
font-size: 37px;
}

.abt-us .mid-band .band-heading {
font-size: 37px;
}

.abt-us .closing-row .cr-heading {
font-size: 21px;
}

.abt-us .cta-strip {
flex-direction: column;
}
}

.srv-pg {
overflow-x: hidden;
}

.srv-pg .drop-bounce {
animation: dropBounce 0.55s cubic-bezier(0.22, 1.2, 0.5, 1) both;
}

@keyframes dropBounce {
0% {
opacity: 0;
transform: translateY(-32px);
}

70% {
opacity: 1;
transform: translateY(4px);
}

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

.srv-pg .drop-bounce-delay {
animation: dropBounce 0.55s 0.12s cubic-bezier(0.22, 1.2, 0.5, 1) both;
}

.srv-pg .drop-bounce-delay-2 {
animation: dropBounce 0.55s 0.22s cubic-bezier(0.22, 1.2, 0.5, 1) both;
}

.srv-pg .top-band {
background: linear-gradient(158deg, #681FAC 0%, #ffffff 100%);
padding: 96px 24px 48px;
position: relative;
}

.srv-pg .top-band-inner {
max-width: 1280px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 24px;
}

.srv-pg .top-label {
display: inline-block;
font-size: 16px;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
color: #C2ACE0;
line-height: 1.5;
}

.srv-pg .top-heading {
font-size: 68px;
font-weight: 900;
line-height: 1.1;
color: #ffffff;
margin: 0;
max-width: 780px;
}

.srv-pg .top-heading em {
font-style: normal;
background: #C2ACE0;
color: #681FAC;
padding: 0 8px;
border-radius: 5px;
}

.srv-pg .top-sub {
font-size: 21px;
line-height: 1.5;
color: #f0eaf8;
max-width: 560px;
margin: 0;
}

.srv-pg .top-band-deco {
position: absolute;
right: 0;
bottom: 0;
width: 340px;
height: 340px;
pointer-events: none;
overflow: hidden;
border-radius: 10px 0 0 0;
}

.srv-pg .top-band-deco::before {
content: '';
position: absolute;
inset: 16px;
border: 2px solid rgba(194, 172, 224, 0.3);
border-radius: 10px;
}

.srv-pg .top-band-deco::after {
content: '';
position: absolute;
inset: 32px;
border: 1px solid rgba(194, 172, 224, 0.15);
border-radius: 5px;
}

.srv-pg .svc-grid-area {
background: #ffffff;
padding: 96px 24px;
}

.srv-pg .svc-grid-inner {
max-width: 1280px;
margin: 0 auto;
}

.srv-pg .svc-grid-head {
display: flex;
flex-direction: row;
align-items: flex-end;
justify-content: space-between;
gap: 48px;
margin-bottom: 48px;
}

.srv-pg .svc-grid-head-left {
flex: 1;
}

.srv-pg .svc-grid-h2 {
font-size: 52px;
font-weight: 900;
line-height: 1.1;
color: #1a0a2e;
margin: 0 0 16px;
letter-spacing: -0.01em;
}

.srv-pg .svc-grid-desc {
font-size: 18px;
line-height: 1.5;
color: #3d2060;
margin: 0;
max-width: 420px;
}

.srv-pg .svc-stat-aside {
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 8px;
flex-shrink: 0;
}

.srv-pg .svc-stat-num {
font-size: 68px;
font-weight: 900;
line-height: 1.1;
color: #681FAC;
}

.srv-pg .svc-stat-lbl {
font-size: 16px;
line-height: 1.5;
color: #7a5a9a;
text-align: right;
max-width: 160px;
}

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

.srv-pg .svc-card {
background: #faf8fd;
border-radius: 10px;
padding: 48px 24px 24px;
box-shadow: 2px 3px 3px 1px rgba(104, 31, 172, 0.08);
transition: box-shadow 0.1s ease-out, transform 0.1s ease-out;
position: relative;
overflow: hidden;
}

.srv-pg .svc-card::before {
content: '';
position: absolute;
top: 0;
left: 24px;
right: 24px;
height: 3px;
background: linear-gradient(90deg, #681FAC 0%, #BD62D0 100%);
border-radius: 0 0 3px 3px;
}

.srv-pg .svc-card:hover {
box-shadow: 2px 5px 20px 1px rgba(104, 31, 172, 0.10);
transform: translateY(-3px);
}

.srv-pg .svc-card-icon {
width: 48px;
height: 48px;
border-radius: 10px;
background: linear-gradient(135deg, #681FAC 0%, #BD62D0 100%);
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
margin-bottom: 24px;
}

.srv-pg .svc-card-icon svg {
width: 24px;
height: 24px;
fill: none;
stroke: #ffffff;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
}

.srv-pg .svc-card-h {
font-size: 21px;
font-weight: 800;
line-height: 1.1;
color: #1a0a2e;
margin: 0 0 16px;
}

.srv-pg .svc-card-p {
font-size: 16px;
line-height: 1.9;
color: #4a3068;
margin: 0 0 24px;
}

.srv-pg .svc-card-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 8px;
}

.srv-pg .svc-card-list li {
font-size: 16px;
line-height: 1.5;
color: #3d2060;
padding-left: 24px;
position: relative;
}

.srv-pg .svc-card-list li::before {
content: '';
position: absolute;
left: 0;
top: 6px;
width: 13px;
height: 13px;
border: 2px solid #681FAC;
border-radius: 3px;
}

.srv-pg .svc-card-list li.checked::before {
background: #681FAC;
border-color: #681FAC;
}

.srv-pg .svc-card-list li.checked::after {
content: '';
position: absolute;
left: 3px;
top: 9px;
width: 7px;
height: 4px;
border-left: 2px solid #ffffff;
border-bottom: 2px solid #ffffff;
transform: rotate(-45deg);
}

.srv-pg .process-area {
background: linear-gradient(158deg, #f5f0fc 0%, #ffffff 100%);
padding: 96px 24px;
}

.srv-pg .process-inner {
max-width: 1280px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 96px;
align-items: start;
}

.srv-pg .process-left {
display: flex;
flex-direction: column;
gap: 48px;
}

.srv-pg .process-h2 {
font-size: 37px;
font-weight: 900;
line-height: 1.1;
color: #1a0a2e;
margin: 0;
text-align: center;
}

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

.srv-pg .step-row {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 16px;
padding: 24px;
background: #ffffff;
border-radius: 10px;
box-shadow: 2px 3px 3px 1px rgba(104, 31, 172, 0.08);
transition: box-shadow 0.09s linear;
}

.srv-pg .step-row:hover {
box-shadow: 2px 5px 20px 1px rgba(104, 31, 172, 0.10);
}

.srv-pg .step-num {
font-size: 37px;
font-weight: 900;
line-height: 1.1;
color: #C2ACE0;
flex-shrink: 0;
width: 48px;
}

.srv-pg .step-body {
display: flex;
flex-direction: column;
gap: 8px;
}

.srv-pg .step-h {
font-size: 18px;
font-weight: 800;
line-height: 1.1;
color: #1a0a2e;
margin: 0;
}

.srv-pg .step-p {
font-size: 16px;
line-height: 1.9;
color: #4a3068;
margin: 0;
}

.srv-pg .process-right {
display: flex;
flex-direction: column;
gap: 24px;
}

.srv-pg .process-img-wrap {
border-radius: 10px;
overflow: hidden;
box-shadow: 2px 5px 20px 1px rgba(104, 31, 172, 0.10);
position: relative;
}

.srv-pg .process-img-wrap::after {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse at center, transparent 40%, rgba(104, 31, 172, 0.18) 100%);
pointer-events: none;
}

.srv-pg .process-img {
width: 100%;
height: 280px;
object-fit: cover;
object-position: center;
display: block;
}

.srv-pg .testi-cards {
display: flex;
flex-direction: column;
gap: 16px;
}

.srv-pg .testi-card {
background: #ffffff;
border-radius: 10px;
padding: 24px;
box-shadow: 2px 3px 3px 1px rgba(104, 31, 172, 0.08);
display: flex;
flex-direction: row;
gap: 16px;
align-items: flex-start;
}

.srv-pg .testi-portrait {
width: 56px;
height: 56px;
border-radius: 50%;
object-fit: cover;
object-position: center;
flex-shrink: 0;
}

.srv-pg .testi-body {
display: flex;
flex-direction: column;
gap: 8px;
}

.srv-pg .testi-quote {
font-size: 16px;
line-height: 1.9;
color: #3d2060;
margin: 0;
font-style: italic;
}

.srv-pg .testi-name {
font-size: 16px;
font-weight: 700;
color: #681FAC;
line-height: 1.5;
}

.srv-pg .testi-role {
font-size: 16px;
color: #7a5a9a;
line-height: 1.5;
}

.srv-pg .highlight-term {
background: #C2ACE0;
color: #1a0a2e;
padding: 0 6px;
border-radius: 3px;
}

.srv-pg .corner-deco {
position: absolute;
pointer-events: none;
}

.srv-pg .corner-deco svg {
display: block;
}

.srv-pg .cta-strip {
background: #681FAC;
padding: 48px 24px;
}

.srv-pg .cta-strip-inner {
max-width: 1280px;
margin: 0 auto;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
gap: 48px;
}

.srv-pg .cta-strip-text {
display: flex;
flex-direction: column;
gap: 8px;
}

.srv-pg .cta-strip-h {
font-size: 37px;
font-weight: 900;
line-height: 1.1;
color: #ffffff;
margin: 0;
}

.srv-pg .cta-strip-p {
font-size: 18px;
line-height: 1.5;
color: #C2ACE0;
margin: 0;
}

.srv-pg .cta-btn {
display: inline-block;
padding: 16px 48px;
background: #ffffff;
color: #681FAC;
font-size: 18px;
font-weight: 800;
border-radius: 5px;
text-decoration: none;
border: none;
cursor: pointer;
flex-shrink: 0;
box-shadow: 2px 5px 20px 1px rgba(104, 31, 172, 0.10);
transition: background 0.1s ease-out, color 0.08s ease-out;
}

.srv-pg .cta-btn:hover {
background: #C2ACE0;
color: #1a0a2e;
}

.srv-pg .cta-btn:focus {
outline: 3px solid #C2ACE0;
outline-offset: 3px;
}

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

.srv-pg .process-inner {
grid-template-columns: 1fr;
gap: 48px;
}

.srv-pg .svc-grid-head {
flex-direction: column;
align-items: flex-start;
}

.srv-pg .svc-stat-aside {
align-items: flex-start;
}
}

@media (max-width: 768px) {
.srv-pg .top-heading {
font-size: 52px;
}

.srv-pg .svc-grid-h2 {
font-size: 37px;
}

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

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

.srv-pg .top-band-deco {
display: none;
}
}

@media (max-width: 480px) {
.srv-pg .top-heading {
font-size: 37px;
}

.srv-pg .svc-stat-num {
font-size: 52px;
}
}

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

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

.success-page .icon-wrap {
width: 72px;
height: 72px;
margin: 0 auto 48px;
border-radius: 20px;
background: linear-gradient(135deg, #681FAC, #BD62D0);
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
box-shadow: 2px 12px 36px 1px rgba(104, 31, 172, 0.13);
}

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

.success-page .success-heading {
font-size: 37px;
font-weight: 900;
line-height: 1.1;
letter-spacing: -0.02em;
color: #681FAC;
margin: 0 0 16px;
}

.success-page .success-sub {
font-size: 18px;
line-height: 1.5;
color: #3d2255;
margin: 0 0 48px;
}

.success-page .success-divider {
width: 48px;
height: 3px;
border-radius: 3px;
background: linear-gradient(90deg, #681FAC, #C2ACE0);
margin: 0 auto 48px;
}

.success-page .info-block {
background: #f5f0fb;
border-radius: 10px;
padding: 24px;
margin-bottom: 48px;
box-shadow: 2px 3px 3px 1px rgba(104, 31, 172, 0.08);
}

.success-page .info-block p {
font-size: 16px;
line-height: 1.5;
color: #3d2255;
margin: 0;
}

.success-page .info-block p+p {
margin-top: 8px;
}

.success-page .info-block strong {
color: #681FAC;
font-weight: 700;
}

.success-page .back-link {
display: inline-block;
padding: 16px 48px;
background: #681FAC;
color: #ffffff;
font-size: 16px;
font-weight: 700;
border-radius: 5px;
text-decoration: none;
border: 2px solid #681FAC;
transition: background-color 0.12s ease-out, border-color 0.12s ease-out, color 0.1s linear;
box-shadow: 2px 5px 20px 1px rgba(104, 31, 172, 0.10);
}

.success-page .back-link:hover {
background: #ffffff;
color: #681FAC;
border-color: #681FAC;
}

.success-page .back-link:focus {
outline: 3px solid #C2ACE0;
outline-offset: 3px;
}

.success-page .back-link:active {
background: #4e1680;
border-color: #4e1680;
color: #ffffff;
}

@media (max-width: 600px) {
.success-page {
padding: 48px 16px;
}

.success-page .success-heading {
font-size: 37px;
}

.success-page .back-link {
padding: 16px 24px;
display: block;
text-align: center;
}
}