@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;1,300;0,400;1,400;0,500;1,500;0,700;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,300;1,300;0,400;1,400;0,500;1,500;0,700;1,700&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    overflow-x: hidden;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
}

.brand-header {
    background: linear-gradient(135deg, #2E5D5B 0%, #3a7270 60%, #4C8CAE 100%);
    position: relative;
    z-index: 100;
}

.brand-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(46, 93, 91, 0.18) 0%, transparent 100%);
    pointer-events: none;
}

.header-top-strip {
    max-width: 1600px;
    margin: 0 auto;
    padding: 8px 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    border-bottom: 1px solid rgba(141, 203, 199, 0.18);
}

.header-top-strip .contact-ref {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    color: #8DCBC7;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-top-strip .contact-ref:hover {
    color: #fff;
}

.header-top-strip .contact-ref svg {
    flex-shrink: 0;
}

.header-top-strip .strip-sep {
    width: 1px;
    height: 16px;
    background: rgba(141, 203, 199, 0.3);
}

.header-main-row {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 40px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
}

.brand-pod {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-pod .logo-frame {
    width: 72px;
    height: 88px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: -1px 4px 14px -2px rgba(46, 93, 91, 0.10), 0 0 0 2px rgba(141, 203, 199, 0.4);
    flex-shrink: 0;
}

.brand-pod .logo-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

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

.brand-pod .brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.brand-pod .brand-tagline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    font-weight: 400;
    color: #8DCBC7;
    line-height: 1.3;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
}

.primary-nav a {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 22px;
    line-height: 1.3;
    position: relative;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.primary-nav a:hover {
    color: #fff;
    background: rgba(141, 203, 199, 0.18);
}

.primary-nav a.active {
    color: #fff;
    background: rgba(141, 203, 199, 0.22);
    font-weight: 700;
}

.primary-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: #8DCBC7;
    border-radius: 2px;
}

.primary-nav a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(141, 203, 199, 0.55);
}

.header-credential {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.header-credential .since-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    color: rgba(141, 203, 199, 0.9);
    font-weight: 300;
    line-height: 1.3;
    text-align: right;
}

.header-credential .since-badge strong {
    font-weight: 700;
    color: #8DCBC7;
}

.header-credential .enroll-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #8DCBC7;
    color: #1e3d3c;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 4px;
    line-height: 1.3;
    min-height: 44px;
    overflow: hidden;
    position: relative;
    transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-credential .enroll-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #2E5D5B;
    transform: translateX(-100%);
    transition: transform 0.26s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: 0;
}

.header-credential .enroll-btn:hover::before {
    transform: translateX(0);
}

.header-credential .enroll-btn:hover {
    color: #8DCBC7;
}

.header-credential .enroll-btn span {
    position: relative;
    z-index: 1;
}

.header-credential .enroll-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(141, 203, 199, 0.6);
}

.site-footer {
    background: #1e3d3c;
    border-top: 3px solid #2E5D5B;
}

.footer-main-deck {
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 40px 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
}

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

.footer-brand-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-brand-row .logo-frame-sm {
    width: 60px;
    height: 72px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: -1px 4px 14px -2px rgba(46, 93, 91, 0.14), 0 0 0 2px rgba(141, 203, 199, 0.3);
    flex-shrink: 0;
}

.footer-brand-row .logo-frame-sm img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.footer-brand-row .footer-brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-list a,
.footer-contact-list address {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    font-weight: 400;
    color: #8DCBC7;
    text-decoration: none;
    line-height: 1.5;
    font-style: normal;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-contact-list a:hover {
    color: #fff;
}

.footer-contact-list a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(141, 203, 199, 0.5);
    border-radius: 2px;
}

.footer-contact-list svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-links-cell {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
    padding-top: 8px;
}

.footer-links-cell a {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(141, 203, 199, 0.75);
    text-decoration: none;
    line-height: 1.5;
    padding: 4px 8px;
    border-radius: 4px;
    transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1), background 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links-cell a:hover {
    color: #fff;
    background: rgba(141, 203, 199, 0.1);
}

.footer-links-cell a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(141, 203, 199, 0.5);
}

.footer-bottom-strip {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 40px;
    border-top: 1px solid rgba(141, 203, 199, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-strip .copy-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    color: rgba(141, 203, 199, 0.5);
    font-weight: 300;
    line-height: 1.5;
}

.footer-bottom-strip .domain-ref {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    color: rgba(141, 203, 199, 0.5);
    font-weight: 300;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-bottom-strip .domain-ref:hover {
    color: #8DCBC7;
}

.consent-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    background: #fff;
    border-bottom: 2px solid #8DCBC7;
    box-shadow: -1px 12px 40px -2px rgba(46, 93, 91, 0.14);
    display: none;
}

.consent-bar-pod {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.consent-icon-mark {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #2E5D5B;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consent-icon-mark svg {
    display: block;
}

.consent-desc {
    flex: 1;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #1e3d3c;
    line-height: 1.5;
    font-weight: 400;
}

.consent-desc a {
    color: #2E5D5B;
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.consent-desc a:hover {
    color: #4C8CAE;
}

.consent-pref-panel {
    display: none;
    flex-basis: 100%;
    padding: 20px 0 8px;
    gap: 20px;
    flex-wrap: wrap;
}

.consent-pref-panel.open {
    display: flex;
}

.consent-toggle-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #1e3d3c;
    font-weight: 500;
}

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

.toggle-track {
    width: 44px;
    height: 24px;
    background: #c5d8d7;
    border-radius: 22px;
    position: relative;
    transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.toggle-track input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    z-index: 1;
}

.toggle-track input[type="checkbox"]:focus-visible+.toggle-thumb {
    box-shadow: 0 0 0 3px rgba(76, 140, 174, 0.5);
}

.toggle-track input[type="checkbox"]:checked~.toggle-thumb {
    transform: translateX(20px);
}

.toggle-track:has(input:checked) {
    background: #2E5D5B;
}

.toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 22px;
    transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    box-shadow: -1px 1px 5px -2px rgba(46, 93, 91, 0.05);
}

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

.consent-btn-accept {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1e3d3c;
    background: #8DCBC7;
    border: none;
    border-radius: 4px;
    padding: 8px 20px;
    cursor: pointer;
    min-height: 44px;
    position: relative;
    overflow: hidden;
    transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.consent-btn-accept::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #2E5D5B;
    transform: translateX(-100%);
    transition: transform 0.26s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: 0;
}

.consent-btn-accept:hover::before {
    transform: translateX(0);
}

.consent-btn-accept:hover {
    color: #8DCBC7;
}

.consent-btn-accept span {
    position: relative;
    z-index: 1;
}

.consent-btn-accept:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(141, 203, 199, 0.6);
}

.consent-btn-decline {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #2E5D5B;
    background: transparent;
    border: 1px solid #2E5D5B;
    border-radius: 4px;
    padding: 8px 20px;
    cursor: pointer;
    min-height: 44px;
    transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.consent-btn-decline:hover {
    background: rgba(46, 93, 91, 0.08);
    color: #1e3d3c;
}

.consent-btn-decline:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 93, 91, 0.35);
}

.consent-btn-pref {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #4C8CAE;
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    min-height: 44px;
    text-decoration: underline;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.consent-btn-pref:hover {
    color: #2E5D5B;
}

.consent-btn-pref:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 140, 174, 0.4);
    border-radius: 2px;
}

.opt-out-notice {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #4C8CAE;
    font-weight: 500;
    flex-basis: 100%;
    padding-top: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.opt-out-notice label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.legal-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 40px;
    color: #1b3a39;
    line-height: 1.7;
}

.legal-container h1 {
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.1;
    color: #2E5D5B;
    margin-bottom: 40px;
    margin-top: 0;
    letter-spacing: -0.01em;
}

.legal-container h2 {
    font-size: clamp(20px, 3vw, 34px);
    line-height: 1.3;
    color: #2E5D5B;
    margin-top: 80px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #8DCBC7;
}

.legal-container h3 {
    font-size: clamp(20px, 2.5vw, 34px);
    line-height: 1.3;
    color: #2E5D5B;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-container h4 {
    font-size: 20px;
    line-height: 1.5;
    color: #2E5D5B;
    margin-top: 40px;
    margin-bottom: 8px;
}

.legal-container h5 {
    font-size: 15px;
    line-height: 1.5;
    color: #4C8CAE;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 40px;
    margin-bottom: 8px;
}

.legal-container h6 {
    font-size: 15px;
    line-height: 1.5;
    color: #4C8CAE;
    margin-top: 20px;
    margin-bottom: 8px;
}

.legal-container p {
    font-size: 15px;
    line-height: 1.7;
    color: #1b3a39;
    margin-top: 0;
    margin-bottom: 20px;
    max-width: 74ch;
}

.legal-container strong,
.legal-container b {
    font-weight: 700;
    color: #2E5D5B;
}

.legal-container a {
    color: #4C8CAE;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1),
        text-decoration-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.legal-container a:hover {
    color: #2E5D5B;
    text-decoration-color: #8DCBC7;
}

.legal-container a:visited {
    color: #2E5D5B;
}

.legal-container hr {
    border: none;
    border-top: 1px solid #8DCBC7;
    margin-top: 40px;
    margin-bottom: 40px;
    opacity: 0.6;
}

.legal-container table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 40px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: -1px 4px 14px -2px rgba(46, 93, 91, 0.10);
}

.legal-container thead {
    background-color: #2E5D5B;
    color: #ffffff;
}

.legal-container thead th {
    padding: 20px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
    border: none;
}

.legal-container tbody {
    background-color: #ffffff;
}

.legal-container tbody tr {
    transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(141, 203, 199, 0.35);
}

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

.legal-container tbody tr:hover {
    background-color: rgba(141, 203, 199, 0.12);
}

.legal-container th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    color: #ffffff;
    vertical-align: top;
}

.legal-container td {
    padding: 20px;
    color: #1b3a39;
    vertical-align: top;
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 40px 20px;
    }

    .legal-container h2 {
        margin-top: 40px;
    }

    .legal-container table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .legal-container p {
        max-width: 100%;
    }
}

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

.abt-us * {
    box-sizing: border-box;
}

.abt-us ::selection {
    background: #4C8CAE;
    color: #fff;
}

.abt-us section {
    width: 100%;
    position: relative;
}

.abt-us .title-block {
    background: #2E5D5B;
    padding: 80px 40px;
}

.abt-us .title-block__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
}

.abt-us .title-block__text {
    position: relative;
}

.abt-us .title-block__eyebrow {
    display: inline-block;
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8DCBC7;
    margin-bottom: 20px;
    border: 1px dashed #8DCBC7;
    padding: 4px 8px;
    border-radius: 2px;
}

.abt-us .title-block__h1 {
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.1;
    color: #fff;
    margin: 0 0 20px;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.18);
}

.abt-us .title-block__h1 .accent-word {
    color: #8DCBC7;
}

.abt-us .title-block__desc {
    font-size: clamp(15px, 2vw, 20px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    max-width: 560px;
    margin: 0;
}

.abt-us .title-block__img-col {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.abt-us .title-block__img-col img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    border-radius: 14px;
}

.abt-us .title-block__img-tint {
    position: absolute;
    inset: 0;
    background: rgba(46, 93, 91, 0.38);
    border-radius: 14px;
    pointer-events: none;
}

.abt-us .title-block__wave {
    display: block;
    width: 100%;
    height: 56px;
    margin-top: -1px;
}

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

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

.abt-us .about-body__inner {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.abt-us .about-body__top {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
}

.abt-us .about-body__main h2 {
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.1;
    color: #2E5D5B;
    margin: 0 0 20px;
    text-shadow: 1px 1px 0px rgba(46, 93, 91, 0.12);
}

.abt-us .about-body__main h2 .accent-word {
    color: #4C8CAE;
}

.abt-us .about-body__lead {
    font-size: 20px;
    line-height: 1.5;
    color: #2E5D5B;
    margin: 0 0 20px;
    text-align: center;
}

.abt-us .about-body__para {
    font-size: 15px;
    line-height: 1.7;
    color: #2a3d3c;
    margin: 0 0 20px;
}

.abt-us .about-body__para:last-child {
    margin-bottom: 0;
}

.abt-us .about-body__sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.abt-us .stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: -1px 4px 14px -2px rgba(46, 93, 91, 0.10);
    border: 1px dashed #8DCBC7;
    text-align: center;
    transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt-us .stat-card:hover {
    box-shadow: -1px 12px 40px -2px rgba(46, 93, 91, 0.14);
}

.abt-us .stat-card__num {
    font-size: 48px;
    line-height: 1.1;
    color: #2E5D5B;
    font-weight: 700;
    display: block;
}

.abt-us .stat-card__label {
    font-size: 15px;
    line-height: 1.3;
    color: #4C8CAE;
    display: block;
    margin-top: 4px;
}

.abt-us .divider-cross {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 0 80px;
}

.abt-us .divider-cross__line {
    flex: 1;
    height: 1px;
    background: #8DCBC7;
    max-width: 200px;
}

.abt-us .divider-cross__icon {
    width: 16px;
    height: 16px;
    position: relative;
    flex-shrink: 0;
}

.abt-us .divider-cross__icon::before,
.abt-us .divider-cross__icon::after {
    content: '';
    position: absolute;
    background: #4C8CAE;
    border-radius: 2px;
}

.abt-us .divider-cross__icon::before {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.abt-us .divider-cross__icon::after {
    width: 2px;
    height: 16px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.abt-us .about-body__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.abt-us .pillar-card {
    background: #fff;
    border-radius: 14px;
    padding: 40px 20px;
    box-shadow: -1px 1px 5px -2px rgba(46, 93, 91, 0.05);
    transition: box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.abt-us .pillar-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(141, 203, 199, 0.08);
    opacity: 0;
    transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.abt-us .pillar-card:hover::after {
    opacity: 1;
}

.abt-us .pillar-card:hover {
    box-shadow: -1px 12px 40px -2px rgba(46, 93, 91, 0.14);
    transform: translateY(-4px);
}

.abt-us .pillar-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(141, 203, 199, 0.18);
    border-radius: 4px;
}

.abt-us .pillar-card__icon svg {
    width: 22px;
    height: 22px;
}

.abt-us .pillar-card h4 {
    font-size: 20px;
    line-height: 1.3;
    color: #2E5D5B;
    margin: 0 0 8px;
    text-shadow: 1px 1px 0px rgba(46, 93, 91, 0.08);
}

.abt-us .pillar-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #2a3d3c;
    margin: 0;
}

.abt-us .qa-row {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
}

.abt-us .qa-card {
    background: #fff;
    border-radius: 14px;
    padding: 40px;
    box-shadow: -1px 4px 14px -2px rgba(76, 140, 174, 0.10);
    border: 1px dashed #4C8CAE;
}

.abt-us .qa-card__q {
    font-size: 20px;
    line-height: 1.3;
    color: #2E5D5B;
    font-weight: 700;
    margin: 0 0 20px;
}

.abt-us .qa-card__a {
    font-size: 15px;
    line-height: 1.7;
    color: #2a3d3c;
    margin: 0;
}

.abt-us .qa-card__a strong {
    color: #4C8CAE;
}

.abt-us .qa-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.abt-us .qa-side__img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: -1px 4px 14px -2px rgba(46, 93, 91, 0.10);
}

.abt-us .qa-side__img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.abt-us .tag-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.abt-us .tag-list__item {
    display: inline-block;
    font-size: 15px;
    line-height: 1.3;
    color: #2E5D5B;
    background: rgba(141, 203, 199, 0.22);
    border-radius: 22px;
    padding: 4px 20px;
    border: 1px solid rgba(141, 203, 199, 0.5);
    transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt-us .tag-list__item:hover {
    background: rgba(141, 203, 199, 0.48);
    color: #1e3d3b;
}

.abt-us .team-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.abt-us .team-member {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: -1px 1px 5px -2px rgba(46, 93, 91, 0.05);
    transition: box-shadow 0.28s cubic-bezier(0.0, 0, 0.2, 1);
}

.abt-us .team-member:hover {
    box-shadow: -1px 4px 14px -2px rgba(46, 93, 91, 0.10);
}

.abt-us .team-member__img {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    overflow: hidden;
    flex-shrink: 0;
}

.abt-us .team-member__img img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    display: block;
}

.abt-us .team-member__info h5 {
    font-size: 15px;
    line-height: 1.3;
    color: #2E5D5B;
    margin: 0 0 4px;
    font-weight: 700;
}

.abt-us .team-member__info span {
    font-size: 15px;
    line-height: 1.3;
    color: #4C8CAE;
    display: block;
    margin-bottom: 8px;
}

.abt-us .team-member__info p {
    font-size: 15px;
    line-height: 1.5;
    color: #2a3d3c;
    margin: 0;
}

.abt-us .hl-link {
    position: relative;
    color: #2E5D5B;
    text-decoration: none;
    font-weight: 600;
    display: inline;
    background-image: linear-gradient(90deg, rgba(141, 203, 199, 0.45) 0%, rgba(141, 203, 199, 0.45) 100%);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    background-position: left center;
    transition: background-size 0.24s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 2px;
}

.abt-us .hl-link:hover {
    background-size: 100% 100%;
}

.abt-us .anim-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(141, 203, 199, 0.13) 0%, transparent 60%);
    animation: light-drift 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes light-drift {
    0% {
        background: radial-gradient(ellipse 80% 60% at 15% 40%, rgba(141, 203, 199, 0.13) 0%, transparent 60%);
    }

    100% {
        background: radial-gradient(ellipse 80% 60% at 80% 60%, rgba(76, 140, 174, 0.09) 0%, transparent 60%);
    }
}

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

    .abt-us .title-block__img-col img {
        height: 260px;
    }

    .abt-us .about-body__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .abt-us .about-body__grid {
        grid-template-columns: 1fr 1fr;
    }

    .abt-us .qa-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .abt-us .team-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .abt-us .title-block {
        padding: 40px 20px;
    }

    .abt-us .about-body {
        padding: 40px 20px;
    }

    .abt-us .about-body__grid {
        grid-template-columns: 1fr;
    }

    .abt-us .qa-card {
        padding: 20px;
    }

    .abt-us .title-block__h1 {
        font-size: 34px;
    }
}

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

.lrn-prog .pg-cap {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.lrn-prog .prog-title {
    background: #fff;
    position: relative;
    border-right: 2px solid #8DCBC7;
}

.lrn-prog .prog-title .dot-grid {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background-image: radial-gradient(circle, #8DCBC7 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.18;
    pointer-events: none;
    overflow: hidden;
}

.lrn-prog .prog-title .t-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lrn-prog .prog-title .img-zone {
    width: 100%;
    max-width: 860px;
    padding: 80px 40px 40px;
    position: relative;
    z-index: 1;
}

.lrn-prog .prog-title .img-frame {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16/7;
}

.lrn-prog .prog-title .img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

.lrn-prog .prog-title .img-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(46, 93, 91, 0.45) 0%, transparent 40%, transparent 60%, rgba(46, 93, 91, 0.38) 100%);
    z-index: 2;
    pointer-events: none;
    border-radius: 14px;
}

.lrn-prog .prog-title .text-zone {
    width: 100%;
    max-width: 680px;
    padding: 20px 80px 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.lrn-prog .prog-title .prog-label {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #4C8CAE;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid #8DCBC7;
}

.lrn-prog .prog-title h1 {
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.1;
    color: #2E5D5B;
    margin: 0 0 20px;
    text-shadow: 1px 2px 0px rgba(46, 93, 91, 0.08);
}

.lrn-prog .prog-title h1 strong {
    color: #4C8CAE;
    font-weight: 800;
}

.lrn-prog .prog-title .enroll-link {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    background: #2E5D5B;
    padding: 20px 40px;
    border-radius: 4px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.lrn-prog .prog-title .enroll-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #4C8CAE;
    transform: translateX(-100%);
    transition: transform 0.24s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: 0;
}

.lrn-prog .prog-title .enroll-link:hover::before {
    transform: translateX(0);
}

.lrn-prog .prog-title .enroll-link span {
    position: relative;
    z-index: 1;
}

.lrn-prog .prog-title .enroll-link:focus-visible {
    outline: 3px solid #4C8CAE;
    outline-offset: 4px;
}

.lrn-prog .div-zigzag {
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.lrn-prog .div-zigzag svg {
    display: block;
    width: 100%;
}

.lrn-prog .curriculum {
    background: #f4f8f8;
    border-right: 2px solid #8DCBC7;
    padding: 80px 0;
}

.lrn-prog .curriculum .cur-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.lrn-prog .curriculum .cur-sidebar {
    position: sticky;
    top: 40px;
}

.lrn-prog .curriculum .cur-sidebar h2 {
    font-size: clamp(34px, 3.5vw, 48px);
    line-height: 1.1;
    color: #2E5D5B;
    margin: 0 0 20px;
    text-shadow: 1px 1px 0 rgba(46, 93, 91, 0.10);
}

.lrn-prog .curriculum .cur-sidebar h2 em {
    color: #4C8CAE;
    font-style: normal;
    font-weight: 800;
}

.lrn-prog .curriculum .cur-sidebar p {
    font-size: 15px;
    line-height: 1.7;
    color: #3a5a58;
    margin: 0 0 20px;
}

.lrn-prog .curriculum .detail-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: -1px 4px 14px -2px rgba(46, 93, 91, 0.10);
    margin-top: 40px;
}

.lrn-prog .curriculum .detail-card .card-status {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.lrn-prog .curriculum .card-status .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 22px;
    background: #2E5D5B;
    flex-shrink: 0;
}

.lrn-prog .curriculum .card-status .status-text {
    font-size: 15px;
    font-weight: 700;
    color: #2E5D5B;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lrn-prog .curriculum .card-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.lrn-prog .curriculum .card-row+.card-row {
    border-top: 1px solid #8DCBC7;
}

.lrn-prog .curriculum .card-row .row-label {
    font-size: 15px;
    color: #4C8CAE;
    font-weight: 600;
}

.lrn-prog .curriculum .card-row .row-val {
    font-size: 15px;
    color: #2E5D5B;
    font-weight: 700;
}

.lrn-prog .curriculum .cur-modules {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lrn-prog .curriculum .mod-item {
    background: #fff;
    border-radius: 14px;
    padding: 40px;
    box-shadow: -1px 1px 5px -2px rgba(46, 93, 91, 0.05);
    transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.lrn-prog .curriculum .mod-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(141, 203, 199, 0.06);
    opacity: 0;
    transition: opacity 0.24s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.lrn-prog .curriculum .mod-item:hover {
    box-shadow: -1px 12px 40px -2px rgba(46, 93, 91, 0.14);
}

.lrn-prog .curriculum .mod-item:hover::after {
    opacity: 1;
}

.lrn-prog .curriculum .mod-num {
    font-size: 15px;
    font-weight: 700;
    color: #4C8CAE;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.lrn-prog .curriculum .mod-item h3 {
    font-size: 20px;
    line-height: 1.3;
    color: #2E5D5B;
    margin: 0 0 8px;
    text-shadow: 0px 1px 0px rgba(46, 93, 91, 0.07);
}

.lrn-prog .curriculum .mod-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #3a5a58;
    margin: 0 0 20px;
}

.lrn-prog .curriculum .mod-tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.lrn-prog .curriculum .mod-tag {
    font-size: 15px;
    color: #2E5D5B;
    background: rgba(141, 203, 199, 0.22);
    border-radius: 22px;
    padding: 4px 20px;
    font-weight: 600;
}

.lrn-prog .div-zigzag-inv {
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.lrn-prog .div-zigzag-inv svg {
    display: block;
    width: 100%;
}

.lrn-prog .delivery {
    background: #fff;
    padding: 80px 0;
    border-right: 2px solid #8DCBC7;
}

.lrn-prog .delivery .del-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.lrn-prog .delivery .del-head {
    margin-bottom: 40px;
}

.lrn-prog .delivery .del-head h2 {
    font-size: clamp(34px, 3.5vw, 48px);
    line-height: 1.1;
    color: #2E5D5B;
    margin: 0 0 8px;
    text-shadow: 1px 1px 0 rgba(46, 93, 91, 0.08);
}

.lrn-prog .delivery .del-head h2 strong {
    color: #4C8CAE;
}

.lrn-prog .delivery .del-head p {
    font-size: 15px;
    line-height: 1.7;
    color: #3a5a58;
    max-width: 560px;
    margin: 0;
}

.lrn-prog .delivery .del-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 80px;
}

.lrn-prog .delivery .fmt-card {
    border-radius: 14px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.lrn-prog .delivery .fmt-card.group-fmt {
    background: #2E5D5B;
}

.lrn-prog .delivery .fmt-card.solo-fmt {
    background: #4C8CAE;
}

.lrn-prog .delivery .fmt-card.hybrid-fmt {
    background: linear-gradient(160deg, #2E5D5B 0% 45%, #4C8CAE 55% 100%);
}

.lrn-prog .delivery .fmt-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.07);
    opacity: 0;
    transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.lrn-prog .delivery .fmt-card:hover {
    box-shadow: -1px 12px 40px -2px rgba(46, 93, 91, 0.14);
}

.lrn-prog .delivery .fmt-card:hover::before {
    opacity: 1;
}

.lrn-prog .delivery .fmt-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
}

.lrn-prog .delivery .fmt-card h4 {
    font-size: 20px;
    line-height: 1.3;
    color: #fff;
    margin: 0;
    text-shadow: 0 1px 2px rgba(46, 93, 91, 0.18);
}

.lrn-prog .delivery .fmt-card p {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

.lrn-prog .delivery .fmt-card .fmt-detail {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.70);
    margin-top: 8px;
    font-weight: 600;
}

.lrn-prog .delivery .instructor-strip {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    background: #f4f8f8;
    border-radius: 14px;
    padding: 40px;
    box-shadow: -1px 4px 14px -2px rgba(46, 93, 91, 0.10);
}

.lrn-prog .delivery .instr-img-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.lrn-prog .delivery .instr-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.lrn-prog .delivery .instr-img-wrap:hover img {
    transform: scale(1.03);
}

.lrn-prog .delivery .instr-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lrn-prog .delivery .instr-info h3 {
    font-size: clamp(20px, 2.5vw, 34px);
    line-height: 1.3;
    color: #2E5D5B;
    margin: 0;
    text-shadow: 0 1px 0 rgba(46, 93, 91, 0.08);
}

.lrn-prog .delivery .instr-info h3 em {
    color: #4C8CAE;
    font-style: normal;
}

.lrn-prog .delivery .instr-meta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.lrn-prog .delivery .instr-badge {
    font-size: 15px;
    color: #2E5D5B;
    background: rgba(141, 203, 199, 0.28);
    border-radius: 4px;
    padding: 4px 20px;
    font-weight: 600;
}

.lrn-prog .delivery .instr-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #3a5a58;
    margin: 0;
}

.lrn-prog .delivery .rating-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #8DCBC7;
}

.lrn-prog .delivery .rating-num {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    color: #2E5D5B;
}

.lrn-prog .delivery .rating-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lrn-prog .delivery .stars {
    display: flex;
    flex-direction: row;
    gap: 4px;
}

.lrn-prog .delivery .star {
    width: 18px;
    height: 18px;
}

.lrn-prog .delivery .rating-count {
    font-size: 15px;
    color: #4C8CAE;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .lrn-prog .curriculum .cur-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lrn-prog .curriculum .cur-sidebar {
        position: static;
    }

    .lrn-prog .delivery .del-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lrn-prog .delivery .instructor-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {

    .lrn-prog .pg-cap,
    .lrn-prog .prog-title .t-inner,
    .lrn-prog .curriculum .cur-inner,
    .lrn-prog .delivery .del-inner {
        padding: 0 20px;
    }

    .lrn-prog .prog-title .text-zone {
        padding: 20px 20px 80px;
    }

    .lrn-prog .prog-title .img-zone {
        padding: 40px 20px 20px;
    }

    .lrn-prog .delivery .del-grid {
        grid-template-columns: 1fr;
    }

    .lrn-prog .curriculum {
        padding: 40px 0;
    }

    .lrn-prog .delivery {
        padding: 40px 0;
    }

    .lrn-prog .curriculum .mod-item {
        padding: 20px;
    }

    .lrn-prog .delivery .instructor-strip {
        padding: 20px;
    }
}

.prm {
    background: #fff;
    overflow-x: clip;
    position: relative;
}

.prm * {
    box-sizing: border-box;
}

.prm ::selection {
    background: #4C8CAE;
    color: #fff;
}

.prm .band-div {
    height: 4px;
    background: linear-gradient(90deg, #2E5D5B 0%, #2E5D5B 33%, #4C8CAE 33%, #4C8CAE 66%, #8DCBC7 66%, #8DCBC7 100%);
}

.prm .title-blk {
    position: relative;
    background: linear-gradient(137deg, #2E5D5B 0%, #2E5D5B 38%, #4C8CAE 38%, #4C8CAE 72%, #8DCBC7 72%, #8DCBC7 100%);
    padding: 80px 40px;
    overflow: hidden;
}

.prm .title-blk__shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.prm .title-blk__shape-a {
    position: absolute;
    top: -40px;
    right: 120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 2px solid rgba(141, 203, 199, 0.18);
}

.prm .title-blk__shape-b {
    position: absolute;
    bottom: -60px;
    right: 60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(76, 140, 174, 0.22);
}

.prm .title-blk__shape-c {
    position: absolute;
    top: 40px;
    right: 20px;
    width: 140px;
    height: 140px;
    border-radius: 22px;
    background: rgba(141, 203, 199, 0.08);
    transform: rotate(18deg);
}

.prm .title-blk__leak {
    position: absolute;
    top: 0;
    right: 0;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle at 100% 0%, rgba(141, 203, 199, 0.28) 0%, rgba(141, 203, 199, 0.08) 45%, transparent 70%);
    pointer-events: none;
}

.prm .title-blk__grid {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 80px;
}

.prm .title-blk__copy {
    flex: 1 1 520px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.prm .title-blk__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 4px;
    padding: 4px 20px;
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    width: fit-content;
}

.prm .title-blk__h1 {
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.1;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 12px rgba(46, 93, 91, 0.28);
}

.prm .title-blk__h1 em {
    font-style: normal;
    color: #8DCBC7;
}

.prm .title-blk__lead {
    font-size: 20px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    max-width: 480px;
}

.prm .title-blk__actions {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.prm .btn-pri {
    position: relative;
    display: inline-block;
    padding: 20px 40px;
    border-radius: 4px;
    background: #fff;
    color: #2E5D5B;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    text-decoration: none;
    overflow: hidden;
    transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.prm .btn-pri::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #2E5D5B;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.prm .btn-pri:hover {
    color: #fff;
}

.prm .btn-pri:hover::before {
    transform: scaleX(1);
}

.prm .btn-pri span {
    position: relative;
}

.prm .btn-sec {
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 4px;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.5;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.45);
    overflow: hidden;
    transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.prm .btn-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.14);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.24s cubic-bezier(0.0, 0, 0.2, 1);
}

.prm .btn-sec:hover::before {
    transform: scaleX(1);
}

.prm .title-blk__media {
    flex: 1 1 440px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prm .title-blk__img-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    width: 100%;
    max-width: 520px;
    box-shadow: -1px 12px 40px -2px rgba(46, 93, 91, 0.14);
}

.prm .title-blk__img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.prm .title-blk__img-leak {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle at 0% 0%, rgba(141, 203, 199, 0.55) 0%, transparent 65%);
    pointer-events: none;
}

.prm .title-blk__stat-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

.prm .title-blk__stat {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 20px;
    flex: 1 1 120px;
}

.prm .title-blk__stat-num {
    font-size: 34px;
    line-height: 1.1;
    color: #8DCBC7;
    font-weight: 700;
    display: block;
}

.prm .title-blk__stat-lbl {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
    display: block;
}

.prm .rep-blk {
    background: #fff;
    padding: 80px 40px;
    animation: bg-warmcool 12s ease-in-out infinite;
}

@keyframes bg-warmcool {
    0% {
        background-color: #fff;
    }

    40% {
        background-color: #f5fafa;
    }

    70% {
        background-color: #f0f6f9;
    }

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

.prm .rep-blk__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.prm .rep-blk__header {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
}

.prm .rep-blk__h2 {
    font-size: clamp(34px, 3.5vw, 48px);
    line-height: 1.1;
    color: #1a3332;
    margin: 0;
    flex: 1 1 320px;
    text-shadow: 1px 1px 0 rgba(46, 93, 91, 0.08);
}

.prm .rep-blk__h2 strong {
    color: #2E5D5B;
}

.prm .rep-blk__sub {
    font-size: 15px;
    line-height: 1.7;
    color: #3a5a58;
    max-width: 360px;
    margin: 0;
    flex: 1 1 280px;
}

.prm .rep-blk__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.prm .rep-item {
    border: 1px solid rgba(46, 93, 91, 0.12);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #fff;
    box-shadow: -1px 4px 14px -2px rgba(46, 93, 91, 0.10);
    transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.prm .rep-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(141, 203, 199, 0.07);
    opacity: 0;
    transition: opacity 0.24s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.prm .rep-item:hover {
    box-shadow: -1px 12px 40px -2px rgba(46, 93, 91, 0.14);
    transform: translateY(-2px);
}

.prm .rep-item:hover::after {
    opacity: 1;
}

.prm .rep-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: linear-gradient(137deg, #2E5D5B 0%, #4C8CAE 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.prm .rep-item__icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.prm .rep-item__label {
    font-size: 20px;
    line-height: 1.3;
    color: #1a3332;
    font-weight: 700;
    margin: 0;
}

.prm .rep-item__desc {
    font-size: 15px;
    line-height: 1.7;
    color: #3a5a58;
    margin: 0;
}

.prm .rep-blk__assoc {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.prm .rep-blk__assoc-lbl {
    font-size: 15px;
    line-height: 1.5;
    color: #3a5a58;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.prm .assoc-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(46, 93, 91, 0.18);
    border-radius: 22px;
    padding: 4px 20px;
    font-size: 15px;
    line-height: 1.5;
    color: #2E5D5B;
    background: rgba(46, 93, 91, 0.04);
}

.prm .div-grad {
    height: 4px;
    background: linear-gradient(90deg, #8DCBC7 0%, #4C8CAE 50%, #2E5D5B 100%);
}

.prm .exp-blk {
    background: linear-gradient(180deg, rgba(141, 203, 199, 0.08) 0%, rgba(76, 140, 174, 0.06) 100%);
    padding: 80px 40px;
}

.prm .exp-blk__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.prm .exp-blk__img-col {
    position: relative;
}

.prm .exp-blk__img-frame {
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    box-shadow: -1px 12px 40px -2px rgba(76, 140, 174, 0.14);
}

.prm .exp-blk__img-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.prm .exp-blk__curl {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    pointer-events: none;
    opacity: 0.18;
}

.prm .exp-blk__copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.prm .exp-blk__h2 {
    font-size: clamp(34px, 3vw, 48px);
    line-height: 1.1;
    color: #1a3332;
    margin: 0;
    text-shadow: 1px 1px 0 rgba(46, 93, 91, 0.07);
}

.prm .exp-blk__h2 strong {
    color: #4C8CAE;
}

.prm .exp-blk__p {
    font-size: 15px;
    line-height: 1.7;
    color: #3a5a58;
    margin: 0;
}

.prm .exp-blk__quotes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.prm .exp-quote {
    border-radius: 14px;
    background: #fff;
    padding: 20px;
    box-shadow: -1px 4px 14px -2px rgba(76, 140, 174, 0.10);
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

.prm .exp-quote:hover {
    box-shadow: -1px 12px 40px -2px rgba(76, 140, 174, 0.14);
}

.prm .exp-quote__text {
    font-size: 15px;
    line-height: 1.7;
    color: #1a3332;
    margin: 0;
}

.prm .exp-quote__by {
    font-size: 15px;
    line-height: 1.5;
    color: #4C8CAE;
    font-weight: 700;
    margin: 0;
}

.prm .exp-quote__role {
    font-size: 15px;
    line-height: 1.5;
    color: #3a5a58;
}

.prm .exp-quote__bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #4C8CAE 0%, #8DCBC7 100%);
    border-radius: 2px 0 0 2px;
}

.prm .appr-blk {
    background: #2E5D5B;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.prm .appr-blk__spiral {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 120px;
    height: 120px;
    opacity: 0.08;
    pointer-events: none;
}

.prm .appr-blk__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.prm .appr-blk__h2 {
    font-size: clamp(34px, 3.5vw, 48px);
    line-height: 1.1;
    color: #fff;
    margin: 0;
    max-width: 640px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.prm .appr-blk__h2 strong {
    color: #8DCBC7;
}

.prm .appr-blk__lead {
    font-size: 20px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    max-width: 560px;
}

.prm .appr-blk__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.prm .appr-step {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transition: background 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.prm .appr-step:hover {
    background: rgba(255, 255, 255, 0.12);
}

.prm .appr-step__num {
    font-size: 34px;
    line-height: 1.1;
    color: rgba(141, 203, 199, 0.35);
    font-weight: 700;
    position: absolute;
    top: 20px;
    right: 20px;
}

.prm .appr-step__h {
    font-size: 20px;
    line-height: 1.3;
    color: #fff;
    margin: 0;
    font-weight: 700;
}

.prm .appr-step__p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.prm .appr-step__tag {
    display: inline-flex;
    align-items: center;
    background: rgba(141, 203, 199, 0.18);
    border-radius: 22px;
    padding: 4px 8px;
    font-size: 15px;
    line-height: 1.5;
    color: #8DCBC7;
    width: fit-content;
}

.prm .div-plain {
    height: 4px;
    background: linear-gradient(90deg, #2E5D5B 0%, #8DCBC7 100%);
}

.prm .invest-blk {
    background: linear-gradient(180deg, #f4f9f9 0%, #e8f3f5 100%);
    padding: 80px 40px;
}

.prm .invest-blk__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.prm .invest-blk__aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.prm .invest-blk__h2 {
    font-size: clamp(34px, 3vw, 48px);
    line-height: 1.1;
    color: #1a3332;
    margin: 0;
    text-shadow: 1px 1px 0 rgba(46, 93, 91, 0.07);
}

.prm .invest-blk__h2 strong {
    color: #2E5D5B;
}

.prm .invest-blk__note {
    font-size: 15px;
    line-height: 1.7;
    color: #3a5a58;
    margin: 0;
}

.prm .invest-blk__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.5;
    color: #4C8CAE;
    text-decoration: none;
    position: relative;
    width: fit-content;
}

.prm .invest-blk__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4C8CAE;
    transition: width 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.prm .invest-blk__link:hover::after {
    width: 100%;
}

.prm .invest-blk__plans {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.prm .invest-plan {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
    box-shadow: -1px 1px 5px -2px rgba(46, 93, 91, 0.05);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.prm .invest-plan:hover {
    box-shadow: -1px 4px 14px -2px rgba(46, 93, 91, 0.10);
}

.prm .invest-plan__fold {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 32px 32px;
    border-color: transparent transparent rgba(141, 203, 199, 0.25) transparent;
    transition: border-width 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.prm .invest-plan:hover .invest-plan__fold {
    border-width: 0 0 48px 48px;
    border-color: transparent transparent rgba(141, 203, 199, 0.45) transparent;
}

.prm .invest-plan__badge {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(137deg, #2E5D5B 0%, #4C8CAE 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.prm .invest-plan__badge svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.prm .invest-plan__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.prm .invest-plan__name {
    font-size: 20px;
    line-height: 1.3;
    color: #1a3332;
    font-weight: 700;
    margin: 0;
}

.prm .invest-plan__detail {
    font-size: 15px;
    line-height: 1.5;
    color: #3a5a58;
    margin: 0;
}

.prm .invest-plan__price {
    font-size: 20px;
    line-height: 1.3;
    color: #2E5D5B;
    font-weight: 700;
    white-space: nowrap;
}

.prm .invest-plan__price span {
    font-size: 15px;
    font-weight: 400;
    color: #3a5a58;
}

.prm .hesit-blk {
    background: #fff;
    padding: 80px 40px;
    position: relative;
}

.prm .hesit-blk__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.prm .hesit-blk__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.prm .hesit-blk__q {
    font-size: clamp(34px, 3vw, 48px);
    line-height: 1.1;
    color: #1a3332;
    margin: 0;
    text-shadow: 1px 1px 0 rgba(46, 93, 91, 0.07);
}

.prm .hesit-blk__q strong {
    color: #4C8CAE;
}

.prm .hesit-blk__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.prm .hesit-blk__p {
    font-size: 15px;
    line-height: 1.7;
    color: #3a5a58;
    margin: 0;
}

.prm .hesit-blk__items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.prm .hesit-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(141, 203, 199, 0.08);
    border-radius: 4px;
}

.prm .hesit-item__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2E5D5B;
    flex-shrink: 0;
    margin-top: 6px;
}

.prm .hesit-item__text {
    font-size: 15px;
    line-height: 1.7;
    color: #1a3332;
    margin: 0;
}

.prm .grad-blk {
    background: linear-gradient(180deg, rgba(76, 140, 174, 0.06) 0%, rgba(141, 203, 199, 0.10) 100%);
    padding: 80px 40px;
    position: relative;
}

.prm .grad-blk__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.prm .grad-blk__top {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.prm .grad-blk__h2 {
    font-size: clamp(34px, 3.5vw, 48px);
    line-height: 1.1;
    color: #1a3332;
    margin: 0;
    max-width: 680px;
    text-shadow: 1px 1px 0 rgba(46, 93, 91, 0.07);
}

.prm .grad-blk__h2 strong {
    color: #2E5D5B;
}

.prm .grad-blk__intro {
    font-size: 20px;
    line-height: 1.5;
    color: #3a5a58;
    margin: 0;
    max-width: 560px;
}

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

.prm .grad-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: -1px 4px 14px -2px rgba(76, 140, 174, 0.10);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.26s cubic-bezier(0.4, 0, 0.2, 1), transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.prm .grad-card:hover {
    box-shadow: -1px 12px 40px -2px rgba(76, 140, 174, 0.14);
    transform: translateY(-3px);
}

.prm .grad-card__fold {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 28px 28px;
    border-color: transparent transparent rgba(76, 140, 174, 0.18) transparent;
    transition: border-width 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.prm .grad-card:hover .grad-card__fold {
    border-width: 0 0 44px 44px;
    border-color: transparent transparent rgba(76, 140, 174, 0.32) transparent;
}

.prm .grad-card__num {
    font-size: 34px;
    line-height: 1.1;
    color: rgba(76, 140, 174, 0.18);
    font-weight: 700;
    position: absolute;
    top: 20px;
    right: 20px;
}

.prm .grad-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    background: linear-gradient(137deg, #4C8CAE 0%, #8DCBC7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.prm .grad-card__icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.prm .grad-card__h {
    font-size: 20px;
    line-height: 1.3;
    color: #1a3332;
    font-weight: 700;
    margin: 0;
}

.prm .grad-card__p {
    font-size: 15px;
    line-height: 1.7;
    color: #3a5a58;
    margin: 0;
}

.prm .grad-blk__close {
    text-align: center;
    font-size: 15px;
    line-height: 1.7;
    color: #3a5a58;
    max-width: 560px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .prm .title-blk__grid {
        flex-direction: column;
        gap: 40px;
    }

    .prm .title-blk__media {
        display: none;
    }

    .prm .exp-blk__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .prm .invest-blk__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .prm .hesit-blk__row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .prm .grad-blk__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {

    .prm .title-blk,
    .prm .rep-blk,
    .prm .exp-blk,
    .prm .appr-blk,
    .prm .invest-blk,
    .prm .hesit-blk,
    .prm .grad-blk {
        padding: 40px 20px;
    }

    .prm .grad-blk__grid {
        grid-template-columns: 1fr;
    }

    .prm .rep-blk__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .prm .invest-plan {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
    }

    .prm .invest-plan__price {
        grid-column: 2;
    }
}

.tech-req {
    background: #fff;
    overflow-x: clip;
}

.tech-req .req-entry {
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 80px;
    align-items: center;
    position: relative;
}

.tech-req .req-entry::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle at 100% 0%, rgba(141, 203, 199, 0.18) 0%, rgba(141, 203, 199, 0.18) 38%, rgba(76, 140, 174, 0.07) 38%, rgba(76, 140, 174, 0.07) 70%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.tech-req .req-entry-frame {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
    border-top: 1px solid rgba(46, 93, 91, 0.12);
    border-left: 1px solid rgba(46, 93, 91, 0.12);
    border-radius: 14px 2px 2px 2px;
    pointer-events: none;
    z-index: 0;
}

.tech-req .req-entry-frame::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 60%;
    height: 60%;
    border-bottom: 1px solid rgba(46, 93, 91, 0.12);
    border-right: 1px solid rgba(46, 93, 91, 0.12);
    border-radius: 2px 2px 14px 2px;
}

.tech-req .entry-text {
    position: relative;
    z-index: 1;
}

.tech-req .entry-label {
    display: inline-block;
    font-size: 15px;
    line-height: 1.3;
    color: #4C8CAE;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.tech-req .entry-h1 {
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.1;
    color: #2E5D5B;
    margin: 0 0 20px;
    text-shadow: 1px 1px 0 rgba(46, 93, 91, 0.08), 2px 2px 0 rgba(46, 93, 91, 0.04);
}

.tech-req .entry-h1 strong {
    color: #4C8CAE;
    font-weight: inherit;
}

.tech-req .entry-desc {
    font-size: 20px;
    line-height: 1.7;
    color: #2E5D5B;
    opacity: 0.82;
    max-width: 520px;
    margin: 0;
}

.tech-req .entry-img-wrap {
    position: relative;
    z-index: 1;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: -1px 12px 40px -2px rgba(46, 93, 91, 0.14);
}

.tech-req .entry-img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: filter 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-req .entry-img-wrap:hover img {
    filter: brightness(0.96) contrast(1.04);
}

.tech-req .entry-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    transition: box-shadow 0.22s cubic-bezier(0.0, 0, 0.2, 1);
    pointer-events: none;
    border-radius: 14px;
}

.tech-req .entry-img-wrap:hover::after {
    box-shadow: inset 0 0 60px 20px rgba(46, 93, 91, 0.18), inset 0 0 0 0 transparent;
}

.tech-req .specs-band {
    background: linear-gradient(103deg, #2E5D5B 0%, #2E5D5B 42%, #4C8CAE 42%, #4C8CAE 72%, #8DCBC7 72%, #8DCBC7 100%);
    padding: 40px 0;
    animation: contrast-breath 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes contrast-breath {

    0%,
    100% {
        filter: contrast(1);
    }

    50% {
        filter: contrast(1.08);
    }
}

.tech-req .specs-band-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

.tech-req .spec-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.tech-req .spec-stat-num {
    font-size: 48px;
    line-height: 1.1;
    color: #fff;
    font-weight: 700;
}

.tech-req .spec-stat-label {
    font-size: 15px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
}

.tech-req .spec-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.22);
    flex-shrink: 0;
}

.tech-req .reqs-grid-section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 40px;
}

.tech-req .reqs-grid-top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.tech-req .reqs-grid-heading {
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.1;
    color: #2E5D5B;
    margin: 0;
    text-shadow: 1px 1px 0 rgba(46, 93, 91, 0.07);
}

.tech-req .reqs-grid-heading em {
    font-style: normal;
    color: #4C8CAE;
}

.tech-req .reqs-grid-note {
    font-size: 15px;
    line-height: 1.5;
    color: #2E5D5B;
    opacity: 0.7;
    max-width: 320px;
    margin: 0;
    text-align: right;
}

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

.tech-req .req-card {
    background: #fff;
    border: 1px solid rgba(46, 93, 91, 0.1);
    border-radius: 14px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: -1px 4px 14px -2px rgba(46, 93, 91, 0.10);
    transition: box-shadow 0.24s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tech-req .req-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2E5D5B 0%, #4C8CAE 60%, #8DCBC7 100%);
    border-radius: 14px 14px 2px 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-req .req-card:hover::before {
    transform: scaleX(1);
}

.tech-req .req-card:hover {
    box-shadow: -1px 12px 40px -2px rgba(46, 93, 91, 0.14);
    border-color: rgba(46, 93, 91, 0.2);
}

.tech-req .req-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(141, 203, 199, 0.18);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tech-req .req-card-icon svg {
    width: 22px;
    height: 22px;
}

.tech-req .req-card-title {
    font-size: 20px;
    line-height: 1.3;
    color: #2E5D5B;
    margin: 0;
    font-weight: 600;
}

.tech-req .req-card-body {
    font-size: 15px;
    line-height: 1.7;
    color: #2E5D5B;
    opacity: 0.78;
    margin: 0;
}

.tech-req .req-pills {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.tech-req .req-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: rgba(46, 93, 91, 0.07);
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.3;
    color: #2E5D5B;
    font-weight: 500;
}

.tech-req .req-pill.ok {
    background: rgba(141, 203, 199, 0.22);
    color: #2E5D5B;
}

.tech-req .req-pill.warn {
    background: rgba(76, 140, 174, 0.13);
    color: #2E5D5B;
}

.tech-req .detail-section {
    background: rgba(141, 203, 199, 0.08);
    position: relative;
}

.tech-req .detail-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(46, 93, 91, 0.03) 39px, rgba(46, 93, 91, 0.03) 40px), repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(46, 93, 91, 0.03) 39px, rgba(46, 93, 91, 0.03) 40px);
    pointer-events: none;
}

.tech-req .detail-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative;
    z-index: 1;
}

.tech-req .detail-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.tech-req .detail-col-img {
    position: relative;
}

.tech-req .detail-col-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    box-shadow: -1px 12px 40px -2px rgba(46, 93, 91, 0.14);
}

.tech-req .detail-col-img-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(46, 93, 91, 0.88);
    border-radius: 4px;
    padding: 8px 20px;
    font-size: 15px;
    line-height: 1.5;
    color: #fff;
}

.tech-req .detail-col-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tech-req .detail-h2 {
    font-size: clamp(34px, 3.5vw, 48px);
    line-height: 1.1;
    color: #2E5D5B;
    margin: 0;
    text-shadow: 1px 1px 0 rgba(46, 93, 91, 0.08);
}

.tech-req .detail-h2 strong {
    color: #4C8CAE;
    font-weight: inherit;
}

.tech-req .detail-body {
    font-size: 15px;
    line-height: 1.7;
    color: #2E5D5B;
    opacity: 0.82;
    margin: 0;
}

.tech-req .bandwidth-block {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: -1px 4px 14px -2px rgba(46, 93, 91, 0.10);
}

.tech-req .bandwidth-label {
    font-size: 15px;
    line-height: 1.3;
    color: #2E5D5B;
    font-weight: 600;
    margin-bottom: 8px;
}

.tech-req .bandwidth-bar-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tech-req .bandwidth-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.tech-req .bandwidth-row-label {
    font-size: 15px;
    line-height: 1.3;
    color: #2E5D5B;
    opacity: 0.7;
    width: 80px;
    flex-shrink: 0;
}

.tech-req .bar-track {
    flex: 1;
    height: 8px;
    background: rgba(46, 93, 91, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.tech-req .bar-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, #2E5D5B 0%, #4C8CAE 100%);
}

.tech-req .bar-fill.low {
    width: 28%;
    background: #8DCBC7;
}

.tech-req .bar-fill.mid {
    width: 55%;
    background: #4C8CAE;
}

.tech-req .bar-fill.high {
    width: 82%;
    background: #2E5D5B;
}

.tech-req .bandwidth-row-val {
    font-size: 15px;
    line-height: 1.3;
    color: #2E5D5B;
    font-weight: 600;
    width: 48px;
    text-align: right;
    flex-shrink: 0;
}

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

.tech-req .compat-list li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.5;
    color: #2E5D5B;
    padding: 8px 20px;
    background: rgba(46, 93, 91, 0.04);
    border-radius: 4px;
    transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-req .compat-list li:hover {
    background: rgba(141, 203, 199, 0.18);
}

.tech-req .compat-dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: #4C8CAE;
    flex-shrink: 0;
}

.tech-req .compat-dot.green {
    background: #2E5D5B;
}

.tech-req .compat-dot.light {
    background: #8DCBC7;
}

.tech-req .detail-col-img:hover img {
    filter: brightness(0.97);
    transition: filter 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-req .density-section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 40px;
}

.tech-req .density-heading {
    font-size: clamp(34px, 3.5vw, 48px);
    line-height: 1.1;
    color: #2E5D5B;
    margin: 0 0 40px;
    text-align: center;
    text-shadow: 1px 1px 0 rgba(46, 93, 91, 0.07);
}

.tech-req .density-heading span {
    color: #4C8CAE;
}

.tech-req .density-pyramid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.tech-req .density-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: 100%;
    justify-content: center;
}

.tech-req .density-item {
    background: #fff;
    border: 1px solid rgba(46, 93, 91, 0.1);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: -1px 1px 5px -2px rgba(46, 93, 91, 0.05);
    transition: box-shadow 0.24s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.tech-req .density-item:hover {
    box-shadow: -1px 12px 40px -2px rgba(46, 93, 91, 0.14);
    transform: translateY(-2px);
}

.tech-req .density-item.sm {
    width: 260px;
}

.tech-req .density-item.md {
    width: 340px;
}

.tech-req .density-item.lg {
    width: 420px;
}

.tech-req .density-item-tag {
    font-size: 15px;
    line-height: 1.3;
    color: #4C8CAE;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.tech-req .density-item-title {
    font-size: 20px;
    line-height: 1.3;
    color: #2E5D5B;
    font-weight: 600;
    margin: 0;
}

.tech-req .density-item-body {
    font-size: 15px;
    line-height: 1.5;
    color: #2E5D5B;
    opacity: 0.75;
    margin: 0;
}

.tech-req .density-item.center-focus {
    background: linear-gradient(135deg, rgba(46, 93, 91, 0.06) 0%, rgba(76, 140, 174, 0.08) 100%);
    border-color: rgba(46, 93, 91, 0.2);
    box-shadow: -1px 4px 14px -2px rgba(46, 93, 91, 0.10);
}

.tech-req .density-img-wrap {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: -1px 4px 14px -2px rgba(76, 140, 174, 0.10);
    margin-bottom: 40px;
}

.tech-req .density-img-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: filter 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-req .density-img-wrap:hover img {
    filter: brightness(0.95) saturate(1.06);
}

.tech-req .density-img-wrap::after {
    content: '';
    display: block;
    margin-top: -280px;
    height: 280px;
    background: transparent;
    pointer-events: none;
    transition: box-shadow 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-req .density-img-wrap:hover::after {
    box-shadow: inset 0 0 80px 30px rgba(46, 93, 91, 0.16);
}

@media (max-width: 1024px) {
    .tech-req .req-entry {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 80px 20px;
    }

    .tech-req .req-entry::before {
        width: 100%;
        height: 200px;
        top: auto;
        bottom: 0;
    }

    .tech-req .req-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-req .detail-cols {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tech-req .density-item.sm,
    .tech-req .density-item.md,
    .tech-req .density-item.lg {
        width: 100%;
    }

    .tech-req .density-row {
        flex-direction: column;
        align-items: stretch;
    }

    .tech-req .specs-band-inner {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .tech-req .req-cards {
        grid-template-columns: 1fr;
    }

    .tech-req .reqs-grid-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .tech-req .reqs-grid-note {
        text-align: left;
    }

    .tech-req .entry-h1 {
        font-size: 34px;
    }

    .tech-req .specs-band-inner {
        gap: 20px;
    }

    .tech-req .spec-divider {
        display: none;
    }
}

.ctus-pg {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    background: #ffffff;
}

.ctus-pg .reach-band {
    display: grid;
    grid-template-columns: 40fr 60fr;
    min-height: 92vh;
    position: relative;
}

.ctus-pg .reach-band__left {
    background: #2E5D5B;
    padding: 80px 40px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.ctus-pg .reach-band__left::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    background: #8DCBC7;
    opacity: 0.12;
    border-radius: 50%;
    filter: blur(48px);
    pointer-events: none;
}

.ctus-pg .reach-band__left::after {
    content: '';
    position: absolute;
    bottom: 40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: #4C8CAE;
    opacity: 0.15;
    border-radius: 50%;
    filter: blur(36px);
    pointer-events: none;
}

.ctus-pg .geo-motif {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.ctus-pg .geo-motif span {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: #8DCBC7;
    opacity: 0.22;
    position: absolute;
    right: 20px;
}

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

.ctus-pg .left-upper__eyebrow {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.ctus-pg .eyebrow-line {
    width: 32px;
    height: 2px;
    background: #8DCBC7;
    border-radius: 2px;
}

.ctus-pg .eyebrow-label {
    font-size: 15px;
    color: #8DCBC7;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ctus-pg .left-upper__heading {
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(46, 93, 91, 0.4);
}

.ctus-pg .left-upper__heading em {
    font-style: normal;
    color: #8DCBC7;
    font-weight: 700;
}

.ctus-pg .left-upper__sub {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    max-width: 340px;
}

.ctus-pg .contact-facts {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

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

.ctus-pg .fact-icon {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: rgba(141, 203, 199, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus-pg .fact-row:hover .fact-icon {
    background: rgba(141, 203, 199, 0.28);
}

.ctus-pg .fact-icon svg {
    width: 20px;
    height: 20px;
}

.ctus-pg .fact-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ctus-pg .fact-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ctus-pg .fact-value {
    font-size: 15px;
    line-height: 1.5;
    color: #ffffff;
}

.ctus-pg .fact-value a {
    color: #8DCBC7;
    text-decoration: none;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus-pg .fact-value a:hover {
    color: #ffffff;
}

.ctus-pg .reach-band__right {
    background: #f4f7f7;
    padding: 80px 80px 40px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ctus-pg .form-header {
    margin-bottom: 40px;
}

.ctus-pg .form-header__kicker {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.ctus-pg .kicker-icon-pair {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.ctus-pg .kicker-icon-pair svg {
    width: 18px;
    height: 18px;
    color: #4C8CAE;
}

.ctus-pg .form-header__label {
    font-size: 15px;
    color: #4C8CAE;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ctus-pg .form-header__h {
    font-size: clamp(20px, 2.5vw, 34px);
    line-height: 1.3;
    color: #1a3a39;
    text-shadow: 1px 1px 0 rgba(46, 93, 91, 0.08);
}

.ctus-pg .form-header__h strong {
    color: #2E5D5B;
}

.ctus-pg .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 640px;
}

.ctus-pg .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ctus-pg .field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ctus-pg .field-group label {
    font-size: 15px;
    color: #2E5D5B;
    font-weight: 600;
}

.ctus-pg .field-group label .req {
    color: #4C8CAE;
    margin-left: 2px;
}

.ctus-pg .field-group input,
.ctus-pg .field-group select,
.ctus-pg .field-group textarea {
    width: 100%;
    padding: 8px 20px;
    font-size: 15px;
    line-height: 1.5;
    color: #1a3a39;
    background: #ffffff;
    border: 1.5px solid rgba(46, 93, 91, 0.2);
    border-radius: 4px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 1px 2px rgba(46, 93, 91, 0.04), inset 0 -1px 2px rgba(46, 93, 91, 0.02);
}

.ctus-pg .field-group input::placeholder,
.ctus-pg .field-group textarea::placeholder {
    color: rgba(46, 93, 91, 0.38);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.ctus-pg .field-group input:focus,
.ctus-pg .field-group select:focus,
.ctus-pg .field-group textarea:focus {
    border-color: #4C8CAE;
    box-shadow: inset 0 1px 2px rgba(46, 93, 91, 0.04), 0 0 0 3px rgba(76, 140, 174, 0.12);
}

.ctus-pg .field-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%232E5D5B' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
    cursor: pointer;
}

.ctus-pg .field-group textarea {
    resize: vertical;
    min-height: 120px;
}

.ctus-pg .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0;
}

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

.ctus-pg .privacy-row label {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(46, 93, 91, 0.72);
    cursor: pointer;
}

.ctus-pg .privacy-row label a {
    color: #4C8CAE;
    text-decoration: none;
    background-image: linear-gradient(to right, rgba(76, 140, 174, 0.18) 0%, rgba(76, 140, 174, 0.18) 100%);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 0.24s cubic-bezier(0.4, 0, 0.2, 1);
    padding-bottom: 1px;
}

.ctus-pg .privacy-row label a:hover {
    background-size: 100% 100%;
}

.ctus-pg .submit-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    background: #2E5D5B;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    align-self: flex-start;
    transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -1px 4px 14px -2px rgba(46, 93, 91, 0.10);
}

.ctus-pg .submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #4C8CAE;
    transform: translateX(-100%);
    transition: transform 0.26s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: 0;
}

.ctus-pg .submit-btn:hover::before {
    transform: translateX(0);
}

.ctus-pg .submit-btn:hover {
    box-shadow: -1px 12px 40px -2px rgba(46, 93, 91, 0.14);
}

.ctus-pg .submit-btn:focus-visible {
    outline: 3px solid #8DCBC7;
    outline-offset: 3px;
}

.ctus-pg .submit-btn span {
    position: relative;
    z-index: 1;
}

.ctus-pg .submit-btn svg {
    position: relative;
    z-index: 1;
    width: 20px;
    height: 20px;
    transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus-pg .submit-btn:hover svg {
    transform: translateX(4px);
}

.ctus-pg .wave-divider {
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.ctus-pg .wave-divider svg {
    display: block;
    width: 100%;
}

.ctus-pg .image-band {
    background: #2E5D5B;
    display: grid;
    grid-template-columns: 60fr 40fr;
    position: relative;
}

.ctus-pg .img-frame {
    position: relative;
    overflow: hidden;
    min-height: 480px;
}

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

.ctus-pg .img-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, transparent 0%, transparent 50%, rgba(46, 93, 91, 0.72) 100%);
    pointer-events: none;
    z-index: 1;
}

.ctus-pg .img-frame .hover-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(6, 1fr);
    opacity: 0;
    transition: opacity 0.26s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.ctus-pg .img-frame:hover .hover-grid {
    opacity: 1;
}

.ctus-pg .hover-grid__cell {
    border: 1px solid rgba(141, 203, 199, 0.22);
}

.ctus-pg .img-frame:hover img {
    transform: scale(1.03);
}

.ctus-pg .info-aside {
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    position: relative;
}

.ctus-pg .info-aside__heading {
    font-size: clamp(20px, 2.5vw, 34px);
    line-height: 1.3;
    color: #ffffff;
    text-shadow: -1px 1px 5px rgba(46, 93, 91, 0.05);
}

.ctus-pg .info-aside__heading strong {
    color: #8DCBC7;
}

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

.ctus-pg .hours-list li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
    background: rgba(141, 203, 199, 0.1);
    border-radius: 4px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus-pg .hours-list li:hover {
    background: rgba(141, 203, 199, 0.2);
}

.ctus-pg .hours-list li .day {
    color: #8DCBC7;
    font-weight: 600;
}

.ctus-pg .hours-list li .time {
    color: rgba(255, 255, 255, 0.7);
}

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

.ctus-pg .badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 20px;
    background: rgba(141, 203, 199, 0.14);
    border-radius: 22px;
    font-size: 15px;
    color: #8DCBC7;
    border: 1px solid rgba(141, 203, 199, 0.25);
}

.ctus-pg .badge svg {
    width: 14px;
    height: 14px;
}

.ctus-pg .decor-spinner {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 48px;
    height: 48px;
    pointer-events: none;
    animation: spin-slow 12s linear infinite;
}

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

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

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

    .ctus-pg .reach-band__left {
        padding: 80px 40px 40px 40px;
        min-height: auto;
    }

    .ctus-pg .reach-band__right {
        padding: 40px 40px 40px 40px;
    }

    .ctus-pg .image-band {
        grid-template-columns: 1fr;
    }

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

    .ctus-pg .info-aside {
        padding: 40px 40px;
    }
}

@media (max-width: 640px) {
    .ctus-pg .field-row {
        grid-template-columns: 1fr;
    }

    .ctus-pg .reach-band__right {
        padding: 40px 20px;
    }

    .ctus-pg .reach-band__left {
        padding: 40px 20px;
    }

    .ctus-pg .info-aside {
        padding: 40px 20px;
    }

    .ctus-pg .contact-form {
        max-width: 100%;
    }

    .ctus-pg .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

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

.success-pg .success-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 80px 80px;
    max-width: 560px;
    width: 100%;
    text-align: center;
    box-shadow: -1px 12px 40px -2px rgba(46, 93, 91, 0.14);
}

.success-pg .success-card .icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: #8DCBC7;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px auto;
}

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

.success-pg .success-card .success-heading {
    font-size: 34px;
    line-height: 1.1;
    color: #2E5D5B;
    margin: 0 0 20px 0;
    text-shadow: 0 1px 0 rgba(46, 93, 91, 0.08);
}

.success-pg .success-card .success-heading span {
    color: #4C8CAE;
    font-weight: 700;
}

.success-pg .success-card .success-body {
    font-size: 15px;
    line-height: 1.7;
    color: #2E5D5B;
    margin: 0 0 40px 0;
    opacity: 0.85;
}

.success-pg .success-card .divider {
    width: 48px;
    height: 2px;
    background: #8DCBC7;
    border-radius: 2px;
    margin: 0 auto 40px auto;
}

.success-pg .success-card .meta-note {
    font-size: 15px;
    line-height: 1.5;
    color: #4C8CAE;
    margin: 0 0 40px 0;
}

.success-pg .success-card .btn-home {
    display: inline-block;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    background: #2E5D5B;
    border-radius: 4px;
    padding: 20px 40px;
    position: relative;
    overflow: hidden;
    transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-pg .success-card .btn-home::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #4C8CAE;
    transform: translateX(-100%);
    transition: transform 0.26s cubic-bezier(0.0, 0, 0.2, 1);
    border-radius: 4px;
}

.success-pg .success-card .btn-home:hover::before {
    transform: translateX(0);
}

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

.success-pg .success-card .btn-home .btn-label {
    position: relative;
    z-index: 1;
}

.success-pg .success-card .contact-hint {
    margin: 20px 0 0 0;
    font-size: 15px;
    line-height: 1.5;
    color: #2E5D5B;
    opacity: 0.7;
}

.success-pg .success-card .contact-hint a {
    color: #2E5D5B;
    font-weight: 700;
    text-decoration: none;
    background-image: linear-gradient(#8DCBC7 0%, #8DCBC7 100%);
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 0.24s cubic-bezier(0.4, 0, 0.2, 1);
    padding-bottom: 2px;
}

.success-pg .success-card .contact-hint a:hover {
    background-size: 100% 2px;
}

@media (max-width: 600px) {
    .success-pg .success-card {
        padding: 40px 20px;
    }

    .success-pg .success-card .success-heading {
        font-size: 20px;
    }
}