html {
margin: 0;
padding: 0;
box-sizing: border-box;
scroll-behavior: smooth;
}

body {
margin: 0;
padding: 0;
min-height: 100dvh;
overflow-x: hidden;
}

*:focus-visible {
outline: 2px solid #2CC660;
outline-offset: 3px;
transition: outline-color 0.18s ease-out;
}

.site-header {
font-family: 'Roboto Slab', serif;
background: #ffffff;
position: relative;
}

.hd-top {
background: linear-gradient(135deg, #2CC660 0%, #1fa84e 60%, #D3CDE5 100%);
padding: 16px 40px;
display: flex;
align-items: center;
justify-content: space-between;
max-width: 1440px;
margin: 0 auto;
}

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

.logo-shell {
width: 48px;
height: 48px;
border-radius: 46px;
background: #ffffff;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 2px 2px 5px -1px rgba(44, 198, 96, 0.07), 2px 5px 18px -1px rgba(44, 198, 96, 0.08), 2px 12px 36px -1px rgba(44, 198, 96, 0.12);
border: 2px solid rgba(255, 255, 255, 0.9);
flex-shrink: 0;
overflow: hidden;
}

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

.brand-label {
font-size: 24px;
font-weight: 700;
line-height: 1.2;
color: #ffffff;
letter-spacing: 0;
}

.hd-notice {
font-size: 14px;
line-height: 1.8;
color: #ffffff;
background: rgba(255, 255, 255, 0.18);
border-radius: 2px;
padding: 4px 16px;
font-weight: 400;
}

.hd-nav-bar {
background: #ffffff;
border-top: 2px solid #D3CDE5;
box-shadow: 2px 5px 18px -1px rgba(44, 198, 96, 0.08);
}

.hd-nav-shell {
max-width: 1440px;
margin: 0 auto;
padding: 0 40px;
display: flex;
align-items: stretch;
flex-wrap: wrap;
}

.hd-nav-shell a {
font-family: 'Roboto Slab', serif;
font-size: 14px;
font-weight: 700;
line-height: 1.2;
color: #1a3a28;
text-decoration: none;
padding: 20px 20px;
display: inline-flex;
align-items: center;
position: relative;
transition: color 0.18s ease-out;
white-space: nowrap;
}

.hd-nav-shell a::after {
content: '';
position: absolute;
bottom: 12px;
left: 20px;
width: 0;
height: 2px;
background: #2CC660;
border-radius: 2px;
transition: width 0.2s cubic-bezier(0.4, 0, 0.6, 1);
}

.hd-nav-shell a:hover {
color: #2CC660;
}

.hd-nav-shell a:hover::after {
width: calc(100% - 40px);
}

.hd-nav-shell a.active {
color: #2CC660;
}

.site-footer {
font-family: 'Roboto Slab', serif;
background: #1a3a28;
position: relative;
overflow: hidden;
}

.ft-texture {
position: absolute;
inset: 0;
background-image: repeating-linear-gradient(45deg,
rgba(44, 198, 96, 0.03) 0px,
rgba(44, 198, 96, 0.03) 1px,
transparent 1px,
transparent 12px);
pointer-events: none;
}

.ft-upper {
max-width: 1440px;
margin: 0 auto;
padding: 80px 40px 40px;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 40px;
position: relative;
}

.ft-brand-col {
display: flex;
flex-direction: column;
gap: 16px;
}

.ft-logo-mount {
display: flex;
align-items: center;
gap: 16px;
text-decoration: none;
}

.ft-logo-shell {
width: 48px;
height: 48px;
border-radius: 46px;
background: #ffffff;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 2px 2px 5px -1px rgba(44, 198, 96, 0.07), 2px 5px 18px -1px rgba(44, 198, 96, 0.08);
border: 2px solid rgba(255, 255, 255, 0.85);
flex-shrink: 0;
overflow: hidden;
}

.ft-logo-shell img {
width: 40px;
height: 40px;
object-fit: contain;
display: block;
}

.ft-brand-name {
font-size: 24px;
font-weight: 700;
line-height: 1.2;
color: #ffffff;
}

.ft-tagline {
font-size: 14px;
line-height: 1.8;
color: #D3CDE5;
font-weight: 400;
}

.ft-contact-col {
display: flex;
flex-direction: column;
gap: 8px;
}

.ft-col-label {
font-size: 14px;
font-weight: 700;
line-height: 1.2;
color: #2CC660;
margin-bottom: 8px;
text-transform: uppercase;
letter-spacing: 0;
}

.ft-addr {
font-size: 14px;
line-height: 1.8;
color: #D3CDE5;
font-style: normal;
}

.ft-contact-link {
font-size: 14px;
line-height: 1.8;
color: #D3CDE5;
text-decoration: none;
display: block;
transition: color 0.18s ease-out;
}

.ft-contact-link:hover {
color: #2CC660;
}

.ft-links-col {
display: flex;
flex-direction: column;
gap: 8px;
}

.ft-nav-link {
font-size: 14px;
line-height: 1.8;
color: #D3CDE5;
text-decoration: none;
display: inline-block;
position: relative;
transition: color 0.2s cubic-bezier(0.4, 0, 0.6, 1);
}

.ft-nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 1px;
background: #2CC660;
transition: width 0.2s cubic-bezier(0.4, 0, 0.6, 1);
}

.ft-nav-link:hover {
color: #2CC660;
}

.ft-nav-link:hover::after {
width: 100%;
}

.ft-pref-link {
font-size: 14px;
line-height: 1.8;
color: #D7ACA6;
text-decoration: none;
display: inline-block;
position: relative;
margin-top: 8px;
transition: color 0.2s cubic-bezier(0.4, 0, 0.6, 1);
}

.ft-pref-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 1px;
background: #D7ACA6;
transition: width 0.2s cubic-bezier(0.4, 0, 0.6, 1);
}

.ft-pref-link:hover {
color: #ffffff;
}

.ft-pref-link:hover::after {
width: 100%;
}

.ft-divider {
max-width: 1440px;
margin: 0 auto;
border: none;
border-top: 1px solid rgba(211, 205, 229, 0.15);
}

.ft-lower {
max-width: 1440px;
margin: 0 auto;
padding: 20px 40px;
display: flex;
align-items: center;
justify-content: space-between;
position: relative;
}

.ft-copy {
font-size: 14px;
line-height: 1.8;
color: rgba(211, 205, 229, 0.6);
font-weight: 400;
}

.ck-bar {
display: none;
position: fixed;
left: 0;
right: 0;
bottom: 0;
margin: 0 auto;
width: 100%;
z-index: 1200;
font-family: 'Roboto Slab', serif;
background: #1a3a28;
border-top: 2px solid #2CC660;
box-shadow: 2px 12px 36px -1px rgba(44, 198, 96, 0.12);
transform: translateX(-100%);
transition: transform 0.38s cubic-bezier(0.4, 0, 0.6, 1);
}

.ck-bar.ck-visible {
transform: translateX(0);
}

.ck-bar-inner {
max-width: 1440px;
margin: 0 auto;
padding: 20px 40px;
display: flex;
align-items: center;
gap: 16px;
flex-wrap: wrap;
}

.ck-text-hold {
flex: 1;
min-width: 200px;
}

.ck-headline {
font-size: 14px;
font-weight: 700;
line-height: 1.2;
color: #2CC660;
margin-bottom: 4px;
}

.ck-desc {
font-size: 14px;
line-height: 1.8;
color: #D3CDE5;
}

.ck-toggles {
display: none;
flex-direction: column;
gap: 8px;
padding: 16px 0 8px;
width: 100%;
}

.ck-toggles.ck-open {
display: flex;
}

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

.ck-toggle-row label {
font-size: 14px;
line-height: 1.8;
color: #D3CDE5;
cursor: pointer;
}

.ck-toggle-row input[type="checkbox"] {
accent-color: #2CC660;
width: 16px;
height: 16px;
cursor: pointer;
}

.ck-toggle-row input[type="checkbox"]:disabled {
opacity: 0.6;
cursor: not-allowed;
}

.ck-btns {
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
}

.ck-btn {
font-family: 'Roboto Slab', serif;
font-size: 14px;
font-weight: 700;
line-height: 1.2;
padding: 8px 20px;
border-radius: 2px;
border: 2px solid #2CC660;
background: transparent;
color: #2CC660;
cursor: pointer;
min-height: 44px;
transition: background 0.18s ease-out, color 0.18s ease-out;
}

.ck-btn:hover,
.ck-btn:focus-visible {
background: #2CC660;
color: #ffffff;
}

.ck-btn:active {
transform: scale(0.97);
}

.ck-btn-reject {
border-color: #D7ACA6;
color: #D7ACA6;
}

.ck-btn-reject:hover,
.ck-btn-reject:focus-visible {
background: #D7ACA6;
color: #1a3a28;
}

.ck-settings-btn {
font-family: 'Roboto Slab', serif;
font-size: 14px;
line-height: 1.8;
color: #D3CDE5;
background: none;
border: none;
cursor: pointer;
padding: 4px 8px;
text-decoration: underline;
transition: color 0.18s ease-out;
}

.ck-settings-btn:hover {
color: #2CC660;
}

@media (max-width: 1024px) {
.hd-top {
padding: 16px 20px;
}

.hd-nav-shell {
padding: 0 20px;
}

.ft-upper {
grid-template-columns: 1fr 1fr;
padding: 40px 20px 20px;
}

.ft-lower {
padding: 20px;
}
}

@media (max-width: 768px) {
.hd-top {
flex-direction: column;
align-items: flex-start;
gap: 8px;
padding: 16px;
}

.hd-notice {
align-self: flex-start;
}

.hd-nav-shell {
padding: 0 16px;
}

.hd-nav-shell a {
padding: 16px 16px;
font-size: 14px;
}

.ft-upper {
grid-template-columns: 1fr;
padding: 40px 16px 20px;
gap: 40px;
}

.ft-lower {
flex-direction: column;
gap: 8px;
padding: 16px;
text-align: center;
}

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

@media (max-width: 360px) {
.brand-label {
font-size: 14px;
}

.hd-nav-shell a {
padding: 16px 8px;
}

.ck-btns {
flex-direction: column;
width: 100%;
}

.ck-btn {
width: 100%;
}
}

.policy-rp-wrapper {
max-width: 1440px;
margin: 0 auto;
padding: 80px 40px;
color: #1b1b2e;
line-height: 1.8;
font-size: 14px;
}

.policy-rp-wrapper ul,
.policy-rp-wrapper ol {
padding-left: 40px;
margin-top: 16px;
margin-bottom: 16px;
}

.policy-rp-wrapper ul {
list-style: none;
padding-left: 20px;
}

.policy-rp-wrapper ol {
list-style: decimal;
}

.policy-rp-wrapper ul li {
position: relative;
padding-left: 20px;
margin-bottom: 8px;
}

.policy-rp-wrapper ul li::before {
content: "";
position: absolute;
left: 0;
top: 10px;
width: 6px;
height: 6px;
background-color: #2CC660;
border-radius: 2px;
flex-shrink: 0;
}

.policy-rp-wrapper ol li {
padding-left: 8px;
margin-bottom: 8px;
}

.policy-rp-wrapper ol li::marker {
color: #2CC660;
font-size: 14px;
}

.policy-rp-wrapper ul ul,
.policy-rp-wrapper ol ol,
.policy-rp-wrapper ul ol,
.policy-rp-wrapper ol ul {
margin-top: 8px;
margin-bottom: 8px;
}

.policy-rp-wrapper strong,
.policy-rp-wrapper b {
font-weight: 700;
color: #12121f;
}

.policy-rp-wrapper em,
.policy-rp-wrapper i {
font-style: italic;
color: #3a3a55;
}

.policy-rp-wrapper hr {
border: none;
border-top: 1px solid #D3CDE5;
margin-top: 40px;
margin-bottom: 40px;
box-shadow: 0 2px 5px -1px rgba(44, 198, 96, 0.07);
}

.policy-rp-wrapper div {
margin-bottom: 16px;
}

@media (max-width: 1024px) {
.policy-rp-wrapper {
padding: 80px 40px;
}
}

@media (max-width: 768px) {
.policy-rp-wrapper {
padding: 40px 20px;
}

.policy-rp-wrapper ul,
.policy-rp-wrapper ol {
padding-left: 20px;
}
}

@media (max-width: 360px) {
.policy-rp-wrapper {
padding: 40px 16px;
}

.policy-rp-wrapper ul,
.policy-rp-wrapper ol {
padding-left: 16px;
}
}

.cd-det {
max-width: 1440px;
margin: 0 auto;
background: #fff;
overflow: hidden;
}

.cd-det .title-strip {
display: flex;
flex-direction: row;
align-items: stretch;
min-height: 320px;
position: relative;
background: #fff;
padding: 0;
}

.cd-det .title-strip__left {
flex: 1 1 55%;
padding: 80px 80px 80px 80px;
display: flex;
flex-direction: column;
justify-content: center;
position: relative;
z-index: 1;
}

.cd-det .title-strip__deco {
position: absolute;
top: 20px;
left: 40px;
width: 120px;
height: 120px;
border-radius: 50%;
background: #2CC660;
opacity: 0.06;
pointer-events: none;
}

.cd-det .title-strip__deco-sm {
position: absolute;
bottom: 40px;
left: 160px;
width: 60px;
height: 60px;
border-radius: 50%;
background: #D7ACA6;
opacity: 0.10;
pointer-events: none;
}

.cd-det .title-strip__tag-row {
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
margin-bottom: 20px;
}

.cd-det .tag-pill {
display: inline-block;
background: #D3CDE5;
color: #2a2a35;
font-size: 14px;
line-height: 1.2;
padding: 4px 16px;
border-radius: 46px;
font-weight: 600;
letter-spacing: 0.01em;
}

.cd-det .tag-pill--user {
background: #D7ACA6;
color: #2a2a35;
}

.cd-det .title-strip__shape {
display: inline-block;
width: 10px;
height: 10px;
background: #2CC660;
border-radius: 2px;
margin-bottom: 16px;
flex-shrink: 0;
}

.cd-det .title-strip__h1 {
font-size: 52px;
line-height: 1.2;
color: #1b1b22;
margin: 0 0 20px 0;
font-weight: 800;
}

.cd-det .title-strip__meta {
font-size: 14px;
line-height: 1.8;
color: #4a4a55;
display: flex;
flex-direction: row;
gap: 20px;
flex-wrap: wrap;
}

.cd-det .title-strip__right {
flex: 1 1 45%;
position: relative;
overflow: hidden;
min-height: 300px;
}

.cd-det .title-strip__img-wrap {
position: absolute;
inset: 0;
overflow: hidden;
}

.cd-det .title-strip__img-wrap img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.18s cubic-bezier(0.4, 0, 0.6, 1);
}

.cd-det .title-strip__img-wrap:hover img {
transform: scale(1.03);
}

.cd-det .title-strip__img-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(44, 198, 96, 0.38) 0%, transparent 60%);
transition: opacity 0.16s ease-out;
pointer-events: none;
}

.cd-det .title-strip__img-wrap:hover .title-strip__img-overlay {
opacity: 0;
}

.cd-det .title-strip__seats {
display: inline-flex;
align-items: center;
gap: 8px;
background: #2CC660;
color: #fff;
font-size: 14px;
line-height: 1.2;
padding: 8px 20px;
border-radius: 2px;
margin-top: 20px;
font-weight: 700;
box-shadow: 2px 5px 18px -1px rgba(44, 198, 96, 0.08);
width: fit-content;
}

.cd-det .seats-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: #fff;
opacity: 0.8;
flex-shrink: 0;
}

.cd-det .divider-brush {
width: 100%;
overflow: hidden;
line-height: 0;
margin: 0;
}

.cd-det .divider-brush svg {
display: block;
width: 100%;
}

.cd-det .body-mosaic {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0;
background: #fff;
}

.cd-det .mosaic-desc {
padding: 80px 80px 80px 80px;
background: #fff;
position: relative;
}

.cd-det .mosaic-desc__shape {
display: inline-block;
width: 12px;
height: 12px;
border-radius: 50%;
background: #D7ACA6;
margin-bottom: 16px;
}

.cd-det .mosaic-desc__h2 {
font-size: 24px;
line-height: 1.2;
color: #1b1b22;
margin: 0 0 20px 0;
font-weight: 700;
}

.cd-det .mosaic-desc__pull {
font-size: 24px;
line-height: 1.2;
color: #2CC660;
font-weight: 700;
float: left;
width: 38%;
margin: 0 20px 8px 0;
}

.cd-det .mosaic-desc__body {
font-size: 14px;
line-height: 1.8;
color: #2e2e38;
}

.cd-det .mosaic-desc__body p {
margin: 0 0 16px 0;
}

.cd-det .mosaic-desc__body h2,
.cd-det .mosaic-desc__body h3 {
font-size: 24px;
line-height: 1.2;
color: #1b1b22;
margin: 20px 0 8px 0;
font-weight: 700;
}

.cd-det .mosaic-desc__body ul,
.cd-det .mosaic-desc__body ol {
padding-left: 20px;
margin: 0 0 16px 0;
}

.cd-det .mosaic-desc__body li {
font-size: 14px;
line-height: 1.8;
color: #2e2e38;
margin-bottom: 4px;
}

.cd-det .mosaic-desc__body blockquote {
border-top: 2px solid #2CC660;
margin: 20px 0;
padding: 16px 20px;
background: #f4fdf7;
border-radius: 2px;
font-size: 14px;
line-height: 1.8;
color: #2e2e38;
}

.cd-det .mosaic-prog {
padding: 80px 80px 80px 40px;
background: #D7ACA6;
position: relative;
overflow: hidden;
}

.cd-det .mosaic-prog__deco {
position: absolute;
top: -40px;
right: -40px;
width: 180px;
height: 180px;
border-radius: 50%;
background: #fff;
opacity: 0.12;
pointer-events: none;
}

.cd-det .mosaic-prog__deco2 {
position: absolute;
bottom: 20px;
left: 20px;
width: 80px;
height: 80px;
border-radius: 50%;
background: #2CC660;
opacity: 0.10;
pointer-events: none;
}

.cd-det .mosaic-prog__shape {
display: inline-block;
width: 12px;
height: 12px;
background: #fff;
border-radius: 2px;
margin-bottom: 16px;
}

.cd-det .mosaic-prog__h2 {
font-size: 24px;
line-height: 1.2;
color: #1b1b22;
margin: 0 0 20px 0;
font-weight: 700;
}

.cd-det .mosaic-prog__body {
font-size: 14px;
line-height: 1.8;
color: #2e2e38;
}

.cd-det .mosaic-prog__body p {
margin: 0 0 16px 0;
}

.cd-det .mosaic-prog__body h2 {
font-size: 24px;
line-height: 1.2;
color: #1b1b22;
margin: 20px 0 8px 0;
font-weight: 700;
}

.cd-det .mosaic-prog__body ul {
padding-left: 20px;
margin: 0 0 16px 0;
}

.cd-det .mosaic-prog__body li {
font-size: 14px;
line-height: 1.8;
color: #2e2e38;
margin-bottom: 4px;
}

.cd-det .mosaic-prog__body em {
color: #1b1b22;
font-style: italic;
}

.cd-det .mosaic-prog__body small {
font-size: 14px;
opacity: 0.75;
}

.cd-det .mosaic-prog__body dl {
margin: 0 0 16px 0;
}

.cd-det .mosaic-prog__body dt {
font-weight: 700;
color: #1b1b22;
font-size: 14px;
line-height: 1.8;
}

.cd-det .mosaic-prog__body dd {
margin: 0 0 8px 20px;
font-size: 14px;
line-height: 1.8;
color: #2e2e38;
}

.cd-det .mosaic-prog__body blockquote {
border-top: 2px solid #1b1b22;
margin: 20px 0;
padding: 16px 20px;
background: rgba(255, 255, 255, 0.25);
border-radius: 2px;
font-size: 14px;
line-height: 1.8;
color: #1b1b22;
}

.cd-det .mosaic-prog__body details {
margin: 0 0 16px 0;
}

.cd-det .mosaic-prog__body summary {
font-weight: 700;
font-size: 14px;
line-height: 1.8;
cursor: pointer;
color: #1b1b22;
}

.cd-det .checklist-wrap {
margin-top: 20px;
}

.cd-det .checklist-progress {
font-size: 14px;
line-height: 1.2;
color: #1b1b22;
font-weight: 700;
margin-bottom: 8px;
}

.cd-det .checklist-bar {
height: 6px;
background: rgba(255, 255, 255, 0.35);
border-radius: 46px;
margin-bottom: 16px;
overflow: hidden;
}

.cd-det .checklist-bar__fill {
height: 100%;
background: #1b1b22;
border-radius: 46px;
transition: width 0.18s ease-out;
}

.cd-det .checklist-items {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 8px;
}

.cd-det .checklist-items li {
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
font-size: 14px;
line-height: 1.8;
color: #2e2e38;
}

.cd-det .chk-box {
width: 18px;
height: 18px;
border-radius: 2px;
background: rgba(255, 255, 255, 0.5);
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
}

.cd-det .chk-box--done {
background: #1b1b22;
}

.cd-det .chk-box--done svg {
display: block;
}

.cd-det .chk-box svg {
display: none;
}

.cd-det .divider-brush2 {
width: 100%;
overflow: hidden;
line-height: 0;
background: #fff;
}

.cd-det .divider-brush2 svg {
display: block;
width: 100%;
}

.cd-det .bottom-strip {
background: #fff;
padding: 80px 80px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: start;
position: relative;
overflow: hidden;
}

.cd-det .bottom-strip__deco {
position: absolute;
bottom: -60px;
right: -60px;
width: 220px;
height: 220px;
border-radius: 50%;
background: #D3CDE5;
opacity: 0.13;
pointer-events: none;
}

.cd-det .price-enroll {
display: flex;
flex-direction: column;
gap: 20px;
}

.cd-det .price-enroll__shape {
display: inline-block;
width: 10px;
height: 10px;
background: #2CC660;
border-radius: 50%;
margin-bottom: 4px;
}

.cd-det .price-enroll__label {
font-size: 14px;
line-height: 1.2;
color: #4a4a55;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
}

.cd-det .price-enroll__amount {
font-size: 70px;
line-height: 1.2;
color: #1b1b22;
font-weight: 800;
display: block;
}

.cd-det .price-enroll__note {
font-size: 14px;
line-height: 1.8;
color: #4a4a55;
}

.cd-det .btn-enroll {
display: inline-block;
background: #2CC660;
color: #fff;
font-size: 14px;
line-height: 1.2;
padding: 20px 40px;
border-radius: 2px;
border: none;
cursor: pointer;
font-weight: 700;
box-shadow: 2px 12px 36px -1px rgba(44, 198, 96, 0.12);
text-decoration: none;
transition: background 0.16s ease-out, transform 0.12s ease-out;
width: fit-content;
}

.cd-det .btn-enroll:hover {
background: #24aa52;
}

.cd-det .btn-enroll:active {
transform: scale(0.97);
}

.cd-det .btn-enroll:focus-visible {
outline: 3px solid #1b1b22;
outline-offset: 3px;
}

.cd-det .poll-block {
display: flex;
flex-direction: column;
gap: 16px;
}

.cd-det .poll-block__shape {
display: inline-block;
width: 10px;
height: 10px;
background: #D7ACA6;
border-radius: 2px;
margin-bottom: 4px;
}

.cd-det .poll-block__h4 {
font-size: 24px;
line-height: 1.2;
color: #1b1b22;
margin: 0 0 8px 0;
font-weight: 700;
}

.cd-det .poll-block__desc {
font-size: 14px;
line-height: 1.8;
color: #4a4a55;
margin: 0 0 8px 0;
}

.cd-det .poll-opts {
display: flex;
flex-direction: column;
gap: 8px;
}

.cd-det .poll-opt {
display: flex;
flex-direction: row;
align-items: center;
gap: 12px;
cursor: pointer;
padding: 12px 16px;
border-radius: 2px;
border: 1.5px solid #D3CDE5;
background: #fff;
transition: border-color 0.16s ease-out, background 0.16s ease-out;
font-size: 14px;
line-height: 1.8;
color: #2e2e38;
}

.cd-det .poll-opt:hover {
border-color: #2CC660;
background: #f4fdf7;
}

.cd-det .poll-opt input[type="radio"] {
appearance: none;
-webkit-appearance: none;
width: 18px;
height: 18px;
border-radius: 50%;
border: 2px solid #D3CDE5;
background: #fff;
flex-shrink: 0;
transition: border-color 0.14s ease-out, background 0.14s ease-out;
cursor: pointer;
position: relative;
}

.cd-det .poll-opt input[type="radio"]:checked {
border-color: #2CC660;
background: #2CC660;
box-shadow: inset 0 0 0 3px #fff;
}

.cd-det .poll-opt:has(input[type="radio"]:checked) {
border-color: #2CC660;
background: #f4fdf7;
}

.cd-det .poll-opt input[type="radio"]:focus-visible {
outline: 3px solid #1b1b22;
outline-offset: 2px;
}

.cd-det .poll-submit {
background: transparent;
border: 1.5px solid #2CC660;
color: #2CC660;
font-size: 14px;
line-height: 1.2;
padding: 12px 20px;
border-radius: 2px;
cursor: pointer;
font-weight: 700;
width: fit-content;
transition: background 0.16s ease-out, color 0.16s ease-out;
}

.cd-det .poll-submit:hover {
background: #2CC660;
color: #fff;
}

.cd-det .poll-submit:active {
transform: scale(0.97);
}

.cd-det .poll-submit:focus-visible {
outline: 3px solid #1b1b22;
outline-offset: 3px;
}

.cd-det .bg-anim {
animation: cd-bg-breath 8s ease-in-out infinite;
}

@keyframes cd-bg-breath {
0% {
background-color: #D7ACA6;
}

50% {
background-color: #d0a49e;
}

100% {
background-color: #D7ACA6;
}
}

@media (max-width: 1024px) {
.cd-det .title-strip__left {
padding: 40px 40px 40px 40px;
}

.cd-det .title-strip__h1 {
font-size: 52px;
}

.cd-det .body-mosaic {
grid-template-columns: 1fr;
}

.cd-det .mosaic-desc {
padding: 40px 40px 40px 40px;
}

.cd-det .mosaic-prog {
padding: 40px 40px 40px 40px;
}

.cd-det .bottom-strip {
grid-template-columns: 1fr;
gap: 40px;
padding: 40px 40px;
}

.cd-det .price-enroll__amount {
font-size: 52px;
}
}

@media (max-width: 768px) {
.cd-det .title-strip {
flex-direction: column;
}

.cd-det .title-strip__left {
padding: 40px 20px 20px 20px;
flex: none;
}

.cd-det .title-strip__right {
flex: none;
height: 220px;
min-height: 220px;
}

.cd-det .title-strip__h1 {
font-size: 24px;
}

.cd-det .mosaic-desc {
padding: 40px 20px 40px 20px;
}

.cd-det .mosaic-prog {
padding: 40px 20px 40px 20px;
}

.cd-det .bottom-strip {
padding: 40px 20px;
gap: 40px;
}

.cd-det .mosaic-desc__pull {
float: none;
width: 100%;
margin: 0 0 16px 0;
}
}

@media (max-width: 360px) {
.cd-det .title-strip__left {
padding: 20px 16px 16px 16px;
}

.cd-det .mosaic-desc {
padding: 20px 16px;
}

.cd-det .mosaic-prog {
padding: 20px 16px;
}

.cd-det .bottom-strip {
padding: 20px 16px;
}
}

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

.cch .strip-img {
width: 100%;
height: 220px;
position: relative;
}

.cch .strip-img img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.cch .strip-img::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(to right, rgba(44, 198, 96, 0.72) 0%, transparent 70%);
transition: opacity 0.18s ease-out;
}

.cch .strip-img::before {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 80px;
height: 3px;
background: #2CC660;
z-index: 2;
}

.cch .lede {
padding: 40px 80px 40px 80px;
background: #fff;
display: flex;
flex-direction: column;
gap: 8px;
}

.cch .lede__eyebrow {
font-size: 14px;
line-height: 1.8;
color: #2CC660;
letter-spacing: 0.08em;
text-transform: uppercase;
}

.cch .lede__h1 {
font-size: 52px;
line-height: 1.2;
color: #1b2d24;
margin: 0;
}

.cch .lede__sub {
font-size: 14px;
line-height: 1.8;
color: #3d3d3d;
max-width: 560px;
margin-top: 8px;
}

.cch .grid-band {
background: #f5f3f8;
padding: 80px 80px;
}

.cch .grid-band__head {
display: flex;
flex-direction: row;
align-items: flex-end;
gap: 40px;
margin-bottom: 40px;
}

.cch .band-shape {
width: 10px;
height: 10px;
border: 2px solid #D7ACA6;
border-radius: 2px;
flex-shrink: 0;
margin-bottom: 6px;
}

.cch .grid-band__h2 {
font-size: 24px;
line-height: 1.2;
color: #1b2d24;
margin: 0;
}

.cch .card-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}

.cch .prog-card {
background: #fff;
border-radius: 2px;
box-shadow: 2px 5px 18px -1px rgba(44, 198, 96, 0.08);
display: flex;
flex-direction: column;
transition: box-shadow 0.18s ease-out, transform 0.15s ease-out;
position: relative;
}

.cch .prog-card:hover {
box-shadow: 2px 12px 36px -1px rgba(44, 198, 96, 0.12);
transform: translateY(-2px);
}

.cch .prog-card__img-wrap {
position: relative;
width: 100%;
height: 180px;
overflow: hidden;
border-radius: 2px 2px 0 0;
}

.cch .prog-card__img-wrap img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.2s ease-out;
}

.cch .prog-card:hover .prog-card__img-wrap img {
transform: scale(1.03);
}

.cch .prog-card__img-overlay {
position: absolute;
inset: 0;
background: rgba(44, 198, 96, 0.28);
transition: opacity 0.18s ease-out;
}

.cch .prog-card:hover .prog-card__img-overlay {
opacity: 0;
}

.cch .prog-card__img-border {
position: absolute;
inset: 0;
border: 2px solid transparent;
border-radius: 2px 2px 0 0;
transition: border-color 0.18s ease-out;
pointer-events: none;
}

.cch .prog-card:hover .prog-card__img-border {
border-color: #2CC660;
}

.cch .prog-card__tag {
position: absolute;
top: 8px;
left: 8px;
background: #2CC660;
color: #fff;
font-size: 14px;
line-height: 1.2;
padding: 4px 8px;
border-radius: 2px;
z-index: 1;
}

.cch .prog-card__body {
padding: 20px;
display: flex;
flex-direction: column;
gap: 8px;
flex: 1;
}

.cch .prog-card__format {
font-size: 14px;
line-height: 1.8;
color: #7a6e8a;
}

.cch .prog-card__name {
font-size: 24px;
line-height: 1.2;
color: #1b2d24;
margin: 0;
}

.cch .prog-card__desc {
font-size: 14px;
line-height: 1.8;
color: #3d3d3d;
margin: 0;
}

.cch .prog-card__meta {
display: flex;
flex-direction: row;
align-items: center;
gap: 16px;
margin-top: 4px;
}

.cch .prog-card__seats {
font-size: 14px;
line-height: 1.8;
color: #c0392b;
}

.cch .prog-card__price {
font-size: 24px;
line-height: 1.2;
color: #1b2d24;
margin-left: auto;
}

.cch .prog-card__foot {
padding: 0 20px 20px 20px;
}

.cch .prog-card__btn {
display: block;
width: 100%;
background: #2CC660;
color: #fff;
font-size: 14px;
line-height: 1.8;
border: none;
border-radius: 2px;
padding: 8px 16px;
cursor: pointer;
text-align: center;
text-decoration: none;
transition: background 0.15s ease-out, transform 0.12s ease-out;
}

.cch .prog-card__btn:hover {
background: #23a850;
}

.cch .prog-card__btn:active {
transform: scale(0.97);
}

.cch .why-band {
padding: 80px 80px;
background: #fff;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}

.cch .why-band__left {
display: flex;
flex-direction: column;
gap: 20px;
}

.cch .why-shape {
width: 14px;
height: 14px;
border: 2px solid #2CC660;
border-radius: 46px;
flex-shrink: 0;
}

.cch .why-band__h2 {
font-size: 52px;
line-height: 1.2;
color: #1b2d24;
margin: 0;
}

.cch .why-band__pull {
font-size: 24px;
line-height: 1.2;
color: #2CC660;
margin: 0;
}

.cch .why-band__p {
font-size: 14px;
line-height: 1.8;
color: #3d3d3d;
margin: 0;
}

.cch .why-band__right {
display: flex;
flex-direction: column;
gap: 16px;
}

.cch .why-item {
display: flex;
flex-direction: row;
gap: 16px;
align-items: flex-start;
padding: 20px;
border-radius: 2px;
background: #f5f3f8;
box-shadow: 2px 2px 5px -1px rgba(211, 205, 229, 0.07);
transition: background 0.18s ease-out;
}

.cch .why-item:hover {
background: #ede9f5;
}

.cch .why-item__dot {
width: 8px;
height: 8px;
border-radius: 2px;
background: #D7ACA6;
flex-shrink: 0;
margin-top: 6px;
}

.cch .why-item__text {
display: flex;
flex-direction: column;
gap: 4px;
}

.cch .why-item__label {
font-size: 14px;
line-height: 1.8;
color: #1b2d24;
}

.cch .why-item__sub {
font-size: 14px;
line-height: 1.8;
color: #5a5a5a;
}

.cch .faq-band {
padding: 80px 80px;
background: #D3CDE5;
position: relative;
}

.cch .faq-band__h2 {
font-size: 52px;
line-height: 1.2;
color: #1b2d24;
margin: 0 0 40px 0;
display: flex;
flex-direction: row;
align-items: center;
gap: 16px;
}

.cch .faq-shape {
width: 12px;
height: 12px;
border: 2px solid #1b2d24;
border-radius: 2px;
flex-shrink: 0;
}

.cch .faq-list {
display: flex;
flex-direction: column;
gap: 8px;
max-width: 800px;
}

.cch .faq-item {
background: #fff;
border-radius: 2px;
box-shadow: 2px 2px 5px -1px rgba(211, 205, 229, 0.07);
}

.cch .faq-item__q {
width: 100%;
background: none;
border: none;
padding: 20px;
text-align: left;
font-size: 14px;
line-height: 1.8;
color: #1b2d24;
cursor: pointer;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
gap: 16px;
transition: color 0.15s ease-out;
}

.cch .faq-item__q:hover {
color: #2CC660;
}

.cch .faq-icon {
width: 18px;
height: 18px;
flex-shrink: 0;
position: relative;
}

.cch .faq-icon::before,
.cch .faq-icon::after {
content: "";
position: absolute;
background: #2CC660;
border-radius: 2px;
transition: transform 0.18s ease-out, opacity 0.15s ease-out;
}

.cch .faq-icon::before {
width: 18px;
height: 2px;
top: 8px;
left: 0;
}

.cch .faq-icon::after {
width: 2px;
height: 18px;
top: 0;
left: 8px;
}

.cch .faq-item.open .faq-icon::after {
transform: rotate(90deg);
opacity: 0;
}

.cch .faq-item__ans {
display: none;
padding: 0 20px 20px 20px;
font-size: 14px;
line-height: 1.8;
color: #3d3d3d;
}

.cch .faq-item.open .faq-item__ans {
display: block;
}

.cch .trust-band {
padding: 80px 80px;
background: #fff;
display: flex;
flex-direction: column;
gap: 40px;
}

.cch .trust-band__h2 {
font-size: 24px;
line-height: 1.2;
color: #1b2d24;
margin: 0;
display: flex;
flex-direction: row;
align-items: center;
gap: 12px;
}

.cch .trust-shape {
width: 10px;
height: 10px;
background: #D7ACA6;
border-radius: 46px;
flex-shrink: 0;
}

.cch .trust-row {
display: flex;
flex-direction: row;
gap: 20px;
flex-wrap: wrap;
}

.cch .trust-stat {
flex: 1;
min-width: 160px;
padding: 20px;
border-radius: 2px;
background: #f5f3f8;
display: flex;
flex-direction: column;
gap: 4px;
box-shadow: 2px 2px 5px -1px rgba(211, 205, 229, 0.07);
}

.cch .trust-stat__num {
font-size: 52px;
line-height: 1.2;
color: #2CC660;
}

.cch .trust-stat__label {
font-size: 14px;
line-height: 1.8;
color: #3d3d3d;
}

.cch .trust-reviews {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}

.cch .review-card {
padding: 20px;
border-radius: 2px;
background: #f5f3f8;
display: flex;
flex-direction: column;
gap: 8px;
box-shadow: 2px 2px 5px -1px rgba(211, 205, 229, 0.07);
}

.cch .review-card__name {
font-size: 14px;
line-height: 1.8;
color: #1b2d24;
}

.cch .review-card__stars {
display: flex;
flex-direction: row;
gap: 4px;
}

.cch .star {
width: 12px;
height: 12px;
background: #2CC660;
clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.cch .star.empty {
background: #D3CDE5;
}

.cch .review-card__text {
font-size: 14px;
line-height: 1.8;
color: #3d3d3d;
}

@keyframes rise-in {
from {
opacity: 0;
transform: translateY(28px);
}

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

.cch .lede {
animation: rise-in 0.22s ease-out both;
}

.cch .grid-band {
animation: rise-in 0.2s 0.08s ease-out both;
}

@media (max-width: 1024px) {
.cch .lede {
padding: 40px;
}

.cch .grid-band {
padding: 40px;
}

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

.cch .why-band {
grid-template-columns: 1fr;
gap: 40px;
padding: 40px;
}

.cch .faq-band {
padding: 40px;
}

.cch .trust-band {
padding: 40px;
}
}

@media (max-width: 768px) {
.cch .lede {
padding: 20px 16px;
}

.cch .lede__h1 {
font-size: 24px;
}

.cch .grid-band {
padding: 20px 16px;
}

.cch .card-grid {
grid-template-columns: 1fr;
}

.cch .why-band {
padding: 20px 16px;
}

.cch .why-band__h2 {
font-size: 24px;
}

.cch .faq-band {
padding: 20px 16px;
}

.cch .faq-band__h2 {
font-size: 24px;
}

.cch .trust-band {
padding: 20px 16px;
}

.cch .trust-reviews {
grid-template-columns: 1fr;
}

.cch .trust-stat__num {
font-size: 24px;
}
}

@media (max-width: 360px) {
.cch .lede__h1 {
font-size: 24px;
}

.cch .strip-img {
height: 140px;
}

.cch .trust-row {
flex-direction: column;
}
}

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

.testi-pg .reveal-load {
opacity: 0;
animation: appearClean 0.22s ease-out forwards;
}

.testi-pg .reveal-load.delay-1 {
animation-delay: 0.08s;
}

.testi-pg .reveal-load.delay-2 {
animation-delay: 0.14s;
}

.testi-pg .reveal-load.delay-3 {
animation-delay: 0.20s;
}

@keyframes appearClean {
to {
opacity: 1;
}
}

.testi-pg .rev-header {
background-color: #f5f3f0;
background-image:
radial-gradient(circle at top left, rgba(44, 198, 96, 0.13) 0%, transparent 55%),
repeating-linear-gradient(0deg,
transparent,
transparent 39px,
rgba(211, 205, 229, 0.18) 39px,
rgba(211, 205, 229, 0.18) 40px),
repeating-linear-gradient(90deg,
transparent,
transparent 39px,
rgba(211, 205, 229, 0.14) 39px,
rgba(211, 205, 229, 0.14) 40px);
padding: 80px 80px;
position: relative;
}

.testi-pg .rev-header__deco {
position: absolute;
top: 20px;
right: 80px;
font-size: 220px;
line-height: 1.2;
color: transparent;
-webkit-text-stroke: 1.5px rgba(44, 198, 96, 0.18);
pointer-events: none;
user-select: none;
overflow: hidden;
}

.testi-pg .rev-header__grid {
display: flex;
flex-direction: row;
align-items: flex-end;
gap: 80px;
max-width: 1280px;
position: relative;
z-index: 1;
}

.testi-pg .rev-header__text {
flex: 1 1 0;
}

.testi-pg .rev-header__anchor {
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
margin-bottom: 20px;
}

.testi-pg .rev-header__anchor-shape {
width: 12px;
height: 12px;
background: #2CC660;
border-radius: 2px;
flex-shrink: 0;
}

.testi-pg .rev-header__label {
font-size: 14px;
line-height: 1.2;
color: #2CC660;
letter-spacing: 0.06em;
text-transform: uppercase;
}

.testi-pg .rev-header__h1 {
font-size: 52px;
line-height: 1.2;
color: #1a1109;
margin: 0 0 20px 0;
}

.testi-pg .rev-header__h1 span {
color: #2CC660;
}

.testi-pg .rev-header__desc {
font-size: 24px;
line-height: 1.8;
color: #3d3730;
max-width: 560px;
margin: 0;
}

.testi-pg .rev-header__stat-col {
flex: 0 0 280px;
display: flex;
flex-direction: column;
gap: 20px;
}

.testi-pg .stat-pill {
background: #fff;
border-radius: 46px;
padding: 20px 40px;
box-shadow: 2px 5px 18px -1px rgba(44, 198, 96, 0.08);
display: flex;
flex-direction: column;
gap: 4px;
}

.testi-pg .stat-pill__num {
font-size: 52px;
line-height: 1.2;
color: #2CC660;
}

.testi-pg .stat-pill__label {
font-size: 14px;
line-height: 1.2;
color: #5a5248;
}

.testi-pg .rev-header__divider {
width: 100%;
overflow: hidden;
line-height: 0;
margin-top: 0;
}

.testi-pg .rev-header__divider svg {
display: block;
width: 100%;
}

.testi-pg .reviews-body {
background: #fff;
padding: 80px 80px;
}

.testi-pg .reviews-body__top {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 80px;
margin-bottom: 80px;
}

.testi-pg .reviews-body__pull {
flex: 0 0 320px;
display: flex;
flex-direction: column;
gap: 16px;
}

.testi-pg .reviews-body__pull-quote {
font-size: 24px;
line-height: 1.8;
color: #2CC660;
border-top: 2px solid #2CC660;
padding-top: 16px;
}

.testi-pg .reviews-body__pull-sub {
font-size: 14px;
line-height: 1.8;
color: #6b6560;
}

.testi-pg .reviews-body__intro {
flex: 1 1 0;
font-size: 14px;
line-height: 1.8;
color: #3d3730;
}

.testi-pg .reviews-body__intro p {
margin: 0 0 16px 0;
}

.testi-pg .reviews-body__intro p:last-child {
margin-bottom: 0;
}

.testi-pg .tier-row {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-bottom: 80px;
}

.testi-pg .tier-card {
border-radius: 2px;
padding: 40px;
display: flex;
flex-direction: column;
gap: 16px;
box-shadow: 2px 2px 5px -1px rgba(44, 198, 96, 0.07);
transition: box-shadow 0.18s ease-out, transform 0.15s ease-out;
position: relative;
}

.testi-pg .tier-card:hover {
box-shadow: 2px 12px 36px -1px rgba(44, 198, 96, 0.12);
transform: translateY(-2px);
}

.testi-pg .tier-card--basic {
background: #f5f3f0;
}

.testi-pg .tier-card--standard {
background: #fff;
border: 1.5px solid #D3CDE5;
}

.testi-pg .tier-card--premium {
background: linear-gradient(135deg, rgba(44, 198, 96, 0.08) 0%, transparent 60%);
border: 1.5px solid rgba(44, 198, 96, 0.3);
}

.testi-pg .tier-card__badge {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 14px;
line-height: 1.2;
color: #5a5248;
}

.testi-pg .tier-card__badge-dot {
width: 8px;
height: 8px;
border-radius: 2px;
flex-shrink: 0;
}

.testi-pg .tier-card--basic .tier-card__badge-dot {
background: #D7ACA6;
}

.testi-pg .tier-card--standard .tier-card__badge-dot {
background: #D3CDE5;
}

.testi-pg .tier-card--premium .tier-card__badge-dot {
background: #2CC660;
}

.testi-pg .tier-card__name {
font-size: 24px;
line-height: 1.2;
color: #1a1109;
margin: 0;
}

.testi-pg .tier-card__desc {
font-size: 14px;
line-height: 1.8;
color: #5a5248;
margin: 0;
}

.testi-pg .tier-card__features {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 8px;
}

.testi-pg .tier-card__features li {
font-size: 14px;
line-height: 1.8;
color: #3d3730;
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 8px;
}

.testi-pg .tier-card__features li::before {
content: '';
display: block;
width: 6px;
height: 6px;
border-radius: 2px;
background: #2CC660;
flex-shrink: 0;
margin-top: 8px;
}

.testi-pg .rev-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
margin-bottom: 80px;
}

.testi-pg .rev-card {
border-radius: 2px;
padding: 40px;
background: #f5f3f0;
display: flex;
flex-direction: column;
gap: 16px;
box-shadow: 2px 2px 5px -1px rgba(44, 198, 96, 0.07);
transition: box-shadow 0.20s ease-out;
}

.testi-pg .rev-card:hover {
box-shadow: 2px 5px 18px -1px rgba(44, 198, 96, 0.08);
}

.testi-pg .rev-card--accent {
background: linear-gradient(135deg, rgba(211, 205, 229, 0.25) 0%, transparent 70%);
border: 1px solid rgba(211, 205, 229, 0.6);
}

.testi-pg .rev-card__stars {
display: flex;
flex-direction: row;
gap: 4px;
}

.testi-pg .rev-card__star {
width: 14px;
height: 14px;
background: #2CC660;
clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testi-pg .rev-card__star--empty {
background: #D3CDE5;
}

.testi-pg .rev-card__text {
font-size: 14px;
line-height: 1.8;
color: #3d3730;
margin: 0;
}

.testi-pg .rev-card__person {
display: flex;
flex-direction: row;
align-items: center;
gap: 16px;
margin-top: 8px;
}

.testi-pg .rev-card__portrait {
width: 56px;
height: 72px;
flex-shrink: 0;
overflow: hidden;
}

.testi-pg .rev-card__portrait img {
width: 56px;
height: 72px;
object-fit: cover;
object-position: center;
display: block;
}

.testi-pg .rev-card__person-info {
display: flex;
flex-direction: column;
gap: 4px;
}

.testi-pg .rev-card__person-name {
font-size: 14px;
line-height: 1.2;
color: #1a1109;
}

.testi-pg .rev-card__person-detail {
font-size: 14px;
line-height: 1.2;
color: #6b6560;
}

.testi-pg .rev-card--wide {
grid-column: span 2;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
}

.testi-pg .rev-card--wide .rev-card__body {
display: flex;
flex-direction: column;
gap: 16px;
}

.testi-pg .rev-card--wide .rev-card__img-side {
position: relative;
overflow: hidden;
border-radius: 2px;
}

.testi-pg .rev-card--wide .rev-card__img-side img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: filter 0.20s ease-out;
filter: saturate(0.7) brightness(0.92);
}

.testi-pg .rev-card--wide .rev-card__img-side:hover img {
filter: saturate(1) brightness(1);
}

.testi-pg .rev-card--wide .rev-card__img-side::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(44, 198, 96, 0.15) 0%, transparent 60%);
pointer-events: none;
transition: opacity 0.18s ease-out;
}

.testi-pg .rev-card--wide .rev-card__img-side:hover::after {
opacity: 0;
}

.testi-pg .img-showcase {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 20px;
margin-bottom: 80px;
}

.testi-pg .img-showcase__main {
position: relative;
overflow: hidden;
border-radius: 2px;
min-height: 320px;
}

.testi-pg .img-showcase__main img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: filter 0.22s ease-out;
filter: saturate(0.75) brightness(0.9);
}

.testi-pg .img-showcase__main:hover img {
filter: saturate(1) brightness(1);
}

.testi-pg .img-showcase__main::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(to right, rgba(44, 198, 96, 0.12) 0%, transparent 70%);
pointer-events: none;
transition: opacity 0.18s ease-out;
}

.testi-pg .img-showcase__main:hover::after {
opacity: 0;
}

.testi-pg .img-showcase__side {
display: flex;
flex-direction: column;
gap: 20px;
}

.testi-pg .img-showcase__side-card {
background: #f5f3f0;
border-radius: 2px;
padding: 40px;
flex: 1 1 0;
display: flex;
flex-direction: column;
gap: 16px;
box-shadow: 2px 2px 5px -1px rgba(44, 198, 96, 0.07);
}

.testi-pg .img-showcase__side-card .rev-card__portrait {
width: 56px;
height: 72px;
}

.testi-pg .img-showcase__side-card .rev-card__portrait img {
width: 56px;
height: 72px;
}

.testi-pg .rating-bar-block {
background: #f5f3f0;
border-radius: 2px;
padding: 40px;
display: flex;
flex-direction: column;
gap: 16px;
box-shadow: inset 0 2px 6px rgba(44, 198, 96, 0.06);
}

.testi-pg .rating-bar-block__heading {
font-size: 24px;
line-height: 1.2;
color: #1a1109;
margin: 0;
}

.testi-pg .rating-bar-row {
display: flex;
flex-direction: row;
align-items: center;
gap: 16px;
}

.testi-pg .rating-bar-row__label {
font-size: 14px;
line-height: 1.2;
color: #5a5248;
width: 120px;
flex-shrink: 0;
}

.testi-pg .rating-bar-row__track {
flex: 1 1 0;
height: 8px;
background: #D3CDE5;
border-radius: 2px;
overflow: hidden;
}

.testi-pg .rating-bar-row__fill {
height: 100%;
background: #2CC660;
border-radius: 2px;
}

.testi-pg .rating-bar-row__pct {
font-size: 14px;
line-height: 1.2;
color: #2CC660;
width: 40px;
text-align: right;
flex-shrink: 0;
}

@media (max-width: 1024px) {
.testi-pg .rev-header {
padding: 80px 40px;
}

.testi-pg .rev-header__grid {
flex-direction: column;
gap: 40px;
align-items: flex-start;
}

.testi-pg .rev-header__stat-col {
flex-direction: row;
flex: unset;
width: 100%;
}

.testi-pg .stat-pill {
flex: 1 1 0;
}

.testi-pg .reviews-body {
padding: 80px 40px;
}

.testi-pg .reviews-body__top {
flex-direction: column;
gap: 40px;
}

.testi-pg .reviews-body__pull {
flex: unset;
width: 100%;
}

.testi-pg .tier-row {
grid-template-columns: 1fr 1fr;
}

.testi-pg .tier-card:last-child {
grid-column: span 2;
}

.testi-pg .img-showcase {
grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
.testi-pg .rev-header {
padding: 40px 20px;
}

.testi-pg .rev-header__h1 {
font-size: 52px;
}

.testi-pg .rev-header__deco {
font-size: 120px;
right: 20px;
}

.testi-pg .rev-header__stat-col {
flex-direction: column;
}

.testi-pg .reviews-body {
padding: 40px 20px;
}

.testi-pg .reviews-body__top {
margin-bottom: 40px;
}

.testi-pg .tier-row {
grid-template-columns: 1fr;
margin-bottom: 40px;
}

.testi-pg .tier-card:last-child {
grid-column: unset;
}

.testi-pg .rev-grid {
grid-template-columns: 1fr;
margin-bottom: 40px;
}

.testi-pg .rev-card--wide {
grid-column: unset;
grid-template-columns: 1fr;
}

.testi-pg .rev-card--wide .rev-card__img-side {
min-height: 200px;
}

.testi-pg .img-showcase {
margin-bottom: 40px;
}

.testi-pg .img-showcase__main {
min-height: 220px;
}
}

@media (max-width: 360px) {
.testi-pg .rev-header__h1 {
font-size: 52px;
}

.testi-pg .stat-pill__num {
font-size: 52px;
}

.testi-pg .tier-card {
padding: 20px;
}

.testi-pg .rev-card {
padding: 20px;
}

.testi-pg .rating-bar-block {
padding: 20px;
}
}

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

.dbt .aurora-bg {
position: relative;
background: #fff;
}

.dbt .aurora-bg::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(circle at top left, rgba(44, 198, 96, 0.13) 0%, transparent 60%),
radial-gradient(circle at top right, rgba(211, 205, 229, 0.18) 0%, transparent 55%);
animation: aurora-shift 9s ease-in-out infinite alternate;
pointer-events: none;
z-index: 0;
}

@keyframes aurora-shift {
0% {
opacity: 1;
transform: scale(1) translateX(0);
}

100% {
opacity: 0.7;
transform: scale(1.08) translateX(20px);
}
}

.dbt .t-row {
display: flex;
flex-direction: row;
align-items: flex-end;
gap: 40px;
padding: 80px 80px 40px 80px;
position: relative;
z-index: 1;
}

.dbt .t-left {
flex: 1 1 60%;
display: flex;
flex-direction: column;
gap: 20px;
}

.dbt .t-right {
flex: 0 0 30%;
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 20px;
padding-bottom: 8px;
}

.dbt .t-pre {
font-size: 14px;
line-height: 1.8;
color: #3a3a3a;
letter-spacing: 0.04em;
text-transform: uppercase;
}

.dbt .t-h1 {
font-size: 70px;
line-height: 1.2;
color: #181818;
margin: 0;
}

.dbt .t-desc {
font-size: 24px;
line-height: 1.8;
color: #3a3a3a;
max-width: 560px;
}

.dbt .t-img-wrap {
width: 100%;
max-width: 340px;
aspect-ratio: 16/9;
border-radius: 2px;
overflow: hidden;
}

.dbt .t-img-wrap img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
}

.dbt .t-label {
font-size: 14px;
line-height: 1.8;
color: #2CC660;
text-align: right;
}

.dbt .dot-path {
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
padding: 0 80px 40px 80px;
position: relative;
z-index: 1;
}

.dbt .dot {
width: 6px;
height: 6px;
border-radius: 46px;
background: #D3CDE5;
flex-shrink: 0;
}

.dbt .dot.big {
width: 10px;
height: 10px;
background: #2CC660;
}

.dbt .dot.mid {
width: 8px;
height: 8px;
background: #D7ACA6;
}

.dbt .divider-curve {
width: 100%;
height: 20px;
position: relative;
overflow: hidden;
}

.dbt .divider-curve::before,
.dbt .divider-curve::after {
content: '';
position: absolute;
left: -5%;
width: 110%;
height: 30px;
border-radius: 46px 46px 0 0;
border-top: 2px solid rgba(44, 198, 96, 0.18);
}

.dbt .divider-curve::before {
top: 0;
}

.dbt .divider-curve::after {
top: 6px;
border-top-color: rgba(211, 205, 229, 0.3);
}

.dbt .adapt-sec {
background: #f5f3f0;
padding: 80px;
position: relative;
}

.dbt .adapt-sec::before {
content: '';
position: absolute;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='60' height='60' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
opacity: 0.5;
pointer-events: none;
}

.dbt .adapt-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
position: relative;
z-index: 1;
}

.dbt .adapt-text-col {
display: flex;
flex-direction: column;
gap: 20px;
}

.dbt .sec-shape {
width: 20px;
height: 20px;
background: #2CC660;
border-radius: 2px;
flex-shrink: 0;
}

.dbt .sec-shape.diamond {
background: #D7ACA6;
transform: rotate(45deg);
border-radius: 2px;
}

.dbt .sec-shape.ring {
background: transparent;
border: 3px solid #D3CDE5;
border-radius: 46px;
}

.dbt .shape-head {
display: flex;
flex-direction: row;
align-items: center;
gap: 16px;
}

.dbt .adapt-h2 {
font-size: 52px;
line-height: 1.2;
color: #181818;
margin: 0;
}

.dbt .body-p {
font-size: 14px;
line-height: 1.8;
color: #3a3a3a;
}

.dbt .pull-wrap {
display: flex;
flex-direction: row;
gap: 20px;
align-items: flex-start;
}

.dbt .pull-quote {
font-size: 24px;
line-height: 1.2;
color: #2CC660;
flex: 0 0 200px;
font-weight: 600;
}

.dbt .pull-body {
flex: 1;
font-size: 14px;
line-height: 1.8;
color: #3a3a3a;
}

.dbt .adapt-img-col {
display: flex;
flex-direction: column;
gap: 20px;
}

.dbt .img-card {
position: relative;
border-radius: 2px;
overflow: hidden;
box-shadow: 2px 5px 18px -1px rgba(44, 198, 96, 0.08);
}

.dbt .img-card img {
width: 100%;
height: 280px;
object-fit: cover;
object-position: center;
display: block;
transition: transform 0.18s ease-out;
}

.dbt .img-card:hover img {
transform: scale(1.03);
}

.dbt .img-overlay {
position: absolute;
inset: 0;
background: rgba(24, 24, 24, 0);
transition: background 0.15s ease-out;
display: flex;
align-items: flex-end;
padding: 16px;
}

.dbt .img-card:hover .img-overlay {
background: rgba(24, 24, 24, 0.55);
}

.dbt .overlay-text {
font-size: 14px;
line-height: 1.8;
color: #fff;
opacity: 0;
transition: opacity 0.18s ease-out;
}

.dbt .img-card:hover .overlay-text {
opacity: 1;
}

.dbt .divider-plain {
height: 1px;
background: linear-gradient(90deg, transparent, rgba(44, 198, 96, 0.2), transparent);
margin: 0;
}

.dbt .commit-sec {
padding: 80px;
background: #fff;
display: flex;
flex-direction: column;
gap: 40px;
}

.dbt .commit-top {
display: flex;
flex-direction: row;
gap: 80px;
align-items: flex-start;
}

.dbt .commit-head-col {
flex: 0 0 380px;
display: flex;
flex-direction: column;
gap: 20px;
}

.dbt .commit-h2 {
font-size: 52px;
line-height: 1.2;
color: #181818;
margin: 0;
}

.dbt .commit-body-col {
flex: 1;
display: flex;
flex-direction: column;
gap: 20px;
}

.dbt .dashed-accent {
border: 2px dashed #D3CDE5;
border-radius: 2px;
padding: 20px;
background: rgba(211, 205, 229, 0.08);
}

.dbt .dashed-accent .body-p {
color: #3a3a3a;
}

.dbt .compare-list {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}

.dbt .compare-col {
display: flex;
flex-direction: column;
gap: 8px;
}

.dbt .compare-head {
font-size: 14px;
line-height: 1.8;
color: #181818;
font-weight: 700;
padding-bottom: 8px;
border-bottom: 2px solid #2CC660;
}

.dbt .compare-head.cross-head {
border-bottom-color: #D7ACA6;
}

.dbt .compare-item {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 8px;
font-size: 14px;
line-height: 1.8;
color: #3a3a3a;
}

.dbt .chk {
width: 16px;
height: 16px;
flex-shrink: 0;
margin-top: 3px;
}

.dbt .chk-yes {
fill: #2CC660;
}

.dbt .chk-no {
fill: #D7ACA6;
}

.dbt .divider-dots {
display: flex;
flex-direction: row;
justify-content: center;
gap: 8px;
padding: 8px 0;
}

.dbt .divider-dots span {
width: 4px;
height: 4px;
border-radius: 46px;
background: #D3CDE5;
display: inline-block;
}

.dbt .example-sec {
background: linear-gradient(135deg, rgba(44, 198, 96, 0.07) 0%, rgba(211, 205, 229, 0.12) 100%);
padding: 80px;
}

.dbt .example-inner {
display: flex;
flex-direction: row;
gap: 40px;
align-items: stretch;
}

.dbt .example-img-col {
flex: 0 0 420px;
display: flex;
flex-direction: column;
gap: 16px;
}

.dbt .ex-img-wrap {
position: relative;
border-radius: 2px;
overflow: hidden;
box-shadow: 2px 12px 36px -1px rgba(44, 198, 96, 0.12);
}

.dbt .ex-img-wrap img {
width: 100%;
height: 340px;
object-fit: cover;
object-position: center;
display: block;
transition: transform 0.2s ease-out;
}

.dbt .ex-img-wrap:hover img {
transform: scale(1.04);
}

.dbt .ex-img-wrap .img-overlay {
position: absolute;
inset: 0;
background: rgba(24, 24, 24, 0);
transition: background 0.16s ease-out;
display: flex;
align-items: flex-end;
padding: 16px;
}

.dbt .ex-img-wrap:hover .img-overlay {
background: rgba(24, 24, 24, 0.5);
}

.dbt .ex-img-wrap:hover .overlay-text {
opacity: 1;
}

.dbt .example-text-col {
flex: 1;
display: flex;
flex-direction: column;
gap: 20px;
justify-content: center;
}

.dbt .example-h3 {
font-size: 52px;
line-height: 1.2;
color: #181818;
margin: 0;
}

.dbt .stat-row {
display: flex;
flex-direction: row;
gap: 20px;
}

.dbt .stat-box {
flex: 1;
background: #fff;
border-radius: 2px;
padding: 20px;
box-shadow: 2px 5px 18px -1px rgba(44, 198, 96, 0.08);
position: relative;
}

.dbt .stat-box::after {
content: '';
position: absolute;
top: 6px;
left: 6px;
right: -6px;
bottom: -6px;
border: 2px solid rgba(44, 198, 96, 0.2);
border-radius: 2px;
z-index: -1;
}

.dbt .stat-num {
font-size: 52px;
line-height: 1.2;
color: #2CC660;
font-weight: 700;
display: block;
}

.dbt .stat-label {
font-size: 14px;
line-height: 1.8;
color: #3a3a3a;
}

.dbt .divider-arc {
width: 100%;
height: 24px;
position: relative;
overflow: hidden;
}

.dbt .divider-arc::before,
.dbt .divider-arc::after {
content: '';
position: absolute;
left: -5%;
width: 110%;
height: 40px;
border-radius: 0 0 46px 46px;
border-bottom: 2px solid rgba(215, 172, 166, 0.25);
}

.dbt .divider-arc::before {
top: -16px;
}

.dbt .divider-arc::after {
top: -10px;
border-bottom-color: rgba(44, 198, 96, 0.15);
}

.dbt .scale-sec {
padding: 80px;
background: #fff;
display: flex;
flex-direction: column;
gap: 40px;
}

.dbt .scale-top {
display: flex;
flex-direction: row;
gap: 40px;
align-items: flex-start;
}

.dbt .scale-h2 {
font-size: 52px;
line-height: 1.2;
color: #181818;
margin: 0;
flex: 0 0 360px;
}

.dbt .scale-sub {
flex: 1;
display: flex;
flex-direction: column;
gap: 20px;
}

.dbt .portrait-row {
display: flex;
flex-direction: row;
gap: 40px;
align-items: flex-start;
}

.dbt .portrait-card {
flex: 1;
display: flex;
flex-direction: row;
gap: 20px;
align-items: flex-start;
background: rgba(211, 205, 229, 0.1);
border-radius: 2px;
padding: 20px;
box-shadow: 2px 2px 5px -1px rgba(211, 205, 229, 0.07);
}

.dbt .portrait-img-wrap {
width: 100px;
flex-shrink: 0;
aspect-ratio: 7/9;
border-radius: 46px;
overflow: hidden;
}

.dbt .portrait-img-wrap img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
}

.dbt .portrait-info {
display: flex;
flex-direction: column;
gap: 8px;
}

.dbt .portrait-name {
font-size: 14px;
line-height: 1.8;
color: #181818;
font-weight: 700;
}

.dbt .portrait-role {
font-size: 14px;
line-height: 1.8;
color: #2CC660;
}

.dbt .portrait-quote {
font-size: 14px;
line-height: 1.8;
color: #3a3a3a;
}

.dbt .tlink {
display: inline-block;
font-size: 14px;
line-height: 1.8;
color: #2CC660;
text-decoration: none;
position: relative;
padding-bottom: 2px;
}

.dbt .tlink::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 1px;
background: #2CC660;
transition: width 0.15s ease-out;
}

.dbt .tlink:hover::after {
width: 100%;
}

.dbt .ready-sec {
background: #f5f3f0;
padding: 80px;
position: relative;
}

.dbt .ready-sec::before {
content: '';
position: absolute;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cfilter id='n2'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='80' height='80' filter='url(%23n2)' opacity='0.035'/%3E%3C/svg%3E");
opacity: 0.6;
pointer-events: none;
}

.dbt .ready-inner {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 40px;
position: relative;
z-index: 1;
}

.dbt .ready-head-span {
grid-column: 1 / -1;
display: flex;
flex-direction: column;
gap: 16px;
}

.dbt .ready-h2 {
font-size: 52px;
line-height: 1.2;
color: #181818;
margin: 0;
}

.dbt .ready-card {
background: #fff;
border-radius: 2px;
padding: 20px;
display: flex;
flex-direction: column;
gap: 16px;
box-shadow: 2px 5px 18px -1px rgba(211, 205, 229, 0.08);
position: relative;
}

.dbt .ready-card::before {
content: '';
position: absolute;
top: 8px;
left: 8px;
right: -8px;
bottom: -8px;
border: 2px solid rgba(215, 172, 166, 0.25);
border-radius: 2px;
z-index: -1;
}

.dbt .ready-card-h {
font-size: 24px;
line-height: 1.2;
color: #181818;
margin: 0;
}

.dbt .char-hover {
display: inline-flex;
flex-wrap: wrap;
}

.dbt .char-hover .ch {
display: inline-block;
transition: color 0.12s ease-out;
color: #181818;
font-size: 52px;
line-height: 1.2;
}

.dbt .char-hover:hover .ch:nth-child(1) {
color: #2CC660;
transition-delay: 0s;
}

.dbt .char-hover:hover .ch:nth-child(2) {
color: #2CC660;
transition-delay: 0.03s;
}

.dbt .char-hover:hover .ch:nth-child(3) {
color: #2CC660;
transition-delay: 0.06s;
}

.dbt .char-hover:hover .ch:nth-child(4) {
color: #2CC660;
transition-delay: 0.09s;
}

.dbt .char-hover:hover .ch:nth-child(5) {
color: #2CC660;
transition-delay: 0.12s;
}

.dbt .char-hover:hover .ch:nth-child(6) {
color: #2CC660;
transition-delay: 0.15s;
}

.dbt .char-hover:hover .ch:nth-child(7) {
color: #2CC660;
transition-delay: 0.18s;
}

.dbt .char-hover:hover .ch:nth-child(8) {
color: #2CC660;
transition-delay: 0.21s;
}

.dbt .char-hover:hover .ch:nth-child(9) {
color: #2CC660;
transition-delay: 0.24s;
}

.dbt .char-hover:hover .ch:nth-child(10) {
color: #2CC660;
transition-delay: 0.27s;
}

.dbt .char-hover:hover .ch:nth-child(11) {
color: #2CC660;
transition-delay: 0.30s;
}

.dbt .char-hover:hover .ch:nth-child(12) {
color: #2CC660;
transition-delay: 0.33s;
}

.dbt .char-hover:hover .ch:nth-child(13) {
color: #2CC660;
transition-delay: 0.36s;
}

.dbt .char-hover:hover .ch:nth-child(14) {
color: #2CC660;
transition-delay: 0.39s;
}

.dbt .char-hover:hover .ch:nth-child(15) {
color: #2CC660;
transition-delay: 0.42s;
}

@media (max-width: 1024px) {
.dbt .t-row {
padding: 40px 40px 20px 40px;
flex-direction: column;
gap: 20px;
}

.dbt .t-right {
flex: none;
align-items: flex-start;
}

.dbt .t-img-wrap {
max-width: 100%;
}

.dbt .dot-path {
padding: 0 40px 20px 40px;
}

.dbt .adapt-sec {
padding: 40px;
}

.dbt .adapt-grid {
grid-template-columns: 1fr;
}

.dbt .commit-sec {
padding: 40px;
}

.dbt .commit-top {
flex-direction: column;
gap: 20px;
}

.dbt .commit-head-col {
flex: none;
}

.dbt .example-sec {
padding: 40px;
}

.dbt .example-inner {
flex-direction: column;
}

.dbt .example-img-col {
flex: none;
}

.dbt .scale-sec {
padding: 40px;
}

.dbt .scale-top {
flex-direction: column;
gap: 20px;
}

.dbt .scale-h2 {
flex: none;
}

.dbt .portrait-row {
flex-direction: column;
}

.dbt .ready-sec {
padding: 40px;
}

.dbt .ready-inner {
grid-template-columns: 1fr 1fr;
}

.dbt .t-h1 {
font-size: 52px;
}
}

@media (max-width: 768px) {
.dbt .t-row {
padding: 20px 20px 16px 20px;
}

.dbt .t-h1 {
font-size: 52px;
}

.dbt .adapt-sec {
padding: 20px;
}

.dbt .commit-sec {
padding: 20px;
}

.dbt .compare-list {
grid-template-columns: 1fr;
}

.dbt .example-sec {
padding: 20px;
}

.dbt .scale-sec {
padding: 20px;
}

.dbt .portrait-row {
gap: 20px;
}

.dbt .ready-sec {
padding: 20px;
}

.dbt .ready-inner {
grid-template-columns: 1fr;
}

.dbt .stat-row {
flex-direction: column;
}

.dbt .dot-path {
padding: 0 20px 16px 20px;
}
}

@media (max-width: 360px) {
.dbt .t-h1 {
font-size: 52px;
}

.dbt .adapt-h2,
.dbt .commit-h2,
.dbt .example-h3,
.dbt .scale-h2,
.dbt .ready-h2 {
font-size: 24px;
}

.dbt .pull-wrap {
flex-direction: column;
}

.dbt .pull-quote {
flex: none;
}
}

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

.abt-us .blk-one {
position: relative;
padding: 80px 80px 80px 80px;
background: #ffffff;
display: grid;
grid-template-columns: 1fr 380px;
gap: 80px;
align-items: start;
}

.abt-us .blk-one::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 520px;
height: 520px;
background: radial-gradient(circle at top left, rgba(44, 198, 96, 0.13) 0%, transparent 70%);
pointer-events: none;
}

.abt-us .blk-one__left {
display: flex;
flex-direction: column;
gap: 40px;
position: relative;
z-index: 1;
}

.abt-us .blk-one__badge {
display: inline-flex;
align-items: center;
gap: 8px;
}

.abt-us .blk-one__badge-dot {
width: 10px;
height: 10px;
background: #2CC660;
border-radius: 2px;
flex-shrink: 0;
}

.abt-us .blk-one__badge-text {
font-size: 14px;
line-height: 1.2;
color: #2CC660;
letter-spacing: 0.08em;
text-transform: uppercase;
}

.abt-us .blk-one__h1 {
font-size: 52px;
line-height: 1.2;
color: #1a1a1a;
color: #1b2a22;
margin: 0;
max-width: 560px;
}

.abt-us .blk-one__counter-row {
display: flex;
flex-direction: row;
gap: 40px;
align-items: flex-end;
}

.abt-us .blk-one__counter {
display: flex;
flex-direction: column;
gap: 4px;
}

.abt-us .blk-one__counter-num {
font-size: 52px;
line-height: 1.2;
color: #2CC660;
}

.abt-us .blk-one__counter-label {
font-size: 14px;
line-height: 1.8;
color: #4a5a50;
}

.abt-us .blk-one__body {
display: flex;
flex-direction: column;
gap: 20px;
}

.abt-us .blk-one__pull {
font-size: 24px;
line-height: 1.8;
color: #1b2a22;
border-top: 2px solid #2CC660;
padding-top: 16px;
}

.abt-us .blk-one__para {
font-size: 14px;
line-height: 1.8;
color: #3a4a40;
}

.abt-us .blk-one__right {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
gap: 20px;
}

.abt-us .blk-one__img-wrap {
position: relative;
border-radius: 2px;
overflow: hidden;
box-shadow: 2px 12px 36px -1px rgba(44, 198, 96, 0.12);
}

.abt-us .blk-one__img-wrap img {
width: 100%;
height: 340px;
object-fit: cover;
object-position: center;
display: block;
transition: opacity 0.18s ease-out;
opacity: 0;
}

.abt-us .blk-one__img-wrap img.loaded {
opacity: 1;
}

.abt-us .blk-one__img-overlay {
position: absolute;
inset: 0;
background: rgba(44, 198, 96, 0.22);
transition: opacity 0.22s cubic-bezier(0.4, 0, 0.6, 1);
pointer-events: none;
}

.abt-us .blk-one__img-wrap:hover .blk-one__img-overlay {
opacity: 0;
}

.abt-us .blk-one__img2-wrap {
position: relative;
border-radius: 2px;
overflow: hidden;
box-shadow: 2px 5px 18px -1px rgba(44, 198, 96, 0.08);
}

.abt-us .blk-one__img2-wrap img {
width: 100%;
height: 200px;
object-fit: cover;
object-position: center;
display: block;
}

.abt-us .blk-one__img2-overlay {
position: absolute;
inset: 0;
background: rgba(211, 205, 229, 0.30);
transition: opacity 0.16s ease-out;
pointer-events: none;
}

.abt-us .blk-one__img2-wrap:hover .blk-one__img2-overlay {
opacity: 0;
}

.abt-us .blk-one__dots {
display: flex;
flex-direction: row;
gap: 8px;
align-items: center;
padding: 8px 0;
}

.abt-us .blk-one__dot {
width: 6px;
height: 6px;
border-radius: 50%;
background: #D3CDE5;
}

.abt-us .blk-one__dot.active {
background: #2CC660;
width: 20px;
border-radius: 2px;
}

.abt-us .blk-one__dot.mid {
background: #D7ACA6;
}

.abt-us .divider-tri {
width: 100%;
line-height: 0;
overflow: hidden;
}

.abt-us .divider-tri svg {
display: block;
width: 100%;
}

.abt-us .blk-two {
position: relative;
padding: 80px 80px 80px 80px;
background: #f4f9f6;
display: flex;
flex-direction: column;
gap: 40px;
}

.abt-us .blk-two__diag {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
overflow: hidden;
}

.abt-us .blk-two__diag svg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.abt-us .blk-two__top {
display: grid;
grid-template-columns: 260px 1fr;
gap: 80px;
align-items: start;
position: relative;
z-index: 1;
}

.abt-us .blk-two__label-col {
display: flex;
flex-direction: column;
gap: 16px;
padding-top: 8px;
}

.abt-us .blk-two__shape {
width: 32px;
height: 4px;
background: #D7ACA6;
border-radius: 2px;
}

.abt-us .blk-two__h2 {
font-size: 52px;
line-height: 1.2;
color: #1b2a22;
margin: 0;
}

.abt-us .blk-two__sub {
font-size: 14px;
line-height: 1.8;
color: #4a5a50;
max-width: 220px;
}

.abt-us .blk-two__text-col {
display: flex;
flex-direction: column;
gap: 20px;
}

.abt-us .blk-two__pull {
font-size: 24px;
line-height: 1.8;
color: #1b2a22;
}

.abt-us .blk-two__para {
font-size: 14px;
line-height: 1.8;
color: #3a4a40;
}

.abt-us .blk-two__team {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
position: relative;
z-index: 1;
}

.abt-us .blk-two__img-strip {
position: relative;
z-index: 1;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
gap: 16px;
}

.abt-us .blk-two__strip-img {
position: relative;
border-radius: 2px;
overflow: hidden;
box-shadow: 2px 2px 5px -1px rgba(44, 198, 96, 0.07);
}

.abt-us .blk-two__strip-img img {
width: 100%;
height: 200px;
object-fit: cover;
object-position: center;
display: block;
transition: transform 0.18s ease-out;
}

.abt-us .blk-two__strip-img:hover img {
transform: scale(1.04);
}

.abt-us .blk-two__strip-overlay {
position: absolute;
inset: 0;
background: rgba(211, 205, 229, 0.28);
transition: opacity 0.16s ease-out;
pointer-events: none;
}

.abt-us .blk-two__strip-img:hover .blk-two__strip-overlay {
opacity: 0;
}

.abt-us .person-card {
background: #ffffff;
border-radius: 2px;
padding: 20px;
display: flex;
flex-direction: column;
gap: 16px;
box-shadow: 2px 5px 18px -1px rgba(44, 198, 96, 0.08);
transition: box-shadow 0.18s ease-out, transform 0.18s ease-out;
cursor: default;
}

.abt-us .person-card:hover {
box-shadow: 2px 12px 36px -1px rgba(44, 198, 96, 0.12);
transform: scale(1.025);
}

.abt-us .person-card__portrait {
width: 80px;
height: 80px;
border-radius: 50%;
overflow: hidden;
flex-shrink: 0;
}

.abt-us .person-card__portrait img {
width: 80px;
height: 80px;
object-fit: cover;
object-position: center;
display: block;
}

.abt-us .person-card__name {
font-size: 14px;
line-height: 1.2;
color: #1b2a22;
}

.abt-us .person-card__role {
font-size: 14px;
line-height: 1.8;
color: #2CC660;
}

.abt-us .person-card__quote {
font-size: 14px;
line-height: 1.8;
color: #4a5a50;
}

.abt-us .person-card--no-portrait {
border-top: 3px solid #D7ACA6;
}

.abt-us .person-card--no-portrait .person-card__avatar {
width: 80px;
height: 80px;
border-radius: 50%;
background: linear-gradient(135deg, #D3CDE5 0%, #D7ACA6 100%);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.abt-us .person-card--no-portrait .person-card__avatar-init {
font-size: 24px;
line-height: 1.2;
color: #1b2a22;
}

.abt-us .blk-two__metrics {
display: flex;
flex-direction: row;
gap: 40px;
align-items: stretch;
position: relative;
z-index: 1;
flex-wrap: wrap;
}

.abt-us .metric-item {
flex: 1;
min-width: 160px;
background: #ffffff;
border-radius: 2px;
padding: 20px;
display: flex;
flex-direction: column;
gap: 8px;
box-shadow: 2px 2px 5px -1px rgba(44, 198, 96, 0.07);
border-top: 3px solid #2CC660;
transition: box-shadow 0.14s ease-out;
}

.abt-us .metric-item:hover {
box-shadow: 2px 5px 18px -1px rgba(44, 198, 96, 0.08);
}

.abt-us .metric-item__num {
font-size: 52px;
line-height: 1.2;
color: #2CC660;
}

.abt-us .metric-item__desc {
font-size: 14px;
line-height: 1.8;
color: #4a5a50;
}

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

.abt-us .blk-one__right {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}

.abt-us .blk-one__img-wrap img {
height: 260px;
}

.abt-us .blk-one__img2-wrap img {
height: 260px;
}

.abt-us .blk-one__dots {
display: none;
}

.abt-us .blk-two {
padding: 40px 40px;
}

.abt-us .blk-two__top {
grid-template-columns: 1fr;
gap: 20px;
}

.abt-us .blk-two__team {
grid-template-columns: 1fr 1fr;
}

.abt-us .blk-two__img-strip {
grid-template-columns: 1fr 1fr;
}
}

@media (max-width: 768px) {
.abt-us .blk-one {
padding: 40px 20px;
gap: 40px;
}

.abt-us .blk-one__h1 {
font-size: 52px;
}

.abt-us .blk-one__counter-row {
flex-wrap: wrap;
gap: 20px;
}

.abt-us .blk-one__right {
grid-template-columns: 1fr;
}

.abt-us .blk-two {
padding: 40px 20px;
gap: 40px;
}

.abt-us .blk-two__h2 {
font-size: 52px;
}

.abt-us .blk-two__team {
grid-template-columns: 1fr;
}

.abt-us .blk-two__img-strip {
grid-template-columns: 1fr 1fr;
}

.abt-us .blk-two__metrics {
gap: 16px;
}
}

@media (max-width: 360px) {
.abt-us .blk-one {
padding: 40px 16px;
}

.abt-us .blk-one__h1 {
font-size: 52px;
}

.abt-us .blk-two {
padding: 40px 16px;
}

.abt-us .blk-two__img-strip {
grid-template-columns: 1fr;
}

.abt-us .blk-two__metrics {
flex-direction: column;
}
}

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

.ctus-pg .reach-band {
position: relative;
padding: 80px 80px 80px 80px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
background: #fff;
}

.ctus-pg .reach-band::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 55%;
height: 100%;
background: linear-gradient(135deg, rgba(44, 198, 96, 0.07) 0%, transparent 70%);
pointer-events: none;
}

.ctus-pg .reach-band::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(211, 205, 229, 0.6), transparent);
pointer-events: none;
}

.ctus-pg .reach-left {
position: relative;
z-index: 1;
}

.ctus-pg .reach-label {
display: inline-block;
font-size: 14px;
line-height: 1.2;
color: #2CC660;
letter-spacing: 0.08em;
text-transform: uppercase;
margin-bottom: 20px;
padding: 4px 16px;
border: 1px solid rgba(44, 198, 96, 0.3);
border-radius: 2px;
}

.ctus-pg .reach-hdg {
font-size: 52px;
line-height: 1.2;
color: #1a1a2e;
margin: 0 0 20px 0;
font-weight: 700;
}

.ctus-pg .reach-hdg .accent-word {
color: #2CC660;
}

.ctus-pg .reach-hdg-shape {
display: inline-block;
width: 8px;
height: 8px;
background: #2CC660;
border-radius: 2px;
margin-right: 8px;
vertical-align: middle;
position: relative;
top: -2px;
}

.ctus-pg .reach-desc {
font-size: 14px;
line-height: 1.8;
color: #3d3d4f;
margin: 0 0 40px 0;
max-width: 440px;
}

.ctus-pg .info-stack {
display: flex;
flex-direction: column;
gap: 20px;
}

.ctus-pg .info-item {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 16px;
padding: 20px;
background: #fff;
border-radius: 2px;
box-shadow: 2px 5px 18px -1px rgba(44, 198, 96, 0.08);
transition: box-shadow 0.18s ease-out, transform 0.18s ease-out;
}

.ctus-pg .info-item:hover {
box-shadow: 2px 12px 36px -1px rgba(44, 198, 96, 0.12);
transform: translateY(-2px);
}

.ctus-pg .info-icon {
flex-shrink: 0;
width: 40px;
height: 40px;
border-radius: 2px;
background: rgba(44, 198, 96, 0.1);
display: flex;
align-items: center;
justify-content: center;
}

.ctus-pg .info-icon svg {
width: 20px;
height: 20px;
stroke: #2CC660;
fill: none;
stroke-width: 1.8;
stroke-linecap: round;
stroke-linejoin: round;
}

.ctus-pg .info-text {
display: flex;
flex-direction: column;
gap: 4px;
}

.ctus-pg .info-text strong {
font-size: 14px;
line-height: 1.2;
color: #2a2a3a;
font-weight: 600;
}

.ctus-pg .info-text span {
font-size: 14px;
line-height: 1.8;
color: #3d3d4f;
}

.ctus-pg .info-text a {
font-size: 14px;
line-height: 1.8;
color: #3d3d4f;
text-decoration: none;
position: relative;
display: inline-block;
}

.ctus-pg .info-text a::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 1px;
background: #2CC660;
transition: width 0.16s ease-out;
}

.ctus-pg .info-text a:hover::after {
width: 100%;
}

.ctus-pg .reach-right {
position: relative;
z-index: 1;
}

.ctus-pg .img-frame {
position: relative;
border-radius: 2px;
overflow: hidden;
height: 480px;
box-shadow: 2px 12px 36px -1px rgba(44, 198, 96, 0.12);
}

.ctus-pg .img-frame::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(211, 205, 229, 0.45) 0%, rgba(44, 198, 96, 0.15) 100%);
transition: opacity 0.2s ease-out;
pointer-events: none;
}

.ctus-pg .img-frame:hover::after {
opacity: 0;
}

.ctus-pg .img-frame img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 6s ease-out;
}

.ctus-pg .img-frame:hover img {
transform: translateY(-4%);
}

.ctus-pg .edge-line {
position: absolute;
top: 0;
right: 0;
width: 3px;
height: 60%;
background: linear-gradient(180deg, #2CC660 0%, transparent 100%);
border-radius: 2px;
}

.ctus-pg .diag-deco {
position: absolute;
bottom: 40px;
right: 0;
width: 120px;
height: 120px;
pointer-events: none;
opacity: 0.12;
overflow: hidden;
}

.ctus-pg .diag-deco svg {
width: 100%;
height: 100%;
}

.ctus-pg .form-band {
position: relative;
padding: 80px 80px;
background: #f5f4f8;
}

.ctus-pg .form-band::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(145deg, rgba(215, 172, 166, 0.12) 0%, transparent 50%);
pointer-events: none;
}

.ctus-pg .circuit-bg {
position: absolute;
top: 0;
right: 0;
width: 340px;
height: 340px;
opacity: 0.04;
pointer-events: none;
overflow: hidden;
}

.ctus-pg .circuit-bg svg {
width: 100%;
height: 100%;
}

.ctus-pg .form-layout {
position: relative;
z-index: 1;
display: grid;
grid-template-columns: 380px 1fr;
gap: 80px;
align-items: start;
max-width: 1280px;
margin: 0 auto;
}

.ctus-pg .form-aside {
display: flex;
flex-direction: column;
gap: 40px;
}

.ctus-pg .aside-hdg {
font-size: 24px;
line-height: 1.2;
color: #2a2a3a;
margin: 0;
font-weight: 700;
}

.ctus-pg .aside-hdg .accent-word {
color: #2CC660;
}

.ctus-pg .aside-hdg-shape {
display: inline-block;
width: 6px;
height: 6px;
border-radius: 2px;
background: #D7ACA6;
margin-right: 8px;
vertical-align: middle;
position: relative;
top: -2px;
}

.ctus-pg .aside-body {
display: flex;
flex-direction: row;
gap: 20px;
align-items: flex-start;
}

.ctus-pg .pull-quote {
font-size: 24px;
line-height: 1.2;
color: #2CC660;
font-weight: 700;
flex-shrink: 0;
width: 80px;
padding-top: 4px;
}

.ctus-pg .aside-para {
font-size: 14px;
line-height: 1.8;
color: #3d3d4f;
margin: 0;
}

.ctus-pg .rating-preview {
padding: 20px;
background: #fff;
border-radius: 2px;
box-shadow: 2px 2px 5px -1px rgba(44, 198, 96, 0.07);
}

.ctus-pg .rating-preview-label {
font-size: 14px;
line-height: 1.2;
color: #2a2a3a;
font-weight: 600;
margin-bottom: 16px;
}

.ctus-pg .rating-dots {
display: flex;
flex-direction: row;
gap: 8px;
}

.ctus-pg .r-dot {
width: 12px;
height: 12px;
border-radius: 2px;
background: rgba(44, 198, 96, 0.2);
}

.ctus-pg .r-dot.filled {
background: #2CC660;
}

.ctus-pg .coaching-link-block {
padding: 20px;
background: rgba(215, 172, 166, 0.15);
border-radius: 2px;
border-top: 2px solid #D7ACA6;
}

.ctus-pg .coaching-link-block p {
font-size: 14px;
line-height: 1.8;
color: #3d3d4f;
margin: 0 0 16px 0;
}

.ctus-pg .coaching-link-block a {
font-size: 14px;
line-height: 1.2;
color: #2a2a3a;
font-weight: 600;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 16px;
background: #D7ACA6;
border-radius: 2px;
transition: background 0.16s ease-out, transform 0.14s ease-out;
}

.ctus-pg .coaching-link-block a:hover {
background: #c9988f;
transform: translateY(-1px);
}

.ctus-pg .coaching-link-block a:active {
transform: scale(0.97);
}

.ctus-pg .form-card {
background: #fff;
border-radius: 2px;
padding: 40px;
box-shadow: 2px 5px 18px -1px rgba(44, 198, 96, 0.08);
}

.ctus-pg .form-group {
display: flex;
flex-direction: column;
gap: 8px;
margin-bottom: 20px;
}

.ctus-pg .form-group label {
font-size: 14px;
line-height: 1.2;
color: #2a2a3a;
font-weight: 600;
}

.ctus-pg .form-group input[type="email"] {
padding: 16px 20px;
border: 1px solid rgba(211, 205, 229, 0.8);
border-radius: 2px;
font-size: 14px;
line-height: 1.2;
color: #2a2a3a;
background: #fff;
outline: none;
transition: border-color 0.16s ease-out, box-shadow 0.16s ease-out;
box-shadow: inset 2px 2px 5px -1px rgba(211, 205, 229, 0.3);
}

.ctus-pg .form-group input[type="email"]::placeholder {
color: rgba(44, 198, 96, 0.45);
}

.ctus-pg .form-group input[type="email"]:focus {
border-color: #2CC660;
box-shadow: inset 2px 2px 5px -1px rgba(44, 198, 96, 0.1), 0 0 0 3px rgba(44, 198, 96, 0.1);
}

.ctus-pg .rating-group {
margin-bottom: 20px;
}

.ctus-pg .rating-group-label {
font-size: 14px;
line-height: 1.2;
color: #2a2a3a;
font-weight: 600;
margin-bottom: 16px;
display: block;
}

.ctus-pg .rating-opts {
display: flex;
flex-direction: row;
gap: 8px;
flex-wrap: wrap;
}

.ctus-pg .rating-opts input[type="radio"] {
position: absolute;
opacity: 0;
width: 0;
height: 0;
pointer-events: none;
}

.ctus-pg .rating-opts label {
display: flex;
align-items: center;
justify-content: center;
width: 48px;
height: 48px;
border-radius: 2px;
border: 1px solid rgba(211, 205, 229, 0.8);
font-size: 14px;
line-height: 1.2;
color: #3d3d4f;
cursor: pointer;
transition: background 0.14s ease-out, border-color 0.14s ease-out, color 0.14s ease-out;
font-weight: 600;
background: #fff;
user-select: none;
}

.ctus-pg .rating-opts label:hover {
background: rgba(44, 198, 96, 0.08);
border-color: #2CC660;
color: #2CC660;
}

.ctus-pg .rating-opts input[type="radio"]:checked+label {
background: #2CC660;
border-color: #2CC660;
color: #fff;
}

.ctus-pg .rating-scale-desc {
display: flex;
flex-direction: row;
justify-content: space-between;
margin-top: 8px;
}

.ctus-pg .rating-scale-desc span {
font-size: 14px;
line-height: 1.2;
color: #8a8a9a;
}

.ctus-pg .privacy-row {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 12px;
margin-bottom: 20px;
padding: 16px;
background: rgba(211, 205, 229, 0.15);
border-radius: 2px;
}

.ctus-pg .privacy-row input[type="checkbox"] {
flex-shrink: 0;
width: 18px;
height: 18px;
margin-top: 2px;
accent-color: #2CC660;
cursor: pointer;
}

.ctus-pg .privacy-row label {
font-size: 14px;
line-height: 1.8;
color: #3d3d4f;
cursor: pointer;
}

.ctus-pg .privacy-row label a {
color: #2CC660;
text-decoration: none;
position: relative;
display: inline-block;
}

.ctus-pg .privacy-row label a::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 1px;
background: #2CC660;
transition: width 0.14s ease-out;
}

.ctus-pg .privacy-row label a:hover::after {
width: 100%;
}

.ctus-pg .submit-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 16px 40px;
background: #2CC660;
color: #fff;
font-size: 14px;
line-height: 1.2;
font-weight: 700;
border: none;
border-radius: 46px;
cursor: pointer;
transition: background 0.16s ease-out, box-shadow 0.18s ease-out, transform 0.12s ease-out;
box-shadow: 2px 5px 18px -1px rgba(44, 198, 96, 0.25);
letter-spacing: 0.03em;
}

.ctus-pg .submit-btn:hover {
background: #24b054;
box-shadow: 2px 12px 36px -1px rgba(44, 198, 96, 0.3);
transform: translateY(-2px);
}

.ctus-pg .submit-btn:active {
transform: scale(0.97);
box-shadow: 2px 2px 5px -1px rgba(44, 198, 96, 0.15);
}

.ctus-pg .submit-btn:focus-visible {
outline: 3px solid rgba(44, 198, 96, 0.5);
outline-offset: 3px;
}

.ctus-pg .appear-1 {
opacity: 0;
transform: translateY(16px);
animation: fadeUp 0.2s ease-out 0.05s forwards;
}

.ctus-pg .appear-2 {
opacity: 0;
transform: translateY(24px);
animation: fadeUp 0.2s ease-out 0.12s forwards;
}

.ctus-pg .appear-3 {
opacity: 0;
transform: translateY(32px);
animation: fadeUp 0.2s ease-out 0.19s forwards;
}

.ctus-pg .appear-4 {
opacity: 0;
transform: translateY(40px);
animation: fadeUp 0.2s ease-out 0.26s forwards;
}

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

@media (max-width: 1024px) {
.ctus-pg .reach-band {
grid-template-columns: 1fr;
padding: 80px 40px;
gap: 40px;
}

.ctus-pg .img-frame {
height: 340px;
}

.ctus-pg .form-band {
padding: 80px 40px;
}

.ctus-pg .form-layout {
grid-template-columns: 1fr;
gap: 40px;
}
}

@media (max-width: 768px) {
.ctus-pg .reach-band {
padding: 40px 20px;
gap: 40px;
}

.ctus-pg .reach-hdg {
font-size: 52px;
}

.ctus-pg .img-frame {
height: 260px;
}

.ctus-pg .form-band {
padding: 40px 20px;
}

.ctus-pg .form-card {
padding: 20px;
}

.ctus-pg .rating-opts label {
width: 40px;
height: 40px;
}

.ctus-pg .aside-body {
flex-direction: column;
gap: 8px;
}

.ctus-pg .pull-quote {
width: auto;
}
}

@media (max-width: 360px) {
.ctus-pg .reach-band {
padding: 40px 16px;
}

.ctus-pg .reach-hdg {
font-size: 24px;
}

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

.ctus-pg .rating-opts {
gap: 4px;
}

.ctus-pg .rating-opts label {
width: 36px;
height: 36px;
}
}

.success-pg {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 80px 20px;
background: #ffffff;
max-width: 1440px;
margin: 0 auto;
}

.success-pg .card {
background: #ffffff;
border-radius: 46px;
box-shadow: 2px 12px 36px -1px rgba(44, 198, 96, 0.12);
padding: 80px 80px;
max-width: 600px;
width: 100%;
text-align: center;
position: relative;
}

.success-pg .card__icon-wrap {
width: 72px;
height: 72px;
border-radius: 46px;
background: #2CC660;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
margin: 0 auto 40px;
box-shadow: 2px 5px 18px -1px rgba(44, 198, 96, 0.08);
}

.success-pg .card__icon-wrap svg {
display: block;
}

.success-pg .card__heading {
font-size: 52px;
line-height: 1.2;
color: #1b1b1b;
margin: 0 0 20px;
}

.success-pg .card__sub {
font-size: 24px;
line-height: 1.8;
color: #3a3a3a;
margin: 0 0 40px;
}

.success-pg .card__note {
font-size: 14px;
line-height: 1.8;
color: #5a5a5a;
margin: 0 0 40px;
padding: 16px 20px;
background: #D3CDE5;
border-radius: 2px;
}

.success-pg .btn-home {
display: inline-block;
font-size: 14px;
line-height: 1.2;
color: #ffffff;
background: #2CC660;
padding: 16px 40px;
border-radius: 2px;
text-decoration: none;
border: none;
cursor: pointer;
transition: background-color 0.18s ease-out, transform 0.12s ease-out;
box-shadow: 2px 2px 5px -1px rgba(44, 198, 96, 0.07);
}

.success-pg .btn-home:hover {
background: #22a84e;
}

.success-pg .btn-home:active {
transform: scale(0.97);
}

.success-pg .btn-home:focus-visible {
outline: 2px solid #2CC660;
outline-offset: 4px;
}

.success-pg .card__divider {
width: 40px;
height: 2px;
background: #D7ACA6;
border-radius: 2px;
margin: 40px auto 0;
}

@media (max-width: 768px) {
.success-pg .card {
padding: 40px 20px;
border-radius: 46px;
}

.success-pg .card__heading {
font-size: 24px;
}

.success-pg .card__sub {
font-size: 14px;
}
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
